#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{BosStr, CowStr, 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, Nsid};
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::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "garden.lexicon.example",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Example<S: BosStr = DefaultStr> {
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<S>,
pub lexicon: Nsid<S>,
pub value: Data<S>,
#[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 ExampleGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Example<S>,
}
impl<S: BosStr> Example<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, ExampleRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ExampleRecord;
impl XrpcResp for ExampleRecord {
const NSID: &'static str = "garden.lexicon.example";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ExampleGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<ExampleGetRecordOutput<S>> for Example<S> {
fn from(output: ExampleGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Example<S> {
const NSID: &'static str = "garden.lexicon.example";
type Record = ExampleRecord;
}
impl Collection for ExampleRecord {
const NSID: &'static str = "garden.lexicon.example";
type Record = ExampleRecord;
}
impl<S: BosStr> LexiconSchema for Example<S> {
fn nsid() -> &'static str {
"garden.lexicon.example"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_garden_lexicon_example()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod example_state {
pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Lexicon;
type Value;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Lexicon = Unset;
type Value = Unset;
type CreatedAt = Unset;
}
pub struct SetLexicon<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetLexicon<St> {}
impl<St: State> State for SetLexicon<St> {
type Lexicon = Set<members::lexicon>;
type Value = St::Value;
type CreatedAt = St::CreatedAt;
}
pub struct SetValue<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetValue<St> {}
impl<St: State> State for SetValue<St> {
type Lexicon = St::Lexicon;
type Value = Set<members::value>;
type CreatedAt = St::CreatedAt;
}
pub struct SetCreatedAt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCreatedAt<St> {}
impl<St: State> State for SetCreatedAt<St> {
type Lexicon = St::Lexicon;
type Value = St::Value;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct lexicon(());
pub struct value(());
pub struct created_at(());
}
}
pub struct ExampleBuilder<S: BosStr, St: example_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Datetime>,
Option<S>,
Option<Nsid<S>>,
Option<Data<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Example<S> {
pub fn new() -> ExampleBuilder<S, example_state::Empty> {
ExampleBuilder::new()
}
}
impl<S: BosStr> ExampleBuilder<S, example_state::Empty> {
pub fn new() -> Self {
ExampleBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ExampleBuilder<S, St>
where
St: example_state::State,
St::CreatedAt: example_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ExampleBuilder<S, example_state::SetCreatedAt<St>> {
self._fields.0 = Option::Some(value.into());
ExampleBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: example_state::State> ExampleBuilder<S, St> {
pub fn description(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<S>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St> ExampleBuilder<S, St>
where
St: example_state::State,
St::Lexicon: example_state::IsUnset,
{
pub fn lexicon(
mut self,
value: impl Into<Nsid<S>>,
) -> ExampleBuilder<S, example_state::SetLexicon<St>> {
self._fields.2 = Option::Some(value.into());
ExampleBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ExampleBuilder<S, St>
where
St: example_state::State,
St::Value: example_state::IsUnset,
{
pub fn value(
mut self,
value: impl Into<Data<S>>,
) -> ExampleBuilder<S, example_state::SetValue<St>> {
self._fields.3 = Option::Some(value.into());
ExampleBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ExampleBuilder<S, St>
where
St: example_state::State,
St::Lexicon: example_state::IsSet,
St::Value: example_state::IsSet,
St::CreatedAt: example_state::IsSet,
{
pub fn build(self) -> Example<S> {
Example {
created_at: self._fields.0.unwrap(),
description: self._fields.1,
lexicon: self._fields.2.unwrap(),
value: self._fields.3.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Example<S> {
Example {
created_at: self._fields.0.unwrap(),
description: self._fields.1,
lexicon: self._fields.2.unwrap(),
value: self._fields.3.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_garden_lexicon_example() -> LexiconDoc<'static> {
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
LexiconDoc {
lexicon: Lexicon::Lexicon1,
id: CowStr::new_static("garden.lexicon.example"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(CowStr::new_static("An example value for a lexicon schema")),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(vec![
SmolStr::new_static("lexicon"),
SmolStr::new_static("value"),
SmolStr::new_static("createdAt"),
]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The user-supplied date and time the example was created.",
)),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("description"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"A description of the example.",
)),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("lexicon"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The NSID that the example is of.",
)),
format: Some(LexStringFormat::Nsid),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("value"),
LexObjectProperty::Unknown(LexUnknown {
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}