#[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, UriValue};
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::community_lexicon::location::address::Address;
use crate::community_lexicon::location::geo::Geo;
#[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 = "app.beaconbits.venue",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Venue<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub address: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub address_details: Option<Address<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub category: Option<S>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub location: Option<Geo<S>>,
pub name: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub osm_uri: Option<UriValue<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 VenueGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Venue<S>,
}
impl<S: BosStr> Venue<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, VenueRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct VenueRecord;
impl XrpcResp for VenueRecord {
const NSID: &'static str = "app.beaconbits.venue";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = VenueGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<VenueGetRecordOutput<S>> for Venue<S> {
fn from(output: VenueGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Venue<S> {
const NSID: &'static str = "app.beaconbits.venue";
type Record = VenueRecord;
}
impl Collection for VenueRecord {
const NSID: &'static str = "app.beaconbits.venue";
type Record = VenueRecord;
}
impl<S: BosStr> LexiconSchema for Venue<S> {
fn nsid() -> &'static str {
"app.beaconbits.venue"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_beaconbits_venue()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.address {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 256usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("address"),
max: 256usize,
actual: count,
});
}
}
}
if let Some(ref value) = self.category {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 64usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("category"),
max: 64usize,
actual: count,
});
}
}
}
{
let value = &self.name;
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 64usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("name"),
max: 64usize,
actual: count,
});
}
}
}
Ok(())
}
}
pub mod venue_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 Name;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CreatedAt = Unset;
type Name = 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 Name = St::Name;
}
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 CreatedAt = St::CreatedAt;
type Name = Set<members::name>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct created_at(());
pub struct name(());
}
}
pub struct VenueBuilder<S: BosStr, St: venue_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<S>,
Option<Address<S>>,
Option<S>,
Option<Datetime>,
Option<Geo<S>>,
Option<S>,
Option<UriValue<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Venue<S> {
pub fn new() -> VenueBuilder<S, venue_state::Empty> {
VenueBuilder::new()
}
}
impl<S: BosStr> VenueBuilder<S, venue_state::Empty> {
pub fn new() -> Self {
VenueBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: venue_state::State> VenueBuilder<S, St> {
pub fn address(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_address(mut self, value: Option<S>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St: venue_state::State> VenueBuilder<S, St> {
pub fn address_details(mut self, value: impl Into<Option<Address<S>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_address_details(mut self, value: Option<Address<S>>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St: venue_state::State> VenueBuilder<S, St> {
pub fn category(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_category(mut self, value: Option<S>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St> VenueBuilder<S, St>
where
St: venue_state::State,
St::CreatedAt: venue_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> VenueBuilder<S, venue_state::SetCreatedAt<St>> {
self._fields.3 = Option::Some(value.into());
VenueBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: venue_state::State> VenueBuilder<S, St> {
pub fn location(mut self, value: impl Into<Option<Geo<S>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_location(mut self, value: Option<Geo<S>>) -> Self {
self._fields.4 = value;
self
}
}
impl<S: BosStr, St> VenueBuilder<S, St>
where
St: venue_state::State,
St::Name: venue_state::IsUnset,
{
pub fn name(mut self, value: impl Into<S>) -> VenueBuilder<S, venue_state::SetName<St>> {
self._fields.5 = Option::Some(value.into());
VenueBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: venue_state::State> VenueBuilder<S, St> {
pub fn osm_uri(mut self, value: impl Into<Option<UriValue<S>>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_osm_uri(mut self, value: Option<UriValue<S>>) -> Self {
self._fields.6 = value;
self
}
}
impl<S: BosStr, St> VenueBuilder<S, St>
where
St: venue_state::State,
St::CreatedAt: venue_state::IsSet,
St::Name: venue_state::IsSet,
{
pub fn build(self) -> Venue<S> {
Venue {
address: self._fields.0,
address_details: self._fields.1,
category: self._fields.2,
created_at: self._fields.3.unwrap(),
location: self._fields.4,
name: self._fields.5.unwrap(),
osm_uri: self._fields.6,
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Venue<S> {
Venue {
address: self._fields.0,
address_details: self._fields.1,
category: self._fields.2,
created_at: self._fields.3.unwrap(),
location: self._fields.4,
name: self._fields.5.unwrap(),
osm_uri: self._fields.6,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_app_beaconbits_venue() -> 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("app.beaconbits.venue"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(CowStr::new_static("A user-created venue definition")),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(vec![
SmolStr::new_static("name"),
SmolStr::new_static("createdAt"),
]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("address"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("Human-readable address")),
max_graphemes: Some(256usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("addressDetails"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("community.lexicon.location.address"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("category"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"Venue category (bar, cafe, restaurant, etc.)",
)),
max_graphemes: Some(64usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"Timestamp when the venue was created",
)),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("location"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("community.lexicon.location.geo"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"Display name of the venue",
)),
max_graphemes: Some(64usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("osmUri"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"Link to underlying OpenStreetMap entity (osm://node/123)",
)),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}