pub mod create_target;
pub mod delete_target;
pub mod list_targets;
pub mod put_target;
pub mod target;
#[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::string::{AtUri, Cid, Datetime};
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
use crate::place_stream::multistream;
#[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",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Event<S: BosStr = DefaultStr> {
pub created_at: Datetime,
pub message: S,
pub status: 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",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct TargetView<S: BosStr = DefaultStr> {
pub cid: Cid<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub latest_event: Option<multistream::Event<S>>,
pub record: Data<S>,
pub uri: AtUri<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
impl<S: BosStr> LexiconSchema for Event<S> {
fn nsid() -> &'static str {
"place.stream.multistream.defs"
}
fn def_name() -> &'static str {
"event"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_place_stream_multistream_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<S: BosStr> LexiconSchema for TargetView<S> {
fn nsid() -> &'static str {
"place.stream.multistream.defs"
}
fn def_name() -> &'static str {
"targetView"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_place_stream_multistream_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod event_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 Status;
type Message;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CreatedAt = Unset;
type Status = Unset;
type Message = 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 Status = St::Status;
type Message = St::Message;
}
pub struct SetStatus<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetStatus<St> {}
impl<St: State> State for SetStatus<St> {
type CreatedAt = St::CreatedAt;
type Status = Set<members::status>;
type Message = St::Message;
}
pub struct SetMessage<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetMessage<St> {}
impl<St: State> State for SetMessage<St> {
type CreatedAt = St::CreatedAt;
type Status = St::Status;
type Message = Set<members::message>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct created_at(());
pub struct status(());
pub struct message(());
}
}
pub struct EventBuilder<S: BosStr, St: event_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Datetime>, Option<S>, Option<S>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Event<S> {
pub fn new() -> EventBuilder<S, event_state::Empty> {
EventBuilder::new()
}
}
impl<S: BosStr> EventBuilder<S, event_state::Empty> {
pub fn new() -> Self {
EventBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> EventBuilder<S, St>
where
St: event_state::State,
St::CreatedAt: event_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> EventBuilder<S, event_state::SetCreatedAt<St>> {
self._fields.0 = Option::Some(value.into());
EventBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> EventBuilder<S, St>
where
St: event_state::State,
St::Message: event_state::IsUnset,
{
pub fn message(mut self, value: impl Into<S>) -> EventBuilder<S, event_state::SetMessage<St>> {
self._fields.1 = Option::Some(value.into());
EventBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> EventBuilder<S, St>
where
St: event_state::State,
St::Status: event_state::IsUnset,
{
pub fn status(mut self, value: impl Into<S>) -> EventBuilder<S, event_state::SetStatus<St>> {
self._fields.2 = Option::Some(value.into());
EventBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> EventBuilder<S, St>
where
St: event_state::State,
St::CreatedAt: event_state::IsSet,
St::Status: event_state::IsSet,
St::Message: event_state::IsSet,
{
pub fn build(self) -> Event<S> {
Event {
created_at: self._fields.0.unwrap(),
message: self._fields.1.unwrap(),
status: self._fields.2.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Event<S> {
Event {
created_at: self._fields.0.unwrap(),
message: self._fields.1.unwrap(),
status: self._fields.2.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_place_stream_multistream_defs() -> 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("place.stream.multistream.defs"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("event"),
LexUserType::Object(LexObject {
required: Some(vec![
SmolStr::new_static("message"),
SmolStr::new_static("status"),
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("message"),
LexObjectProperty::String(LexString {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("status"),
LexObjectProperty::String(LexString {
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("targetView"),
LexUserType::Object(LexObject {
required: Some(vec![
SmolStr::new_static("uri"),
SmolStr::new_static("cid"),
SmolStr::new_static("record"),
]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("cid"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Cid),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("latestEvent"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("place.stream.multistream.defs#event"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("record"),
LexObjectProperty::Unknown(LexUnknown {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("uri"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod target_view_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 Cid;
type Record;
type Uri;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Cid = Unset;
type Record = Unset;
type Uri = Unset;
}
pub struct SetCid<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCid<St> {}
impl<St: State> State for SetCid<St> {
type Cid = Set<members::cid>;
type Record = St::Record;
type Uri = St::Uri;
}
pub struct SetRecord<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRecord<St> {}
impl<St: State> State for SetRecord<St> {
type Cid = St::Cid;
type Record = Set<members::record>;
type Uri = St::Uri;
}
pub struct SetUri<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetUri<St> {}
impl<St: State> State for SetUri<St> {
type Cid = St::Cid;
type Record = St::Record;
type Uri = Set<members::uri>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct cid(());
pub struct record(());
pub struct uri(());
}
}
pub struct TargetViewBuilder<S: BosStr, St: target_view_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Cid<S>>,
Option<multistream::Event<S>>,
Option<Data<S>>,
Option<AtUri<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> TargetView<S> {
pub fn new() -> TargetViewBuilder<S, target_view_state::Empty> {
TargetViewBuilder::new()
}
}
impl<S: BosStr> TargetViewBuilder<S, target_view_state::Empty> {
pub fn new() -> Self {
TargetViewBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> TargetViewBuilder<S, St>
where
St: target_view_state::State,
St::Cid: target_view_state::IsUnset,
{
pub fn cid(
mut self,
value: impl Into<Cid<S>>,
) -> TargetViewBuilder<S, target_view_state::SetCid<St>> {
self._fields.0 = Option::Some(value.into());
TargetViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: target_view_state::State> TargetViewBuilder<S, St> {
pub fn latest_event(mut self, value: impl Into<Option<multistream::Event<S>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_latest_event(mut self, value: Option<multistream::Event<S>>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St> TargetViewBuilder<S, St>
where
St: target_view_state::State,
St::Record: target_view_state::IsUnset,
{
pub fn record(
mut self,
value: impl Into<Data<S>>,
) -> TargetViewBuilder<S, target_view_state::SetRecord<St>> {
self._fields.2 = Option::Some(value.into());
TargetViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> TargetViewBuilder<S, St>
where
St: target_view_state::State,
St::Uri: target_view_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<AtUri<S>>,
) -> TargetViewBuilder<S, target_view_state::SetUri<St>> {
self._fields.3 = Option::Some(value.into());
TargetViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> TargetViewBuilder<S, St>
where
St: target_view_state::State,
St::Cid: target_view_state::IsSet,
St::Record: target_view_state::IsSet,
St::Uri: target_view_state::IsSet,
{
pub fn build(self) -> TargetView<S> {
TargetView {
cid: self._fields.0.unwrap(),
latest_event: self._fields.1,
record: self._fields.2.unwrap(),
uri: self._fields.3.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> TargetView<S> {
TargetView {
cid: self._fields.0.unwrap(),
latest_event: self._fields.1,
record: self._fields.2.unwrap(),
uri: self._fields.3.unwrap(),
extra_data: Some(extra_data),
}
}
}