#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{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::string::{Nsid, RecordKey, Rkey};
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
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", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct CodeType<S: BosStr = DefaultStr> {
pub code: RecordKey<Rkey<S>>,
pub list_id: Nsid<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
impl<S: BosStr> LexiconSchema for CodeType<S> {
fn nsid() -> &'static str {
"org.farmapps.temp.ecrop.defs"
}
fn def_name() -> &'static str {
"codeType"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_org_farmapps_temp_ecrop_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod code_type_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 ListId;
type Code;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type ListId = Unset;
type Code = Unset;
}
pub struct SetListId<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetListId<St> {}
impl<St: State> State for SetListId<St> {
type ListId = Set<members::list_id>;
type Code = St::Code;
}
pub struct SetCode<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCode<St> {}
impl<St: State> State for SetCode<St> {
type ListId = St::ListId;
type Code = Set<members::code>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct list_id(());
pub struct code(());
}
}
pub struct CodeTypeBuilder<S: BosStr, St: code_type_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<RecordKey<Rkey<S>>>, Option<Nsid<S>>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> CodeType<S> {
pub fn new() -> CodeTypeBuilder<S, code_type_state::Empty> {
CodeTypeBuilder::new()
}
}
impl<S: BosStr> CodeTypeBuilder<S, code_type_state::Empty> {
pub fn new() -> Self {
CodeTypeBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> CodeTypeBuilder<S, St>
where
St: code_type_state::State,
St::Code: code_type_state::IsUnset,
{
pub fn code(
mut self,
value: impl Into<RecordKey<Rkey<S>>>,
) -> CodeTypeBuilder<S, code_type_state::SetCode<St>> {
self._fields.0 = Option::Some(value.into());
CodeTypeBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> CodeTypeBuilder<S, St>
where
St: code_type_state::State,
St::ListId: code_type_state::IsUnset,
{
pub fn list_id(
mut self,
value: impl Into<Nsid<S>>,
) -> CodeTypeBuilder<S, code_type_state::SetListId<St>> {
self._fields.1 = Option::Some(value.into());
CodeTypeBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> CodeTypeBuilder<S, St>
where
St: code_type_state::State,
St::ListId: code_type_state::IsSet,
St::Code: code_type_state::IsSet,
{
pub fn build(self) -> CodeType<S> {
CodeType {
code: self._fields.0.unwrap(),
list_id: self._fields.1.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> CodeType<S> {
CodeType {
code: self._fields.0.unwrap(),
list_id: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_org_farmapps_temp_ecrop_defs() -> 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("org.farmapps.temp.ecrop.defs"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("codeType"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static(
"Generic class to represent the code list and code that is used",
),
),
required: Some(
vec![SmolStr::new_static("listId"), SmolStr::new_static("code")],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("code"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::RecordKey),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("listId"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Identifier of the standard code list that contains the allowed codes.",
),
),
format: Some(LexStringFormat::Nsid),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}