#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::types::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Cid, Datetime};
use jacquard_common::types::uri::{RecordUri, UriError};
use jacquard_common::xrpc::XrpcResp;
use jacquard_derive::{IntoStatic, lexicon};
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Serialize, Deserialize};
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Piece<'a> {
#[serde(borrow)]
pub r#ref: CowStr<'a>,
#[serde(borrow)]
pub slug: CowStr<'a>,
pub when: Datetime,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct PieceGetRecordOutput<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub cid: Option<Cid<'a>>,
#[serde(borrow)]
pub uri: AtUri<'a>,
#[serde(borrow)]
pub value: Piece<'a>,
}
impl<'a> Piece<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, PieceRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct PieceRecord;
impl XrpcResp for PieceRecord {
const NSID: &'static str = "computer.aesthetic.piece";
const ENCODING: &'static str = "application/json";
type Output<'de> = PieceGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<PieceGetRecordOutput<'_>> for Piece<'_> {
fn from(output: PieceGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Piece<'_> {
const NSID: &'static str = "computer.aesthetic.piece";
type Record = PieceRecord;
}
impl Collection for PieceRecord {
const NSID: &'static str = "computer.aesthetic.piece";
type Record = PieceRecord;
}
impl<'a> LexiconSchema for Piece<'a> {
fn nsid() -> &'static str {
"computer.aesthetic.piece"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_computer_aesthetic_piece()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.r#ref;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 24usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("ref"),
max: 24usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.slug;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 100usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("slug"),
max: 100usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
pub mod piece_state {
pub use crate::builder_types::{Set, Unset, IsSet, IsUnset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Slug;
type When;
type Ref;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Slug = Unset;
type When = Unset;
type Ref = Unset;
}
pub struct SetSlug<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetSlug<S> {}
impl<S: State> State for SetSlug<S> {
type Slug = Set<members::slug>;
type When = S::When;
type Ref = S::Ref;
}
pub struct SetWhen<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetWhen<S> {}
impl<S: State> State for SetWhen<S> {
type Slug = S::Slug;
type When = Set<members::when>;
type Ref = S::Ref;
}
pub struct SetRef<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetRef<S> {}
impl<S: State> State for SetRef<S> {
type Slug = S::Slug;
type When = S::When;
type Ref = Set<members::r#ref>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct slug(());
pub struct when(());
pub struct r#ref(());
}
}
pub struct PieceBuilder<'a, S: piece_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<CowStr<'a>>, Option<CowStr<'a>>, Option<Datetime>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Piece<'a> {
pub fn new() -> PieceBuilder<'a, piece_state::Empty> {
PieceBuilder::new()
}
}
impl<'a> PieceBuilder<'a, piece_state::Empty> {
pub fn new() -> Self {
PieceBuilder {
_state: PhantomData,
_fields: (None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> PieceBuilder<'a, S>
where
S: piece_state::State,
S::Ref: piece_state::IsUnset,
{
pub fn r#ref(
mut self,
value: impl Into<CowStr<'a>>,
) -> PieceBuilder<'a, piece_state::SetRef<S>> {
self._fields.0 = Option::Some(value.into());
PieceBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PieceBuilder<'a, S>
where
S: piece_state::State,
S::Slug: piece_state::IsUnset,
{
pub fn slug(
mut self,
value: impl Into<CowStr<'a>>,
) -> PieceBuilder<'a, piece_state::SetSlug<S>> {
self._fields.1 = Option::Some(value.into());
PieceBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PieceBuilder<'a, S>
where
S: piece_state::State,
S::When: piece_state::IsUnset,
{
pub fn when(
mut self,
value: impl Into<Datetime>,
) -> PieceBuilder<'a, piece_state::SetWhen<S>> {
self._fields.2 = Option::Some(value.into());
PieceBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PieceBuilder<'a, S>
where
S: piece_state::State,
S::Slug: piece_state::IsSet,
S::When: piece_state::IsSet,
S::Ref: piece_state::IsSet,
{
pub fn build(self) -> Piece<'a> {
Piece {
r#ref: self._fields.0.unwrap(),
slug: self._fields.1.unwrap(),
when: self._fields.2.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> Piece<'a> {
Piece {
r#ref: self._fields.0.unwrap(),
slug: self._fields.1.unwrap(),
when: self._fields.2.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_computer_aesthetic_piece() -> LexiconDoc<'static> {
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
use alloc::collections::BTreeMap;
LexiconDoc {
lexicon: Lexicon::Lexicon1,
id: CowStr::new_static("computer.aesthetic.piece"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"A piece (interactive program) from Aesthetic Computer",
),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("slug"), SmolStr::new_static("when"),
SmolStr::new_static("ref")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("ref"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"MongoDB ObjectId reference for bidirectional sync",
),
),
max_length: Some(24usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("slug"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The piece identifier (e.g., 'wand')"),
),
max_length: Some(100usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("when"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Creation timestamp (ISO 8601)"),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}