#[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;
#[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 = "diy.razorgirl.winter.thought",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Thought<S: BosStr = DefaultStr> {
pub content: S,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub duration_ms: Option<i64>,
pub kind: ThoughtKind<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub tags: Option<Vec<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub trigger: Option<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 ThoughtKind<S: BosStr = DefaultStr> {
Insight,
Question,
Plan,
Reflection,
Error,
Response,
ToolCall,
Other(S),
}
impl<S: BosStr> ThoughtKind<S> {
pub fn as_str(&self) -> &str {
match self {
Self::Insight => "insight",
Self::Question => "question",
Self::Plan => "plan",
Self::Reflection => "reflection",
Self::Error => "error",
Self::Response => "response",
Self::ToolCall => "tool_call",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"insight" => Self::Insight,
"question" => Self::Question,
"plan" => Self::Plan,
"reflection" => Self::Reflection,
"error" => Self::Error,
"response" => Self::Response,
"tool_call" => Self::ToolCall,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for ThoughtKind<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for ThoughtKind<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for ThoughtKind<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 ThoughtKind<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 ThoughtKind<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for ThoughtKind<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = ThoughtKind<S::Output>;
fn into_static(self) -> Self::Output {
match self {
ThoughtKind::Insight => ThoughtKind::Insight,
ThoughtKind::Question => ThoughtKind::Question,
ThoughtKind::Plan => ThoughtKind::Plan,
ThoughtKind::Reflection => ThoughtKind::Reflection,
ThoughtKind::Error => ThoughtKind::Error,
ThoughtKind::Response => ThoughtKind::Response,
ThoughtKind::ToolCall => ThoughtKind::ToolCall,
ThoughtKind::Other(v) => ThoughtKind::Other(v.into_static()),
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ThoughtGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Thought<S>,
}
impl<S: BosStr> Thought<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, ThoughtRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ThoughtRecord;
impl XrpcResp for ThoughtRecord {
const NSID: &'static str = "diy.razorgirl.winter.thought";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ThoughtGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<ThoughtGetRecordOutput<S>> for Thought<S> {
fn from(output: ThoughtGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Thought<S> {
const NSID: &'static str = "diy.razorgirl.winter.thought";
type Record = ThoughtRecord;
}
impl Collection for ThoughtRecord {
const NSID: &'static str = "diy.razorgirl.winter.thought";
type Record = ThoughtRecord;
}
impl<S: BosStr> LexiconSchema for Thought<S> {
fn nsid() -> &'static str {
"diy.razorgirl.winter.thought"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_diy_razorgirl_winter_thought()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.content;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 50000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("content"),
max: 50000usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.tags {
#[allow(unused_comparisons)]
if value.len() > 20usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("tags"),
max: 20usize,
actual: value.len(),
});
}
}
Ok(())
}
}
pub mod thought_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 Kind;
type CreatedAt;
type Content;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Kind = Unset;
type CreatedAt = Unset;
type Content = Unset;
}
pub struct SetKind<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetKind<St> {}
impl<St: State> State for SetKind<St> {
type Kind = Set<members::kind>;
type CreatedAt = St::CreatedAt;
type Content = St::Content;
}
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 Kind = St::Kind;
type CreatedAt = Set<members::created_at>;
type Content = St::Content;
}
pub struct SetContent<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetContent<St> {}
impl<St: State> State for SetContent<St> {
type Kind = St::Kind;
type CreatedAt = St::CreatedAt;
type Content = Set<members::content>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct kind(());
pub struct created_at(());
pub struct content(());
}
}
pub struct ThoughtBuilder<S: BosStr, St: thought_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<S>,
Option<Datetime>,
Option<i64>,
Option<ThoughtKind<S>>,
Option<Vec<S>>,
Option<S>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Thought<S> {
pub fn new() -> ThoughtBuilder<S, thought_state::Empty> {
ThoughtBuilder::new()
}
}
impl<S: BosStr> ThoughtBuilder<S, thought_state::Empty> {
pub fn new() -> Self {
ThoughtBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ThoughtBuilder<S, St>
where
St: thought_state::State,
St::Content: thought_state::IsUnset,
{
pub fn content(
mut self,
value: impl Into<S>,
) -> ThoughtBuilder<S, thought_state::SetContent<St>> {
self._fields.0 = Option::Some(value.into());
ThoughtBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ThoughtBuilder<S, St>
where
St: thought_state::State,
St::CreatedAt: thought_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ThoughtBuilder<S, thought_state::SetCreatedAt<St>> {
self._fields.1 = Option::Some(value.into());
ThoughtBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: thought_state::State> ThoughtBuilder<S, St> {
pub fn duration_ms(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_duration_ms(mut self, value: Option<i64>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St> ThoughtBuilder<S, St>
where
St: thought_state::State,
St::Kind: thought_state::IsUnset,
{
pub fn kind(
mut self,
value: impl Into<ThoughtKind<S>>,
) -> ThoughtBuilder<S, thought_state::SetKind<St>> {
self._fields.3 = Option::Some(value.into());
ThoughtBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: thought_state::State> ThoughtBuilder<S, St> {
pub fn tags(mut self, value: impl Into<Option<Vec<S>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_tags(mut self, value: Option<Vec<S>>) -> Self {
self._fields.4 = value;
self
}
}
impl<S: BosStr, St: thought_state::State> ThoughtBuilder<S, St> {
pub fn trigger(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_trigger(mut self, value: Option<S>) -> Self {
self._fields.5 = value;
self
}
}
impl<S: BosStr, St> ThoughtBuilder<S, St>
where
St: thought_state::State,
St::Kind: thought_state::IsSet,
St::CreatedAt: thought_state::IsSet,
St::Content: thought_state::IsSet,
{
pub fn build(self) -> Thought<S> {
Thought {
content: self._fields.0.unwrap(),
created_at: self._fields.1.unwrap(),
duration_ms: self._fields.2,
kind: self._fields.3.unwrap(),
tags: self._fields.4,
trigger: self._fields.5,
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Thought<S> {
Thought {
content: self._fields.0.unwrap(),
created_at: self._fields.1.unwrap(),
duration_ms: self._fields.2,
kind: self._fields.3.unwrap(),
tags: self._fields.4,
trigger: self._fields.5,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_diy_razorgirl_winter_thought() -> 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("diy.razorgirl.winter.thought"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(vec![
SmolStr::new_static("kind"),
SmolStr::new_static("content"),
SmolStr::new_static("createdAt"),
]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("content"),
LexObjectProperty::String(LexString {
max_length: Some(50000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("durationMs"),
LexObjectProperty::Integer(LexInteger {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("kind"),
LexObjectProperty::String(LexString {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("tags"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::String(LexString {
..Default::default()
}),
max_length: Some(20usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("trigger"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"What prompted this thought",
)),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}