#[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, 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::org_simocracy::SpriteSettings;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Sim<'a> {
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub image: Option<BlobRef<'a>>,
#[serde(borrow)]
pub name: CowStr<'a>,
#[serde(borrow)]
pub settings: SpriteSettings<'a>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct SimGetRecordOutput<'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: Sim<'a>,
}
impl<'a> Sim<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, SimRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct SimRecord;
impl XrpcResp for SimRecord {
const NSID: &'static str = "org.simocracy.sim";
const ENCODING: &'static str = "application/json";
type Output<'de> = SimGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<SimGetRecordOutput<'_>> for Sim<'_> {
fn from(output: SimGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Sim<'_> {
const NSID: &'static str = "org.simocracy.sim";
type Record = SimRecord;
}
impl Collection for SimRecord {
const NSID: &'static str = "org.simocracy.sim";
type Record = SimRecord;
}
impl<'a> LexiconSchema for Sim<'a> {
fn nsid() -> &'static str {
"org.simocracy.sim"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_org_simocracy_sim()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.image {
{
let mime = value.blob().mime_type.as_str();
let accepted: &[&str] = &["image/png", "image/jpeg", "image/webp"];
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("image"),
accepted: vec![
"image/png".to_string(), "image/jpeg".to_string(),
"image/webp".to_string()
],
actual: mime.to_string(),
});
}
}
}
{
let value = &self.name;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 64usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("name"),
max: 64usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
pub mod sim_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 Settings;
type Name;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Settings = Unset;
type Name = Unset;
type CreatedAt = Unset;
}
pub struct SetSettings<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetSettings<S> {}
impl<S: State> State for SetSettings<S> {
type Settings = Set<members::settings>;
type Name = S::Name;
type CreatedAt = S::CreatedAt;
}
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 Settings = S::Settings;
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 Settings = S::Settings;
type Name = S::Name;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct settings(());
pub struct name(());
pub struct created_at(());
}
}
pub struct SimBuilder<'a, S: sim_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<Datetime>,
Option<BlobRef<'a>>,
Option<CowStr<'a>>,
Option<SpriteSettings<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Sim<'a> {
pub fn new() -> SimBuilder<'a, sim_state::Empty> {
SimBuilder::new()
}
}
impl<'a> SimBuilder<'a, sim_state::Empty> {
pub fn new() -> Self {
SimBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> SimBuilder<'a, S>
where
S: sim_state::State,
S::CreatedAt: sim_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> SimBuilder<'a, sim_state::SetCreatedAt<S>> {
self._fields.0 = Option::Some(value.into());
SimBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: sim_state::State> SimBuilder<'a, S> {
pub fn image(mut self, value: impl Into<Option<BlobRef<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_image(mut self, value: Option<BlobRef<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S> SimBuilder<'a, S>
where
S: sim_state::State,
S::Name: sim_state::IsUnset,
{
pub fn name(
mut self,
value: impl Into<CowStr<'a>>,
) -> SimBuilder<'a, sim_state::SetName<S>> {
self._fields.2 = Option::Some(value.into());
SimBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> SimBuilder<'a, S>
where
S: sim_state::State,
S::Settings: sim_state::IsUnset,
{
pub fn settings(
mut self,
value: impl Into<SpriteSettings<'a>>,
) -> SimBuilder<'a, sim_state::SetSettings<S>> {
self._fields.3 = Option::Some(value.into());
SimBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> SimBuilder<'a, S>
where
S: sim_state::State,
S::Settings: sim_state::IsSet,
S::Name: sim_state::IsSet,
S::CreatedAt: sim_state::IsSet,
{
pub fn build(self) -> Sim<'a> {
Sim {
created_at: self._fields.0.unwrap(),
image: self._fields.1,
name: self._fields.2.unwrap(),
settings: self._fields.3.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>,
>,
) -> Sim<'a> {
Sim {
created_at: self._fields.0.unwrap(),
image: self._fields.1,
name: self._fields.2.unwrap(),
settings: self._fields.3.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_org_simocracy_sim() -> 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("org.simocracy.sim"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"An avatar/sim record. One user can have multiple sims.",
),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("name"),
SmolStr::new_static("settings"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Timestamp when the sim was created"),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("image"),
LexObjectProperty::Blob(LexBlob { ..Default::default() }),
);
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Display name of the sim"),
),
max_length: Some(64usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("settings"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static(
"org.simocracy.defs#spriteSettings",
),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}