use conjure_object::serde::{ser, de};
use conjure_object::serde::ser::SerializeMap as SerializeMap_;
use conjure_object::private::{UnionField_, UnionTypeField_};
use std::fmt;
#[derive(Debug, Clone, conjure_object::private::DeriveWith)]
#[derive_with(PartialEq, Eq, PartialOrd, Ord, Hash)]
pub enum StructSeries {
Channel(Box<super::ChannelSeries>),
Raw(super::Reference),
Derived(Box<super::DerivedSeries>),
Combine(super::CombineStructSeries),
SelectStruct(super::SelectSeries),
ExtractFromStruct(super::ExtractStructFromStructSeries),
ToStartOfInterval(super::StructToStartOfIntervalSeries),
FilterByTag(super::StructTagFilterSeries),
SelectTags(super::StructSelectTagsSeries),
Unknown(Unknown),
}
impl ser::Serialize for StructSeries {
fn serialize<S>(&self, s: S) -> Result<S::Ok, S::Error>
where
S: ser::Serializer,
{
let mut map = s.serialize_map(Some(2))?;
match self {
StructSeries::Channel(value) => {
map.serialize_entry(&"type", &"channel")?;
map.serialize_entry(&"channel", value)?;
}
StructSeries::Raw(value) => {
map.serialize_entry(&"type", &"raw")?;
map.serialize_entry(&"raw", value)?;
}
StructSeries::Derived(value) => {
map.serialize_entry(&"type", &"derived")?;
map.serialize_entry(&"derived", value)?;
}
StructSeries::Combine(value) => {
map.serialize_entry(&"type", &"combine")?;
map.serialize_entry(&"combine", value)?;
}
StructSeries::SelectStruct(value) => {
map.serialize_entry(&"type", &"selectStruct")?;
map.serialize_entry(&"selectStruct", value)?;
}
StructSeries::ExtractFromStruct(value) => {
map.serialize_entry(&"type", &"extractFromStruct")?;
map.serialize_entry(&"extractFromStruct", value)?;
}
StructSeries::ToStartOfInterval(value) => {
map.serialize_entry(&"type", &"toStartOfInterval")?;
map.serialize_entry(&"toStartOfInterval", value)?;
}
StructSeries::FilterByTag(value) => {
map.serialize_entry(&"type", &"filterByTag")?;
map.serialize_entry(&"filterByTag", value)?;
}
StructSeries::SelectTags(value) => {
map.serialize_entry(&"type", &"selectTags")?;
map.serialize_entry(&"selectTags", value)?;
}
StructSeries::Unknown(value) => {
map.serialize_entry(&"type", &value.type_)?;
map.serialize_entry(&value.type_, &value.value)?;
}
}
map.end()
}
}
impl<'de> de::Deserialize<'de> for StructSeries {
fn deserialize<D>(d: D) -> Result<StructSeries, D::Error>
where
D: de::Deserializer<'de>,
{
d.deserialize_map(Visitor_)
}
}
struct Visitor_;
impl<'de> de::Visitor<'de> for Visitor_ {
type Value = StructSeries;
fn expecting(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
fmt.write_str("union StructSeries")
}
fn visit_map<A>(self, mut map: A) -> Result<StructSeries, A::Error>
where
A: de::MapAccess<'de>,
{
let v = match map.next_key::<UnionField_<Variant_>>()? {
Some(UnionField_::Type) => {
let variant = map.next_value()?;
let key = map.next_key()?;
match (variant, key) {
(Variant_::Channel, Some(Variant_::Channel)) => {
let value = map.next_value()?;
StructSeries::Channel(value)
}
(Variant_::Raw, Some(Variant_::Raw)) => {
let value = map.next_value()?;
StructSeries::Raw(value)
}
(Variant_::Derived, Some(Variant_::Derived)) => {
let value = map.next_value()?;
StructSeries::Derived(value)
}
(Variant_::Combine, Some(Variant_::Combine)) => {
let value = map.next_value()?;
StructSeries::Combine(value)
}
(Variant_::SelectStruct, Some(Variant_::SelectStruct)) => {
let value = map.next_value()?;
StructSeries::SelectStruct(value)
}
(Variant_::ExtractFromStruct, Some(Variant_::ExtractFromStruct)) => {
let value = map.next_value()?;
StructSeries::ExtractFromStruct(value)
}
(Variant_::ToStartOfInterval, Some(Variant_::ToStartOfInterval)) => {
let value = map.next_value()?;
StructSeries::ToStartOfInterval(value)
}
(Variant_::FilterByTag, Some(Variant_::FilterByTag)) => {
let value = map.next_value()?;
StructSeries::FilterByTag(value)
}
(Variant_::SelectTags, Some(Variant_::SelectTags)) => {
let value = map.next_value()?;
StructSeries::SelectTags(value)
}
(Variant_::Unknown(type_), Some(Variant_::Unknown(b))) => {
if type_ == b {
let value = map.next_value()?;
StructSeries::Unknown(Unknown { type_, value })
} else {
return Err(
de::Error::invalid_value(de::Unexpected::Str(&type_), &&*b),
)
}
}
(variant, Some(key)) => {
return Err(
de::Error::invalid_value(
de::Unexpected::Str(key.as_str()),
&variant.as_str(),
),
);
}
(variant, None) => {
return Err(de::Error::missing_field(variant.as_str()));
}
}
}
Some(UnionField_::Value(variant)) => {
let value = match &variant {
Variant_::Channel => {
let value = map.next_value()?;
StructSeries::Channel(value)
}
Variant_::Raw => {
let value = map.next_value()?;
StructSeries::Raw(value)
}
Variant_::Derived => {
let value = map.next_value()?;
StructSeries::Derived(value)
}
Variant_::Combine => {
let value = map.next_value()?;
StructSeries::Combine(value)
}
Variant_::SelectStruct => {
let value = map.next_value()?;
StructSeries::SelectStruct(value)
}
Variant_::ExtractFromStruct => {
let value = map.next_value()?;
StructSeries::ExtractFromStruct(value)
}
Variant_::ToStartOfInterval => {
let value = map.next_value()?;
StructSeries::ToStartOfInterval(value)
}
Variant_::FilterByTag => {
let value = map.next_value()?;
StructSeries::FilterByTag(value)
}
Variant_::SelectTags => {
let value = map.next_value()?;
StructSeries::SelectTags(value)
}
Variant_::Unknown(type_) => {
let value = map.next_value()?;
StructSeries::Unknown(Unknown {
type_: type_.clone(),
value,
})
}
};
if map.next_key::<UnionTypeField_>()?.is_none() {
return Err(de::Error::missing_field("type"));
}
let type_variant = map.next_value::<Variant_>()?;
if variant != type_variant {
return Err(
de::Error::invalid_value(
de::Unexpected::Str(type_variant.as_str()),
&variant.as_str(),
),
);
}
value
}
None => return Err(de::Error::missing_field("type")),
};
if map.next_key::<UnionField_<Variant_>>()?.is_some() {
return Err(de::Error::invalid_length(3, &"type and value fields"));
}
Ok(v)
}
}
#[derive(PartialEq)]
enum Variant_ {
Channel,
Raw,
Derived,
Combine,
SelectStruct,
ExtractFromStruct,
ToStartOfInterval,
FilterByTag,
SelectTags,
Unknown(Box<str>),
}
impl Variant_ {
fn as_str(&self) -> &'static str {
match *self {
Variant_::Channel => "channel",
Variant_::Raw => "raw",
Variant_::Derived => "derived",
Variant_::Combine => "combine",
Variant_::SelectStruct => "selectStruct",
Variant_::ExtractFromStruct => "extractFromStruct",
Variant_::ToStartOfInterval => "toStartOfInterval",
Variant_::FilterByTag => "filterByTag",
Variant_::SelectTags => "selectTags",
Variant_::Unknown(_) => "unknown variant",
}
}
}
impl<'de> de::Deserialize<'de> for Variant_ {
fn deserialize<D>(d: D) -> Result<Variant_, D::Error>
where
D: de::Deserializer<'de>,
{
d.deserialize_str(VariantVisitor_)
}
}
struct VariantVisitor_;
impl<'de> de::Visitor<'de> for VariantVisitor_ {
type Value = Variant_;
fn expecting(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
fmt.write_str("string")
}
fn visit_str<E>(self, value: &str) -> Result<Variant_, E>
where
E: de::Error,
{
let v = match value {
"channel" => Variant_::Channel,
"raw" => Variant_::Raw,
"derived" => Variant_::Derived,
"combine" => Variant_::Combine,
"selectStruct" => Variant_::SelectStruct,
"extractFromStruct" => Variant_::ExtractFromStruct,
"toStartOfInterval" => Variant_::ToStartOfInterval,
"filterByTag" => Variant_::FilterByTag,
"selectTags" => Variant_::SelectTags,
value => Variant_::Unknown(value.to_string().into_boxed_str()),
};
Ok(v)
}
}
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct Unknown {
type_: Box<str>,
value: conjure_object::Any,
}
impl Unknown {
#[inline]
pub fn type_(&self) -> &str {
&self.type_
}
}