#[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", rename = "app.chavatar.state", tag = "$type")]
pub struct State<'a> {
#[serde(borrow)]
pub cursor: CowStr<'a>,
pub last_updated: Datetime,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct StateGetRecordOutput<'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: State<'a>,
}
impl<'a> State<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, StateRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[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<'de> = StateGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<StateGetRecordOutput<'_>> for State<'_> {
fn from(output: StateGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for State<'_> {
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<'a> LexiconSchema for State<'a> {
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 LastUpdated;
type Cursor;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type LastUpdated = Unset;
type Cursor = Unset;
}
pub struct SetLastUpdated<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetLastUpdated<S> {}
impl<S: State> State for SetLastUpdated<S> {
type LastUpdated = Set<members::last_updated>;
type Cursor = S::Cursor;
}
pub struct SetCursor<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCursor<S> {}
impl<S: State> State for SetCursor<S> {
type LastUpdated = S::LastUpdated;
type Cursor = Set<members::cursor>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct last_updated(());
pub struct cursor(());
}
}
pub struct StateBuilder<'a, S: state_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<CowStr<'a>>, Option<Datetime>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> State<'a> {
pub fn new() -> StateBuilder<'a, state_state::Empty> {
StateBuilder::new()
}
}
impl<'a> StateBuilder<'a, state_state::Empty> {
pub fn new() -> Self {
StateBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> StateBuilder<'a, S>
where
S: state_state::State,
S::Cursor: state_state::IsUnset,
{
pub fn cursor(
mut self,
value: impl Into<CowStr<'a>>,
) -> StateBuilder<'a, state_state::SetCursor<S>> {
self._fields.0 = Option::Some(value.into());
StateBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> StateBuilder<'a, S>
where
S: state_state::State,
S::LastUpdated: state_state::IsUnset,
{
pub fn last_updated(
mut self,
value: impl Into<Datetime>,
) -> StateBuilder<'a, state_state::SetLastUpdated<S>> {
self._fields.1 = Option::Some(value.into());
StateBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> StateBuilder<'a, S>
where
S: state_state::State,
S::LastUpdated: state_state::IsSet,
S::Cursor: state_state::IsSet,
{
pub fn build(self) -> State<'a> {
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<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> State<'a> {
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()
}
}