#[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;
use crate::com_atproto::repo::strong_ref::StrongRef;
#[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 = "buzz.bookhive.buzz",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Buzz<S: BosStr = DefaultStr> {
pub book: StrongRef<S>,
pub comment: S,
pub created_at: Datetime,
pub parent: StrongRef<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 BuzzGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Buzz<S>,
}
impl<S: BosStr> Buzz<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, BuzzRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct BuzzRecord;
impl XrpcResp for BuzzRecord {
const NSID: &'static str = "buzz.bookhive.buzz";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = BuzzGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<BuzzGetRecordOutput<S>> for Buzz<S> {
fn from(output: BuzzGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Buzz<S> {
const NSID: &'static str = "buzz.bookhive.buzz";
type Record = BuzzRecord;
}
impl Collection for BuzzRecord {
const NSID: &'static str = "buzz.bookhive.buzz";
type Record = BuzzRecord;
}
impl<S: BosStr> LexiconSchema for Buzz<S> {
fn nsid() -> &'static str {
"buzz.bookhive.buzz"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_buzz_bookhive_buzz()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.comment;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 100000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("comment"),
max: 100000usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.comment;
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 10000usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("comment"),
max: 10000usize,
actual: count,
});
}
}
}
Ok(())
}
}
pub mod buzz_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 Comment;
type Book;
type CreatedAt;
type Parent;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Comment = Unset;
type Book = Unset;
type CreatedAt = Unset;
type Parent = Unset;
}
pub struct SetComment<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetComment<St> {}
impl<St: State> State for SetComment<St> {
type Comment = Set<members::comment>;
type Book = St::Book;
type CreatedAt = St::CreatedAt;
type Parent = St::Parent;
}
pub struct SetBook<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetBook<St> {}
impl<St: State> State for SetBook<St> {
type Comment = St::Comment;
type Book = Set<members::book>;
type CreatedAt = St::CreatedAt;
type Parent = St::Parent;
}
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 Comment = St::Comment;
type Book = St::Book;
type CreatedAt = Set<members::created_at>;
type Parent = St::Parent;
}
pub struct SetParent<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetParent<St> {}
impl<St: State> State for SetParent<St> {
type Comment = St::Comment;
type Book = St::Book;
type CreatedAt = St::CreatedAt;
type Parent = Set<members::parent>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct comment(());
pub struct book(());
pub struct created_at(());
pub struct parent(());
}
}
pub struct BuzzBuilder<S: BosStr, St: buzz_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<StrongRef<S>>,
Option<S>,
Option<Datetime>,
Option<StrongRef<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Buzz<S> {
pub fn new() -> BuzzBuilder<S, buzz_state::Empty> {
BuzzBuilder::new()
}
}
impl<S: BosStr> BuzzBuilder<S, buzz_state::Empty> {
pub fn new() -> Self {
BuzzBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> BuzzBuilder<S, St>
where
St: buzz_state::State,
St::Book: buzz_state::IsUnset,
{
pub fn book(
mut self,
value: impl Into<StrongRef<S>>,
) -> BuzzBuilder<S, buzz_state::SetBook<St>> {
self._fields.0 = Option::Some(value.into());
BuzzBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> BuzzBuilder<S, St>
where
St: buzz_state::State,
St::Comment: buzz_state::IsUnset,
{
pub fn comment(mut self, value: impl Into<S>) -> BuzzBuilder<S, buzz_state::SetComment<St>> {
self._fields.1 = Option::Some(value.into());
BuzzBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> BuzzBuilder<S, St>
where
St: buzz_state::State,
St::CreatedAt: buzz_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> BuzzBuilder<S, buzz_state::SetCreatedAt<St>> {
self._fields.2 = Option::Some(value.into());
BuzzBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> BuzzBuilder<S, St>
where
St: buzz_state::State,
St::Parent: buzz_state::IsUnset,
{
pub fn parent(
mut self,
value: impl Into<StrongRef<S>>,
) -> BuzzBuilder<S, buzz_state::SetParent<St>> {
self._fields.3 = Option::Some(value.into());
BuzzBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> BuzzBuilder<S, St>
where
St: buzz_state::State,
St::Comment: buzz_state::IsSet,
St::Book: buzz_state::IsSet,
St::CreatedAt: buzz_state::IsSet,
St::Parent: buzz_state::IsSet,
{
pub fn build(self) -> Buzz<S> {
Buzz {
book: self._fields.0.unwrap(),
comment: self._fields.1.unwrap(),
created_at: self._fields.2.unwrap(),
parent: self._fields.3.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Buzz<S> {
Buzz {
book: self._fields.0.unwrap(),
comment: self._fields.1.unwrap(),
created_at: self._fields.2.unwrap(),
parent: self._fields.3.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_buzz_bookhive_buzz() -> 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("buzz.bookhive.buzz"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static("Record containing a Bookhive comment."),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("comment"),
SmolStr::new_static("createdAt"),
SmolStr::new_static("book"), SmolStr::new_static("parent")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("book"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("com.atproto.repo.strongRef"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("comment"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The content of the comment."),
),
max_length: Some(100000usize),
max_graphemes: Some(10000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Client-declared timestamp when this comment was originally created.",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("parent"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("com.atproto.repo.strongRef"),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}