#[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::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;
use crate::games_gamesgamesgamesgames::MediaItem;
use crate::games_gamesgamesgamesgames::Website;
#[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 = "games.gamesgamesgamesgames.engine",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Engine<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub companies: Option<Vec<AtUri<S>>>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub media: Option<Vec<MediaItem<S>>>,
pub name: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub platforms: Option<Vec<AtUri<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 EngineGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Engine<S>,
}
impl<S: BosStr> Engine<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, EngineRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct EngineRecord;
impl XrpcResp for EngineRecord {
const NSID: &'static str = "games.gamesgamesgamesgames.engine";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = EngineGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<EngineGetRecordOutput<S>> for Engine<S> {
fn from(output: EngineGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Engine<S> {
const NSID: &'static str = "games.gamesgamesgamesgames.engine";
type Record = EngineRecord;
}
impl Collection for EngineRecord {
const NSID: &'static str = "games.gamesgamesgamesgames.engine";
type Record = EngineRecord;
}
impl<S: BosStr> LexiconSchema for Engine<S> {
fn nsid() -> &'static str {
"games.gamesgamesgamesgames.engine"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_games_gamesgamesgamesgames_engine()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod engine_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 Name;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Name = Unset;
type CreatedAt = Unset;
}
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 Name = Set<members::name>;
type CreatedAt = St::CreatedAt;
}
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 Name = St::Name;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct name(());
pub struct created_at(());
}
}
pub struct EngineBuilder<S: BosStr, St: engine_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Vec<AtUri<S>>>,
Option<Datetime>,
Option<S>,
Option<Vec<MediaItem<S>>>,
Option<S>,
Option<Vec<AtUri<S>>>,
Option<Vec<Website<S>>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Engine<S> {
pub fn new() -> EngineBuilder<S, engine_state::Empty> {
EngineBuilder::new()
}
}
impl<S: BosStr> EngineBuilder<S, engine_state::Empty> {
pub fn new() -> Self {
EngineBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: engine_state::State> EngineBuilder<S, St> {
pub fn companies(mut self, value: impl Into<Option<Vec<AtUri<S>>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_companies(mut self, value: Option<Vec<AtUri<S>>>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St> EngineBuilder<S, St>
where
St: engine_state::State,
St::CreatedAt: engine_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> EngineBuilder<S, engine_state::SetCreatedAt<St>> {
self._fields.1 = Option::Some(value.into());
EngineBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: engine_state::State> EngineBuilder<S, St> {
pub fn description(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<S>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St: engine_state::State> EngineBuilder<S, St> {
pub fn media(mut self, value: impl Into<Option<Vec<MediaItem<S>>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_media(mut self, value: Option<Vec<MediaItem<S>>>) -> Self {
self._fields.3 = value;
self
}
}
impl<S: BosStr, St> EngineBuilder<S, St>
where
St: engine_state::State,
St::Name: engine_state::IsUnset,
{
pub fn name(mut self, value: impl Into<S>) -> EngineBuilder<S, engine_state::SetName<St>> {
self._fields.4 = Option::Some(value.into());
EngineBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: engine_state::State> EngineBuilder<S, St> {
pub fn platforms(mut self, value: impl Into<Option<Vec<AtUri<S>>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_platforms(mut self, value: Option<Vec<AtUri<S>>>) -> Self {
self._fields.5 = value;
self
}
}
impl<S: BosStr, St: engine_state::State> EngineBuilder<S, St> {
pub fn websites(mut self, value: impl Into<Option<Vec<Website<S>>>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_websites(mut self, value: Option<Vec<Website<S>>>) -> Self {
self._fields.6 = value;
self
}
}
impl<S: BosStr, St> EngineBuilder<S, St>
where
St: engine_state::State,
St::Name: engine_state::IsSet,
St::CreatedAt: engine_state::IsSet,
{
pub fn build(self) -> Engine<S> {
Engine {
companies: self._fields.0,
created_at: self._fields.1.unwrap(),
description: self._fields.2,
media: self._fields.3,
name: self._fields.4.unwrap(),
platforms: self._fields.5,
websites: self._fields.6,
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Engine<S> {
Engine {
companies: self._fields.0,
created_at: self._fields.1.unwrap(),
description: self._fields.2,
media: self._fields.3,
name: self._fields.4.unwrap(),
platforms: self._fields.5,
websites: self._fields.6,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_games_gamesgamesgamesgames_engine() -> 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("games.gamesgamesgamesgames.engine"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(CowStr::new_static("A game engine.")),
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("companies"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
..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("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("platforms"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::String(LexString {
format: Some(LexStringFormat::AtUri),
..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()
}
}