#[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};
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 M<'a> {
#[serde(borrow)]
pub common_name: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
pub edible: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub species: Option<CowStr<'a>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct MGetRecordOutput<'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: M<'a>,
}
impl<'a> M<'a> {
pub fn uri(uri: impl Into<CowStr<'a>>) -> Result<RecordUri<'a, MRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct MRecord;
impl XrpcResp for MRecord {
const NSID: &'static str = "net.bnewbold.m";
const ENCODING: &'static str = "application/json";
type Output<'de> = MGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<MGetRecordOutput<'_>> for M<'_> {
fn from(output: MGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for M<'_> {
const NSID: &'static str = "net.bnewbold.m";
type Record = MRecord;
}
impl Collection for MRecord {
const NSID: &'static str = "net.bnewbold.m";
type Record = MRecord;
}
impl<'a> LexiconSchema for M<'a> {
fn nsid() -> &'static str {
"net.bnewbold.m"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_net_bnewbold_m()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.common_name;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 2560usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("common_name"),
max: 2560usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.common_name;
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 256usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("common_name"),
max: 256usize,
actual: count,
});
}
}
}
if let Some(ref value) = self.species {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 2560usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("species"),
max: 2560usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.species {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 256usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("species"),
max: 256usize,
actual: count,
});
}
}
}
Ok(())
}
}
pub mod m_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 CommonName;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CommonName = Unset;
}
pub struct SetCommonName<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCommonName<S> {}
impl<S: State> State for SetCommonName<S> {
type CommonName = Set<members::common_name>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct common_name(());
}
}
pub struct MBuilder<'a, S: m_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<CowStr<'a>>, Option<bool>, Option<CowStr<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> M<'a> {
pub fn new() -> MBuilder<'a, m_state::Empty> {
MBuilder::new()
}
}
impl<'a> MBuilder<'a, m_state::Empty> {
pub fn new() -> Self {
MBuilder {
_state: PhantomData,
_fields: (None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> MBuilder<'a, S>
where
S: m_state::State,
S::CommonName: m_state::IsUnset,
{
pub fn common_name(
mut self,
value: impl Into<CowStr<'a>>,
) -> MBuilder<'a, m_state::SetCommonName<S>> {
self._fields.0 = Option::Some(value.into());
MBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: m_state::State> MBuilder<'a, S> {
pub fn edible(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_edible(mut self, value: Option<bool>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: m_state::State> MBuilder<'a, S> {
pub fn species(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_species(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S> MBuilder<'a, S>
where
S: m_state::State,
S::CommonName: m_state::IsSet,
{
pub fn build(self) -> M<'a> {
M {
common_name: self._fields.0.unwrap(),
edible: self._fields.1,
species: self._fields.2,
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>,
>,
) -> M<'a> {
M {
common_name: self._fields.0.unwrap(),
edible: self._fields.1,
species: self._fields.2,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_net_bnewbold_m() -> 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("net.bnewbold.m"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(CowStr::new_static("it's a kind of fungus")),
key: Some(CowStr::new_static("any")),
record: LexRecordRecord::Object(LexObject {
required: Some(vec![SmolStr::new_static("commonName")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("commonName"),
LexObjectProperty::String(LexString {
max_length: Some(2560usize),
max_graphemes: Some(256usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("edible"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("species"),
LexObjectProperty::String(LexString {
max_length: Some(2560usize),
max_graphemes: Some(256usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}