#[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::{Did, 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};
use crate::ch_indiemusi::alpha::actor::publishing_owner::PublishingOwner;
use crate::ch_indiemusi::alpha::song;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase")]
pub struct InterestedParty<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub collecting_society: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub did: Option<Did<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub ipi: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub mechanical_royalties_percentage: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub name: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub performance_royalties_percentage: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub publishing_owner: Option<PublishingOwner<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub role: Option<CowStr<'a>>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", rename = "ch.indiemusi.alpha.song", tag = "$type")]
pub struct Song<'a> {
#[serde(borrow)]
pub interested_parties: Vec<song::InterestedParty<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub iswc: Option<CowStr<'a>>,
#[serde(borrow)]
pub title: 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())?)
}
}
impl<'a> LexiconSchema for InterestedParty<'a> {
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<'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.alpha.song";
type Record = SongRecord;
}
impl Collection for SongRecord {
const NSID: &'static str = "ch.indiemusi.alpha.song";
type Record = SongRecord;
}
impl<'a> LexiconSchema for Song<'a> {
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> {
#[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.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::{Set, Unset, IsSet, IsUnset};
#[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<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetInterestedParties<S> {}
impl<S: State> State for SetInterestedParties<S> {
type InterestedParties = Set<members::interested_parties>;
type Title = S::Title;
}
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 InterestedParties = S::InterestedParties;
type Title = Set<members::title>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct interested_parties(());
pub struct title(());
}
}
pub struct SongBuilder<'a, S: song_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<Vec<song::InterestedParty<'a>>>,
Option<CowStr<'a>>,
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, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> SongBuilder<'a, S>
where
S: song_state::State,
S::InterestedParties: song_state::IsUnset,
{
pub fn interested_parties(
mut self,
value: impl Into<Vec<song::InterestedParty<'a>>>,
) -> SongBuilder<'a, song_state::SetInterestedParties<S>> {
self._fields.0 = Option::Some(value.into());
SongBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: song_state::State> SongBuilder<'a, S> {
pub fn iswc(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_iswc(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S> SongBuilder<'a, S>
where
S: song_state::State,
S::Title: song_state::IsUnset,
{
pub fn title(
mut self,
value: impl Into<CowStr<'a>>,
) -> SongBuilder<'a, song_state::SetTitle<S>> {
self._fields.2 = Option::Some(value.into());
SongBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> SongBuilder<'a, S>
where
S: song_state::State,
S::InterestedParties: song_state::IsSet,
S::Title: song_state::IsSet,
{
pub fn build(self) -> Song<'a> {
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<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> Song<'a> {
Song {
interested_parties: self._fields.0.unwrap(),
iswc: self._fields.1,
title: self._fields.2.unwrap(),
extra_data: Some(extra_data),
}
}
}