#[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};
use crate::scot_comhairle::testing_polis_statement_v1;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct TestingPolisStatementV1<'a> {
pub created_at: Datetime,
#[serde(borrow)]
pub poll: testing_polis_statement_v1::PollRef<'a>,
#[serde(borrow)]
pub text: CowStr<'a>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct TestingPolisStatementV1GetRecordOutput<'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: TestingPolisStatementV1<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct PollRef<'a> {
#[serde(borrow)]
pub cid: Cid<'a>,
#[serde(borrow)]
pub uri: AtUri<'a>,
}
impl<'a> TestingPolisStatementV1<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, TestingPolisStatementV1Record>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct TestingPolisStatementV1Record;
impl XrpcResp for TestingPolisStatementV1Record {
const NSID: &'static str = "scot.comhairle.testingPolisStatementV1";
const ENCODING: &'static str = "application/json";
type Output<'de> = TestingPolisStatementV1GetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<TestingPolisStatementV1GetRecordOutput<'_>> for TestingPolisStatementV1<'_> {
fn from(output: TestingPolisStatementV1GetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for TestingPolisStatementV1<'_> {
const NSID: &'static str = "scot.comhairle.testingPolisStatementV1";
type Record = TestingPolisStatementV1Record;
}
impl Collection for TestingPolisStatementV1Record {
const NSID: &'static str = "scot.comhairle.testingPolisStatementV1";
type Record = TestingPolisStatementV1Record;
}
impl<'a> LexiconSchema for TestingPolisStatementV1<'a> {
fn nsid() -> &'static str {
"scot.comhairle.testingPolisStatementV1"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_scot_comhairle_testingPolisStatementV1()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.text;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 3000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("text"),
max: 3000usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
impl<'a> LexiconSchema for PollRef<'a> {
fn nsid() -> &'static str {
"scot.comhairle.testingPolisStatementV1"
}
fn def_name() -> &'static str {
"pollRef"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_scot_comhairle_testingPolisStatementV1()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod testing_polis_statement_v1_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 Poll;
type Text;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CreatedAt = Unset;
type Poll = Unset;
type Text = 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 Poll = S::Poll;
type Text = S::Text;
}
pub struct SetPoll<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetPoll<S> {}
impl<S: State> State for SetPoll<S> {
type CreatedAt = S::CreatedAt;
type Poll = Set<members::poll>;
type Text = S::Text;
}
pub struct SetText<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetText<S> {}
impl<S: State> State for SetText<S> {
type CreatedAt = S::CreatedAt;
type Poll = S::Poll;
type Text = Set<members::text>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct created_at(());
pub struct poll(());
pub struct text(());
}
}
pub struct TestingPolisStatementV1Builder<
'a,
S: testing_polis_statement_v1_state::State,
> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<Datetime>,
Option<testing_polis_statement_v1::PollRef<'a>>,
Option<CowStr<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> TestingPolisStatementV1<'a> {
pub fn new() -> TestingPolisStatementV1Builder<
'a,
testing_polis_statement_v1_state::Empty,
> {
TestingPolisStatementV1Builder::new()
}
}
impl<'a> TestingPolisStatementV1Builder<'a, testing_polis_statement_v1_state::Empty> {
pub fn new() -> Self {
TestingPolisStatementV1Builder {
_state: PhantomData,
_fields: (None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> TestingPolisStatementV1Builder<'a, S>
where
S: testing_polis_statement_v1_state::State,
S::CreatedAt: testing_polis_statement_v1_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> TestingPolisStatementV1Builder<
'a,
testing_polis_statement_v1_state::SetCreatedAt<S>,
> {
self._fields.0 = Option::Some(value.into());
TestingPolisStatementV1Builder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> TestingPolisStatementV1Builder<'a, S>
where
S: testing_polis_statement_v1_state::State,
S::Poll: testing_polis_statement_v1_state::IsUnset,
{
pub fn poll(
mut self,
value: impl Into<testing_polis_statement_v1::PollRef<'a>>,
) -> TestingPolisStatementV1Builder<
'a,
testing_polis_statement_v1_state::SetPoll<S>,
> {
self._fields.1 = Option::Some(value.into());
TestingPolisStatementV1Builder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> TestingPolisStatementV1Builder<'a, S>
where
S: testing_polis_statement_v1_state::State,
S::Text: testing_polis_statement_v1_state::IsUnset,
{
pub fn text(
mut self,
value: impl Into<CowStr<'a>>,
) -> TestingPolisStatementV1Builder<
'a,
testing_polis_statement_v1_state::SetText<S>,
> {
self._fields.2 = Option::Some(value.into());
TestingPolisStatementV1Builder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> TestingPolisStatementV1Builder<'a, S>
where
S: testing_polis_statement_v1_state::State,
S::CreatedAt: testing_polis_statement_v1_state::IsSet,
S::Poll: testing_polis_statement_v1_state::IsSet,
S::Text: testing_polis_statement_v1_state::IsSet,
{
pub fn build(self) -> TestingPolisStatementV1<'a> {
TestingPolisStatementV1 {
created_at: self._fields.0.unwrap(),
poll: self._fields.1.unwrap(),
text: self._fields.2.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>,
>,
) -> TestingPolisStatementV1<'a> {
TestingPolisStatementV1 {
created_at: self._fields.0.unwrap(),
poll: self._fields.1.unwrap(),
text: self._fields.2.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_scot_comhairle_testingPolisStatementV1() -> 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("scot.comhairle.testingPolisStatementV1"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"A statement in the Polis-style deliberation system",
),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("text"), SmolStr::new_static("poll"),
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(
"Timestamp when the statement was created",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("poll"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("#pollRef"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("text"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The text content of the statement"),
),
max_length: Some(3000usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("pollRef"),
LexUserType::Object(LexObject {
description: Some(CowStr::new_static("Reference to a poll record")),
required: Some(
vec![SmolStr::new_static("uri"), SmolStr::new_static("cid")],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("cid"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Content identifier of the poll record"),
),
format: Some(LexStringFormat::Cid),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("uri"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("AT-URI of the poll record"),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod poll_ref_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 Uri;
type Cid;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Uri = Unset;
type Cid = Unset;
}
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 Uri = Set<members::uri>;
type Cid = S::Cid;
}
pub struct SetCid<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCid<S> {}
impl<S: State> State for SetCid<S> {
type Uri = S::Uri;
type Cid = Set<members::cid>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct uri(());
pub struct cid(());
}
}
pub struct PollRefBuilder<'a, S: poll_ref_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Cid<'a>>, Option<AtUri<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> PollRef<'a> {
pub fn new() -> PollRefBuilder<'a, poll_ref_state::Empty> {
PollRefBuilder::new()
}
}
impl<'a> PollRefBuilder<'a, poll_ref_state::Empty> {
pub fn new() -> Self {
PollRefBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> PollRefBuilder<'a, S>
where
S: poll_ref_state::State,
S::Cid: poll_ref_state::IsUnset,
{
pub fn cid(
mut self,
value: impl Into<Cid<'a>>,
) -> PollRefBuilder<'a, poll_ref_state::SetCid<S>> {
self._fields.0 = Option::Some(value.into());
PollRefBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PollRefBuilder<'a, S>
where
S: poll_ref_state::State,
S::Uri: poll_ref_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<AtUri<'a>>,
) -> PollRefBuilder<'a, poll_ref_state::SetUri<S>> {
self._fields.1 = Option::Some(value.into());
PollRefBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PollRefBuilder<'a, S>
where
S: poll_ref_state::State,
S::Uri: poll_ref_state::IsSet,
S::Cid: poll_ref_state::IsSet,
{
pub fn build(self) -> PollRef<'a> {
PollRef {
cid: self._fields.0.unwrap(),
uri: self._fields.1.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>,
>,
) -> PollRef<'a> {
PollRef {
cid: self._fields.0.unwrap(),
uri: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}