#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_common::deps::bytes::Bytes;
use jacquard_derive::{IntoStatic, lexicon, open_union};
use serde::{Serialize, Deserialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct UploadPart {
pub body: Bytes,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase")]
pub struct UploadPartOutput<'a> {
#[serde(borrow)]
pub etag: CowStr<'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 UploadPartError<'a> {
#[serde(rename = "InvalidUploadId")]
InvalidUploadId(Option<CowStr<'a>>),
#[serde(rename = "InvalidPartNumber")]
InvalidPartNumber(Option<CowStr<'a>>),
#[serde(rename = "UploadFailed")]
UploadFailed(Option<CowStr<'a>>),
}
impl core::fmt::Display for UploadPartError<'_> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::InvalidUploadId(msg) => {
write!(f, "InvalidUploadId")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::InvalidPartNumber(msg) => {
write!(f, "InvalidPartNumber")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::UploadFailed(msg) => {
write!(f, "UploadFailed")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::Unknown(err) => write!(f, "Unknown error: {:?}", err),
}
}
}
pub struct UploadPartResponse;
impl jacquard_common::xrpc::XrpcResp for UploadPartResponse {
const NSID: &'static str = "io.atcr.hold.uploadPart";
const ENCODING: &'static str = "application/json";
type Output<'de> = UploadPartOutput<'de>;
type Err<'de> = UploadPartError<'de>;
}
impl jacquard_common::xrpc::XrpcRequest for UploadPart {
const NSID: &'static str = "io.atcr.hold.uploadPart";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"*/*",
);
type Response = UploadPartResponse;
fn encode_body(&self) -> Result<Vec<u8>, jacquard_common::xrpc::EncodeError> {
Ok(self.body.to_vec())
}
fn decode_body<'de>(
body: &'de [u8],
) -> Result<Box<Self>, jacquard_common::error::DecodeError>
where
Self: serde::Deserialize<'de>,
{
Ok(
Box::new(Self {
body: jacquard_common::deps::bytes::Bytes::copy_from_slice(body),
}),
)
}
}
pub struct UploadPartRequest;
impl jacquard_common::xrpc::XrpcEndpoint for UploadPartRequest {
const PATH: &'static str = "/xrpc/io.atcr.hold.uploadPart";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"*/*",
);
type Request<'de> = UploadPart;
type Response = UploadPartResponse;
}