#[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::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::{Serialize, Deserialize};
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", rename = "diy.razorgirl.winter.tool", tag = "$type")]
pub struct Tool<'a> {
#[serde(borrow)]
pub code: CowStr<'a>,
pub created_at: Datetime,
#[serde(borrow)]
pub description: CowStr<'a>,
#[serde(borrow)]
pub input_schema: Data<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
pub last_updated: Option<Datetime>,
#[serde(borrow)]
pub name: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub required_commands: Option<Vec<CowStr<'a>>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub required_secrets: Option<Vec<CowStr<'a>>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub required_tools: Option<Vec<CowStr<'a>>>,
#[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>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ToolGetRecordOutput<'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: Tool<'a>,
}
impl<'a> Tool<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, ToolRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[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<'de> = ToolGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<ToolGetRecordOutput<'_>> for Tool<'_> {
fn from(output: ToolGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Tool<'_> {
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<'a> LexiconSchema for Tool<'a> {
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::{Set, Unset, IsSet, IsUnset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Code;
type Name;
type InputSchema;
type CreatedAt;
type Description;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Code = Unset;
type Name = Unset;
type InputSchema = Unset;
type CreatedAt = Unset;
type Description = Unset;
}
pub struct SetCode<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCode<S> {}
impl<S: State> State for SetCode<S> {
type Code = Set<members::code>;
type Name = S::Name;
type InputSchema = S::InputSchema;
type CreatedAt = S::CreatedAt;
type Description = S::Description;
}
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 Code = S::Code;
type Name = Set<members::name>;
type InputSchema = S::InputSchema;
type CreatedAt = S::CreatedAt;
type Description = S::Description;
}
pub struct SetInputSchema<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetInputSchema<S> {}
impl<S: State> State for SetInputSchema<S> {
type Code = S::Code;
type Name = S::Name;
type InputSchema = Set<members::input_schema>;
type CreatedAt = S::CreatedAt;
type Description = S::Description;
}
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 Code = S::Code;
type Name = S::Name;
type InputSchema = S::InputSchema;
type CreatedAt = Set<members::created_at>;
type Description = S::Description;
}
pub struct SetDescription<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetDescription<S> {}
impl<S: State> State for SetDescription<S> {
type Code = S::Code;
type Name = S::Name;
type InputSchema = S::InputSchema;
type CreatedAt = S::CreatedAt;
type Description = Set<members::description>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct code(());
pub struct name(());
pub struct input_schema(());
pub struct created_at(());
pub struct description(());
}
}
pub struct ToolBuilder<'a, S: tool_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<CowStr<'a>>,
Option<Datetime>,
Option<CowStr<'a>>,
Option<Data<'a>>,
Option<Datetime>,
Option<CowStr<'a>>,
Option<Vec<CowStr<'a>>>,
Option<Vec<CowStr<'a>>>,
Option<Vec<CowStr<'a>>>,
Option<bool>,
Option<bool>,
Option<i64>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Tool<'a> {
pub fn new() -> ToolBuilder<'a, tool_state::Empty> {
ToolBuilder::new()
}
}
impl<'a> ToolBuilder<'a, tool_state::Empty> {
pub fn new() -> Self {
ToolBuilder {
_state: PhantomData,
_fields: (
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
),
_lifetime: PhantomData,
}
}
}
impl<'a, S> ToolBuilder<'a, S>
where
S: tool_state::State,
S::Code: tool_state::IsUnset,
{
pub fn code(
mut self,
value: impl Into<CowStr<'a>>,
) -> ToolBuilder<'a, tool_state::SetCode<S>> {
self._fields.0 = Option::Some(value.into());
ToolBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ToolBuilder<'a, S>
where
S: tool_state::State,
S::CreatedAt: tool_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ToolBuilder<'a, tool_state::SetCreatedAt<S>> {
self._fields.1 = Option::Some(value.into());
ToolBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ToolBuilder<'a, S>
where
S: tool_state::State,
S::Description: tool_state::IsUnset,
{
pub fn description(
mut self,
value: impl Into<CowStr<'a>>,
) -> ToolBuilder<'a, tool_state::SetDescription<S>> {
self._fields.2 = Option::Some(value.into());
ToolBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ToolBuilder<'a, S>
where
S: tool_state::State,
S::InputSchema: tool_state::IsUnset,
{
pub fn input_schema(
mut self,
value: impl Into<Data<'a>>,
) -> ToolBuilder<'a, tool_state::SetInputSchema<S>> {
self._fields.3 = Option::Some(value.into());
ToolBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: tool_state::State> ToolBuilder<'a, S> {
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<'a, S> ToolBuilder<'a, S>
where
S: tool_state::State,
S::Name: tool_state::IsUnset,
{
pub fn name(
mut self,
value: impl Into<CowStr<'a>>,
) -> ToolBuilder<'a, tool_state::SetName<S>> {
self._fields.5 = Option::Some(value.into());
ToolBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: tool_state::State> ToolBuilder<'a, S> {
pub fn required_commands(
mut self,
value: impl Into<Option<Vec<CowStr<'a>>>>,
) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_required_commands(mut self, value: Option<Vec<CowStr<'a>>>) -> Self {
self._fields.6 = value;
self
}
}
impl<'a, S: tool_state::State> ToolBuilder<'a, S> {
pub fn required_secrets(
mut self,
value: impl Into<Option<Vec<CowStr<'a>>>>,
) -> Self {
self._fields.7 = value.into();
self
}
pub fn maybe_required_secrets(mut self, value: Option<Vec<CowStr<'a>>>) -> Self {
self._fields.7 = value;
self
}
}
impl<'a, S: tool_state::State> ToolBuilder<'a, S> {
pub fn required_tools(mut self, value: impl Into<Option<Vec<CowStr<'a>>>>) -> Self {
self._fields.8 = value.into();
self
}
pub fn maybe_required_tools(mut self, value: Option<Vec<CowStr<'a>>>) -> Self {
self._fields.8 = value;
self
}
}
impl<'a, S: tool_state::State> ToolBuilder<'a, S> {
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<'a, S: tool_state::State> ToolBuilder<'a, S> {
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<'a, S: tool_state::State> ToolBuilder<'a, S> {
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<'a, S> ToolBuilder<'a, S>
where
S: tool_state::State,
S::Code: tool_state::IsSet,
S::Name: tool_state::IsSet,
S::InputSchema: tool_state::IsSet,
S::CreatedAt: tool_state::IsSet,
S::Description: tool_state::IsSet,
{
pub fn build(self) -> Tool<'a> {
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<jacquard_common::deps::smol_str::SmolStr, Data<'a>>,
) -> Tool<'a> {
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> {
#[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("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()
}
}