#[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};
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "net.asadaame5121.at-circle.ring",
tag = "$type"
)]
pub struct Ring<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub acceptance_policy: Option<RingAcceptancePolicy<'a>>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub description: Option<CowStr<'a>>,
#[serde(borrow)]
pub status: RingStatus<'a>,
#[serde(borrow)]
pub title: CowStr<'a>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum RingAcceptancePolicy<'a> {
Automatic,
Manual,
Other(CowStr<'a>),
}
impl<'a> RingAcceptancePolicy<'a> {
pub fn as_str(&self) -> &str {
match self {
Self::Automatic => "automatic",
Self::Manual => "manual",
Self::Other(s) => s.as_ref(),
}
}
}
impl<'a> From<&'a str> for RingAcceptancePolicy<'a> {
fn from(s: &'a str) -> Self {
match s {
"automatic" => Self::Automatic,
"manual" => Self::Manual,
_ => Self::Other(CowStr::from(s)),
}
}
}
impl<'a> From<String> for RingAcceptancePolicy<'a> {
fn from(s: String) -> Self {
match s.as_str() {
"automatic" => Self::Automatic,
"manual" => Self::Manual,
_ => Self::Other(CowStr::from(s)),
}
}
}
impl<'a> core::fmt::Display for RingAcceptancePolicy<'a> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<'a> AsRef<str> for RingAcceptancePolicy<'a> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<'a> serde::Serialize for RingAcceptancePolicy<'a> {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, 'a> serde::Deserialize<'de> for RingAcceptancePolicy<'a>
where
'de: 'a,
{
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = <&'de str>::deserialize(deserializer)?;
Ok(Self::from(s))
}
}
impl<'a> Default for RingAcceptancePolicy<'a> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl jacquard_common::IntoStatic for RingAcceptancePolicy<'_> {
type Output = RingAcceptancePolicy<'static>;
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<'a> {
Open,
Closed,
Other(CowStr<'a>),
}
impl<'a> RingStatus<'a> {
pub fn as_str(&self) -> &str {
match self {
Self::Open => "open",
Self::Closed => "closed",
Self::Other(s) => s.as_ref(),
}
}
}
impl<'a> From<&'a str> for RingStatus<'a> {
fn from(s: &'a str) -> Self {
match s {
"open" => Self::Open,
"closed" => Self::Closed,
_ => Self::Other(CowStr::from(s)),
}
}
}
impl<'a> From<String> for RingStatus<'a> {
fn from(s: String) -> Self {
match s.as_str() {
"open" => Self::Open,
"closed" => Self::Closed,
_ => Self::Other(CowStr::from(s)),
}
}
}
impl<'a> core::fmt::Display for RingStatus<'a> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<'a> AsRef<str> for RingStatus<'a> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<'a> serde::Serialize for RingStatus<'a> {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, 'a> serde::Deserialize<'de> for RingStatus<'a>
where
'de: 'a,
{
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = <&'de str>::deserialize(deserializer)?;
Ok(Self::from(s))
}
}
impl<'a> Default for RingStatus<'a> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl jacquard_common::IntoStatic for RingStatus<'_> {
type Output = RingStatus<'static>;
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<'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: Ring<'a>,
}
impl<'a> Ring<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, RingRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[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<'de> = RingGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<RingGetRecordOutput<'_>> for Ring<'_> {
fn from(output: RingGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Ring<'_> {
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<'a> LexiconSchema for Ring<'a> {
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::{Set, Unset, IsSet, IsUnset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type CreatedAt;
type Title;
type Status;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CreatedAt = Unset;
type Title = Unset;
type Status = 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 Title = S::Title;
type Status = S::Status;
}
pub struct SetTitle<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetTitle<S> {}
impl<S: State> State for SetTitle<S> {
type CreatedAt = S::CreatedAt;
type Title = Set<members::title>;
type Status = S::Status;
}
pub struct SetStatus<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetStatus<S> {}
impl<S: State> State for SetStatus<S> {
type CreatedAt = S::CreatedAt;
type Title = S::Title;
type Status = Set<members::status>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct created_at(());
pub struct title(());
pub struct status(());
}
}
pub struct RingBuilder<'a, S: ring_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<RingAcceptancePolicy<'a>>,
Option<Datetime>,
Option<CowStr<'a>>,
Option<RingStatus<'a>>,
Option<CowStr<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Ring<'a> {
pub fn new() -> RingBuilder<'a, ring_state::Empty> {
RingBuilder::new()
}
}
impl<'a> RingBuilder<'a, ring_state::Empty> {
pub fn new() -> Self {
RingBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: ring_state::State> RingBuilder<'a, S> {
pub fn acceptance_policy(
mut self,
value: impl Into<Option<RingAcceptancePolicy<'a>>>,
) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_acceptance_policy(
mut self,
value: Option<RingAcceptancePolicy<'a>>,
) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S> RingBuilder<'a, S>
where
S: ring_state::State,
S::CreatedAt: ring_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> RingBuilder<'a, ring_state::SetCreatedAt<S>> {
self._fields.1 = Option::Some(value.into());
RingBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: ring_state::State> RingBuilder<'a, S> {
pub fn description(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S> RingBuilder<'a, S>
where
S: ring_state::State,
S::Status: ring_state::IsUnset,
{
pub fn status(
mut self,
value: impl Into<RingStatus<'a>>,
) -> RingBuilder<'a, ring_state::SetStatus<S>> {
self._fields.3 = Option::Some(value.into());
RingBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> RingBuilder<'a, S>
where
S: ring_state::State,
S::Title: ring_state::IsUnset,
{
pub fn title(
mut self,
value: impl Into<CowStr<'a>>,
) -> RingBuilder<'a, ring_state::SetTitle<S>> {
self._fields.4 = Option::Some(value.into());
RingBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> RingBuilder<'a, S>
where
S: ring_state::State,
S::CreatedAt: ring_state::IsSet,
S::Title: ring_state::IsSet,
S::Status: ring_state::IsSet,
{
pub fn build(self) -> Ring<'a> {
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<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> Ring<'a> {
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> {
#[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.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()
}
}