#[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 = "app.chavatar.state",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct State<S: BosStr = DefaultStr> {
pub cursor: S,
pub last_updated: 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 StateGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: State<S>,
}
impl<S: BosStr> State<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, StateRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct StateRecord;
impl XrpcResp for StateRecord {
const NSID: &'static str = "app.chavatar.state";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = StateGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<StateGetRecordOutput<S>> for State<S> {
fn from(output: StateGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for State<S> {
const NSID: &'static str = "app.chavatar.state";
type Record = StateRecord;
}
impl Collection for StateRecord {
const NSID: &'static str = "app.chavatar.state";
type Record = StateRecord;
}
impl<S: BosStr> LexiconSchema for State<S> {
fn nsid() -> &'static str {
"app.chavatar.state"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_chavatar_state()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.cursor;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 13usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("cursor"),
max: 13usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
pub mod state_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 Cursor;
type LastUpdated;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Cursor = Unset;
type LastUpdated = Unset;
}
pub struct SetCursor<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCursor<St> {}
impl<St: State> State for SetCursor<St> {
type Cursor = Set<members::cursor>;
type LastUpdated = St::LastUpdated;
}
pub struct SetLastUpdated<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetLastUpdated<St> {}
impl<St: State> State for SetLastUpdated<St> {
type Cursor = St::Cursor;
type LastUpdated = Set<members::last_updated>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct cursor(());
pub struct last_updated(());
}
}
pub struct StateBuilder<S: BosStr, St: state_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<S>, Option<Datetime>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> State<S> {
pub fn new() -> StateBuilder<S, state_state::Empty> {
StateBuilder::new()
}
}
impl<S: BosStr> StateBuilder<S, state_state::Empty> {
pub fn new() -> Self {
StateBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> StateBuilder<S, St>
where
St: state_state::State,
St::Cursor: state_state::IsUnset,
{
pub fn cursor(
mut self,
value: impl Into<S>,
) -> StateBuilder<S, state_state::SetCursor<St>> {
self._fields.0 = Option::Some(value.into());
StateBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> StateBuilder<S, St>
where
St: state_state::State,
St::LastUpdated: state_state::IsUnset,
{
pub fn last_updated(
mut self,
value: impl Into<Datetime>,
) -> StateBuilder<S, state_state::SetLastUpdated<St>> {
self._fields.1 = Option::Some(value.into());
StateBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> StateBuilder<S, St>
where
St: state_state::State,
St::Cursor: state_state::IsSet,
St::LastUpdated: state_state::IsSet,
{
pub fn build(self) -> State<S> {
State {
cursor: self._fields.0.unwrap(),
last_updated: self._fields.1.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> State<S> {
State {
cursor: self._fields.0.unwrap(),
last_updated: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_app_chavatar_state() -> 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("app.chavatar.state"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static("Current execution state of rotation."),
),
key: Some(CowStr::new_static("literal:self")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("cursor"),
SmolStr::new_static("lastUpdated")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("cursor"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"TID (ID) of the currently active avatar in the settings array.",
),
),
max_length: Some(13usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("lastUpdated"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("When the avatar was last rotated."),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}