#[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};
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 = "ch.indiemusi.social.song", tag = "$type")]
pub struct Song<'a> {
pub joiners_needed: i64,
#[serde(borrow)]
pub name: CowStr<'a>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct SongGetRecordOutput<'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: Song<'a>,
}
impl<'a> Song<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, SongRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct SongRecord;
impl XrpcResp for SongRecord {
const NSID: &'static str = "ch.indiemusi.social.song";
const ENCODING: &'static str = "application/json";
type Output<'de> = SongGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<SongGetRecordOutput<'_>> for Song<'_> {
fn from(output: SongGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Song<'_> {
const NSID: &'static str = "ch.indiemusi.social.song";
type Record = SongRecord;
}
impl Collection for SongRecord {
const NSID: &'static str = "ch.indiemusi.social.song";
type Record = SongRecord;
}
impl<'a> LexiconSchema for Song<'a> {
fn nsid() -> &'static str {
"ch.indiemusi.social.song"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_ch_indiemusi_social_song()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.joiners_needed;
if *value < 1i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("joiners_needed"),
min: 1i64,
actual: *value,
});
}
}
{
let value = &self.name;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 640usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("name"),
max: 640usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.name;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) < 1usize {
return Err(ConstraintError::MinLength {
path: ValidationPath::from_field("name"),
min: 1usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.name;
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 64usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("name"),
max: 64usize,
actual: count,
});
}
}
}
Ok(())
}
}
pub mod song_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 Name;
type JoinersNeeded;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Name = Unset;
type JoinersNeeded = Unset;
}
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 Name = Set<members::name>;
type JoinersNeeded = S::JoinersNeeded;
}
pub struct SetJoinersNeeded<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetJoinersNeeded<S> {}
impl<S: State> State for SetJoinersNeeded<S> {
type Name = S::Name;
type JoinersNeeded = Set<members::joiners_needed>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct name(());
pub struct joiners_needed(());
}
}
pub struct SongBuilder<'a, S: song_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<i64>, Option<CowStr<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Song<'a> {
pub fn new() -> SongBuilder<'a, song_state::Empty> {
SongBuilder::new()
}
}
impl<'a> SongBuilder<'a, song_state::Empty> {
pub fn new() -> Self {
SongBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> SongBuilder<'a, S>
where
S: song_state::State,
S::JoinersNeeded: song_state::IsUnset,
{
pub fn joiners_needed(
mut self,
value: impl Into<i64>,
) -> SongBuilder<'a, song_state::SetJoinersNeeded<S>> {
self._fields.0 = Option::Some(value.into());
SongBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> SongBuilder<'a, S>
where
S: song_state::State,
S::Name: song_state::IsUnset,
{
pub fn name(
mut self,
value: impl Into<CowStr<'a>>,
) -> SongBuilder<'a, song_state::SetName<S>> {
self._fields.1 = Option::Some(value.into());
SongBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> SongBuilder<'a, S>
where
S: song_state::State,
S::Name: song_state::IsSet,
S::JoinersNeeded: song_state::IsSet,
{
pub fn build(self) -> Song<'a> {
Song {
joiners_needed: self._fields.0.unwrap(),
name: 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>,
>,
) -> Song<'a> {
Song {
joiners_needed: self._fields.0.unwrap(),
name: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_ch_indiemusi_social_song() -> 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("ch.indiemusi.social.song"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"A social song, that needs a groups of listeners to be fully enjoyed.",
),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("name"),
SmolStr::new_static("joinersNeeded")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("joinersNeeded"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(1i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("Name of the song")),
min_length: Some(1usize),
max_length: Some(640usize),
max_graphemes: Some(64usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}