#[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, Did};
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;
use crate::ch_indiemusi::alpha::actor::publishing_owner::PublishingOwner;
use crate::ch_indiemusi::alpha::song;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct InterestedParty<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub collecting_society: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub did: Option<Did<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub ipi: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub mechanical_royalties_percentage: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub name: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub performance_royalties_percentage: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub publishing_owner: Option<PublishingOwner<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub role: Option<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "ch.indiemusi.alpha.song",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Song<S: BosStr = DefaultStr> {
pub interested_parties: Vec<song::InterestedParty<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub iswc: Option<S>,
pub title: S,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct SongGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Song<S>,
}
impl<S: BosStr> Song<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, SongRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
impl<S: BosStr> LexiconSchema for InterestedParty<S> {
fn nsid() -> &'static str {
"ch.indiemusi.alpha.song"
}
fn def_name() -> &'static str {
"interestedParty"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_ch_indiemusi_alpha_song()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.collecting_society {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 255usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("collecting_society"),
max: 255usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.ipi {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 11usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("ipi"),
max: 11usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.name {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 255usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("name"),
max: 255usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.role {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 255usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("role"),
max: 255usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct SongRecord;
impl XrpcResp for SongRecord {
const NSID: &'static str = "ch.indiemusi.alpha.song";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = SongGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<SongGetRecordOutput<S>> for Song<S> {
fn from(output: SongGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Song<S> {
const NSID: &'static str = "ch.indiemusi.alpha.song";
type Record = SongRecord;
}
impl Collection for SongRecord {
const NSID: &'static str = "ch.indiemusi.alpha.song";
type Record = SongRecord;
}
impl<S: BosStr> LexiconSchema for Song<S> {
fn nsid() -> &'static str {
"ch.indiemusi.alpha.song"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_ch_indiemusi_alpha_song()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.interested_parties;
#[allow(unused_comparisons)]
if value.len() < 1usize {
return Err(ConstraintError::MinLength {
path: ValidationPath::from_field("interested_parties"),
min: 1usize,
actual: value.len(),
});
}
}
if let Some(ref value) = self.iswc {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 13usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("iswc"),
max: 13usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.title;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 255usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("title"),
max: 255usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
fn lexicon_doc_ch_indiemusi_alpha_song() -> 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("ch.indiemusi.alpha.song"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("interestedParty"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static(
"An interested party associated with the song (author, composer, publisher)",
),
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("collectingSociety"),
LexObjectProperty::String(LexString {
max_length: Some(255usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("did"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Did),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("ipi"),
LexObjectProperty::String(LexString {
max_length: Some(11usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("mechanicalRoyaltiesPercentage"),
LexObjectProperty::Integer(LexInteger {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString {
max_length: Some(255usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("performanceRoyaltiesPercentage"),
LexObjectProperty::Integer(LexInteger {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("publishingOwner"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static(
"ch.indiemusi.alpha.actor.publishingOwner",
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("role"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Role of the interested party (e.g., 'author', 'composer', 'publisher')",
),
),
max_length: Some(255usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"A song or musical work: the melody, lyrics, and arrangement created by composers and authors",
),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("title"),
SmolStr::new_static("interestedParties")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("interestedParties"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static(
"List of interested parties (authors, composers, publishers) associated with this song",
),
),
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("#interestedParty"),
..Default::default()
}),
min_length: Some(1usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("iswc"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"ISWC (International Standard Musical Work Code) with which the song is registered at a collecting society",
),
),
max_length: Some(13usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("title"),
LexObjectProperty::String(LexString {
max_length: Some(255usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod song_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 InterestedParties;
type Title;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type InterestedParties = Unset;
type Title = Unset;
}
pub struct SetInterestedParties<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetInterestedParties<St> {}
impl<St: State> State for SetInterestedParties<St> {
type InterestedParties = Set<members::interested_parties>;
type Title = St::Title;
}
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 InterestedParties = St::InterestedParties;
type Title = Set<members::title>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct interested_parties(());
pub struct title(());
}
}
pub struct SongBuilder<S: BosStr, St: song_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Vec<song::InterestedParty<S>>>, Option<S>, Option<S>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Song<S> {
pub fn new() -> SongBuilder<S, song_state::Empty> {
SongBuilder::new()
}
}
impl<S: BosStr> SongBuilder<S, song_state::Empty> {
pub fn new() -> Self {
SongBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> SongBuilder<S, St>
where
St: song_state::State,
St::InterestedParties: song_state::IsUnset,
{
pub fn interested_parties(
mut self,
value: impl Into<Vec<song::InterestedParty<S>>>,
) -> SongBuilder<S, song_state::SetInterestedParties<St>> {
self._fields.0 = Option::Some(value.into());
SongBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: song_state::State> SongBuilder<S, St> {
pub fn iswc(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_iswc(mut self, value: Option<S>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St> SongBuilder<S, St>
where
St: song_state::State,
St::Title: song_state::IsUnset,
{
pub fn title(mut self, value: impl Into<S>) -> SongBuilder<S, song_state::SetTitle<St>> {
self._fields.2 = Option::Some(value.into());
SongBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> SongBuilder<S, St>
where
St: song_state::State,
St::InterestedParties: song_state::IsSet,
St::Title: song_state::IsSet,
{
pub fn build(self) -> Song<S> {
Song {
interested_parties: self._fields.0.unwrap(),
iswc: self._fields.1,
title: self._fields.2.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Song<S> {
Song {
interested_parties: self._fields.0.unwrap(),
iswc: self._fields.1,
title: self._fields.2.unwrap(),
extra_data: Some(extra_data),
}
}
}