#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_common::deps::bytes::Bytes;
use jacquard_common::types::string::AtUri;
use jacquard_derive::{IntoStatic, open_union};
use serde::{Serialize, Deserialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetDiff<'a> {
#[serde(borrow)]
pub repo: AtUri<'a>,
#[serde(borrow)]
pub rev1: CowStr<'a>,
#[serde(borrow)]
pub rev2: CowStr<'a>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetDiffOutput {
pub body: Bytes,
}
#[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 GetDiffError<'a> {
#[serde(rename = "RepoNotFound")]
RepoNotFound(Option<CowStr<'a>>),
#[serde(rename = "RevisionNotFound")]
RevisionNotFound(Option<CowStr<'a>>),
#[serde(rename = "InvalidRequest")]
InvalidRequest(Option<CowStr<'a>>),
#[serde(rename = "CompareError")]
CompareError(Option<CowStr<'a>>),
}
impl core::fmt::Display for GetDiffError<'_> {
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::RevisionNotFound(msg) => {
write!(f, "RevisionNotFound")?;
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::CompareError(msg) => {
write!(f, "CompareError")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::Unknown(err) => write!(f, "Unknown error: {:?}", err),
}
}
}
pub struct GetDiffResponse;
impl jacquard_common::xrpc::XrpcResp for GetDiffResponse {
const NSID: &'static str = "sh.tangled.git.temp.getDiff";
const ENCODING: &'static str = "*/*";
type Output<'de> = GetDiffOutput;
type Err<'de> = GetDiffError<'de>;
fn encode_output(
output: &Self::Output<'_>,
) -> Result<Vec<u8>, jacquard_common::xrpc::EncodeError> {
Ok(output.body.to_vec())
}
fn decode_output<'de>(
body: &'de [u8],
) -> Result<Self::Output<'de>, jacquard_common::error::DecodeError>
where
Self::Output<'de>: serde::Deserialize<'de>,
{
Ok(GetDiffOutput {
body: jacquard_common::deps::bytes::Bytes::copy_from_slice(body),
})
}
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetDiff<'a> {
const NSID: &'static str = "sh.tangled.git.temp.getDiff";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetDiffResponse;
}
pub struct GetDiffRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetDiffRequest {
const PATH: &'static str = "/xrpc/sh.tangled.git.temp.getDiff";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = GetDiff<'de>;
type Response = GetDiffResponse;
}
pub mod get_diff_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 Rev2;
type Repo;
type Rev1;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Rev2 = Unset;
type Repo = Unset;
type Rev1 = Unset;
}
pub struct SetRev2<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetRev2<S> {}
impl<S: State> State for SetRev2<S> {
type Rev2 = Set<members::rev2>;
type Repo = S::Repo;
type Rev1 = S::Rev1;
}
pub struct SetRepo<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetRepo<S> {}
impl<S: State> State for SetRepo<S> {
type Rev2 = S::Rev2;
type Repo = Set<members::repo>;
type Rev1 = S::Rev1;
}
pub struct SetRev1<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetRev1<S> {}
impl<S: State> State for SetRev1<S> {
type Rev2 = S::Rev2;
type Repo = S::Repo;
type Rev1 = Set<members::rev1>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct rev2(());
pub struct repo(());
pub struct rev1(());
}
}
pub struct GetDiffBuilder<'a, S: get_diff_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<AtUri<'a>>, Option<CowStr<'a>>, Option<CowStr<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> GetDiff<'a> {
pub fn new() -> GetDiffBuilder<'a, get_diff_state::Empty> {
GetDiffBuilder::new()
}
}
impl<'a> GetDiffBuilder<'a, get_diff_state::Empty> {
pub fn new() -> Self {
GetDiffBuilder {
_state: PhantomData,
_fields: (None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetDiffBuilder<'a, S>
where
S: get_diff_state::State,
S::Repo: get_diff_state::IsUnset,
{
pub fn repo(
mut self,
value: impl Into<AtUri<'a>>,
) -> GetDiffBuilder<'a, get_diff_state::SetRepo<S>> {
self._fields.0 = Option::Some(value.into());
GetDiffBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetDiffBuilder<'a, S>
where
S: get_diff_state::State,
S::Rev1: get_diff_state::IsUnset,
{
pub fn rev1(
mut self,
value: impl Into<CowStr<'a>>,
) -> GetDiffBuilder<'a, get_diff_state::SetRev1<S>> {
self._fields.1 = Option::Some(value.into());
GetDiffBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetDiffBuilder<'a, S>
where
S: get_diff_state::State,
S::Rev2: get_diff_state::IsUnset,
{
pub fn rev2(
mut self,
value: impl Into<CowStr<'a>>,
) -> GetDiffBuilder<'a, get_diff_state::SetRev2<S>> {
self._fields.2 = Option::Some(value.into());
GetDiffBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetDiffBuilder<'a, S>
where
S: get_diff_state::State,
S::Rev2: get_diff_state::IsSet,
S::Repo: get_diff_state::IsSet,
S::Rev1: get_diff_state::IsSet,
{
pub fn build(self) -> GetDiff<'a> {
GetDiff {
repo: self._fields.0.unwrap(),
rev1: self._fields.1.unwrap(),
rev2: self._fields.2.unwrap(),
}
}
}