#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::bytes::Bytes;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, CowStr, DefaultStr, FromStaticStr};
use jacquard_derive::{IntoStatic, open_union};
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct GetLiveSegment<S: BosStr = DefaultStr> {
pub seg: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub sid: Option<S>,
pub streamer: S,
pub track: S,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetLiveSegmentOutput {
pub body: Bytes,
}
#[derive(
Serialize, Deserialize, Debug, Clone, PartialEq, Eq, thiserror::Error, miette::Diagnostic,
)]
#[serde(tag = "error", content = "message")]
pub enum GetLiveSegmentError {
#[serde(rename = "StreamNotLive")]
StreamNotLive(Option<SmolStr>),
#[serde(rename = "SegmentNotFound")]
SegmentNotFound(Option<SmolStr>),
#[serde(untagged)]
Other {
error: SmolStr,
message: Option<SmolStr>,
},
}
impl core::fmt::Display for GetLiveSegmentError {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::StreamNotLive(msg) => {
write!(f, "StreamNotLive")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::SegmentNotFound(msg) => {
write!(f, "SegmentNotFound")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::Other { error, message } => {
write!(f, "{}", error)?;
if let Some(msg) = message {
write!(f, ": {}", msg)?;
}
Ok(())
}
}
}
}
pub struct GetLiveSegmentResponse;
impl jacquard_common::xrpc::XrpcResp for GetLiveSegmentResponse {
const NSID: &'static str = "place.stream.playback.getLiveSegment";
const ENCODING: &'static str = "video/mp4";
type Output<S: BosStr> = GetLiveSegmentOutput;
type Err = GetLiveSegmentError;
fn encode_output<S: BosStr>(
output: &Self::Output<S>,
) -> Result<Vec<u8>, jacquard_common::xrpc::EncodeError>
where
Self::Output<S>: Serialize,
{
Ok(output.body.to_vec())
}
fn decode_output<'de, S>(
body: &'de [u8],
) -> Result<Self::Output<S>, jacquard_common::error::DecodeError>
where
S: BosStr + Deserialize<'de>,
Self::Output<S>: Deserialize<'de>,
{
Ok(GetLiveSegmentOutput {
body: jacquard_common::deps::bytes::Bytes::copy_from_slice(body),
})
}
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetLiveSegment<S> {
const NSID: &'static str = "place.stream.playback.getLiveSegment";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetLiveSegmentResponse;
}
pub struct GetLiveSegmentRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetLiveSegmentRequest {
const PATH: &'static str = "/xrpc/place.stream.playback.getLiveSegment";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetLiveSegment<S>;
type Response = GetLiveSegmentResponse;
}
pub mod get_live_segment_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 Seg;
type Streamer;
type Track;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Seg = Unset;
type Streamer = Unset;
type Track = Unset;
}
pub struct SetSeg<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetSeg<St> {}
impl<St: State> State for SetSeg<St> {
type Seg = Set<members::seg>;
type Streamer = St::Streamer;
type Track = St::Track;
}
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 Seg = St::Seg;
type Streamer = Set<members::streamer>;
type Track = St::Track;
}
pub struct SetTrack<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetTrack<St> {}
impl<St: State> State for SetTrack<St> {
type Seg = St::Seg;
type Streamer = St::Streamer;
type Track = Set<members::track>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct seg(());
pub struct streamer(());
pub struct track(());
}
}
pub struct GetLiveSegmentBuilder<St: get_live_segment_state::State, S: BosStr = DefaultStr> {
_state: PhantomData<fn() -> St>,
_fields: (Option<S>, Option<S>, Option<S>, Option<S>),
_type: PhantomData<fn() -> S>,
}
impl GetLiveSegment<DefaultStr> {
pub fn new() -> GetLiveSegmentBuilder<get_live_segment_state::Empty, DefaultStr> {
GetLiveSegmentBuilder::new()
}
}
impl<S: BosStr> GetLiveSegment<S> {
pub fn builder() -> GetLiveSegmentBuilder<get_live_segment_state::Empty, S> {
GetLiveSegmentBuilder::builder()
}
}
impl GetLiveSegmentBuilder<get_live_segment_state::Empty, DefaultStr> {
pub fn new() -> Self {
GetLiveSegmentBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> GetLiveSegmentBuilder<get_live_segment_state::Empty, S> {
pub fn builder() -> Self {
GetLiveSegmentBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<St, S: BosStr> GetLiveSegmentBuilder<St, S>
where
St: get_live_segment_state::State,
St::Seg: get_live_segment_state::IsUnset,
{
pub fn seg(
mut self,
value: impl Into<S>,
) -> GetLiveSegmentBuilder<get_live_segment_state::SetSeg<St>, S> {
self._fields.0 = Option::Some(value.into());
GetLiveSegmentBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: get_live_segment_state::State, S: BosStr> GetLiveSegmentBuilder<St, S> {
pub fn sid(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_sid(mut self, value: Option<S>) -> Self {
self._fields.1 = value;
self
}
}
impl<St, S: BosStr> GetLiveSegmentBuilder<St, S>
where
St: get_live_segment_state::State,
St::Streamer: get_live_segment_state::IsUnset,
{
pub fn streamer(
mut self,
value: impl Into<S>,
) -> GetLiveSegmentBuilder<get_live_segment_state::SetStreamer<St>, S> {
self._fields.2 = Option::Some(value.into());
GetLiveSegmentBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> GetLiveSegmentBuilder<St, S>
where
St: get_live_segment_state::State,
St::Track: get_live_segment_state::IsUnset,
{
pub fn track(
mut self,
value: impl Into<S>,
) -> GetLiveSegmentBuilder<get_live_segment_state::SetTrack<St>, S> {
self._fields.3 = Option::Some(value.into());
GetLiveSegmentBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> GetLiveSegmentBuilder<St, S>
where
St: get_live_segment_state::State,
St::Seg: get_live_segment_state::IsSet,
St::Streamer: get_live_segment_state::IsSet,
St::Track: get_live_segment_state::IsSet,
{
pub fn build(self) -> GetLiveSegment<S> {
GetLiveSegment {
seg: self._fields.0.unwrap(),
sid: self._fields.1,
streamer: self._fields.2.unwrap(),
track: self._fields.3.unwrap(),
}
}
}