#[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::Genre;
use crate::media_ionosphere::Membership;
#[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.group",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Group<S: BosStr = DefaultStr> {
#[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>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub kind: Option<GroupKind<S>>,
pub language: Language,
#[serde(skip_serializing_if = "Option::is_none")]
pub member_of: Option<Vec<Membership<S>>>,
pub name: S,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum GroupKind<S: BosStr = DefaultStr> {
Series,
Show,
Concept,
Magazine,
Topic,
OtherCollection,
OtherChoice,
Other(S),
}
impl<S: BosStr> GroupKind<S> {
pub fn as_str(&self) -> &str {
match self {
Self::Series => "series",
Self::Show => "show",
Self::Concept => "concept",
Self::Magazine => "magazine",
Self::Topic => "topic",
Self::OtherCollection => "otherCollection",
Self::OtherChoice => "otherChoice",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"series" => Self::Series,
"show" => Self::Show,
"concept" => Self::Concept,
"magazine" => Self::Magazine,
"topic" => Self::Topic,
"otherCollection" => Self::OtherCollection,
"otherChoice" => Self::OtherChoice,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for GroupKind<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for GroupKind<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for GroupKind<S> {
fn serialize<Ser>(&self, serializer: Ser) -> Result<Ser::Ok, Ser::Error>
where
Ser: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, S: Deserialize<'de> + BosStr> Deserialize<'de> for GroupKind<S> {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = S::deserialize(deserializer)?;
Ok(Self::from_value(s))
}
}
impl<S: BosStr + Default> Default for GroupKind<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for GroupKind<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = GroupKind<S::Output>;
fn into_static(self) -> Self::Output {
match self {
GroupKind::Series => GroupKind::Series,
GroupKind::Show => GroupKind::Show,
GroupKind::Concept => GroupKind::Concept,
GroupKind::Magazine => GroupKind::Magazine,
GroupKind::Topic => GroupKind::Topic,
GroupKind::OtherCollection => GroupKind::OtherCollection,
GroupKind::OtherChoice => GroupKind::OtherChoice,
GroupKind::Other(v) => GroupKind::Other(v.into_static()),
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GroupGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Group<S>,
}
impl<S: BosStr> Group<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, GroupRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct GroupRecord;
impl XrpcResp for GroupRecord {
const NSID: &'static str = "media.ionosphere.group";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GroupGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<GroupGetRecordOutput<S>> for Group<S> {
fn from(output: GroupGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Group<S> {
const NSID: &'static str = "media.ionosphere.group";
type Record = GroupRecord;
}
impl Collection for GroupRecord {
const NSID: &'static str = "media.ionosphere.group";
type Record = GroupRecord;
}
impl<S: BosStr> LexiconSchema for Group<S> {
fn nsid() -> &'static str {
"media.ionosphere.group"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_media_ionosphere_group()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.description {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 512usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("description"),
max: 512usize,
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()),
});
}
}
if let Some(ref value) = self.kind {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 128usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("kind"),
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 group_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 Ionosphere;
type Name;
type Language;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Ionosphere = Unset;
type Name = Unset;
type Language = Unset;
}
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 Ionosphere = Set<members::ionosphere>;
type Name = St::Name;
type Language = St::Language;
}
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 Ionosphere = St::Ionosphere;
type Name = Set<members::name>;
type Language = St::Language;
}
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 Ionosphere = St::Ionosphere;
type Name = St::Name;
type Language = Set<members::language>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct ionosphere(());
pub struct name(());
pub struct language(());
}
}
pub struct GroupBuilder<S: BosStr, St: group_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<S>,
Option<Vec<Genre<S>>>,
Option<BlobRef<S>>,
Option<S>,
Option<Vec<S>>,
Option<GroupKind<S>>,
Option<Language>,
Option<Vec<Membership<S>>>,
Option<S>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Group<S> {
pub fn new() -> GroupBuilder<S, group_state::Empty> {
GroupBuilder::new()
}
}
impl<S: BosStr> GroupBuilder<S, group_state::Empty> {
pub fn new() -> Self {
GroupBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: group_state::State> GroupBuilder<S, St> {
pub fn description(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<S>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St: group_state::State> GroupBuilder<S, St> {
pub fn genres(mut self, value: impl Into<Option<Vec<Genre<S>>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_genres(mut self, value: Option<Vec<Genre<S>>>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St: group_state::State> GroupBuilder<S, St> {
pub fn icon(mut self, value: impl Into<Option<BlobRef<S>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_icon(mut self, value: Option<BlobRef<S>>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St> GroupBuilder<S, St>
where
St: group_state::State,
St::Ionosphere: group_state::IsUnset,
{
pub fn ionosphere(
mut self,
value: impl Into<S>,
) -> GroupBuilder<S, group_state::SetIonosphere<St>> {
self._fields.3 = Option::Some(value.into());
GroupBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: group_state::State> GroupBuilder<S, St> {
pub fn keywords(mut self, value: impl Into<Option<Vec<S>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_keywords(mut self, value: Option<Vec<S>>) -> Self {
self._fields.4 = value;
self
}
}
impl<S: BosStr, St: group_state::State> GroupBuilder<S, St> {
pub fn kind(mut self, value: impl Into<Option<GroupKind<S>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_kind(mut self, value: Option<GroupKind<S>>) -> Self {
self._fields.5 = value;
self
}
}
impl<S: BosStr, St> GroupBuilder<S, St>
where
St: group_state::State,
St::Language: group_state::IsUnset,
{
pub fn language(
mut self,
value: impl Into<Language>,
) -> GroupBuilder<S, group_state::SetLanguage<St>> {
self._fields.6 = Option::Some(value.into());
GroupBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: group_state::State> GroupBuilder<S, St> {
pub fn member_of(mut self, value: impl Into<Option<Vec<Membership<S>>>>) -> Self {
self._fields.7 = value.into();
self
}
pub fn maybe_member_of(mut self, value: Option<Vec<Membership<S>>>) -> Self {
self._fields.7 = value;
self
}
}
impl<S: BosStr, St> GroupBuilder<S, St>
where
St: group_state::State,
St::Name: group_state::IsUnset,
{
pub fn name(mut self, value: impl Into<S>) -> GroupBuilder<S, group_state::SetName<St>> {
self._fields.8 = Option::Some(value.into());
GroupBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GroupBuilder<S, St>
where
St: group_state::State,
St::Ionosphere: group_state::IsSet,
St::Name: group_state::IsSet,
St::Language: group_state::IsSet,
{
pub fn build(self) -> Group<S> {
Group {
description: self._fields.0,
genres: self._fields.1,
icon: self._fields.2,
ionosphere: self._fields.3.unwrap(),
keywords: self._fields.4,
kind: self._fields.5,
language: self._fields.6.unwrap(),
member_of: self._fields.7,
name: self._fields.8.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Group<S> {
Group {
description: self._fields.0,
genres: self._fields.1,
icon: self._fields.2,
ionosphere: self._fields.3.unwrap(),
keywords: self._fields.4,
kind: self._fields.5,
language: self._fields.6.unwrap(),
member_of: self._fields.7,
name: self._fields.8.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_media_ionosphere_group() -> 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.group"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"Represents a grouping of subgroups or programmes",
),
),
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("description"),
LexObjectProperty::String(LexString {
max_length: Some(512usize),
..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("kind"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Type of group, see Table 30 of DAB SPI for idea",
),
),
max_length: Some(128usize),
..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
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}