#[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};
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::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "dev.regnault.webfishing.savefile",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Savefile<S: BosStr = DefaultStr> {
pub name: S,
pub uri: AtUri<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 SavefileGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Savefile<S>,
}
impl<S: BosStr> Savefile<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, SavefileRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct SavefileRecord;
impl XrpcResp for SavefileRecord {
const NSID: &'static str = "dev.regnault.webfishing.savefile";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = SavefileGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<SavefileGetRecordOutput<S>> for Savefile<S> {
fn from(output: SavefileGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Savefile<S> {
const NSID: &'static str = "dev.regnault.webfishing.savefile";
type Record = SavefileRecord;
}
impl Collection for SavefileRecord {
const NSID: &'static str = "dev.regnault.webfishing.savefile";
type Record = SavefileRecord;
}
impl<S: BosStr> LexiconSchema for Savefile<S> {
fn nsid() -> &'static str {
"dev.regnault.webfishing.savefile"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_dev_regnault_webfishing_savefile()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod savefile_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 Uri;
type Name;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Uri = Unset;
type Name = Unset;
}
pub struct SetUri<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetUri<St> {}
impl<St: State> State for SetUri<St> {
type Uri = Set<members::uri>;
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 Uri = St::Uri;
type Name = Set<members::name>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct uri(());
pub struct name(());
}
}
pub struct SavefileBuilder<S: BosStr, St: savefile_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<S>, Option<AtUri<S>>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Savefile<S> {
pub fn new() -> SavefileBuilder<S, savefile_state::Empty> {
SavefileBuilder::new()
}
}
impl<S: BosStr> SavefileBuilder<S, savefile_state::Empty> {
pub fn new() -> Self {
SavefileBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> SavefileBuilder<S, St>
where
St: savefile_state::State,
St::Name: savefile_state::IsUnset,
{
pub fn name(mut self, value: impl Into<S>) -> SavefileBuilder<S, savefile_state::SetName<St>> {
self._fields.0 = Option::Some(value.into());
SavefileBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> SavefileBuilder<S, St>
where
St: savefile_state::State,
St::Uri: savefile_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<AtUri<S>>,
) -> SavefileBuilder<S, savefile_state::SetUri<St>> {
self._fields.1 = Option::Some(value.into());
SavefileBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> SavefileBuilder<S, St>
where
St: savefile_state::State,
St::Uri: savefile_state::IsSet,
St::Name: savefile_state::IsSet,
{
pub fn build(self) -> Savefile<S> {
Savefile {
name: self._fields.0.unwrap(),
uri: self._fields.1.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Savefile<S> {
Savefile {
name: self._fields.0.unwrap(),
uri: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_dev_regnault_webfishing_savefile() -> 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("dev.regnault.webfishing.savefile"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(CowStr::new_static(
"Record declaring a savefile of Webfishing.",
)),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(vec![
SmolStr::new_static("name"),
SmolStr::new_static("uri"),
]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("uri"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}