#[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, UriValue};
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.gainforest.organization.layer",
tag = "$type"
)]
pub struct Layer<'a> {
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub description: Option<CowStr<'a>>,
#[serde(borrow)]
pub name: CowStr<'a>,
#[serde(borrow)]
pub r#type: CowStr<'a>,
#[serde(borrow)]
pub uri: UriValue<'a>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct LayerGetRecordOutput<'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: Layer<'a>,
}
impl<'a> Layer<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, LayerRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct LayerRecord;
impl XrpcResp for LayerRecord {
const NSID: &'static str = "app.gainforest.organization.layer";
const ENCODING: &'static str = "application/json";
type Output<'de> = LayerGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<LayerGetRecordOutput<'_>> for Layer<'_> {
fn from(output: LayerGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Layer<'_> {
const NSID: &'static str = "app.gainforest.organization.layer";
type Record = LayerRecord;
}
impl Collection for LayerRecord {
const NSID: &'static str = "app.gainforest.organization.layer";
type Record = LayerRecord;
}
impl<'a> LexiconSchema for Layer<'a> {
fn nsid() -> &'static str {
"app.gainforest.organization.layer"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_gainforest_organization_layer()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod layer_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 CreatedAt;
type Type;
type Name;
type Uri;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CreatedAt = Unset;
type Type = Unset;
type Name = Unset;
type Uri = Unset;
}
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 CreatedAt = Set<members::created_at>;
type Type = S::Type;
type Name = S::Name;
type Uri = S::Uri;
}
pub struct SetType<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetType<S> {}
impl<S: State> State for SetType<S> {
type CreatedAt = S::CreatedAt;
type Type = Set<members::r#type>;
type Name = S::Name;
type Uri = S::Uri;
}
pub struct SetName<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetName<S> {}
impl<S: State> State for SetName<S> {
type CreatedAt = S::CreatedAt;
type Type = S::Type;
type Name = Set<members::name>;
type Uri = S::Uri;
}
pub struct SetUri<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetUri<S> {}
impl<S: State> State for SetUri<S> {
type CreatedAt = S::CreatedAt;
type Type = S::Type;
type Name = S::Name;
type Uri = Set<members::uri>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct created_at(());
pub struct r#type(());
pub struct name(());
pub struct uri(());
}
}
pub struct LayerBuilder<'a, S: layer_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<Datetime>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<UriValue<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Layer<'a> {
pub fn new() -> LayerBuilder<'a, layer_state::Empty> {
LayerBuilder::new()
}
}
impl<'a> LayerBuilder<'a, layer_state::Empty> {
pub fn new() -> Self {
LayerBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> LayerBuilder<'a, S>
where
S: layer_state::State,
S::CreatedAt: layer_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> LayerBuilder<'a, layer_state::SetCreatedAt<S>> {
self._fields.0 = Option::Some(value.into());
LayerBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: layer_state::State> LayerBuilder<'a, S> {
pub fn description(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S> LayerBuilder<'a, S>
where
S: layer_state::State,
S::Name: layer_state::IsUnset,
{
pub fn name(
mut self,
value: impl Into<CowStr<'a>>,
) -> LayerBuilder<'a, layer_state::SetName<S>> {
self._fields.2 = Option::Some(value.into());
LayerBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> LayerBuilder<'a, S>
where
S: layer_state::State,
S::Type: layer_state::IsUnset,
{
pub fn r#type(
mut self,
value: impl Into<CowStr<'a>>,
) -> LayerBuilder<'a, layer_state::SetType<S>> {
self._fields.3 = Option::Some(value.into());
LayerBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> LayerBuilder<'a, S>
where
S: layer_state::State,
S::Uri: layer_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<UriValue<'a>>,
) -> LayerBuilder<'a, layer_state::SetUri<S>> {
self._fields.4 = Option::Some(value.into());
LayerBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> LayerBuilder<'a, S>
where
S: layer_state::State,
S::CreatedAt: layer_state::IsSet,
S::Type: layer_state::IsSet,
S::Name: layer_state::IsSet,
S::Uri: layer_state::IsSet,
{
pub fn build(self) -> Layer<'a> {
Layer {
created_at: self._fields.0.unwrap(),
description: self._fields.1,
name: self._fields.2.unwrap(),
r#type: self._fields.3.unwrap(),
uri: self._fields.4.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>,
>,
) -> Layer<'a> {
Layer {
created_at: self._fields.0.unwrap(),
description: self._fields.1,
name: self._fields.2.unwrap(),
r#type: self._fields.3.unwrap(),
uri: self._fields.4.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_app_gainforest_organization_layer() -> 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.gainforest.organization.layer"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"A declaration of a layer for an organization",
),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("name"), SmolStr::new_static("type"),
SmolStr::new_static("uri"), 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 date and time of the creation of the record",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("description"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The description of the layer"),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The name of the site"),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("type"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The type of the layer"),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("uri"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The URI of the layer"),
),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}