#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{BosStr, CowStr, DefaultStr, FromStaticStr};
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::deps::smol_str::SmolStr;
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::types::value::Data;
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::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "net.asadaame5121.at-circle.ring",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Ring<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub acceptance_policy: Option<RingAcceptancePolicy<S>>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<S>,
pub status: RingStatus<S>,
pub title: S,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum RingAcceptancePolicy<S: BosStr = DefaultStr> {
Automatic,
Manual,
Other(S),
}
impl<S: BosStr> RingAcceptancePolicy<S> {
pub fn as_str(&self) -> &str {
match self {
Self::Automatic => "automatic",
Self::Manual => "manual",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"automatic" => Self::Automatic,
"manual" => Self::Manual,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for RingAcceptancePolicy<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for RingAcceptancePolicy<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for RingAcceptancePolicy<S> {
fn serialize<Ser>(&self, serializer: Ser) -> Result<Ser::Ok, Ser::Error>
where
Ser: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, S: Deserialize<'de> + BosStr> Deserialize<'de> for RingAcceptancePolicy<S> {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = S::deserialize(deserializer)?;
Ok(Self::from_value(s))
}
}
impl<S: BosStr + Default> Default for RingAcceptancePolicy<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for RingAcceptancePolicy<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = RingAcceptancePolicy<S::Output>;
fn into_static(self) -> Self::Output {
match self {
RingAcceptancePolicy::Automatic => RingAcceptancePolicy::Automatic,
RingAcceptancePolicy::Manual => RingAcceptancePolicy::Manual,
RingAcceptancePolicy::Other(v) => RingAcceptancePolicy::Other(v.into_static()),
}
}
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum RingStatus<S: BosStr = DefaultStr> {
Open,
Closed,
Other(S),
}
impl<S: BosStr> RingStatus<S> {
pub fn as_str(&self) -> &str {
match self {
Self::Open => "open",
Self::Closed => "closed",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"open" => Self::Open,
"closed" => Self::Closed,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for RingStatus<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for RingStatus<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for RingStatus<S> {
fn serialize<Ser>(&self, serializer: Ser) -> Result<Ser::Ok, Ser::Error>
where
Ser: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, S: Deserialize<'de> + BosStr> Deserialize<'de> for RingStatus<S> {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = S::deserialize(deserializer)?;
Ok(Self::from_value(s))
}
}
impl<S: BosStr + Default> Default for RingStatus<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for RingStatus<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = RingStatus<S::Output>;
fn into_static(self) -> Self::Output {
match self {
RingStatus::Open => RingStatus::Open,
RingStatus::Closed => RingStatus::Closed,
RingStatus::Other(v) => RingStatus::Other(v.into_static()),
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct RingGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Ring<S>,
}
impl<S: BosStr> Ring<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, RingRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct RingRecord;
impl XrpcResp for RingRecord {
const NSID: &'static str = "net.asadaame5121.at-circle.ring";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = RingGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<RingGetRecordOutput<S>> for Ring<S> {
fn from(output: RingGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Ring<S> {
const NSID: &'static str = "net.asadaame5121.at-circle.ring";
type Record = RingRecord;
}
impl Collection for RingRecord {
const NSID: &'static str = "net.asadaame5121.at-circle.ring";
type Record = RingRecord;
}
impl<S: BosStr> LexiconSchema for Ring<S> {
fn nsid() -> &'static str {
"net.asadaame5121.at-circle.ring"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_net_asadaame5121_at_circle_ring()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.acceptance_policy {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 64usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("acceptance_policy"),
max: 64usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.description {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 10000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("description"),
max: 10000usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.description {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 1000usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("description"),
max: 1000usize,
actual: count,
});
}
}
}
{
let value = &self.status;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 64usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("status"),
max: 64usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.title;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 1000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("title"),
max: 1000usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.title;
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 100usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("title"),
max: 100usize,
actual: count,
});
}
}
}
Ok(())
}
}
pub mod ring_state {
pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Title;
type CreatedAt;
type Status;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Title = Unset;
type CreatedAt = Unset;
type Status = Unset;
}
pub struct SetTitle<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetTitle<St> {}
impl<St: State> State for SetTitle<St> {
type Title = Set<members::title>;
type CreatedAt = St::CreatedAt;
type Status = St::Status;
}
pub struct SetCreatedAt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCreatedAt<St> {}
impl<St: State> State for SetCreatedAt<St> {
type Title = St::Title;
type CreatedAt = Set<members::created_at>;
type Status = St::Status;
}
pub struct SetStatus<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetStatus<St> {}
impl<St: State> State for SetStatus<St> {
type Title = St::Title;
type CreatedAt = St::CreatedAt;
type Status = Set<members::status>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct title(());
pub struct created_at(());
pub struct status(());
}
}
pub struct RingBuilder<S: BosStr, St: ring_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<RingAcceptancePolicy<S>>,
Option<Datetime>,
Option<S>,
Option<RingStatus<S>>,
Option<S>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Ring<S> {
pub fn new() -> RingBuilder<S, ring_state::Empty> {
RingBuilder::new()
}
}
impl<S: BosStr> RingBuilder<S, ring_state::Empty> {
pub fn new() -> Self {
RingBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: ring_state::State> RingBuilder<S, St> {
pub fn acceptance_policy(mut self, value: impl Into<Option<RingAcceptancePolicy<S>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_acceptance_policy(mut self, value: Option<RingAcceptancePolicy<S>>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St> RingBuilder<S, St>
where
St: ring_state::State,
St::CreatedAt: ring_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> RingBuilder<S, ring_state::SetCreatedAt<St>> {
self._fields.1 = Option::Some(value.into());
RingBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: ring_state::State> RingBuilder<S, St> {
pub fn description(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<S>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St> RingBuilder<S, St>
where
St: ring_state::State,
St::Status: ring_state::IsUnset,
{
pub fn status(
mut self,
value: impl Into<RingStatus<S>>,
) -> RingBuilder<S, ring_state::SetStatus<St>> {
self._fields.3 = Option::Some(value.into());
RingBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> RingBuilder<S, St>
where
St: ring_state::State,
St::Title: ring_state::IsUnset,
{
pub fn title(mut self, value: impl Into<S>) -> RingBuilder<S, ring_state::SetTitle<St>> {
self._fields.4 = Option::Some(value.into());
RingBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> RingBuilder<S, St>
where
St: ring_state::State,
St::Title: ring_state::IsSet,
St::CreatedAt: ring_state::IsSet,
St::Status: ring_state::IsSet,
{
pub fn build(self) -> Ring<S> {
Ring {
acceptance_policy: self._fields.0,
created_at: self._fields.1.unwrap(),
description: self._fields.2,
status: self._fields.3.unwrap(),
title: self._fields.4.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Ring<S> {
Ring {
acceptance_policy: self._fields.0,
created_at: self._fields.1.unwrap(),
description: self._fields.2,
status: self._fields.3.unwrap(),
title: self._fields.4.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_net_asadaame5121_at_circle_ring() -> LexiconDoc<'static> {
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
LexiconDoc {
lexicon: Lexicon::Lexicon1,
id: CowStr::new_static("net.asadaame5121.at-circle.ring"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(CowStr::new_static("An at-circle group definition")),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(vec![
SmolStr::new_static("title"),
SmolStr::new_static("createdAt"),
SmolStr::new_static("status"),
]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("acceptancePolicy"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"How new members are accepted",
)),
max_length: Some(64usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("description"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"Description of the circle",
)),
max_length: Some(10000usize),
max_graphemes: Some(1000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("status"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("Recruitment status")),
max_length: Some(64usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("title"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("Name of the circle")),
max_length: Some(1000usize),
max_graphemes: Some(100usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}