#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{CowStr, BosStr, DefaultStr, FromStaticStr};
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::deps::smol_str::SmolStr;
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::types::value::Data;
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};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "computer.aesthetic.mood",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Mood<S: BosStr = DefaultStr> {
pub mood: S,
pub r#ref: S,
pub when: Datetime,
#[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 MoodGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Mood<S>,
}
impl<S: BosStr> Mood<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, MoodRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[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<S: BosStr> = MoodGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<MoodGetRecordOutput<S>> for Mood<S> {
fn from(output: MoodGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Mood<S> {
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<S: BosStr> LexiconSchema for Mood<S> {
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 Ref;
type Mood;
type When;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Ref = Unset;
type Mood = Unset;
type When = Unset;
}
pub struct SetRef<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRef<St> {}
impl<St: State> State for SetRef<St> {
type Ref = Set<members::r#ref>;
type Mood = St::Mood;
type When = St::When;
}
pub struct SetMood<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetMood<St> {}
impl<St: State> State for SetMood<St> {
type Ref = St::Ref;
type Mood = Set<members::mood>;
type When = St::When;
}
pub struct SetWhen<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetWhen<St> {}
impl<St: State> State for SetWhen<St> {
type Ref = St::Ref;
type Mood = St::Mood;
type When = Set<members::when>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct r#ref(());
pub struct mood(());
pub struct when(());
}
}
pub struct MoodBuilder<S: BosStr, St: mood_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<S>, Option<S>, Option<Datetime>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Mood<S> {
pub fn new() -> MoodBuilder<S, mood_state::Empty> {
MoodBuilder::new()
}
}
impl<S: BosStr> MoodBuilder<S, mood_state::Empty> {
pub fn new() -> Self {
MoodBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> MoodBuilder<S, St>
where
St: mood_state::State,
St::Mood: mood_state::IsUnset,
{
pub fn mood(
mut self,
value: impl Into<S>,
) -> MoodBuilder<S, mood_state::SetMood<St>> {
self._fields.0 = Option::Some(value.into());
MoodBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> MoodBuilder<S, St>
where
St: mood_state::State,
St::Ref: mood_state::IsUnset,
{
pub fn r#ref(
mut self,
value: impl Into<S>,
) -> MoodBuilder<S, mood_state::SetRef<St>> {
self._fields.1 = Option::Some(value.into());
MoodBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> MoodBuilder<S, St>
where
St: mood_state::State,
St::When: mood_state::IsUnset,
{
pub fn when(
mut self,
value: impl Into<Datetime>,
) -> MoodBuilder<S, mood_state::SetWhen<St>> {
self._fields.2 = Option::Some(value.into());
MoodBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> MoodBuilder<S, St>
where
St: mood_state::State,
St::Ref: mood_state::IsSet,
St::Mood: mood_state::IsSet,
St::When: mood_state::IsSet,
{
pub fn build(self) -> Mood<S> {
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<SmolStr, Data<S>>) -> Mood<S> {
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()
}
}