#[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, UriValue};
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::community_lexicon::location::address::Address;
use crate::community_lexicon::location::geo::Geo;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Venue<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub address: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub address_details: Option<Address<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub category: Option<CowStr<'a>>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub location: Option<Geo<'a>>,
#[serde(borrow)]
pub name: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub osm_uri: Option<UriValue<'a>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct VenueGetRecordOutput<'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: Venue<'a>,
}
impl<'a> Venue<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, VenueRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[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<'de> = VenueGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<VenueGetRecordOutput<'_>> for Venue<'_> {
fn from(output: VenueGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Venue<'_> {
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<'a> LexiconSchema for Venue<'a> {
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::{Set, Unset, IsSet, IsUnset};
#[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<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCreatedAt<S> {}
impl<S: State> State for SetCreatedAt<S> {
type CreatedAt = Set<members::created_at>;
type Name = S::Name;
}
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 CreatedAt = S::CreatedAt;
type Name = Set<members::name>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct created_at(());
pub struct name(());
}
}
pub struct VenueBuilder<'a, S: venue_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<CowStr<'a>>,
Option<Address<'a>>,
Option<CowStr<'a>>,
Option<Datetime>,
Option<Geo<'a>>,
Option<CowStr<'a>>,
Option<UriValue<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Venue<'a> {
pub fn new() -> VenueBuilder<'a, venue_state::Empty> {
VenueBuilder::new()
}
}
impl<'a> VenueBuilder<'a, venue_state::Empty> {
pub fn new() -> Self {
VenueBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: venue_state::State> VenueBuilder<'a, S> {
pub fn address(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_address(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S: venue_state::State> VenueBuilder<'a, S> {
pub fn address_details(mut self, value: impl Into<Option<Address<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_address_details(mut self, value: Option<Address<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: venue_state::State> VenueBuilder<'a, S> {
pub fn category(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_category(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S> VenueBuilder<'a, S>
where
S: venue_state::State,
S::CreatedAt: venue_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> VenueBuilder<'a, venue_state::SetCreatedAt<S>> {
self._fields.3 = Option::Some(value.into());
VenueBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: venue_state::State> VenueBuilder<'a, S> {
pub fn location(mut self, value: impl Into<Option<Geo<'a>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_location(mut self, value: Option<Geo<'a>>) -> Self {
self._fields.4 = value;
self
}
}
impl<'a, S> VenueBuilder<'a, S>
where
S: venue_state::State,
S::Name: venue_state::IsUnset,
{
pub fn name(
mut self,
value: impl Into<CowStr<'a>>,
) -> VenueBuilder<'a, venue_state::SetName<S>> {
self._fields.5 = Option::Some(value.into());
VenueBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: venue_state::State> VenueBuilder<'a, S> {
pub fn osm_uri(mut self, value: impl Into<Option<UriValue<'a>>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_osm_uri(mut self, value: Option<UriValue<'a>>) -> Self {
self._fields.6 = value;
self
}
}
impl<'a, S> VenueBuilder<'a, S>
where
S: venue_state::State,
S::CreatedAt: venue_state::IsSet,
S::Name: venue_state::IsSet,
{
pub fn build(self) -> Venue<'a> {
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<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> Venue<'a> {
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> {
#[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("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()
}
}