#[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::blob::BlobRef;
use jacquard_common::types::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Cid, Language};
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::media_ionosphere::Broadcast;
use crate::media_ionosphere::Credit;
use crate::media_ionosphere::Genre;
use crate::media_ionosphere::Membership;
use crate::media_ionosphere::Recording;
#[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 = "media.ionosphere.programme",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Programme<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub credits: Option<Vec<Credit<S>>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub delivery: Option<Vec<ProgrammeDeliveryItem<S>>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub genres: Option<Vec<Genre<S>>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub icon: Option<BlobRef<S>>,
pub ionosphere: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub keywords: Option<Vec<S>>,
pub language: Language,
#[serde(skip_serializing_if = "Option::is_none")]
pub member_of: Option<Vec<Membership<S>>>,
pub name: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub presentation_language: Option<Language>,
#[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(tag = "$type", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub enum ProgrammeDeliveryItem<S: BosStr = DefaultStr> {
#[serde(rename = "media.ionosphere.defs#broadcast")]
Broadcast(Box<Broadcast<S>>),
#[serde(rename = "media.ionosphere.defs#recording")]
Recording(Box<Recording<S>>),
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ProgrammeGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Programme<S>,
}
impl<S: BosStr> Programme<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, ProgrammeRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ProgrammeRecord;
impl XrpcResp for ProgrammeRecord {
const NSID: &'static str = "media.ionosphere.programme";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ProgrammeGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<ProgrammeGetRecordOutput<S>> for Programme<S> {
fn from(output: ProgrammeGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Programme<S> {
const NSID: &'static str = "media.ionosphere.programme";
type Record = ProgrammeRecord;
}
impl Collection for ProgrammeRecord {
const NSID: &'static str = "media.ionosphere.programme";
type Record = ProgrammeRecord;
}
impl<S: BosStr> LexiconSchema for Programme<S> {
fn nsid() -> &'static str {
"media.ionosphere.programme"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_media_ionosphere_programme()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.description {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 128usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("description"),
max: 128usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.icon {
{
let mime = value.blob().mime_type.as_str();
let accepted: &[&str] = &["image/*"];
let matched = accepted.iter().any(|pattern| {
if *pattern == "*/*" {
true
} else if pattern.ends_with("/*") {
let prefix = &pattern[..pattern.len() - 2];
mime.starts_with(prefix) && mime.as_bytes().get(prefix.len()) == Some(&b'/')
} else {
mime == *pattern
}
});
if !matched {
return Err(ConstraintError::BlobMimeTypeNotAccepted {
path: ValidationPath::from_field("icon"),
accepted: vec!["image/*".to_string()],
actual: mime.to_string(),
});
}
}
}
{
let value = &self.ionosphere;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 128usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("ionosphere"),
max: 128usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.name;
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 128usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("name"),
max: 128usize,
actual: count,
});
}
}
}
Ok(())
}
}
pub mod programme_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 Name;
type Language;
type Ionosphere;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Name = Unset;
type Language = Unset;
type Ionosphere = Unset;
}
pub struct SetName<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetName<St> {}
impl<St: State> State for SetName<St> {
type Name = Set<members::name>;
type Language = St::Language;
type Ionosphere = St::Ionosphere;
}
pub struct SetLanguage<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetLanguage<St> {}
impl<St: State> State for SetLanguage<St> {
type Name = St::Name;
type Language = Set<members::language>;
type Ionosphere = St::Ionosphere;
}
pub struct SetIonosphere<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetIonosphere<St> {}
impl<St: State> State for SetIonosphere<St> {
type Name = St::Name;
type Language = St::Language;
type Ionosphere = Set<members::ionosphere>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct name(());
pub struct language(());
pub struct ionosphere(());
}
}
pub struct ProgrammeBuilder<S: BosStr, St: programme_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Vec<Credit<S>>>,
Option<Vec<ProgrammeDeliveryItem<S>>>,
Option<S>,
Option<Vec<Genre<S>>>,
Option<BlobRef<S>>,
Option<S>,
Option<Vec<S>>,
Option<Language>,
Option<Vec<Membership<S>>>,
Option<S>,
Option<Language>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Programme<S> {
pub fn new() -> ProgrammeBuilder<S, programme_state::Empty> {
ProgrammeBuilder::new()
}
}
impl<S: BosStr> ProgrammeBuilder<S, programme_state::Empty> {
pub fn new() -> Self {
ProgrammeBuilder {
_state: PhantomData,
_fields: (
None, None, None, None, None, None, None, None, None, None, None,
),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: programme_state::State> ProgrammeBuilder<S, St> {
pub fn credits(mut self, value: impl Into<Option<Vec<Credit<S>>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_credits(mut self, value: Option<Vec<Credit<S>>>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St: programme_state::State> ProgrammeBuilder<S, St> {
pub fn delivery(mut self, value: impl Into<Option<Vec<ProgrammeDeliveryItem<S>>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_delivery(mut self, value: Option<Vec<ProgrammeDeliveryItem<S>>>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St: programme_state::State> ProgrammeBuilder<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: programme_state::State> ProgrammeBuilder<S, St> {
pub fn genres(mut self, value: impl Into<Option<Vec<Genre<S>>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_genres(mut self, value: Option<Vec<Genre<S>>>) -> Self {
self._fields.3 = value;
self
}
}
impl<S: BosStr, St: programme_state::State> ProgrammeBuilder<S, St> {
pub fn icon(mut self, value: impl Into<Option<BlobRef<S>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_icon(mut self, value: Option<BlobRef<S>>) -> Self {
self._fields.4 = value;
self
}
}
impl<S: BosStr, St> ProgrammeBuilder<S, St>
where
St: programme_state::State,
St::Ionosphere: programme_state::IsUnset,
{
pub fn ionosphere(
mut self,
value: impl Into<S>,
) -> ProgrammeBuilder<S, programme_state::SetIonosphere<St>> {
self._fields.5 = Option::Some(value.into());
ProgrammeBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: programme_state::State> ProgrammeBuilder<S, St> {
pub fn keywords(mut self, value: impl Into<Option<Vec<S>>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_keywords(mut self, value: Option<Vec<S>>) -> Self {
self._fields.6 = value;
self
}
}
impl<S: BosStr, St> ProgrammeBuilder<S, St>
where
St: programme_state::State,
St::Language: programme_state::IsUnset,
{
pub fn language(
mut self,
value: impl Into<Language>,
) -> ProgrammeBuilder<S, programme_state::SetLanguage<St>> {
self._fields.7 = Option::Some(value.into());
ProgrammeBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: programme_state::State> ProgrammeBuilder<S, St> {
pub fn member_of(mut self, value: impl Into<Option<Vec<Membership<S>>>>) -> Self {
self._fields.8 = value.into();
self
}
pub fn maybe_member_of(mut self, value: Option<Vec<Membership<S>>>) -> Self {
self._fields.8 = value;
self
}
}
impl<S: BosStr, St> ProgrammeBuilder<S, St>
where
St: programme_state::State,
St::Name: programme_state::IsUnset,
{
pub fn name(
mut self,
value: impl Into<S>,
) -> ProgrammeBuilder<S, programme_state::SetName<St>> {
self._fields.9 = Option::Some(value.into());
ProgrammeBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: programme_state::State> ProgrammeBuilder<S, St> {
pub fn presentation_language(mut self, value: impl Into<Option<Language>>) -> Self {
self._fields.10 = value.into();
self
}
pub fn maybe_presentation_language(mut self, value: Option<Language>) -> Self {
self._fields.10 = value;
self
}
}
impl<S: BosStr, St> ProgrammeBuilder<S, St>
where
St: programme_state::State,
St::Name: programme_state::IsSet,
St::Language: programme_state::IsSet,
St::Ionosphere: programme_state::IsSet,
{
pub fn build(self) -> Programme<S> {
Programme {
credits: self._fields.0,
delivery: self._fields.1,
description: self._fields.2,
genres: self._fields.3,
icon: self._fields.4,
ionosphere: self._fields.5.unwrap(),
keywords: self._fields.6,
language: self._fields.7.unwrap(),
member_of: self._fields.8,
name: self._fields.9.unwrap(),
presentation_language: self._fields.10,
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Programme<S> {
Programme {
credits: self._fields.0,
delivery: self._fields.1,
description: self._fields.2,
genres: self._fields.3,
icon: self._fields.4,
ionosphere: self._fields.5.unwrap(),
keywords: self._fields.6,
language: self._fields.7.unwrap(),
member_of: self._fields.8,
name: self._fields.9.unwrap(),
presentation_language: self._fields.10,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_media_ionosphere_programme() -> 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("media.ionosphere.programme"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"A programme represents an individual piece of media. It does not represent a long-running show.",
),
),
key: Some(CowStr::new_static("any")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("ionosphere"),
SmolStr::new_static("name"), SmolStr::new_static("language")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("credits"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("media.ionosphere.defs#credit"),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("delivery"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::Union(LexRefUnion {
refs: vec![
CowStr::new_static("media.ionosphere.defs#broadcast"),
CowStr::new_static("media.ionosphere.defs#recording")
],
closed: Some(true),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("description"),
LexObjectProperty::String(LexString {
max_length: Some(128usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("genres"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("media.ionosphere.defs#genre"),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("icon"),
LexObjectProperty::Blob(LexBlob { ..Default::default() }),
);
map.insert(
SmolStr::new_static("ionosphere"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("Version identifier")),
max_length: Some(128usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("keywords"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::String(LexString {
max_length: Some(128usize),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("language"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The language of the string values in this record. NOT the language of the content",
),
),
format: Some(LexStringFormat::Language),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("memberOf"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static(
"A list of groups this record is a member of",
),
),
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static(
"media.ionosphere.defs#membership",
),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString {
max_graphemes: Some(128usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("presentationLanguage"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Language),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}