#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{CowStr, BosStr, 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::{Did, 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::{Serialize, Deserialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "place.stream.live.viewerCount",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct ViewerCount<S: BosStr = DefaultStr> {
pub count: i64,
pub server: Did<S>,
pub streamer: Did<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub updated_at: Option<Datetime>,
#[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 ViewerCountGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: ViewerCount<S>,
}
impl<S: BosStr> ViewerCount<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, ViewerCountRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ViewerCountRecord;
impl XrpcResp for ViewerCountRecord {
const NSID: &'static str = "place.stream.live.viewerCount";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ViewerCountGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<ViewerCountGetRecordOutput<S>> for ViewerCount<S> {
fn from(output: ViewerCountGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for ViewerCount<S> {
const NSID: &'static str = "place.stream.live.viewerCount";
type Record = ViewerCountRecord;
}
impl Collection for ViewerCountRecord {
const NSID: &'static str = "place.stream.live.viewerCount";
type Record = ViewerCountRecord;
}
impl<S: BosStr> LexiconSchema for ViewerCount<S> {
fn nsid() -> &'static str {
"place.stream.live.viewerCount"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_place_stream_live_viewerCount()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod viewer_count_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 Count;
type Server;
type Streamer;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Count = Unset;
type Server = Unset;
type Streamer = Unset;
}
pub struct SetCount<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCount<St> {}
impl<St: State> State for SetCount<St> {
type Count = Set<members::count>;
type Server = St::Server;
type Streamer = St::Streamer;
}
pub struct SetServer<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetServer<St> {}
impl<St: State> State for SetServer<St> {
type Count = St::Count;
type Server = Set<members::server>;
type Streamer = St::Streamer;
}
pub struct SetStreamer<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetStreamer<St> {}
impl<St: State> State for SetStreamer<St> {
type Count = St::Count;
type Server = St::Server;
type Streamer = Set<members::streamer>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct count(());
pub struct server(());
pub struct streamer(());
}
}
pub struct ViewerCountBuilder<St: viewer_count_state::State, S: BosStr = DefaultStr> {
_state: PhantomData<fn() -> St>,
_fields: (Option<i64>, Option<Did<S>>, Option<Did<S>>, Option<Datetime>),
_type: PhantomData<fn() -> S>,
}
impl ViewerCount<DefaultStr> {
pub fn new() -> ViewerCountBuilder<viewer_count_state::Empty, DefaultStr> {
ViewerCountBuilder::new()
}
}
impl<S: BosStr> ViewerCount<S> {
pub fn builder() -> ViewerCountBuilder<viewer_count_state::Empty, S> {
ViewerCountBuilder::builder()
}
}
impl ViewerCountBuilder<viewer_count_state::Empty, DefaultStr> {
pub fn new() -> Self {
ViewerCountBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> ViewerCountBuilder<viewer_count_state::Empty, S> {
pub fn builder() -> Self {
ViewerCountBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<St, S: BosStr> ViewerCountBuilder<St, S>
where
St: viewer_count_state::State,
St::Count: viewer_count_state::IsUnset,
{
pub fn count(
mut self,
value: impl Into<i64>,
) -> ViewerCountBuilder<viewer_count_state::SetCount<St>, S> {
self._fields.0 = Option::Some(value.into());
ViewerCountBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> ViewerCountBuilder<St, S>
where
St: viewer_count_state::State,
St::Server: viewer_count_state::IsUnset,
{
pub fn server(
mut self,
value: impl Into<Did<S>>,
) -> ViewerCountBuilder<viewer_count_state::SetServer<St>, S> {
self._fields.1 = Option::Some(value.into());
ViewerCountBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> ViewerCountBuilder<St, S>
where
St: viewer_count_state::State,
St::Streamer: viewer_count_state::IsUnset,
{
pub fn streamer(
mut self,
value: impl Into<Did<S>>,
) -> ViewerCountBuilder<viewer_count_state::SetStreamer<St>, S> {
self._fields.2 = Option::Some(value.into());
ViewerCountBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: viewer_count_state::State, S: BosStr> ViewerCountBuilder<St, S> {
pub fn updated_at(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_updated_at(mut self, value: Option<Datetime>) -> Self {
self._fields.3 = value;
self
}
}
impl<St, S: BosStr> ViewerCountBuilder<St, S>
where
St: viewer_count_state::State,
St::Count: viewer_count_state::IsSet,
St::Server: viewer_count_state::IsSet,
St::Streamer: viewer_count_state::IsSet,
{
pub fn build(self) -> ViewerCount<S> {
ViewerCount {
count: self._fields.0.unwrap(),
server: self._fields.1.unwrap(),
streamer: self._fields.2.unwrap(),
updated_at: self._fields.3,
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> ViewerCount<S> {
ViewerCount {
count: self._fields.0.unwrap(),
server: self._fields.1.unwrap(),
streamer: self._fields.2.unwrap(),
updated_at: self._fields.3,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_place_stream_live_viewerCount() -> 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("place.stream.live.viewerCount"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"Current viewer count for a livestream on a particular server. Record keys are streamer_did::server_did by convention.",
),
),
key: Some(CowStr::new_static("any")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("streamer"),
SmolStr::new_static("server"), SmolStr::new_static("count")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("count"),
LexObjectProperty::Integer(LexInteger {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("server"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The DID of the server to get the view count for.",
),
),
format: Some(LexStringFormat::Did),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("streamer"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The DID of the streamer to teleport to.",
),
),
format: Some(LexStringFormat::Did),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("updatedAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The time the view count was last updated.",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}