#[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::Genre;
use crate::media_ionosphere::Membership;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Group<'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>>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub kind: Option<GroupKind<'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>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum GroupKind<'a> {
Series,
Show,
Concept,
Magazine,
Topic,
OtherCollection,
OtherChoice,
Other(CowStr<'a>),
}
impl<'a> GroupKind<'a> {
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(),
}
}
}
impl<'a> From<&'a str> for GroupKind<'a> {
fn from(s: &'a str) -> Self {
match s {
"series" => Self::Series,
"show" => Self::Show,
"concept" => Self::Concept,
"magazine" => Self::Magazine,
"topic" => Self::Topic,
"otherCollection" => Self::OtherCollection,
"otherChoice" => Self::OtherChoice,
_ => Self::Other(CowStr::from(s)),
}
}
}
impl<'a> From<String> for GroupKind<'a> {
fn from(s: String) -> Self {
match s.as_str() {
"series" => Self::Series,
"show" => Self::Show,
"concept" => Self::Concept,
"magazine" => Self::Magazine,
"topic" => Self::Topic,
"otherCollection" => Self::OtherCollection,
"otherChoice" => Self::OtherChoice,
_ => Self::Other(CowStr::from(s)),
}
}
}
impl<'a> core::fmt::Display for GroupKind<'a> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<'a> AsRef<str> for GroupKind<'a> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<'a> serde::Serialize for GroupKind<'a> {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, 'a> serde::Deserialize<'de> for GroupKind<'a>
where
'de: 'a,
{
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = <&'de str>::deserialize(deserializer)?;
Ok(Self::from(s))
}
}
impl<'a> Default for GroupKind<'a> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl jacquard_common::IntoStatic for GroupKind<'_> {
type Output = GroupKind<'static>;
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<'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: Group<'a>,
}
impl<'a> Group<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, GroupRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[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<'de> = GroupGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<GroupGetRecordOutput<'_>> for Group<'_> {
fn from(output: GroupGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Group<'_> {
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<'a> LexiconSchema for Group<'a> {
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::{Set, Unset, IsSet, IsUnset};
#[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<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 Name = S::Name;
type Language = S::Language;
}
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 Name = Set<members::name>;
type Language = S::Language;
}
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 Name = S::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<'a, S: group_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<CowStr<'a>>,
Option<Vec<Genre<'a>>>,
Option<BlobRef<'a>>,
Option<CowStr<'a>>,
Option<Vec<CowStr<'a>>>,
Option<GroupKind<'a>>,
Option<Language>,
Option<Vec<Membership<'a>>>,
Option<CowStr<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Group<'a> {
pub fn new() -> GroupBuilder<'a, group_state::Empty> {
GroupBuilder::new()
}
}
impl<'a> GroupBuilder<'a, group_state::Empty> {
pub fn new() -> Self {
GroupBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: group_state::State> GroupBuilder<'a, S> {
pub fn description(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S: group_state::State> GroupBuilder<'a, S> {
pub fn genres(mut self, value: impl Into<Option<Vec<Genre<'a>>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_genres(mut self, value: Option<Vec<Genre<'a>>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: group_state::State> GroupBuilder<'a, S> {
pub fn icon(mut self, value: impl Into<Option<BlobRef<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_icon(mut self, value: Option<BlobRef<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S> GroupBuilder<'a, S>
where
S: group_state::State,
S::Ionosphere: group_state::IsUnset,
{
pub fn ionosphere(
mut self,
value: impl Into<CowStr<'a>>,
) -> GroupBuilder<'a, group_state::SetIonosphere<S>> {
self._fields.3 = Option::Some(value.into());
GroupBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: group_state::State> GroupBuilder<'a, S> {
pub fn keywords(mut self, value: impl Into<Option<Vec<CowStr<'a>>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_keywords(mut self, value: Option<Vec<CowStr<'a>>>) -> Self {
self._fields.4 = value;
self
}
}
impl<'a, S: group_state::State> GroupBuilder<'a, S> {
pub fn kind(mut self, value: impl Into<Option<GroupKind<'a>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_kind(mut self, value: Option<GroupKind<'a>>) -> Self {
self._fields.5 = value;
self
}
}
impl<'a, S> GroupBuilder<'a, S>
where
S: group_state::State,
S::Language: group_state::IsUnset,
{
pub fn language(
mut self,
value: impl Into<Language>,
) -> GroupBuilder<'a, group_state::SetLanguage<S>> {
self._fields.6 = Option::Some(value.into());
GroupBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: group_state::State> GroupBuilder<'a, S> {
pub fn member_of(mut self, value: impl Into<Option<Vec<Membership<'a>>>>) -> Self {
self._fields.7 = value.into();
self
}
pub fn maybe_member_of(mut self, value: Option<Vec<Membership<'a>>>) -> Self {
self._fields.7 = value;
self
}
}
impl<'a, S> GroupBuilder<'a, S>
where
S: group_state::State,
S::Name: group_state::IsUnset,
{
pub fn name(
mut self,
value: impl Into<CowStr<'a>>,
) -> GroupBuilder<'a, group_state::SetName<S>> {
self._fields.8 = Option::Some(value.into());
GroupBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> GroupBuilder<'a, S>
where
S: group_state::State,
S::Ionosphere: group_state::IsSet,
S::Name: group_state::IsSet,
S::Language: group_state::IsSet,
{
pub fn build(self) -> Group<'a> {
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<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> Group<'a> {
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> {
#[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.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()
}
}