#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_common::types::string::AtUri;
use jacquard_derive::{IntoStatic, open_union};
use serde::{Serialize, Deserialize};
use crate::sh_weaver::notebook::EntryView;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetEntry<'a> {
#[serde(borrow)]
pub uri: AtUri<'a>,
}
#[jacquard_derive::lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetEntryOutput<'a> {
#[serde(flatten)]
#[serde(borrow)]
pub value: EntryView<'a>,
}
#[open_union]
#[derive(
Serialize,
Deserialize,
Debug,
Clone,
PartialEq,
Eq,
thiserror::Error,
miette::Diagnostic,
IntoStatic
)]
#[serde(tag = "error", content = "message")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum GetEntryError<'a> {
#[serde(rename = "EntryNotFound")]
EntryNotFound(Option<CowStr<'a>>),
}
impl core::fmt::Display for GetEntryError<'_> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::EntryNotFound(msg) => {
write!(f, "EntryNotFound")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::Unknown(err) => write!(f, "Unknown error: {:?}", err),
}
}
}
pub struct GetEntryResponse;
impl jacquard_common::xrpc::XrpcResp for GetEntryResponse {
const NSID: &'static str = "sh.weaver.notebook.getEntry";
const ENCODING: &'static str = "application/json";
type Output<'de> = GetEntryOutput<'de>;
type Err<'de> = GetEntryError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetEntry<'a> {
const NSID: &'static str = "sh.weaver.notebook.getEntry";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetEntryResponse;
}
pub struct GetEntryRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetEntryRequest {
const PATH: &'static str = "/xrpc/sh.weaver.notebook.getEntry";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = GetEntry<'de>;
type Response = GetEntryResponse;
}
pub mod get_entry_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 Uri;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Uri = Unset;
}
pub struct SetUri<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetUri<S> {}
impl<S: State> State for SetUri<S> {
type Uri = Set<members::uri>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct uri(());
}
}
pub struct GetEntryBuilder<'a, S: get_entry_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<AtUri<'a>>,),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> GetEntry<'a> {
pub fn new() -> GetEntryBuilder<'a, get_entry_state::Empty> {
GetEntryBuilder::new()
}
}
impl<'a> GetEntryBuilder<'a, get_entry_state::Empty> {
pub fn new() -> Self {
GetEntryBuilder {
_state: PhantomData,
_fields: (None,),
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetEntryBuilder<'a, S>
where
S: get_entry_state::State,
S::Uri: get_entry_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<AtUri<'a>>,
) -> GetEntryBuilder<'a, get_entry_state::SetUri<S>> {
self._fields.0 = Option::Some(value.into());
GetEntryBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetEntryBuilder<'a, S>
where
S: get_entry_state::State,
S::Uri: get_entry_state::IsSet,
{
pub fn build(self) -> GetEntry<'a> {
GetEntry {
uri: self._fields.0.unwrap(),
}
}
}