#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{CowStr, BosStr, DefaultStr, FromStaticStr};
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Cid, Datetime};
use jacquard_common::types::uri::{RecordUri, UriError};
use jacquard_common::types::value::Data;
use jacquard_common::xrpc::XrpcResp;
use jacquard_derive::{IntoStatic, lexicon};
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Serialize, Deserialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "dev.sensorthings.featureOfInterest",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct FeatureOfInterest<S: BosStr = DefaultStr> {
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<S>,
pub encoding_type: S,
pub feature: Data<S>,
pub name: 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, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct FeatureOfInterestGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: FeatureOfInterest<S>,
}
impl<S: BosStr> FeatureOfInterest<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, FeatureOfInterestRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct FeatureOfInterestRecord;
impl XrpcResp for FeatureOfInterestRecord {
const NSID: &'static str = "dev.sensorthings.featureOfInterest";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = FeatureOfInterestGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<FeatureOfInterestGetRecordOutput<S>> for FeatureOfInterest<S> {
fn from(output: FeatureOfInterestGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for FeatureOfInterest<S> {
const NSID: &'static str = "dev.sensorthings.featureOfInterest";
type Record = FeatureOfInterestRecord;
}
impl Collection for FeatureOfInterestRecord {
const NSID: &'static str = "dev.sensorthings.featureOfInterest";
type Record = FeatureOfInterestRecord;
}
impl<S: BosStr> LexiconSchema for FeatureOfInterest<S> {
fn nsid() -> &'static str {
"dev.sensorthings.featureOfInterest"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_dev_sensorthings_featureOfInterest()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.description {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 2048usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("description"),
max: 2048usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.encoding_type;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 128usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("encoding_type"),
max: 128usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.name;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 256usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("name"),
max: 256usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
pub mod feature_of_interest_state {
pub use crate::builder_types::{Set, Unset, IsSet, IsUnset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Name;
type CreatedAt;
type EncodingType;
type Feature;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Name = Unset;
type CreatedAt = Unset;
type EncodingType = Unset;
type Feature = Unset;
}
pub struct SetName<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetName<St> {}
impl<St: State> State for SetName<St> {
type Name = Set<members::name>;
type CreatedAt = St::CreatedAt;
type EncodingType = St::EncodingType;
type Feature = St::Feature;
}
pub struct SetCreatedAt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCreatedAt<St> {}
impl<St: State> State for SetCreatedAt<St> {
type Name = St::Name;
type CreatedAt = Set<members::created_at>;
type EncodingType = St::EncodingType;
type Feature = St::Feature;
}
pub struct SetEncodingType<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetEncodingType<St> {}
impl<St: State> State for SetEncodingType<St> {
type Name = St::Name;
type CreatedAt = St::CreatedAt;
type EncodingType = Set<members::encoding_type>;
type Feature = St::Feature;
}
pub struct SetFeature<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetFeature<St> {}
impl<St: State> State for SetFeature<St> {
type Name = St::Name;
type CreatedAt = St::CreatedAt;
type EncodingType = St::EncodingType;
type Feature = Set<members::feature>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct name(());
pub struct created_at(());
pub struct encoding_type(());
pub struct feature(());
}
}
pub struct FeatureOfInterestBuilder<S: BosStr, St: feature_of_interest_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Datetime>, Option<S>, Option<S>, Option<Data<S>>, Option<S>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> FeatureOfInterest<S> {
pub fn new() -> FeatureOfInterestBuilder<S, feature_of_interest_state::Empty> {
FeatureOfInterestBuilder::new()
}
}
impl<S: BosStr> FeatureOfInterestBuilder<S, feature_of_interest_state::Empty> {
pub fn new() -> Self {
FeatureOfInterestBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> FeatureOfInterestBuilder<S, St>
where
St: feature_of_interest_state::State,
St::CreatedAt: feature_of_interest_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> FeatureOfInterestBuilder<S, feature_of_interest_state::SetCreatedAt<St>> {
self._fields.0 = Option::Some(value.into());
FeatureOfInterestBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: feature_of_interest_state::State> FeatureOfInterestBuilder<S, St> {
pub fn description(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<S>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St> FeatureOfInterestBuilder<S, St>
where
St: feature_of_interest_state::State,
St::EncodingType: feature_of_interest_state::IsUnset,
{
pub fn encoding_type(
mut self,
value: impl Into<S>,
) -> FeatureOfInterestBuilder<S, feature_of_interest_state::SetEncodingType<St>> {
self._fields.2 = Option::Some(value.into());
FeatureOfInterestBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> FeatureOfInterestBuilder<S, St>
where
St: feature_of_interest_state::State,
St::Feature: feature_of_interest_state::IsUnset,
{
pub fn feature(
mut self,
value: impl Into<Data<S>>,
) -> FeatureOfInterestBuilder<S, feature_of_interest_state::SetFeature<St>> {
self._fields.3 = Option::Some(value.into());
FeatureOfInterestBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> FeatureOfInterestBuilder<S, St>
where
St: feature_of_interest_state::State,
St::Name: feature_of_interest_state::IsUnset,
{
pub fn name(
mut self,
value: impl Into<S>,
) -> FeatureOfInterestBuilder<S, feature_of_interest_state::SetName<St>> {
self._fields.4 = Option::Some(value.into());
FeatureOfInterestBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> FeatureOfInterestBuilder<S, St>
where
St: feature_of_interest_state::State,
St::Name: feature_of_interest_state::IsSet,
St::CreatedAt: feature_of_interest_state::IsSet,
St::EncodingType: feature_of_interest_state::IsSet,
St::Feature: feature_of_interest_state::IsSet,
{
pub fn build(self) -> FeatureOfInterest<S> {
FeatureOfInterest {
created_at: self._fields.0.unwrap(),
description: self._fields.1,
encoding_type: self._fields.2.unwrap(),
feature: self._fields.3.unwrap(),
name: self._fields.4.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> FeatureOfInterest<S> {
FeatureOfInterest {
created_at: self._fields.0.unwrap(),
description: self._fields.1,
encoding_type: self._fields.2.unwrap(),
feature: self._fields.3.unwrap(),
name: self._fields.4.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_dev_sensorthings_featureOfInterest() -> LexiconDoc<'static> {
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
use alloc::collections::BTreeMap;
LexiconDoc {
lexicon: Lexicon::Lexicon1,
id: CowStr::new_static("dev.sensorthings.featureOfInterest"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"The real-world feature that an Observation is about.",
),
),
key: Some(CowStr::new_static("any")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("name"),
SmolStr::new_static("encodingType"),
SmolStr::new_static("feature"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("description"),
LexObjectProperty::String(LexString {
max_length: Some(2048usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("encodingType"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Encoding of the feature field, e.g. application/vnd.geo+json",
),
),
max_length: Some(128usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("feature"),
LexObjectProperty::Unknown(LexUnknown {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString {
max_length: Some(256usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}