#[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::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Cid, Datetime};
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::games_gamesgamesgamesgames::MediaItem;
use crate::games_gamesgamesgamesgames::PlatformCategory;
use crate::games_gamesgamesgamesgames::PlatformVersion;
use crate::games_gamesgamesgamesgames::Website;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "games.gamesgamesgamesgames.platform",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Platform<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub abbreviation: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub alternative_name: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub category: Option<PlatformCategory<S>>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub family: Option<AtUri<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub generation: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub media: Option<Vec<MediaItem<S>>>,
pub name: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub versions: Option<Vec<PlatformVersion<S>>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub websites: Option<Vec<Website<S>>>,
#[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 PlatformGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Platform<S>,
}
impl<S: BosStr> Platform<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, PlatformRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[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<S: BosStr> = PlatformGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<PlatformGetRecordOutput<S>> for Platform<S> {
fn from(output: PlatformGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Platform<S> {
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<S: BosStr> LexiconSchema for Platform<S> {
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 CreatedAt;
type Name;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CreatedAt = Unset;
type Name = Unset;
}
pub struct SetCreatedAt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCreatedAt<St> {}
impl<St: State> State for SetCreatedAt<St> {
type CreatedAt = Set<members::created_at>;
type Name = St::Name;
}
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 CreatedAt = St::CreatedAt;
type Name = Set<members::name>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct created_at(());
pub struct name(());
}
}
pub struct PlatformBuilder<S: BosStr, St: platform_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<S>,
Option<S>,
Option<PlatformCategory<S>>,
Option<Datetime>,
Option<S>,
Option<AtUri<S>>,
Option<i64>,
Option<Vec<MediaItem<S>>>,
Option<S>,
Option<Vec<PlatformVersion<S>>>,
Option<Vec<Website<S>>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Platform<S> {
pub fn new() -> PlatformBuilder<S, platform_state::Empty> {
PlatformBuilder::new()
}
}
impl<S: BosStr> PlatformBuilder<S, platform_state::Empty> {
pub fn new() -> Self {
PlatformBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: platform_state::State> PlatformBuilder<S, St> {
pub fn abbreviation(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_abbreviation(mut self, value: Option<S>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St: platform_state::State> PlatformBuilder<S, St> {
pub fn alternative_name(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_alternative_name(mut self, value: Option<S>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St: platform_state::State> PlatformBuilder<S, St> {
pub fn category(mut self, value: impl Into<Option<PlatformCategory<S>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_category(mut self, value: Option<PlatformCategory<S>>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St> PlatformBuilder<S, St>
where
St: platform_state::State,
St::CreatedAt: platform_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> PlatformBuilder<S, platform_state::SetCreatedAt<St>> {
self._fields.3 = Option::Some(value.into());
PlatformBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: platform_state::State> PlatformBuilder<S, St> {
pub fn description(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<S>) -> Self {
self._fields.4 = value;
self
}
}
impl<S: BosStr, St: platform_state::State> PlatformBuilder<S, St> {
pub fn family(mut self, value: impl Into<Option<AtUri<S>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_family(mut self, value: Option<AtUri<S>>) -> Self {
self._fields.5 = value;
self
}
}
impl<S: BosStr, St: platform_state::State> PlatformBuilder<S, St> {
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<S: BosStr, St: platform_state::State> PlatformBuilder<S, St> {
pub fn media(mut self, value: impl Into<Option<Vec<MediaItem<S>>>>) -> Self {
self._fields.7 = value.into();
self
}
pub fn maybe_media(mut self, value: Option<Vec<MediaItem<S>>>) -> Self {
self._fields.7 = value;
self
}
}
impl<S: BosStr, St> PlatformBuilder<S, St>
where
St: platform_state::State,
St::Name: platform_state::IsUnset,
{
pub fn name(
mut self,
value: impl Into<S>,
) -> PlatformBuilder<S, platform_state::SetName<St>> {
self._fields.8 = Option::Some(value.into());
PlatformBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: platform_state::State> PlatformBuilder<S, St> {
pub fn versions(
mut self,
value: impl Into<Option<Vec<PlatformVersion<S>>>>,
) -> Self {
self._fields.9 = value.into();
self
}
pub fn maybe_versions(mut self, value: Option<Vec<PlatformVersion<S>>>) -> Self {
self._fields.9 = value;
self
}
}
impl<S: BosStr, St: platform_state::State> PlatformBuilder<S, St> {
pub fn websites(mut self, value: impl Into<Option<Vec<Website<S>>>>) -> Self {
self._fields.10 = value.into();
self
}
pub fn maybe_websites(mut self, value: Option<Vec<Website<S>>>) -> Self {
self._fields.10 = value;
self
}
}
impl<S: BosStr, St> PlatformBuilder<S, St>
where
St: platform_state::State,
St::CreatedAt: platform_state::IsSet,
St::Name: platform_state::IsSet,
{
pub fn build(self) -> Platform<S> {
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<SmolStr, Data<S>>) -> Platform<S> {
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()
}
}