#[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::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Cid, Datetime};
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::games_gamesgamesgamesgames::MediaItem;
use crate::games_gamesgamesgamesgames::PlatformCategory;
use crate::games_gamesgamesgamesgames::PlatformVersion;
use crate::games_gamesgamesgamesgames::Website;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "games.gamesgamesgamesgames.platform",
tag = "$type"
)]
pub struct Platform<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub abbreviation: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub alternative_name: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub category: Option<PlatformCategory<'a>>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub description: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub family: Option<AtUri<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub generation: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub media: Option<Vec<MediaItem<'a>>>,
#[serde(borrow)]
pub name: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub versions: Option<Vec<PlatformVersion<'a>>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub websites: Option<Vec<Website<'a>>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct PlatformGetRecordOutput<'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: Platform<'a>,
}
impl<'a> Platform<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, PlatformRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct PlatformRecord;
impl XrpcResp for PlatformRecord {
const NSID: &'static str = "games.gamesgamesgamesgames.platform";
const ENCODING: &'static str = "application/json";
type Output<'de> = PlatformGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<PlatformGetRecordOutput<'_>> for Platform<'_> {
fn from(output: PlatformGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Platform<'_> {
const NSID: &'static str = "games.gamesgamesgamesgames.platform";
type Record = PlatformRecord;
}
impl Collection for PlatformRecord {
const NSID: &'static str = "games.gamesgamesgamesgames.platform";
type Record = PlatformRecord;
}
impl<'a> LexiconSchema for Platform<'a> {
fn nsid() -> &'static str {
"games.gamesgamesgamesgames.platform"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_games_gamesgamesgamesgames_platform()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod platform_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 Name;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Name = Unset;
type CreatedAt = Unset;
}
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 Name = Set<members::name>;
type CreatedAt = S::CreatedAt;
}
pub struct SetCreatedAt<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCreatedAt<S> {}
impl<S: State> State for SetCreatedAt<S> {
type Name = S::Name;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct name(());
pub struct created_at(());
}
}
pub struct PlatformBuilder<'a, S: platform_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<PlatformCategory<'a>>,
Option<Datetime>,
Option<CowStr<'a>>,
Option<AtUri<'a>>,
Option<i64>,
Option<Vec<MediaItem<'a>>>,
Option<CowStr<'a>>,
Option<Vec<PlatformVersion<'a>>>,
Option<Vec<Website<'a>>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Platform<'a> {
pub fn new() -> PlatformBuilder<'a, platform_state::Empty> {
PlatformBuilder::new()
}
}
impl<'a> PlatformBuilder<'a, platform_state::Empty> {
pub fn new() -> Self {
PlatformBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: platform_state::State> PlatformBuilder<'a, S> {
pub fn abbreviation(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_abbreviation(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S: platform_state::State> PlatformBuilder<'a, S> {
pub fn alternative_name(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_alternative_name(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: platform_state::State> PlatformBuilder<'a, S> {
pub fn category(mut self, value: impl Into<Option<PlatformCategory<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_category(mut self, value: Option<PlatformCategory<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S> PlatformBuilder<'a, S>
where
S: platform_state::State,
S::CreatedAt: platform_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> PlatformBuilder<'a, platform_state::SetCreatedAt<S>> {
self._fields.3 = Option::Some(value.into());
PlatformBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: platform_state::State> PlatformBuilder<'a, S> {
pub fn description(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.4 = value;
self
}
}
impl<'a, S: platform_state::State> PlatformBuilder<'a, S> {
pub fn family(mut self, value: impl Into<Option<AtUri<'a>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_family(mut self, value: Option<AtUri<'a>>) -> Self {
self._fields.5 = value;
self
}
}
impl<'a, S: platform_state::State> PlatformBuilder<'a, S> {
pub fn generation(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_generation(mut self, value: Option<i64>) -> Self {
self._fields.6 = value;
self
}
}
impl<'a, S: platform_state::State> PlatformBuilder<'a, S> {
pub fn media(mut self, value: impl Into<Option<Vec<MediaItem<'a>>>>) -> Self {
self._fields.7 = value.into();
self
}
pub fn maybe_media(mut self, value: Option<Vec<MediaItem<'a>>>) -> Self {
self._fields.7 = value;
self
}
}
impl<'a, S> PlatformBuilder<'a, S>
where
S: platform_state::State,
S::Name: platform_state::IsUnset,
{
pub fn name(
mut self,
value: impl Into<CowStr<'a>>,
) -> PlatformBuilder<'a, platform_state::SetName<S>> {
self._fields.8 = Option::Some(value.into());
PlatformBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: platform_state::State> PlatformBuilder<'a, S> {
pub fn versions(
mut self,
value: impl Into<Option<Vec<PlatformVersion<'a>>>>,
) -> Self {
self._fields.9 = value.into();
self
}
pub fn maybe_versions(mut self, value: Option<Vec<PlatformVersion<'a>>>) -> Self {
self._fields.9 = value;
self
}
}
impl<'a, S: platform_state::State> PlatformBuilder<'a, S> {
pub fn websites(mut self, value: impl Into<Option<Vec<Website<'a>>>>) -> Self {
self._fields.10 = value.into();
self
}
pub fn maybe_websites(mut self, value: Option<Vec<Website<'a>>>) -> Self {
self._fields.10 = value;
self
}
}
impl<'a, S> PlatformBuilder<'a, S>
where
S: platform_state::State,
S::Name: platform_state::IsSet,
S::CreatedAt: platform_state::IsSet,
{
pub fn build(self) -> Platform<'a> {
Platform {
abbreviation: self._fields.0,
alternative_name: self._fields.1,
category: self._fields.2,
created_at: self._fields.3.unwrap(),
description: self._fields.4,
family: self._fields.5,
generation: self._fields.6,
media: self._fields.7,
name: self._fields.8.unwrap(),
versions: self._fields.9,
websites: 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>,
>,
) -> Platform<'a> {
Platform {
abbreviation: self._fields.0,
alternative_name: self._fields.1,
category: self._fields.2,
created_at: self._fields.3.unwrap(),
description: self._fields.4,
family: self._fields.5,
generation: self._fields.6,
media: self._fields.7,
name: self._fields.8.unwrap(),
versions: self._fields.9,
websites: self._fields.10,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_games_gamesgamesgamesgames_platform() -> 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("games.gamesgamesgamesgames.platform"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static("A platform for playing video games."),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("name"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("abbreviation"),
LexObjectProperty::String(LexString {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("alternativeName"),
LexObjectProperty::String(LexString {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("category"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static(
"games.gamesgamesgamesgames.defs#platformCategory",
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("description"),
LexObjectProperty::String(LexString {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("family"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("generation"),
LexObjectProperty::Integer(LexInteger {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("media"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static(
"games.gamesgamesgamesgames.defs#mediaItem",
),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("versions"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static(
"games.gamesgamesgamesgames.defs#platformVersion",
),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("websites"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static(
"games.gamesgamesgamesgames.defs#website",
),
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}