#[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 Diff<S: BosStr = DefaultStr> {
pub r#ref: S,
pub repo: S,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct DiffOutput {
pub body: Bytes,
}
#[derive(
Serialize, Deserialize, Debug, Clone, PartialEq, Eq, thiserror::Error, miette::Diagnostic,
)]
#[serde(tag = "error", content = "message")]
pub enum DiffError {
#[serde(rename = "RepoNotFound")]
RepoNotFound(Option<SmolStr>),
#[serde(rename = "RefNotFound")]
RefNotFound(Option<SmolStr>),
#[serde(rename = "InvalidRequest")]
InvalidRequest(Option<SmolStr>),
#[serde(untagged)]
Other {
error: SmolStr,
message: Option<SmolStr>,
},
}
impl core::fmt::Display for DiffError {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::RepoNotFound(msg) => {
write!(f, "RepoNotFound")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::RefNotFound(msg) => {
write!(f, "RefNotFound")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::InvalidRequest(msg) => {
write!(f, "InvalidRequest")?;
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 DiffResponse;
impl jacquard_common::xrpc::XrpcResp for DiffResponse {
const NSID: &'static str = "sh.tangled.repo.diff";
const ENCODING: &'static str = "*/*";
type Output<S: BosStr> = DiffOutput;
type Err = DiffError;
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(DiffOutput {
body: jacquard_common::deps::bytes::Bytes::copy_from_slice(body),
})
}
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for Diff<S> {
const NSID: &'static str = "sh.tangled.repo.diff";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = DiffResponse;
}
pub struct DiffRequest;
impl jacquard_common::xrpc::XrpcEndpoint for DiffRequest {
const PATH: &'static str = "/xrpc/sh.tangled.repo.diff";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = Diff<S>;
type Response = DiffResponse;
}
pub mod diff_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 Ref;
type Repo;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Ref = Unset;
type Repo = Unset;
}
pub struct SetRef<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRef<St> {}
impl<St: State> State for SetRef<St> {
type Ref = Set<members::r#ref>;
type Repo = St::Repo;
}
pub struct SetRepo<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRepo<St> {}
impl<St: State> State for SetRepo<St> {
type Ref = St::Ref;
type Repo = Set<members::repo>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct r#ref(());
pub struct repo(());
}
}
pub struct DiffBuilder<S: BosStr, St: diff_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<S>, Option<S>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Diff<S> {
pub fn new() -> DiffBuilder<S, diff_state::Empty> {
DiffBuilder::new()
}
}
impl<S: BosStr> DiffBuilder<S, diff_state::Empty> {
pub fn new() -> Self {
DiffBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> DiffBuilder<S, St>
where
St: diff_state::State,
St::Ref: diff_state::IsUnset,
{
pub fn r#ref(mut self, value: impl Into<S>) -> DiffBuilder<S, diff_state::SetRef<St>> {
self._fields.0 = Option::Some(value.into());
DiffBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> DiffBuilder<S, St>
where
St: diff_state::State,
St::Repo: diff_state::IsUnset,
{
pub fn repo(mut self, value: impl Into<S>) -> DiffBuilder<S, diff_state::SetRepo<St>> {
self._fields.1 = Option::Some(value.into());
DiffBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> DiffBuilder<S, St>
where
St: diff_state::State,
St::Ref: diff_state::IsSet,
St::Repo: diff_state::IsSet,
{
pub fn build(self) -> Diff<S> {
Diff {
r#ref: self._fields.0.unwrap(),
repo: self._fields.1.unwrap(),
}
}
}