#[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 = "social.oolong.alpha.brew",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Brew<S: BosStr = DefaultStr> {
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub infuser_ref: Option<AtUri<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub infusion_method: Option<BrewInfusionMethod<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub leaf_grams: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub rating: Option<i64>,
pub style: BrewStyle<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub tasting_notes: Option<S>,
pub tea_ref: AtUri<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub temperature: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub time_seconds: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub vessel_ref: Option<AtUri<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub water_amount: Option<i64>,
#[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 BrewInfusionMethod<S: BosStr = DefaultStr> {
TeaBag,
LooseLeaf,
Infuser,
Other(S),
}
impl<S: BosStr> BrewInfusionMethod<S> {
pub fn as_str(&self) -> &str {
match self {
Self::TeaBag => "tea-bag",
Self::LooseLeaf => "loose-leaf",
Self::Infuser => "infuser",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"tea-bag" => Self::TeaBag,
"loose-leaf" => Self::LooseLeaf,
"infuser" => Self::Infuser,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for BrewInfusionMethod<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for BrewInfusionMethod<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for BrewInfusionMethod<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 BrewInfusionMethod<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 BrewInfusionMethod<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for BrewInfusionMethod<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = BrewInfusionMethod<S::Output>;
fn into_static(self) -> Self::Output {
match self {
BrewInfusionMethod::TeaBag => BrewInfusionMethod::TeaBag,
BrewInfusionMethod::LooseLeaf => BrewInfusionMethod::LooseLeaf,
BrewInfusionMethod::Infuser => BrewInfusionMethod::Infuser,
BrewInfusionMethod::Other(v) => BrewInfusionMethod::Other(v.into_static()),
}
}
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum BrewStyle<S: BosStr = DefaultStr> {
LongSteep,
ColdBrew,
Other(S),
}
impl<S: BosStr> BrewStyle<S> {
pub fn as_str(&self) -> &str {
match self {
Self::LongSteep => "longSteep",
Self::ColdBrew => "coldBrew",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"longSteep" => Self::LongSteep,
"coldBrew" => Self::ColdBrew,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for BrewStyle<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for BrewStyle<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for BrewStyle<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 BrewStyle<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 BrewStyle<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for BrewStyle<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = BrewStyle<S::Output>;
fn into_static(self) -> Self::Output {
match self {
BrewStyle::LongSteep => BrewStyle::LongSteep,
BrewStyle::ColdBrew => BrewStyle::ColdBrew,
BrewStyle::Other(v) => BrewStyle::Other(v.into_static()),
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct BrewGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Brew<S>,
}
impl<S: BosStr> Brew<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, BrewRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct BrewRecord;
impl XrpcResp for BrewRecord {
const NSID: &'static str = "social.oolong.alpha.brew";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = BrewGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<BrewGetRecordOutput<S>> for Brew<S> {
fn from(output: BrewGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Brew<S> {
const NSID: &'static str = "social.oolong.alpha.brew";
type Record = BrewRecord;
}
impl Collection for BrewRecord {
const NSID: &'static str = "social.oolong.alpha.brew";
type Record = BrewRecord;
}
impl<S: BosStr> LexiconSchema for Brew<S> {
fn nsid() -> &'static str {
"social.oolong.alpha.brew"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_social_oolong_alpha_brew()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.infusion_method {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 50usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("infusion_method"),
max: 50usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.leaf_grams {
if *value < 0i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("leaf_grams"),
min: 0i64,
actual: *value,
});
}
}
if let Some(ref value) = self.rating {
if *value > 10i64 {
return Err(ConstraintError::Maximum {
path: ValidationPath::from_field("rating"),
max: 10i64,
actual: *value,
});
}
}
if let Some(ref value) = self.rating {
if *value < 1i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("rating"),
min: 1i64,
actual: *value,
});
}
}
{
let value = &self.style;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 50usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("style"),
max: 50usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.tasting_notes {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 2000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("tasting_notes"),
max: 2000usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.temperature {
if *value > 1000i64 {
return Err(ConstraintError::Maximum {
path: ValidationPath::from_field("temperature"),
max: 1000i64,
actual: *value,
});
}
}
if let Some(ref value) = self.temperature {
if *value < 0i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("temperature"),
min: 0i64,
actual: *value,
});
}
}
if let Some(ref value) = self.time_seconds {
if *value < 0i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("time_seconds"),
min: 0i64,
actual: *value,
});
}
}
if let Some(ref value) = self.water_amount {
if *value < 0i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("water_amount"),
min: 0i64,
actual: *value,
});
}
}
Ok(())
}
}
pub mod brew_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 CreatedAt;
type Style;
type TeaRef;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CreatedAt = Unset;
type Style = Unset;
type TeaRef = Unset;
}
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 CreatedAt = Set<members::created_at>;
type Style = St::Style;
type TeaRef = St::TeaRef;
}
pub struct SetStyle<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetStyle<St> {}
impl<St: State> State for SetStyle<St> {
type CreatedAt = St::CreatedAt;
type Style = Set<members::style>;
type TeaRef = St::TeaRef;
}
pub struct SetTeaRef<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetTeaRef<St> {}
impl<St: State> State for SetTeaRef<St> {
type CreatedAt = St::CreatedAt;
type Style = St::Style;
type TeaRef = Set<members::tea_ref>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct created_at(());
pub struct style(());
pub struct tea_ref(());
}
}
pub struct BrewBuilder<St: brew_state::State, S: BosStr = DefaultStr> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Datetime>,
Option<AtUri<S>>,
Option<BrewInfusionMethod<S>>,
Option<i64>,
Option<i64>,
Option<BrewStyle<S>>,
Option<S>,
Option<AtUri<S>>,
Option<i64>,
Option<i64>,
Option<AtUri<S>>,
Option<i64>,
),
_type: PhantomData<fn() -> S>,
}
impl Brew<DefaultStr> {
pub fn new() -> BrewBuilder<brew_state::Empty, DefaultStr> {
BrewBuilder::new()
}
}
impl<S: BosStr> Brew<S> {
pub fn builder() -> BrewBuilder<brew_state::Empty, S> {
BrewBuilder::builder()
}
}
impl BrewBuilder<brew_state::Empty, DefaultStr> {
pub fn new() -> Self {
BrewBuilder {
_state: PhantomData,
_fields: (
None, None, None, None, None, None, None, None, None, None, None, None,
),
_type: PhantomData,
}
}
}
impl<S: BosStr> BrewBuilder<brew_state::Empty, S> {
pub fn builder() -> Self {
BrewBuilder {
_state: PhantomData,
_fields: (
None, None, None, None, None, None, None, None, None, None, None, None,
),
_type: PhantomData,
}
}
}
impl<St, S: BosStr> BrewBuilder<St, S>
where
St: brew_state::State,
St::CreatedAt: brew_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> BrewBuilder<brew_state::SetCreatedAt<St>, S> {
self._fields.0 = Option::Some(value.into());
BrewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: brew_state::State, S: BosStr> BrewBuilder<St, S> {
pub fn infuser_ref(mut self, value: impl Into<Option<AtUri<S>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_infuser_ref(mut self, value: Option<AtUri<S>>) -> Self {
self._fields.1 = value;
self
}
}
impl<St: brew_state::State, S: BosStr> BrewBuilder<St, S> {
pub fn infusion_method(mut self, value: impl Into<Option<BrewInfusionMethod<S>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_infusion_method(mut self, value: Option<BrewInfusionMethod<S>>) -> Self {
self._fields.2 = value;
self
}
}
impl<St: brew_state::State, S: BosStr> BrewBuilder<St, S> {
pub fn leaf_grams(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_leaf_grams(mut self, value: Option<i64>) -> Self {
self._fields.3 = value;
self
}
}
impl<St: brew_state::State, S: BosStr> BrewBuilder<St, S> {
pub fn rating(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_rating(mut self, value: Option<i64>) -> Self {
self._fields.4 = value;
self
}
}
impl<St, S: BosStr> BrewBuilder<St, S>
where
St: brew_state::State,
St::Style: brew_state::IsUnset,
{
pub fn style(
mut self,
value: impl Into<BrewStyle<S>>,
) -> BrewBuilder<brew_state::SetStyle<St>, S> {
self._fields.5 = Option::Some(value.into());
BrewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: brew_state::State, S: BosStr> BrewBuilder<St, S> {
pub fn tasting_notes(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_tasting_notes(mut self, value: Option<S>) -> Self {
self._fields.6 = value;
self
}
}
impl<St, S: BosStr> BrewBuilder<St, S>
where
St: brew_state::State,
St::TeaRef: brew_state::IsUnset,
{
pub fn tea_ref(
mut self,
value: impl Into<AtUri<S>>,
) -> BrewBuilder<brew_state::SetTeaRef<St>, S> {
self._fields.7 = Option::Some(value.into());
BrewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: brew_state::State, S: BosStr> BrewBuilder<St, S> {
pub fn temperature(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.8 = value.into();
self
}
pub fn maybe_temperature(mut self, value: Option<i64>) -> Self {
self._fields.8 = value;
self
}
}
impl<St: brew_state::State, S: BosStr> BrewBuilder<St, S> {
pub fn time_seconds(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.9 = value.into();
self
}
pub fn maybe_time_seconds(mut self, value: Option<i64>) -> Self {
self._fields.9 = value;
self
}
}
impl<St: brew_state::State, S: BosStr> BrewBuilder<St, S> {
pub fn vessel_ref(mut self, value: impl Into<Option<AtUri<S>>>) -> Self {
self._fields.10 = value.into();
self
}
pub fn maybe_vessel_ref(mut self, value: Option<AtUri<S>>) -> Self {
self._fields.10 = value;
self
}
}
impl<St: brew_state::State, S: BosStr> BrewBuilder<St, S> {
pub fn water_amount(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.11 = value.into();
self
}
pub fn maybe_water_amount(mut self, value: Option<i64>) -> Self {
self._fields.11 = value;
self
}
}
impl<St, S: BosStr> BrewBuilder<St, S>
where
St: brew_state::State,
St::CreatedAt: brew_state::IsSet,
St::Style: brew_state::IsSet,
St::TeaRef: brew_state::IsSet,
{
pub fn build(self) -> Brew<S> {
Brew {
created_at: self._fields.0.unwrap(),
infuser_ref: self._fields.1,
infusion_method: self._fields.2,
leaf_grams: self._fields.3,
rating: self._fields.4,
style: self._fields.5.unwrap(),
tasting_notes: self._fields.6,
tea_ref: self._fields.7.unwrap(),
temperature: self._fields.8,
time_seconds: self._fields.9,
vessel_ref: self._fields.10,
water_amount: self._fields.11,
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Brew<S> {
Brew {
created_at: self._fields.0.unwrap(),
infuser_ref: self._fields.1,
infusion_method: self._fields.2,
leaf_grams: self._fields.3,
rating: self._fields.4,
style: self._fields.5.unwrap(),
tasting_notes: self._fields.6,
tea_ref: self._fields.7.unwrap(),
temperature: self._fields.8,
time_seconds: self._fields.9,
vessel_ref: self._fields.10,
water_amount: self._fields.11,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_social_oolong_alpha_brew() -> 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("social.oolong.alpha.brew"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(CowStr::new_static("A tea brewing session")),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("teaRef"), SmolStr::new_static("style"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("infuserRef"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"AT-URI to a social.oolong.alpha.infuser record. Only meaningful when infusionMethod=infuser.",
),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("infusionMethod"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"How the leaf was contained during brewing",
),
),
max_length: Some(50usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("leafGrams"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(0i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("rating"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(1i64),
maximum: Some(10i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("style"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Brewing style. Required. Canonical filterable axis.",
),
),
max_length: Some(50usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("tastingNotes"),
LexObjectProperty::String(LexString {
max_length: Some(2000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("teaRef"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"AT-URI to a social.oolong.alpha.tea record",
),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("temperature"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(0i64),
maximum: Some(1000i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("timeSeconds"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(0i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("vesselRef"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"AT-URI to a social.oolong.alpha.brewer record",
),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("waterAmount"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(0i64),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}