#[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 Mood<'a> {
#[serde(borrow)]
pub mood: CowStr<'a>,
#[serde(borrow)]
pub r#ref: CowStr<'a>,
pub when: Datetime,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct MoodGetRecordOutput<'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: Mood<'a>,
}
impl<'a> Mood<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, MoodRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct MoodRecord;
impl XrpcResp for MoodRecord {
const NSID: &'static str = "computer.aesthetic.mood";
const ENCODING: &'static str = "application/json";
type Output<'de> = MoodGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<MoodGetRecordOutput<'_>> for Mood<'_> {
fn from(output: MoodGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Mood<'_> {
const NSID: &'static str = "computer.aesthetic.mood";
type Record = MoodRecord;
}
impl Collection for MoodRecord {
const NSID: &'static str = "computer.aesthetic.mood";
type Record = MoodRecord;
}
impl<'a> LexiconSchema for Mood<'a> {
fn nsid() -> &'static str {
"computer.aesthetic.mood"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_computer_aesthetic_mood()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.mood;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 5000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("mood"),
max: 5000usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
pub mod mood_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 When;
type Mood;
type Ref;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type When = Unset;
type Mood = Unset;
type Ref = Unset;
}
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 When = Set<members::when>;
type Mood = S::Mood;
type Ref = S::Ref;
}
pub struct SetMood<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetMood<S> {}
impl<S: State> State for SetMood<S> {
type When = S::When;
type Mood = Set<members::mood>;
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 When = S::When;
type Mood = S::Mood;
type Ref = Set<members::r#ref>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct when(());
pub struct mood(());
pub struct r#ref(());
}
}
pub struct MoodBuilder<'a, S: mood_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<CowStr<'a>>, Option<CowStr<'a>>, Option<Datetime>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Mood<'a> {
pub fn new() -> MoodBuilder<'a, mood_state::Empty> {
MoodBuilder::new()
}
}
impl<'a> MoodBuilder<'a, mood_state::Empty> {
pub fn new() -> Self {
MoodBuilder {
_state: PhantomData,
_fields: (None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> MoodBuilder<'a, S>
where
S: mood_state::State,
S::Mood: mood_state::IsUnset,
{
pub fn mood(
mut self,
value: impl Into<CowStr<'a>>,
) -> MoodBuilder<'a, mood_state::SetMood<S>> {
self._fields.0 = Option::Some(value.into());
MoodBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> MoodBuilder<'a, S>
where
S: mood_state::State,
S::Ref: mood_state::IsUnset,
{
pub fn r#ref(
mut self,
value: impl Into<CowStr<'a>>,
) -> MoodBuilder<'a, mood_state::SetRef<S>> {
self._fields.1 = Option::Some(value.into());
MoodBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> MoodBuilder<'a, S>
where
S: mood_state::State,
S::When: mood_state::IsUnset,
{
pub fn when(
mut self,
value: impl Into<Datetime>,
) -> MoodBuilder<'a, mood_state::SetWhen<S>> {
self._fields.2 = Option::Some(value.into());
MoodBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> MoodBuilder<'a, S>
where
S: mood_state::State,
S::When: mood_state::IsSet,
S::Mood: mood_state::IsSet,
S::Ref: mood_state::IsSet,
{
pub fn build(self) -> Mood<'a> {
Mood {
mood: self._fields.0.unwrap(),
r#ref: 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>,
>,
) -> Mood<'a> {
Mood {
mood: self._fields.0.unwrap(),
r#ref: self._fields.1.unwrap(),
when: self._fields.2.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_computer_aesthetic_mood() -> 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.mood"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static("A mood entry from Aesthetic Computer"),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("mood"), SmolStr::new_static("when"),
SmolStr::new_static("ref")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("mood"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The mood text content"),
),
max_length: Some(5000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("ref"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Reference to source database record for bidirectional sync",
),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("when"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("When the mood was created (ISO 8601)"),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}