#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{CowStr, BosStr, 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;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Serialize, Deserialize};
use crate::media_ionosphere::Broadcast;
use crate::media_ionosphere::Genre;
use crate::media_ionosphere::Geocoordinates;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "media.ionosphere.service",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Service<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub broadcast: Option<Vec<Broadcast<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 geolocation: Option<Geocoordinates<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,
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(rename_all = "camelCase")]
pub struct ServiceGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Service<S>,
}
impl<S: BosStr> Service<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, ServiceRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ServiceRecord;
impl XrpcResp for ServiceRecord {
const NSID: &'static str = "media.ionosphere.service";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ServiceGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<ServiceGetRecordOutput<S>> for Service<S> {
fn from(output: ServiceGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Service<S> {
const NSID: &'static str = "media.ionosphere.service";
type Record = ServiceRecord;
}
impl Collection for ServiceRecord {
const NSID: &'static str = "media.ionosphere.service";
type Record = ServiceRecord;
}
impl<S: BosStr> LexiconSchema for Service<S> {
fn nsid() -> &'static str {
"media.ionosphere.service"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_media_ionosphere_service()
}
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 service_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 Language;
type Name;
type Ionosphere;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Language = Unset;
type Name = Unset;
type Ionosphere = Unset;
}
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 Language = Set<members::language>;
type Name = St::Name;
type Ionosphere = St::Ionosphere;
}
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 Language = St::Language;
type Name = Set<members::name>;
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 Language = St::Language;
type Name = St::Name;
type Ionosphere = Set<members::ionosphere>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct language(());
pub struct name(());
pub struct ionosphere(());
}
}
pub struct ServiceBuilder<S: BosStr, St: service_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Vec<Broadcast<S>>>,
Option<S>,
Option<Vec<Genre<S>>>,
Option<Geocoordinates<S>>,
Option<BlobRef<S>>,
Option<S>,
Option<Vec<S>>,
Option<Language>,
Option<S>,
Option<Language>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Service<S> {
pub fn new() -> ServiceBuilder<S, service_state::Empty> {
ServiceBuilder::new()
}
}
impl<S: BosStr> ServiceBuilder<S, service_state::Empty> {
pub fn new() -> Self {
ServiceBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: service_state::State> ServiceBuilder<S, St> {
pub fn broadcast(mut self, value: impl Into<Option<Vec<Broadcast<S>>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_broadcast(mut self, value: Option<Vec<Broadcast<S>>>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St: service_state::State> ServiceBuilder<S, St> {
pub fn description(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<S>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St: service_state::State> ServiceBuilder<S, St> {
pub fn genres(mut self, value: impl Into<Option<Vec<Genre<S>>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_genres(mut self, value: Option<Vec<Genre<S>>>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St: service_state::State> ServiceBuilder<S, St> {
pub fn geolocation(mut self, value: impl Into<Option<Geocoordinates<S>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_geolocation(mut self, value: Option<Geocoordinates<S>>) -> Self {
self._fields.3 = value;
self
}
}
impl<S: BosStr, St: service_state::State> ServiceBuilder<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> ServiceBuilder<S, St>
where
St: service_state::State,
St::Ionosphere: service_state::IsUnset,
{
pub fn ionosphere(
mut self,
value: impl Into<S>,
) -> ServiceBuilder<S, service_state::SetIonosphere<St>> {
self._fields.5 = Option::Some(value.into());
ServiceBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: service_state::State> ServiceBuilder<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> ServiceBuilder<S, St>
where
St: service_state::State,
St::Language: service_state::IsUnset,
{
pub fn language(
mut self,
value: impl Into<Language>,
) -> ServiceBuilder<S, service_state::SetLanguage<St>> {
self._fields.7 = Option::Some(value.into());
ServiceBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ServiceBuilder<S, St>
where
St: service_state::State,
St::Name: service_state::IsUnset,
{
pub fn name(
mut self,
value: impl Into<S>,
) -> ServiceBuilder<S, service_state::SetName<St>> {
self._fields.8 = Option::Some(value.into());
ServiceBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: service_state::State> ServiceBuilder<S, St> {
pub fn presentation_language(mut self, value: impl Into<Option<Language>>) -> Self {
self._fields.9 = value.into();
self
}
pub fn maybe_presentation_language(mut self, value: Option<Language>) -> Self {
self._fields.9 = value;
self
}
}
impl<S: BosStr, St> ServiceBuilder<S, St>
where
St: service_state::State,
St::Language: service_state::IsSet,
St::Name: service_state::IsSet,
St::Ionosphere: service_state::IsSet,
{
pub fn build(self) -> Service<S> {
Service {
broadcast: self._fields.0,
description: self._fields.1,
genres: self._fields.2,
geolocation: self._fields.3,
icon: self._fields.4,
ionosphere: self._fields.5.unwrap(),
keywords: self._fields.6,
language: self._fields.7.unwrap(),
name: self._fields.8.unwrap(),
presentation_language: self._fields.9,
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Service<S> {
Service {
broadcast: self._fields.0,
description: self._fields.1,
genres: self._fields.2,
geolocation: self._fields.3,
icon: self._fields.4,
ionosphere: self._fields.5.unwrap(),
keywords: self._fields.6,
language: self._fields.7.unwrap(),
name: self._fields.8.unwrap(),
presentation_language: self._fields.9,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_media_ionosphere_service() -> 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.service"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"Represents the service belonging to this PDS",
),
),
key: Some(CowStr::new_static("literal:self")),
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("broadcast"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static(
"media.ionosphere.defs#broadcast",
),
..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("geolocation"),
LexObjectProperty::Union(LexRefUnion {
refs: vec![
CowStr::new_static("media.ionosphere.defs#geocoordinates")
],
..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("name"),
LexObjectProperty::String(LexString {
max_graphemes: Some(128usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("presentationLanguage"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"This is the language that the content is actually presented in. If multiple, choose to omit this.",
),
),
format: Some(LexStringFormat::Language),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}