#[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")]
pub struct UploadPart {
pub body: Bytes,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct UploadPartOutput<S: BosStr = DefaultStr> {
pub etag: S,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(
Serialize, Deserialize, Debug, Clone, PartialEq, Eq, thiserror::Error, miette::Diagnostic,
)]
#[serde(tag = "error", content = "message")]
pub enum UploadPartError {
#[serde(rename = "InvalidUploadId")]
InvalidUploadId(Option<SmolStr>),
#[serde(rename = "InvalidPartNumber")]
InvalidPartNumber(Option<SmolStr>),
#[serde(rename = "UploadFailed")]
UploadFailed(Option<SmolStr>),
#[serde(untagged)]
Other {
error: SmolStr,
message: Option<SmolStr>,
},
}
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::Other { error, message } => {
write!(f, "{}", error)?;
if let Some(msg) = message {
write!(f, ": {}", msg)?;
}
Ok(())
}
}
}
}
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<S: BosStr> = UploadPartOutput<S>;
type Err = UploadPartError;
}
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, buffer: &mut Vec<u8>) -> Result<(), jacquard_common::xrpc::EncodeError>
where
Self: Serialize,
{
Ok(buffer.copy_from_slice(self.body.as_ref()))
}
fn decode_body<'de>(body: &'de [u8]) -> Result<Self, jacquard_common::error::DecodeError>
where
Self: Deserialize<'de>,
{
Ok(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<S: BosStr> = UploadPart;
type Response = UploadPartResponse;
}