#[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.tool",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Tool<S: BosStr = DefaultStr> {
pub code: S,
pub created_at: Datetime,
pub description: S,
pub input_schema: Data<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub last_updated: Option<Datetime>,
pub name: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub required_commands: Option<Vec<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub required_secrets: Option<Vec<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub required_tools: Option<Vec<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub requires_network: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub requires_workspace: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub version: Option<i64>,
#[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 ToolGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Tool<S>,
}
impl<S: BosStr> Tool<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, ToolRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ToolRecord;
impl XrpcResp for ToolRecord {
const NSID: &'static str = "diy.razorgirl.winter.tool";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ToolGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<ToolGetRecordOutput<S>> for Tool<S> {
fn from(output: ToolGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Tool<S> {
const NSID: &'static str = "diy.razorgirl.winter.tool";
type Record = ToolRecord;
}
impl Collection for ToolRecord {
const NSID: &'static str = "diy.razorgirl.winter.tool";
type Record = ToolRecord;
}
impl<S: BosStr> LexiconSchema for Tool<S> {
fn nsid() -> &'static str {
"diy.razorgirl.winter.tool"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_diy_razorgirl_winter_tool()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.code;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 100000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("code"),
max: 100000usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.description;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 1024usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("description"),
max: 1024usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
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 tool_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 InputSchema;
type Description;
type Name;
type Code;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type InputSchema = Unset;
type Description = Unset;
type Name = Unset;
type Code = Unset;
type CreatedAt = Unset;
}
pub struct SetInputSchema<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetInputSchema<St> {}
impl<St: State> State for SetInputSchema<St> {
type InputSchema = Set<members::input_schema>;
type Description = St::Description;
type Name = St::Name;
type Code = St::Code;
type CreatedAt = St::CreatedAt;
}
pub struct SetDescription<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetDescription<St> {}
impl<St: State> State for SetDescription<St> {
type InputSchema = St::InputSchema;
type Description = Set<members::description>;
type Name = St::Name;
type Code = St::Code;
type CreatedAt = St::CreatedAt;
}
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 InputSchema = St::InputSchema;
type Description = St::Description;
type Name = Set<members::name>;
type Code = St::Code;
type CreatedAt = St::CreatedAt;
}
pub struct SetCode<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCode<St> {}
impl<St: State> State for SetCode<St> {
type InputSchema = St::InputSchema;
type Description = St::Description;
type Name = St::Name;
type Code = Set<members::code>;
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 InputSchema = St::InputSchema;
type Description = St::Description;
type Name = St::Name;
type Code = St::Code;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct input_schema(());
pub struct description(());
pub struct name(());
pub struct code(());
pub struct created_at(());
}
}
pub struct ToolBuilder<S: BosStr, St: tool_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<S>,
Option<Datetime>,
Option<S>,
Option<Data<S>>,
Option<Datetime>,
Option<S>,
Option<Vec<S>>,
Option<Vec<S>>,
Option<Vec<S>>,
Option<bool>,
Option<bool>,
Option<i64>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Tool<S> {
pub fn new() -> ToolBuilder<S, tool_state::Empty> {
ToolBuilder::new()
}
}
impl<S: BosStr> ToolBuilder<S, tool_state::Empty> {
pub fn new() -> Self {
ToolBuilder {
_state: PhantomData,
_fields: (
None, None, None, None, None, None, None, None, None, None, None, None,
),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ToolBuilder<S, St>
where
St: tool_state::State,
St::Code: tool_state::IsUnset,
{
pub fn code(mut self, value: impl Into<S>) -> ToolBuilder<S, tool_state::SetCode<St>> {
self._fields.0 = Option::Some(value.into());
ToolBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ToolBuilder<S, St>
where
St: tool_state::State,
St::CreatedAt: tool_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ToolBuilder<S, tool_state::SetCreatedAt<St>> {
self._fields.1 = Option::Some(value.into());
ToolBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ToolBuilder<S, St>
where
St: tool_state::State,
St::Description: tool_state::IsUnset,
{
pub fn description(
mut self,
value: impl Into<S>,
) -> ToolBuilder<S, tool_state::SetDescription<St>> {
self._fields.2 = Option::Some(value.into());
ToolBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ToolBuilder<S, St>
where
St: tool_state::State,
St::InputSchema: tool_state::IsUnset,
{
pub fn input_schema(
mut self,
value: impl Into<Data<S>>,
) -> ToolBuilder<S, tool_state::SetInputSchema<St>> {
self._fields.3 = Option::Some(value.into());
ToolBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: tool_state::State> ToolBuilder<S, St> {
pub fn last_updated(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_last_updated(mut self, value: Option<Datetime>) -> Self {
self._fields.4 = value;
self
}
}
impl<S: BosStr, St> ToolBuilder<S, St>
where
St: tool_state::State,
St::Name: tool_state::IsUnset,
{
pub fn name(mut self, value: impl Into<S>) -> ToolBuilder<S, tool_state::SetName<St>> {
self._fields.5 = Option::Some(value.into());
ToolBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: tool_state::State> ToolBuilder<S, St> {
pub fn required_commands(mut self, value: impl Into<Option<Vec<S>>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_required_commands(mut self, value: Option<Vec<S>>) -> Self {
self._fields.6 = value;
self
}
}
impl<S: BosStr, St: tool_state::State> ToolBuilder<S, St> {
pub fn required_secrets(mut self, value: impl Into<Option<Vec<S>>>) -> Self {
self._fields.7 = value.into();
self
}
pub fn maybe_required_secrets(mut self, value: Option<Vec<S>>) -> Self {
self._fields.7 = value;
self
}
}
impl<S: BosStr, St: tool_state::State> ToolBuilder<S, St> {
pub fn required_tools(mut self, value: impl Into<Option<Vec<S>>>) -> Self {
self._fields.8 = value.into();
self
}
pub fn maybe_required_tools(mut self, value: Option<Vec<S>>) -> Self {
self._fields.8 = value;
self
}
}
impl<S: BosStr, St: tool_state::State> ToolBuilder<S, St> {
pub fn requires_network(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.9 = value.into();
self
}
pub fn maybe_requires_network(mut self, value: Option<bool>) -> Self {
self._fields.9 = value;
self
}
}
impl<S: BosStr, St: tool_state::State> ToolBuilder<S, St> {
pub fn requires_workspace(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.10 = value.into();
self
}
pub fn maybe_requires_workspace(mut self, value: Option<bool>) -> Self {
self._fields.10 = value;
self
}
}
impl<S: BosStr, St: tool_state::State> ToolBuilder<S, St> {
pub fn version(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.11 = value.into();
self
}
pub fn maybe_version(mut self, value: Option<i64>) -> Self {
self._fields.11 = value;
self
}
}
impl<S: BosStr, St> ToolBuilder<S, St>
where
St: tool_state::State,
St::InputSchema: tool_state::IsSet,
St::Description: tool_state::IsSet,
St::Name: tool_state::IsSet,
St::Code: tool_state::IsSet,
St::CreatedAt: tool_state::IsSet,
{
pub fn build(self) -> Tool<S> {
Tool {
code: self._fields.0.unwrap(),
created_at: self._fields.1.unwrap(),
description: self._fields.2.unwrap(),
input_schema: self._fields.3.unwrap(),
last_updated: self._fields.4,
name: self._fields.5.unwrap(),
required_commands: self._fields.6,
required_secrets: self._fields.7,
required_tools: self._fields.8,
requires_network: self._fields.9,
requires_workspace: self._fields.10,
version: self._fields.11,
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Tool<S> {
Tool {
code: self._fields.0.unwrap(),
created_at: self._fields.1.unwrap(),
description: self._fields.2.unwrap(),
input_schema: self._fields.3.unwrap(),
last_updated: self._fields.4,
name: self._fields.5.unwrap(),
required_commands: self._fields.6,
required_secrets: self._fields.7,
required_tools: self._fields.8,
requires_network: self._fields.9,
requires_workspace: self._fields.10,
version: self._fields.11,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_diy_razorgirl_winter_tool() -> 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.tool"),
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("name"),
SmolStr::new_static("description"),
SmolStr::new_static("code"),
SmolStr::new_static("inputSchema"),
SmolStr::new_static("createdAt"),
]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("code"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"TS/JS source, must export default async function",
)),
max_length: Some(100000usize),
..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 {
max_length: Some(1024usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("inputSchema"),
LexObjectProperty::Unknown(LexUnknown {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("lastUpdated"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString {
max_length: Some(64usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("requiredCommands"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::String(LexString {
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("requiredSecrets"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::String(LexString {
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("requiredTools"),
LexObjectProperty::Array(LexArray {
description: Some(CowStr::new_static(
"Tools this tool chains to (AT URIs or built-in names)",
)),
items: LexArrayItem::String(LexString {
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("requiresNetwork"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("requiresWorkspace"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("version"),
LexObjectProperty::Integer(LexInteger {
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}