#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct VideoDefsJobStatus {
#[serde(default, skip_serializing_if = "Option::is_none")]
pub blob: Option<crate::api::Blob>,
pub did: crate::syntax::Did,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub error: Option<String>,
pub job_id: String,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub message: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub progress: Option<i64>,
pub state: String,
#[serde(flatten)]
pub extra: std::collections::HashMap<String, serde_json::Value>,
#[serde(skip)]
pub extra_cbor: Vec<(String, Vec<u8>)>,
}
impl VideoDefsJobStatus {
pub fn to_cbor(&self) -> Result<Vec<u8>, crate::cbor::CborError> {
let mut buf = Vec::new();
self.encode_cbor(&mut buf)?;
Ok(buf)
}
pub fn encode_cbor(&self, buf: &mut Vec<u8>) -> Result<(), crate::cbor::CborError> {
if self.extra_cbor.is_empty() {
let mut count = 3u64;
if self.blob.is_some() {
count += 1;
}
if self.error.is_some() {
count += 1;
}
if self.message.is_some() {
count += 1;
}
if self.progress.is_some() {
count += 1;
}
crate::cbor::Encoder::new(&mut *buf).encode_map_header(count)?;
crate::cbor::Encoder::new(&mut *buf).encode_text("did")?;
crate::cbor::Encoder::new(&mut *buf).encode_text(self.did.as_str())?;
if self.blob.is_some() {
crate::cbor::Encoder::new(&mut *buf).encode_text("blob")?;
if let Some(ref val) = self.blob {
val.encode_cbor(buf)?;
}
}
if self.error.is_some() {
crate::cbor::Encoder::new(&mut *buf).encode_text("error")?;
if let Some(ref val) = self.error {
crate::cbor::Encoder::new(&mut *buf).encode_text(val)?;
}
}
crate::cbor::Encoder::new(&mut *buf).encode_text("jobId")?;
crate::cbor::Encoder::new(&mut *buf).encode_text(&self.job_id)?;
crate::cbor::Encoder::new(&mut *buf).encode_text("state")?;
crate::cbor::Encoder::new(&mut *buf).encode_text(&self.state)?;
if self.message.is_some() {
crate::cbor::Encoder::new(&mut *buf).encode_text("message")?;
if let Some(ref val) = self.message {
crate::cbor::Encoder::new(&mut *buf).encode_text(val)?;
}
}
if self.progress.is_some() {
crate::cbor::Encoder::new(&mut *buf).encode_text("progress")?;
if let Some(ref val) = self.progress {
crate::cbor::Encoder::new(&mut *buf).encode_i64(*val)?;
}
}
} else {
let mut pairs: Vec<(&str, Vec<u8>)> = Vec::new();
{
let mut vbuf = Vec::new();
crate::cbor::Encoder::new(&mut vbuf).encode_text(self.did.as_str())?;
pairs.push(("did", vbuf));
}
if self.blob.is_some() {
let mut vbuf = Vec::new();
if let Some(ref val) = self.blob {
val.encode_cbor(&mut vbuf)?;
}
pairs.push(("blob", vbuf));
}
if self.error.is_some() {
let mut vbuf = Vec::new();
if let Some(ref val) = self.error {
crate::cbor::Encoder::new(&mut vbuf).encode_text(val)?;
}
pairs.push(("error", vbuf));
}
{
let mut vbuf = Vec::new();
crate::cbor::Encoder::new(&mut vbuf).encode_text(&self.job_id)?;
pairs.push(("jobId", vbuf));
}
{
let mut vbuf = Vec::new();
crate::cbor::Encoder::new(&mut vbuf).encode_text(&self.state)?;
pairs.push(("state", vbuf));
}
if self.message.is_some() {
let mut vbuf = Vec::new();
if let Some(ref val) = self.message {
crate::cbor::Encoder::new(&mut vbuf).encode_text(val)?;
}
pairs.push(("message", vbuf));
}
if self.progress.is_some() {
let mut vbuf = Vec::new();
if let Some(ref val) = self.progress {
crate::cbor::Encoder::new(&mut vbuf).encode_i64(*val)?;
}
pairs.push(("progress", vbuf));
}
for (k, v) in &self.extra_cbor {
pairs.push((k.as_str(), v.clone()));
}
pairs.sort_by(|a, b| crate::cbor::cbor_key_cmp(a.0, b.0));
crate::cbor::Encoder::new(&mut *buf).encode_map_header(pairs.len() as u64)?;
for (k, v) in &pairs {
crate::cbor::Encoder::new(&mut *buf).encode_text(k)?;
buf.extend_from_slice(v);
}
}
Ok(())
}
pub fn from_cbor(data: &[u8]) -> Result<Self, crate::cbor::CborError> {
let mut decoder = crate::cbor::Decoder::new(data);
let result = Self::decode_cbor(&mut decoder)?;
if !decoder.is_empty() {
return Err(crate::cbor::CborError::InvalidCbor("trailing data".into()));
}
Ok(result)
}
pub fn decode_cbor(decoder: &mut crate::cbor::Decoder) -> Result<Self, crate::cbor::CborError> {
let val = decoder.decode()?;
let entries = match val {
crate::cbor::Value::Map(entries) => entries,
_ => return Err(crate::cbor::CborError::InvalidCbor("expected map".into())),
};
let mut field_did: Option<crate::syntax::Did> = None;
let mut field_blob: Option<crate::api::Blob> = None;
let mut field_error: Option<String> = None;
let mut field_job_id: Option<String> = None;
let mut field_state: Option<String> = None;
let mut field_message: Option<String> = None;
let mut field_progress: Option<i64> = None;
let mut extra_cbor: Vec<(String, Vec<u8>)> = Vec::new();
for (key, value) in entries {
match key {
"did" => {
if let crate::cbor::Value::Text(s) = value {
field_did = Some(
crate::syntax::Did::try_from(s)
.map_err(|e| crate::cbor::CborError::InvalidCbor(e.to_string()))?,
);
} else {
return Err(crate::cbor::CborError::InvalidCbor("expected text".into()));
}
}
"blob" => {
let raw = crate::cbor::encode_value(&value)?;
let mut dec = crate::cbor::Decoder::new(&raw);
field_blob = Some(crate::api::Blob::decode_cbor(&mut dec)?);
}
"error" => {
if let crate::cbor::Value::Text(s) = value {
field_error = Some(s.to_string());
} else {
return Err(crate::cbor::CborError::InvalidCbor("expected text".into()));
}
}
"jobId" => {
if let crate::cbor::Value::Text(s) = value {
field_job_id = Some(s.to_string());
} else {
return Err(crate::cbor::CborError::InvalidCbor("expected text".into()));
}
}
"state" => {
if let crate::cbor::Value::Text(s) = value {
field_state = Some(s.to_string());
} else {
return Err(crate::cbor::CborError::InvalidCbor("expected text".into()));
}
}
"message" => {
if let crate::cbor::Value::Text(s) = value {
field_message = Some(s.to_string());
} else {
return Err(crate::cbor::CborError::InvalidCbor("expected text".into()));
}
}
"progress" => match value {
crate::cbor::Value::Unsigned(n) => {
field_progress = Some(n as i64);
}
crate::cbor::Value::Signed(n) => {
field_progress = Some(n);
}
_ => {
return Err(crate::cbor::CborError::InvalidCbor(
"expected integer".into(),
));
}
},
_ => {
let raw = crate::cbor::encode_value(&value)?;
extra_cbor.push((key.to_string(), raw));
}
}
}
Ok(VideoDefsJobStatus {
did: field_did.ok_or_else(|| {
crate::cbor::CborError::InvalidCbor("missing required field 'did'".into())
})?,
blob: field_blob,
error: field_error,
job_id: field_job_id.ok_or_else(|| {
crate::cbor::CborError::InvalidCbor("missing required field 'jobId'".into())
})?,
state: field_state.ok_or_else(|| {
crate::cbor::CborError::InvalidCbor("missing required field 'state'".into())
})?,
message: field_message,
progress: field_progress,
extra: std::collections::HashMap::new(),
extra_cbor,
})
}
}