#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{BosStr, CowStr, DefaultStr, FromStaticStr};
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::blob::BlobRef;
use jacquard_common::types::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Cid};
use jacquard_common::types::uri::{RecordUri, UriError};
use jacquard_common::types::value::Data;
use jacquard_common::xrpc::XrpcResp;
use jacquard_derive::{IntoStatic, lexicon};
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
use crate::sh_weaver::edit::DocRef;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "sh.weaver.edit.root",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Root<S: BosStr = DefaultStr> {
pub doc: DocRef<S>,
pub snapshot: BlobRef<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct RootGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Root<S>,
}
impl<S: BosStr> Root<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, RootRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct RootRecord;
impl XrpcResp for RootRecord {
const NSID: &'static str = "sh.weaver.edit.root";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = RootGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<RootGetRecordOutput<S>> for Root<S> {
fn from(output: RootGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Root<S> {
const NSID: &'static str = "sh.weaver.edit.root";
type Record = RootRecord;
}
impl Collection for RootRecord {
const NSID: &'static str = "sh.weaver.edit.root";
type Record = RootRecord;
}
impl<S: BosStr> LexiconSchema for Root<S> {
fn nsid() -> &'static str {
"sh.weaver.edit.root"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_sh_weaver_edit_root()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.snapshot;
{
let size = value.blob().size;
if size > 30000000usize {
return Err(ConstraintError::BlobTooLarge {
path: ValidationPath::from_field("snapshot"),
max: 30000000usize,
actual: size,
});
}
}
}
{
let value = &self.snapshot;
{
let mime = value.blob().mime_type.as_str();
let accepted: &[&str] = &["*/*"];
let matched = accepted.iter().any(|pattern| {
if *pattern == "*/*" {
true
} else if pattern.ends_with("/*") {
let prefix = &pattern[..pattern.len() - 2];
mime.starts_with(prefix) && mime.as_bytes().get(prefix.len()) == Some(&b'/')
} else {
mime == *pattern
}
});
if !matched {
return Err(ConstraintError::BlobMimeTypeNotAccepted {
path: ValidationPath::from_field("snapshot"),
accepted: vec!["*/*".to_string()],
actual: mime.to_string(),
});
}
}
}
Ok(())
}
}
pub mod root_state {
pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Doc;
type Snapshot;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Doc = Unset;
type Snapshot = Unset;
}
pub struct SetDoc<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetDoc<St> {}
impl<St: State> State for SetDoc<St> {
type Doc = Set<members::doc>;
type Snapshot = St::Snapshot;
}
pub struct SetSnapshot<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetSnapshot<St> {}
impl<St: State> State for SetSnapshot<St> {
type Doc = St::Doc;
type Snapshot = Set<members::snapshot>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct doc(());
pub struct snapshot(());
}
}
pub struct RootBuilder<S: BosStr, St: root_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<DocRef<S>>, Option<BlobRef<S>>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Root<S> {
pub fn new() -> RootBuilder<S, root_state::Empty> {
RootBuilder::new()
}
}
impl<S: BosStr> RootBuilder<S, root_state::Empty> {
pub fn new() -> Self {
RootBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> RootBuilder<S, St>
where
St: root_state::State,
St::Doc: root_state::IsUnset,
{
pub fn doc(mut self, value: impl Into<DocRef<S>>) -> RootBuilder<S, root_state::SetDoc<St>> {
self._fields.0 = Option::Some(value.into());
RootBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> RootBuilder<S, St>
where
St: root_state::State,
St::Snapshot: root_state::IsUnset,
{
pub fn snapshot(
mut self,
value: impl Into<BlobRef<S>>,
) -> RootBuilder<S, root_state::SetSnapshot<St>> {
self._fields.1 = Option::Some(value.into());
RootBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> RootBuilder<S, St>
where
St: root_state::State,
St::Doc: root_state::IsSet,
St::Snapshot: root_state::IsSet,
{
pub fn build(self) -> Root<S> {
Root {
doc: self._fields.0.unwrap(),
snapshot: self._fields.1.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Root<S> {
Root {
doc: self._fields.0.unwrap(),
snapshot: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_sh_weaver_edit_root() -> LexiconDoc<'static> {
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
LexiconDoc {
lexicon: Lexicon::Lexicon1,
id: CowStr::new_static("sh.weaver.edit.root"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(CowStr::new_static(
"The starting point for edit history on a notebook.",
)),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(vec![
SmolStr::new_static("doc"),
SmolStr::new_static("snapshot"),
]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("doc"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("sh.weaver.edit.defs#docRef"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("snapshot"),
LexObjectProperty::Blob(LexBlob {
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}