#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SettingDefsOption {
#[serde(default, skip_serializing_if = "Option::is_none")]
pub created_at: Option<crate::syntax::Datetime>,
pub created_by: crate::syntax::Did,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub description: Option<String>,
pub did: crate::syntax::Did,
pub key: crate::syntax::Nsid,
pub last_updated_by: crate::syntax::Did,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub manager_role: Option<String>,
pub scope: String,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub updated_at: Option<crate::syntax::Datetime>,
pub value: serde_json::Value,
#[serde(flatten)]
pub extra: std::collections::HashMap<String, serde_json::Value>,
#[serde(skip)]
pub extra_cbor: Vec<(String, Vec<u8>)>,
}
impl SettingDefsOption {
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 = 5u64;
if self.created_at.is_some() {
count += 1;
}
if self.updated_at.is_some() {
count += 1;
}
if self.description.is_some() {
count += 1;
}
if self.manager_role.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())?;
crate::cbor::Encoder::new(&mut *buf).encode_text("key")?;
crate::cbor::Encoder::new(&mut *buf).encode_text(self.key.as_str())?;
crate::cbor::Encoder::new(&mut *buf).encode_text("scope")?;
crate::cbor::Encoder::new(&mut *buf).encode_text(&self.scope)?;
if self.created_at.is_some() {
crate::cbor::Encoder::new(&mut *buf).encode_text("createdAt")?;
if let Some(ref val) = self.created_at {
crate::cbor::Encoder::new(&mut *buf).encode_text(val.as_str())?;
}
}
crate::cbor::Encoder::new(&mut *buf).encode_text("createdBy")?;
crate::cbor::Encoder::new(&mut *buf).encode_text(self.created_by.as_str())?;
if self.updated_at.is_some() {
crate::cbor::Encoder::new(&mut *buf).encode_text("updatedAt")?;
if let Some(ref val) = self.updated_at {
crate::cbor::Encoder::new(&mut *buf).encode_text(val.as_str())?;
}
}
if self.description.is_some() {
crate::cbor::Encoder::new(&mut *buf).encode_text("description")?;
if let Some(ref val) = self.description {
crate::cbor::Encoder::new(&mut *buf).encode_text(val)?;
}
}
if self.manager_role.is_some() {
crate::cbor::Encoder::new(&mut *buf).encode_text("managerRole")?;
if let Some(ref val) = self.manager_role {
crate::cbor::Encoder::new(&mut *buf).encode_text(val)?;
}
}
crate::cbor::Encoder::new(&mut *buf).encode_text("lastUpdatedBy")?;
crate::cbor::Encoder::new(&mut *buf).encode_text(self.last_updated_by.as_str())?;
} 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));
}
{
let mut vbuf = Vec::new();
crate::cbor::Encoder::new(&mut vbuf).encode_text(self.key.as_str())?;
pairs.push(("key", vbuf));
}
{
let mut vbuf = Vec::new();
crate::cbor::Encoder::new(&mut vbuf).encode_text(&self.scope)?;
pairs.push(("scope", vbuf));
}
if self.created_at.is_some() {
let mut vbuf = Vec::new();
if let Some(ref val) = self.created_at {
crate::cbor::Encoder::new(&mut vbuf).encode_text(val.as_str())?;
}
pairs.push(("createdAt", vbuf));
}
{
let mut vbuf = Vec::new();
crate::cbor::Encoder::new(&mut vbuf).encode_text(self.created_by.as_str())?;
pairs.push(("createdBy", vbuf));
}
if self.updated_at.is_some() {
let mut vbuf = Vec::new();
if let Some(ref val) = self.updated_at {
crate::cbor::Encoder::new(&mut vbuf).encode_text(val.as_str())?;
}
pairs.push(("updatedAt", vbuf));
}
if self.description.is_some() {
let mut vbuf = Vec::new();
if let Some(ref val) = self.description {
crate::cbor::Encoder::new(&mut vbuf).encode_text(val)?;
}
pairs.push(("description", vbuf));
}
if self.manager_role.is_some() {
let mut vbuf = Vec::new();
if let Some(ref val) = self.manager_role {
crate::cbor::Encoder::new(&mut vbuf).encode_text(val)?;
}
pairs.push(("managerRole", vbuf));
}
{
let mut vbuf = Vec::new();
crate::cbor::Encoder::new(&mut vbuf).encode_text(self.last_updated_by.as_str())?;
pairs.push(("lastUpdatedBy", 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_key: Option<crate::syntax::Nsid> = None;
let mut field_scope: Option<String> = None;
let mut field_created_at: Option<crate::syntax::Datetime> = None;
let mut field_created_by: Option<crate::syntax::Did> = None;
let mut field_updated_at: Option<crate::syntax::Datetime> = None;
let mut field_description: Option<String> = None;
let mut field_manager_role: Option<String> = None;
let mut field_last_updated_by: Option<crate::syntax::Did> = 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()));
}
}
"key" => {
if let crate::cbor::Value::Text(s) = value {
field_key = Some(
crate::syntax::Nsid::try_from(s)
.map_err(|e| crate::cbor::CborError::InvalidCbor(e.to_string()))?,
);
} else {
return Err(crate::cbor::CborError::InvalidCbor("expected text".into()));
}
}
"scope" => {
if let crate::cbor::Value::Text(s) = value {
field_scope = Some(s.to_string());
} else {
return Err(crate::cbor::CborError::InvalidCbor("expected text".into()));
}
}
"createdAt" => {
if let crate::cbor::Value::Text(s) = value {
field_created_at = Some(
crate::syntax::Datetime::try_from(s)
.map_err(|e| crate::cbor::CborError::InvalidCbor(e.to_string()))?,
);
} else {
return Err(crate::cbor::CborError::InvalidCbor("expected text".into()));
}
}
"createdBy" => {
if let crate::cbor::Value::Text(s) = value {
field_created_by = 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()));
}
}
"updatedAt" => {
if let crate::cbor::Value::Text(s) = value {
field_updated_at = Some(
crate::syntax::Datetime::try_from(s)
.map_err(|e| crate::cbor::CborError::InvalidCbor(e.to_string()))?,
);
} else {
return Err(crate::cbor::CborError::InvalidCbor("expected text".into()));
}
}
"description" => {
if let crate::cbor::Value::Text(s) = value {
field_description = Some(s.to_string());
} else {
return Err(crate::cbor::CborError::InvalidCbor("expected text".into()));
}
}
"managerRole" => {
if let crate::cbor::Value::Text(s) = value {
field_manager_role = Some(s.to_string());
} else {
return Err(crate::cbor::CborError::InvalidCbor("expected text".into()));
}
}
"lastUpdatedBy" => {
if let crate::cbor::Value::Text(s) = value {
field_last_updated_by = 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()));
}
}
_ => {
let raw = crate::cbor::encode_value(&value)?;
extra_cbor.push((key.to_string(), raw));
}
}
}
Ok(SettingDefsOption {
did: field_did.ok_or_else(|| {
crate::cbor::CborError::InvalidCbor("missing required field 'did'".into())
})?,
key: field_key.ok_or_else(|| {
crate::cbor::CborError::InvalidCbor("missing required field 'key'".into())
})?,
scope: field_scope.ok_or_else(|| {
crate::cbor::CborError::InvalidCbor("missing required field 'scope'".into())
})?,
value: Default::default(),
created_at: field_created_at,
created_by: field_created_by.ok_or_else(|| {
crate::cbor::CborError::InvalidCbor("missing required field 'createdBy'".into())
})?,
updated_at: field_updated_at,
description: field_description,
manager_role: field_manager_role,
last_updated_by: field_last_updated_by.ok_or_else(|| {
crate::cbor::CborError::InvalidCbor("missing required field 'lastUpdatedBy'".into())
})?,
extra: std::collections::HashMap::new(),
extra_cbor,
})
}
}