#[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 Lexicon<'a> {
pub created_at: Datetime,
#[serde(borrow)]
pub definitions: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub description: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default = "_default_lexicon_excluded_from_sync")]
pub excluded_from_sync: Option<bool>,
#[serde(borrow)]
pub nsid: CowStr<'a>,
#[serde(borrow)]
pub slice: AtUri<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
pub updated_at: Option<Datetime>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct LexiconGetRecordOutput<'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: Lexicon<'a>,
}
impl<'a> Lexicon<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, LexiconRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct LexiconRecord;
impl XrpcResp for LexiconRecord {
const NSID: &'static str = "network.slices.lexicon";
const ENCODING: &'static str = "application/json";
type Output<'de> = LexiconGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<LexiconGetRecordOutput<'_>> for Lexicon<'_> {
fn from(output: LexiconGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Lexicon<'_> {
const NSID: &'static str = "network.slices.lexicon";
type Record = LexiconRecord;
}
impl Collection for LexiconRecord {
const NSID: &'static str = "network.slices.lexicon";
type Record = LexiconRecord;
}
impl<'a> LexiconSchema for Lexicon<'a> {
fn nsid() -> &'static str {
"network.slices.lexicon"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_network_slices_lexicon()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.description {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 500usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("description"),
max: 500usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.nsid;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 256usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("nsid"),
max: 256usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
fn _default_lexicon_excluded_from_sync() -> Option<bool> {
Some(false)
}
pub mod lexicon_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 Nsid;
type Slice;
type CreatedAt;
type Definitions;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Nsid = Unset;
type Slice = Unset;
type CreatedAt = Unset;
type Definitions = Unset;
}
pub struct SetNsid<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetNsid<S> {}
impl<S: State> State for SetNsid<S> {
type Nsid = Set<members::nsid>;
type Slice = S::Slice;
type CreatedAt = S::CreatedAt;
type Definitions = S::Definitions;
}
pub struct SetSlice<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetSlice<S> {}
impl<S: State> State for SetSlice<S> {
type Nsid = S::Nsid;
type Slice = Set<members::slice>;
type CreatedAt = S::CreatedAt;
type Definitions = S::Definitions;
}
pub struct SetCreatedAt<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCreatedAt<S> {}
impl<S: State> State for SetCreatedAt<S> {
type Nsid = S::Nsid;
type Slice = S::Slice;
type CreatedAt = Set<members::created_at>;
type Definitions = S::Definitions;
}
pub struct SetDefinitions<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetDefinitions<S> {}
impl<S: State> State for SetDefinitions<S> {
type Nsid = S::Nsid;
type Slice = S::Slice;
type CreatedAt = S::CreatedAt;
type Definitions = Set<members::definitions>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct nsid(());
pub struct slice(());
pub struct created_at(());
pub struct definitions(());
}
}
pub struct LexiconBuilder<'a, S: lexicon_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<Datetime>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<bool>,
Option<CowStr<'a>>,
Option<AtUri<'a>>,
Option<Datetime>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Lexicon<'a> {
pub fn new() -> LexiconBuilder<'a, lexicon_state::Empty> {
LexiconBuilder::new()
}
}
impl<'a> LexiconBuilder<'a, lexicon_state::Empty> {
pub fn new() -> Self {
LexiconBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> LexiconBuilder<'a, S>
where
S: lexicon_state::State,
S::CreatedAt: lexicon_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> LexiconBuilder<'a, lexicon_state::SetCreatedAt<S>> {
self._fields.0 = Option::Some(value.into());
LexiconBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> LexiconBuilder<'a, S>
where
S: lexicon_state::State,
S::Definitions: lexicon_state::IsUnset,
{
pub fn definitions(
mut self,
value: impl Into<CowStr<'a>>,
) -> LexiconBuilder<'a, lexicon_state::SetDefinitions<S>> {
self._fields.1 = Option::Some(value.into());
LexiconBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: lexicon_state::State> LexiconBuilder<'a, S> {
pub fn description(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S: lexicon_state::State> LexiconBuilder<'a, S> {
pub fn excluded_from_sync(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_excluded_from_sync(mut self, value: Option<bool>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S> LexiconBuilder<'a, S>
where
S: lexicon_state::State,
S::Nsid: lexicon_state::IsUnset,
{
pub fn nsid(
mut self,
value: impl Into<CowStr<'a>>,
) -> LexiconBuilder<'a, lexicon_state::SetNsid<S>> {
self._fields.4 = Option::Some(value.into());
LexiconBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> LexiconBuilder<'a, S>
where
S: lexicon_state::State,
S::Slice: lexicon_state::IsUnset,
{
pub fn slice(
mut self,
value: impl Into<AtUri<'a>>,
) -> LexiconBuilder<'a, lexicon_state::SetSlice<S>> {
self._fields.5 = Option::Some(value.into());
LexiconBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: lexicon_state::State> LexiconBuilder<'a, S> {
pub fn updated_at(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_updated_at(mut self, value: Option<Datetime>) -> Self {
self._fields.6 = value;
self
}
}
impl<'a, S> LexiconBuilder<'a, S>
where
S: lexicon_state::State,
S::Nsid: lexicon_state::IsSet,
S::Slice: lexicon_state::IsSet,
S::CreatedAt: lexicon_state::IsSet,
S::Definitions: lexicon_state::IsSet,
{
pub fn build(self) -> Lexicon<'a> {
Lexicon {
created_at: self._fields.0.unwrap(),
definitions: self._fields.1.unwrap(),
description: self._fields.2,
excluded_from_sync: self._fields.3.or_else(|| Some(false)),
nsid: self._fields.4.unwrap(),
slice: self._fields.5.unwrap(),
updated_at: self._fields.6,
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>,
>,
) -> Lexicon<'a> {
Lexicon {
created_at: self._fields.0.unwrap(),
definitions: self._fields.1.unwrap(),
description: self._fields.2,
excluded_from_sync: self._fields.3.or_else(|| Some(false)),
nsid: self._fields.4.unwrap(),
slice: self._fields.5.unwrap(),
updated_at: self._fields.6,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_network_slices_lexicon() -> 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("network.slices.lexicon"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("nsid"),
SmolStr::new_static("definitions"),
SmolStr::new_static("createdAt"),
SmolStr::new_static("slice")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("When the lexicon was created"),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("definitions"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The lexicon schema definitions as JSON"),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("description"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Human-readable description of the lexicon",
),
),
max_length: Some(500usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("excludedFromSync"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("nsid"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Namespaced identifier for the lexicon"),
),
max_length: Some(256usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("slice"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"AT-URI reference to the slice this lexicon belongs to",
),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("updatedAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("When the lexicon was last updated"),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}