#[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::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};
use crate::com_atproto::repo::strong_ref::StrongRef;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Buzz<'a> {
#[serde(borrow)]
pub book: StrongRef<'a>,
#[serde(borrow)]
pub comment: CowStr<'a>,
pub created_at: Datetime,
#[serde(borrow)]
pub parent: StrongRef<'a>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct BuzzGetRecordOutput<'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: Buzz<'a>,
}
impl<'a> Buzz<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, BuzzRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[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<'de> = BuzzGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<BuzzGetRecordOutput<'_>> for Buzz<'_> {
fn from(output: BuzzGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Buzz<'_> {
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<'a> LexiconSchema for Buzz<'a> {
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::{Set, Unset, IsSet, IsUnset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Comment;
type Parent;
type CreatedAt;
type Book;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Comment = Unset;
type Parent = Unset;
type CreatedAt = Unset;
type Book = Unset;
}
pub struct SetComment<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetComment<S> {}
impl<S: State> State for SetComment<S> {
type Comment = Set<members::comment>;
type Parent = S::Parent;
type CreatedAt = S::CreatedAt;
type Book = S::Book;
}
pub struct SetParent<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetParent<S> {}
impl<S: State> State for SetParent<S> {
type Comment = S::Comment;
type Parent = Set<members::parent>;
type CreatedAt = S::CreatedAt;
type Book = S::Book;
}
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 Comment = S::Comment;
type Parent = S::Parent;
type CreatedAt = Set<members::created_at>;
type Book = S::Book;
}
pub struct SetBook<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetBook<S> {}
impl<S: State> State for SetBook<S> {
type Comment = S::Comment;
type Parent = S::Parent;
type CreatedAt = S::CreatedAt;
type Book = Set<members::book>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct comment(());
pub struct parent(());
pub struct created_at(());
pub struct book(());
}
}
pub struct BuzzBuilder<'a, S: buzz_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<StrongRef<'a>>,
Option<CowStr<'a>>,
Option<Datetime>,
Option<StrongRef<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Buzz<'a> {
pub fn new() -> BuzzBuilder<'a, buzz_state::Empty> {
BuzzBuilder::new()
}
}
impl<'a> BuzzBuilder<'a, buzz_state::Empty> {
pub fn new() -> Self {
BuzzBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> BuzzBuilder<'a, S>
where
S: buzz_state::State,
S::Book: buzz_state::IsUnset,
{
pub fn book(
mut self,
value: impl Into<StrongRef<'a>>,
) -> BuzzBuilder<'a, buzz_state::SetBook<S>> {
self._fields.0 = Option::Some(value.into());
BuzzBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> BuzzBuilder<'a, S>
where
S: buzz_state::State,
S::Comment: buzz_state::IsUnset,
{
pub fn comment(
mut self,
value: impl Into<CowStr<'a>>,
) -> BuzzBuilder<'a, buzz_state::SetComment<S>> {
self._fields.1 = Option::Some(value.into());
BuzzBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> BuzzBuilder<'a, S>
where
S: buzz_state::State,
S::CreatedAt: buzz_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> BuzzBuilder<'a, buzz_state::SetCreatedAt<S>> {
self._fields.2 = Option::Some(value.into());
BuzzBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> BuzzBuilder<'a, S>
where
S: buzz_state::State,
S::Parent: buzz_state::IsUnset,
{
pub fn parent(
mut self,
value: impl Into<StrongRef<'a>>,
) -> BuzzBuilder<'a, buzz_state::SetParent<S>> {
self._fields.3 = Option::Some(value.into());
BuzzBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> BuzzBuilder<'a, S>
where
S: buzz_state::State,
S::Comment: buzz_state::IsSet,
S::Parent: buzz_state::IsSet,
S::CreatedAt: buzz_state::IsSet,
S::Book: buzz_state::IsSet,
{
pub fn build(self) -> Buzz<'a> {
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<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> Buzz<'a> {
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> {
#[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("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()
}
}