#[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, Did};
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 = "world.ptah.temp.action",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Action<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub action_type: Option<ActionActionType<S>>,
pub actor_did: Did<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub character_reference: Option<AtUri<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub content: Option<S>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub location_reference: Option<AtUri<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub narrative_weight: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub target_reference: Option<AtUri<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub visibility: Option<ActionVisibility<S>>,
pub world_reference: AtUri<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum ActionActionType<S: BosStr = DefaultStr> {
Movement,
Speech,
Conflict,
Creation,
Witness,
Other(S),
}
impl<S: BosStr> ActionActionType<S> {
pub fn as_str(&self) -> &str {
match self {
Self::Movement => "movement",
Self::Speech => "speech",
Self::Conflict => "conflict",
Self::Creation => "creation",
Self::Witness => "witness",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"movement" => Self::Movement,
"speech" => Self::Speech,
"conflict" => Self::Conflict,
"creation" => Self::Creation,
"witness" => Self::Witness,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for ActionActionType<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for ActionActionType<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for ActionActionType<S> {
fn serialize<Ser>(&self, serializer: Ser) -> Result<Ser::Ok, Ser::Error>
where
Ser: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, S: Deserialize<'de> + BosStr> Deserialize<'de> for ActionActionType<S> {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = S::deserialize(deserializer)?;
Ok(Self::from_value(s))
}
}
impl<S: BosStr + Default> Default for ActionActionType<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for ActionActionType<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = ActionActionType<S::Output>;
fn into_static(self) -> Self::Output {
match self {
ActionActionType::Movement => ActionActionType::Movement,
ActionActionType::Speech => ActionActionType::Speech,
ActionActionType::Conflict => ActionActionType::Conflict,
ActionActionType::Creation => ActionActionType::Creation,
ActionActionType::Witness => ActionActionType::Witness,
ActionActionType::Other(v) => ActionActionType::Other(v.into_static()),
}
}
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum ActionVisibility<S: BosStr = DefaultStr> {
Canon,
Community,
Experimental,
Other(S),
}
impl<S: BosStr> ActionVisibility<S> {
pub fn as_str(&self) -> &str {
match self {
Self::Canon => "canon",
Self::Community => "community",
Self::Experimental => "experimental",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"canon" => Self::Canon,
"community" => Self::Community,
"experimental" => Self::Experimental,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for ActionVisibility<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for ActionVisibility<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for ActionVisibility<S> {
fn serialize<Ser>(&self, serializer: Ser) -> Result<Ser::Ok, Ser::Error>
where
Ser: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, S: Deserialize<'de> + BosStr> Deserialize<'de> for ActionVisibility<S> {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = S::deserialize(deserializer)?;
Ok(Self::from_value(s))
}
}
impl<S: BosStr + Default> Default for ActionVisibility<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for ActionVisibility<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = ActionVisibility<S::Output>;
fn into_static(self) -> Self::Output {
match self {
ActionVisibility::Canon => ActionVisibility::Canon,
ActionVisibility::Community => ActionVisibility::Community,
ActionVisibility::Experimental => ActionVisibility::Experimental,
ActionVisibility::Other(v) => ActionVisibility::Other(v.into_static()),
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ActionGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Action<S>,
}
impl<S: BosStr> Action<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, ActionRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ActionRecord;
impl XrpcResp for ActionRecord {
const NSID: &'static str = "world.ptah.temp.action";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ActionGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<ActionGetRecordOutput<S>> for Action<S> {
fn from(output: ActionGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Action<S> {
const NSID: &'static str = "world.ptah.temp.action";
type Record = ActionRecord;
}
impl Collection for ActionRecord {
const NSID: &'static str = "world.ptah.temp.action";
type Record = ActionRecord;
}
impl<S: BosStr> LexiconSchema for Action<S> {
fn nsid() -> &'static str {
"world.ptah.temp.action"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_world_ptah_temp_action()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.action_type {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 640usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("action_type"),
max: 640usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.action_type {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 64usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("action_type"),
max: 64usize,
actual: count,
});
}
}
}
if let Some(ref value) = self.content {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 30720usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("content"),
max: 30720usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.content {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 3000usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("content"),
max: 3000usize,
actual: count,
});
}
}
}
if let Some(ref value) = self.narrative_weight {
if *value < 0i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("narrative_weight"),
min: 0i64,
actual: *value,
});
}
}
Ok(())
}
}
pub mod action_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 CreatedAt;
type ActorDid;
type WorldReference;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CreatedAt = Unset;
type ActorDid = Unset;
type WorldReference = 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 ActorDid = St::ActorDid;
type WorldReference = St::WorldReference;
}
pub struct SetActorDid<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetActorDid<St> {}
impl<St: State> State for SetActorDid<St> {
type CreatedAt = St::CreatedAt;
type ActorDid = Set<members::actor_did>;
type WorldReference = St::WorldReference;
}
pub struct SetWorldReference<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetWorldReference<St> {}
impl<St: State> State for SetWorldReference<St> {
type CreatedAt = St::CreatedAt;
type ActorDid = St::ActorDid;
type WorldReference = Set<members::world_reference>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct created_at(());
pub struct actor_did(());
pub struct world_reference(());
}
}
pub struct ActionBuilder<S: BosStr, St: action_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<ActionActionType<S>>,
Option<Did<S>>,
Option<AtUri<S>>,
Option<S>,
Option<Datetime>,
Option<AtUri<S>>,
Option<i64>,
Option<AtUri<S>>,
Option<ActionVisibility<S>>,
Option<AtUri<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Action<S> {
pub fn new() -> ActionBuilder<S, action_state::Empty> {
ActionBuilder::new()
}
}
impl<S: BosStr> ActionBuilder<S, action_state::Empty> {
pub fn new() -> Self {
ActionBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: action_state::State> ActionBuilder<S, St> {
pub fn action_type(mut self, value: impl Into<Option<ActionActionType<S>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_action_type(mut self, value: Option<ActionActionType<S>>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St> ActionBuilder<S, St>
where
St: action_state::State,
St::ActorDid: action_state::IsUnset,
{
pub fn actor_did(
mut self,
value: impl Into<Did<S>>,
) -> ActionBuilder<S, action_state::SetActorDid<St>> {
self._fields.1 = Option::Some(value.into());
ActionBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: action_state::State> ActionBuilder<S, St> {
pub fn character_reference(mut self, value: impl Into<Option<AtUri<S>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_character_reference(mut self, value: Option<AtUri<S>>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St: action_state::State> ActionBuilder<S, St> {
pub fn content(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_content(mut self, value: Option<S>) -> Self {
self._fields.3 = value;
self
}
}
impl<S: BosStr, St> ActionBuilder<S, St>
where
St: action_state::State,
St::CreatedAt: action_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ActionBuilder<S, action_state::SetCreatedAt<St>> {
self._fields.4 = Option::Some(value.into());
ActionBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: action_state::State> ActionBuilder<S, St> {
pub fn location_reference(mut self, value: impl Into<Option<AtUri<S>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_location_reference(mut self, value: Option<AtUri<S>>) -> Self {
self._fields.5 = value;
self
}
}
impl<S: BosStr, St: action_state::State> ActionBuilder<S, St> {
pub fn narrative_weight(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_narrative_weight(mut self, value: Option<i64>) -> Self {
self._fields.6 = value;
self
}
}
impl<S: BosStr, St: action_state::State> ActionBuilder<S, St> {
pub fn target_reference(mut self, value: impl Into<Option<AtUri<S>>>) -> Self {
self._fields.7 = value.into();
self
}
pub fn maybe_target_reference(mut self, value: Option<AtUri<S>>) -> Self {
self._fields.7 = value;
self
}
}
impl<S: BosStr, St: action_state::State> ActionBuilder<S, St> {
pub fn visibility(mut self, value: impl Into<Option<ActionVisibility<S>>>) -> Self {
self._fields.8 = value.into();
self
}
pub fn maybe_visibility(mut self, value: Option<ActionVisibility<S>>) -> Self {
self._fields.8 = value;
self
}
}
impl<S: BosStr, St> ActionBuilder<S, St>
where
St: action_state::State,
St::WorldReference: action_state::IsUnset,
{
pub fn world_reference(
mut self,
value: impl Into<AtUri<S>>,
) -> ActionBuilder<S, action_state::SetWorldReference<St>> {
self._fields.9 = Option::Some(value.into());
ActionBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ActionBuilder<S, St>
where
St: action_state::State,
St::CreatedAt: action_state::IsSet,
St::ActorDid: action_state::IsSet,
St::WorldReference: action_state::IsSet,
{
pub fn build(self) -> Action<S> {
Action {
action_type: self._fields.0,
actor_did: self._fields.1.unwrap(),
character_reference: self._fields.2,
content: self._fields.3,
created_at: self._fields.4.unwrap(),
location_reference: self._fields.5,
narrative_weight: self._fields.6,
target_reference: self._fields.7,
visibility: self._fields.8,
world_reference: self._fields.9.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Action<S> {
Action {
action_type: self._fields.0,
actor_did: self._fields.1.unwrap(),
character_reference: self._fields.2,
content: self._fields.3,
created_at: self._fields.4.unwrap(),
location_reference: self._fields.5,
narrative_weight: self._fields.6,
target_reference: self._fields.7,
visibility: self._fields.8,
world_reference: self._fields.9.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_world_ptah_temp_action() -> 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("world.ptah.temp.action"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"An entry in a ship's log. Something happened. Someone did it. The Opening of the Mouth ceremony — Ptah opens the mouth and the statue breathes, speaks, acts. The action record is the breath.",
),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("actorDID"),
SmolStr::new_static("worldReference"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("actionType"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("What kind of action. Open-ended."),
),
max_length: Some(640usize),
max_graphemes: Some(64usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("actorDID"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Who performed the action — the person behind the character.",
),
),
format: Some(LexStringFormat::Did),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("characterReference"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The AT URI of the character performing the action. Not the person — the character.",
),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("content"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"What actually happened. The text of the action.",
),
),
max_length: Some(30720usize),
max_graphemes: Some(3000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Timestamp of the action."),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("locationReference"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The AT URI of the location record where this action took place.",
),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("narrativeWeight"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(0i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("targetReference"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"If this action was directed at another character or object, the AT URI of the target.",
),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("visibility"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The narrative visibility tier of this action.",
),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("worldReference"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The AT URI of the world this action happened in.",
),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}