#[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::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::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::media_ionosphere::Broadcast;
use crate::media_ionosphere::Credit;
use crate::media_ionosphere::Genre;
use crate::media_ionosphere::Membership;
use crate::media_ionosphere::Recording;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Programme<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub credits: Option<Vec<Credit<'a>>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub delivery: Option<Vec<ProgrammeDeliveryItem<'a>>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub description: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub genres: Option<Vec<Genre<'a>>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub icon: Option<BlobRef<'a>>,
#[serde(borrow)]
pub ionosphere: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub keywords: Option<Vec<CowStr<'a>>>,
pub language: Language,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub member_of: Option<Vec<Membership<'a>>>,
#[serde(borrow)]
pub name: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
pub presentation_language: Option<Language>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum ProgrammeDeliveryItem<'a> {
#[serde(rename = "media.ionosphere.defs#broadcast")]
Broadcast(Box<Broadcast<'a>>),
#[serde(rename = "media.ionosphere.defs#recording")]
Recording(Box<Recording<'a>>),
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ProgrammeGetRecordOutput<'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: Programme<'a>,
}
impl<'a> Programme<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, ProgrammeRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[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<'de> = ProgrammeGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<ProgrammeGetRecordOutput<'_>> for Programme<'_> {
fn from(output: ProgrammeGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Programme<'_> {
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<'a> LexiconSchema for Programme<'a> {
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::{Set, Unset, IsSet, IsUnset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Ionosphere;
type Language;
type Name;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Ionosphere = Unset;
type Language = Unset;
type Name = Unset;
}
pub struct SetIonosphere<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetIonosphere<S> {}
impl<S: State> State for SetIonosphere<S> {
type Ionosphere = Set<members::ionosphere>;
type Language = S::Language;
type Name = S::Name;
}
pub struct SetLanguage<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetLanguage<S> {}
impl<S: State> State for SetLanguage<S> {
type Ionosphere = S::Ionosphere;
type Language = Set<members::language>;
type Name = S::Name;
}
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 Ionosphere = S::Ionosphere;
type Language = S::Language;
type Name = Set<members::name>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct ionosphere(());
pub struct language(());
pub struct name(());
}
}
pub struct ProgrammeBuilder<'a, S: programme_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<Vec<Credit<'a>>>,
Option<Vec<ProgrammeDeliveryItem<'a>>>,
Option<CowStr<'a>>,
Option<Vec<Genre<'a>>>,
Option<BlobRef<'a>>,
Option<CowStr<'a>>,
Option<Vec<CowStr<'a>>>,
Option<Language>,
Option<Vec<Membership<'a>>>,
Option<CowStr<'a>>,
Option<Language>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Programme<'a> {
pub fn new() -> ProgrammeBuilder<'a, programme_state::Empty> {
ProgrammeBuilder::new()
}
}
impl<'a> ProgrammeBuilder<'a, programme_state::Empty> {
pub fn new() -> Self {
ProgrammeBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: programme_state::State> ProgrammeBuilder<'a, S> {
pub fn credits(mut self, value: impl Into<Option<Vec<Credit<'a>>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_credits(mut self, value: Option<Vec<Credit<'a>>>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S: programme_state::State> ProgrammeBuilder<'a, S> {
pub fn delivery(
mut self,
value: impl Into<Option<Vec<ProgrammeDeliveryItem<'a>>>>,
) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_delivery(
mut self,
value: Option<Vec<ProgrammeDeliveryItem<'a>>>,
) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: programme_state::State> ProgrammeBuilder<'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: programme_state::State> ProgrammeBuilder<'a, S> {
pub fn genres(mut self, value: impl Into<Option<Vec<Genre<'a>>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_genres(mut self, value: Option<Vec<Genre<'a>>>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S: programme_state::State> ProgrammeBuilder<'a, S> {
pub fn icon(mut self, value: impl Into<Option<BlobRef<'a>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_icon(mut self, value: Option<BlobRef<'a>>) -> Self {
self._fields.4 = value;
self
}
}
impl<'a, S> ProgrammeBuilder<'a, S>
where
S: programme_state::State,
S::Ionosphere: programme_state::IsUnset,
{
pub fn ionosphere(
mut self,
value: impl Into<CowStr<'a>>,
) -> ProgrammeBuilder<'a, programme_state::SetIonosphere<S>> {
self._fields.5 = Option::Some(value.into());
ProgrammeBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: programme_state::State> ProgrammeBuilder<'a, S> {
pub fn keywords(mut self, value: impl Into<Option<Vec<CowStr<'a>>>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_keywords(mut self, value: Option<Vec<CowStr<'a>>>) -> Self {
self._fields.6 = value;
self
}
}
impl<'a, S> ProgrammeBuilder<'a, S>
where
S: programme_state::State,
S::Language: programme_state::IsUnset,
{
pub fn language(
mut self,
value: impl Into<Language>,
) -> ProgrammeBuilder<'a, programme_state::SetLanguage<S>> {
self._fields.7 = Option::Some(value.into());
ProgrammeBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: programme_state::State> ProgrammeBuilder<'a, S> {
pub fn member_of(mut self, value: impl Into<Option<Vec<Membership<'a>>>>) -> Self {
self._fields.8 = value.into();
self
}
pub fn maybe_member_of(mut self, value: Option<Vec<Membership<'a>>>) -> Self {
self._fields.8 = value;
self
}
}
impl<'a, S> ProgrammeBuilder<'a, S>
where
S: programme_state::State,
S::Name: programme_state::IsUnset,
{
pub fn name(
mut self,
value: impl Into<CowStr<'a>>,
) -> ProgrammeBuilder<'a, programme_state::SetName<S>> {
self._fields.9 = Option::Some(value.into());
ProgrammeBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: programme_state::State> ProgrammeBuilder<'a, S> {
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<'a, S> ProgrammeBuilder<'a, S>
where
S: programme_state::State,
S::Ionosphere: programme_state::IsSet,
S::Language: programme_state::IsSet,
S::Name: programme_state::IsSet,
{
pub fn build(self) -> Programme<'a> {
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<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> Programme<'a> {
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> {
#[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("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()
}
}