#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
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::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};
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", rename = "social.grain.photo.exif", tag = "$type")]
pub struct Exif<'a> {
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub date_time_original: Option<Datetime>,
#[serde(skip_serializing_if = "Option::is_none")]
pub exposure_time: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub f_number: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub flash: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub focal_length_in35mm_format: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub i_so: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub lens_make: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub lens_model: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub make: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub model: Option<CowStr<'a>>,
#[serde(borrow)]
pub photo: AtUri<'a>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ExifGetRecordOutput<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub cid: Option<Cid<'a>>,
#[serde(borrow)]
pub uri: AtUri<'a>,
#[serde(borrow)]
pub value: Exif<'a>,
}
impl<'a> Exif<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, ExifRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ExifRecord;
impl XrpcResp for ExifRecord {
const NSID: &'static str = "social.grain.photo.exif";
const ENCODING: &'static str = "application/json";
type Output<'de> = ExifGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<ExifGetRecordOutput<'_>> for Exif<'_> {
fn from(output: ExifGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Exif<'_> {
const NSID: &'static str = "social.grain.photo.exif";
type Record = ExifRecord;
}
impl Collection for ExifRecord {
const NSID: &'static str = "social.grain.photo.exif";
type Record = ExifRecord;
}
impl<'a> LexiconSchema for Exif<'a> {
fn nsid() -> &'static str {
"social.grain.photo.exif"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_social_grain_photo_exif()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod exif_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 CreatedAt;
type Photo;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CreatedAt = Unset;
type Photo = Unset;
}
pub struct SetCreatedAt<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCreatedAt<S> {}
impl<S: State> State for SetCreatedAt<S> {
type CreatedAt = Set<members::created_at>;
type Photo = S::Photo;
}
pub struct SetPhoto<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetPhoto<S> {}
impl<S: State> State for SetPhoto<S> {
type CreatedAt = S::CreatedAt;
type Photo = Set<members::photo>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct created_at(());
pub struct photo(());
}
}
pub struct ExifBuilder<'a, S: exif_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<Datetime>,
Option<Datetime>,
Option<i64>,
Option<i64>,
Option<CowStr<'a>>,
Option<i64>,
Option<i64>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<AtUri<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Exif<'a> {
pub fn new() -> ExifBuilder<'a, exif_state::Empty> {
ExifBuilder::new()
}
}
impl<'a> ExifBuilder<'a, exif_state::Empty> {
pub fn new() -> Self {
ExifBuilder {
_state: PhantomData,
_fields: (
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
),
_lifetime: PhantomData,
}
}
}
impl<'a, S> ExifBuilder<'a, S>
where
S: exif_state::State,
S::CreatedAt: exif_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ExifBuilder<'a, exif_state::SetCreatedAt<S>> {
self._fields.0 = Option::Some(value.into());
ExifBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: exif_state::State> ExifBuilder<'a, S> {
pub fn date_time_original(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_date_time_original(mut self, value: Option<Datetime>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: exif_state::State> ExifBuilder<'a, S> {
pub fn exposure_time(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_exposure_time(mut self, value: Option<i64>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S: exif_state::State> ExifBuilder<'a, S> {
pub fn f_number(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_f_number(mut self, value: Option<i64>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S: exif_state::State> ExifBuilder<'a, S> {
pub fn flash(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_flash(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.4 = value;
self
}
}
impl<'a, S: exif_state::State> ExifBuilder<'a, S> {
pub fn focal_length_in35mm_format(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_focal_length_in35mm_format(mut self, value: Option<i64>) -> Self {
self._fields.5 = value;
self
}
}
impl<'a, S: exif_state::State> ExifBuilder<'a, S> {
pub fn i_so(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_i_so(mut self, value: Option<i64>) -> Self {
self._fields.6 = value;
self
}
}
impl<'a, S: exif_state::State> ExifBuilder<'a, S> {
pub fn lens_make(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.7 = value.into();
self
}
pub fn maybe_lens_make(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.7 = value;
self
}
}
impl<'a, S: exif_state::State> ExifBuilder<'a, S> {
pub fn lens_model(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.8 = value.into();
self
}
pub fn maybe_lens_model(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.8 = value;
self
}
}
impl<'a, S: exif_state::State> ExifBuilder<'a, S> {
pub fn make(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.9 = value.into();
self
}
pub fn maybe_make(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.9 = value;
self
}
}
impl<'a, S: exif_state::State> ExifBuilder<'a, S> {
pub fn model(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.10 = value.into();
self
}
pub fn maybe_model(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.10 = value;
self
}
}
impl<'a, S> ExifBuilder<'a, S>
where
S: exif_state::State,
S::Photo: exif_state::IsUnset,
{
pub fn photo(
mut self,
value: impl Into<AtUri<'a>>,
) -> ExifBuilder<'a, exif_state::SetPhoto<S>> {
self._fields.11 = Option::Some(value.into());
ExifBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ExifBuilder<'a, S>
where
S: exif_state::State,
S::CreatedAt: exif_state::IsSet,
S::Photo: exif_state::IsSet,
{
pub fn build(self) -> Exif<'a> {
Exif {
created_at: self._fields.0.unwrap(),
date_time_original: self._fields.1,
exposure_time: self._fields.2,
f_number: self._fields.3,
flash: self._fields.4,
focal_length_in35mm_format: self._fields.5,
i_so: self._fields.6,
lens_make: self._fields.7,
lens_model: self._fields.8,
make: self._fields.9,
model: self._fields.10,
photo: self._fields.11.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> Exif<'a> {
Exif {
created_at: self._fields.0.unwrap(),
date_time_original: self._fields.1,
exposure_time: self._fields.2,
f_number: self._fields.3,
flash: self._fields.4,
focal_length_in35mm_format: self._fields.5,
i_so: self._fields.6,
lens_make: self._fields.7,
lens_model: self._fields.8,
make: self._fields.9,
model: self._fields.10,
photo: self._fields.11.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_social_grain_photo_exif() -> 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("social.grain.photo.exif"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"Basic EXIF metadata for a photo. Integers are scaled by 1000000 to accommodate decimal values and potentially other tags in the future.",
),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("photo"),
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("dateTimeOriginal"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("exposureTime"),
LexObjectProperty::Integer(LexInteger {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("fNumber"),
LexObjectProperty::Integer(LexInteger {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("flash"),
LexObjectProperty::String(LexString {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("focalLengthIn35mmFormat"),
LexObjectProperty::Integer(LexInteger {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("iSO"),
LexObjectProperty::Integer(LexInteger {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("lensMake"),
LexObjectProperty::String(LexString {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("lensModel"),
LexObjectProperty::String(LexString {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("make"),
LexObjectProperty::String(LexString {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("model"),
LexObjectProperty::String(LexString {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("photo"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}