#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{BosStr, CowStr, 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::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "social.grain.photo.exif",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Exif<S: BosStr = DefaultStr> {
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")]
pub flash: Option<S>,
#[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")]
pub lens_make: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub lens_model: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub make: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub model: Option<S>,
pub photo: AtUri<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 ExifGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Exif<S>,
}
impl<S: BosStr> Exif<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, ExifRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[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<S: BosStr> = ExifGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<ExifGetRecordOutput<S>> for Exif<S> {
fn from(output: ExifGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Exif<S> {
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<S: BosStr> LexiconSchema for Exif<S> {
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::{IsSet, IsUnset, Set, Unset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Photo;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Photo = Unset;
type CreatedAt = Unset;
}
pub struct SetPhoto<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetPhoto<St> {}
impl<St: State> State for SetPhoto<St> {
type Photo = Set<members::photo>;
type CreatedAt = St::CreatedAt;
}
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 Photo = St::Photo;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct photo(());
pub struct created_at(());
}
}
pub struct ExifBuilder<S: BosStr, St: exif_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Datetime>,
Option<Datetime>,
Option<i64>,
Option<i64>,
Option<S>,
Option<i64>,
Option<i64>,
Option<S>,
Option<S>,
Option<S>,
Option<S>,
Option<AtUri<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Exif<S> {
pub fn new() -> ExifBuilder<S, exif_state::Empty> {
ExifBuilder::new()
}
}
impl<S: BosStr> ExifBuilder<S, exif_state::Empty> {
pub fn new() -> Self {
ExifBuilder {
_state: PhantomData,
_fields: (
None, None, None, None, None, None, None, None, None, None, None, None,
),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ExifBuilder<S, St>
where
St: exif_state::State,
St::CreatedAt: exif_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ExifBuilder<S, exif_state::SetCreatedAt<St>> {
self._fields.0 = Option::Some(value.into());
ExifBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: exif_state::State> ExifBuilder<S, St> {
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<S: BosStr, St: exif_state::State> ExifBuilder<S, St> {
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<S: BosStr, St: exif_state::State> ExifBuilder<S, St> {
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<S: BosStr, St: exif_state::State> ExifBuilder<S, St> {
pub fn flash(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_flash(mut self, value: Option<S>) -> Self {
self._fields.4 = value;
self
}
}
impl<S: BosStr, St: exif_state::State> ExifBuilder<S, St> {
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<S: BosStr, St: exif_state::State> ExifBuilder<S, St> {
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<S: BosStr, St: exif_state::State> ExifBuilder<S, St> {
pub fn lens_make(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.7 = value.into();
self
}
pub fn maybe_lens_make(mut self, value: Option<S>) -> Self {
self._fields.7 = value;
self
}
}
impl<S: BosStr, St: exif_state::State> ExifBuilder<S, St> {
pub fn lens_model(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.8 = value.into();
self
}
pub fn maybe_lens_model(mut self, value: Option<S>) -> Self {
self._fields.8 = value;
self
}
}
impl<S: BosStr, St: exif_state::State> ExifBuilder<S, St> {
pub fn make(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.9 = value.into();
self
}
pub fn maybe_make(mut self, value: Option<S>) -> Self {
self._fields.9 = value;
self
}
}
impl<S: BosStr, St: exif_state::State> ExifBuilder<S, St> {
pub fn model(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.10 = value.into();
self
}
pub fn maybe_model(mut self, value: Option<S>) -> Self {
self._fields.10 = value;
self
}
}
impl<S: BosStr, St> ExifBuilder<S, St>
where
St: exif_state::State,
St::Photo: exif_state::IsUnset,
{
pub fn photo(mut self, value: impl Into<AtUri<S>>) -> ExifBuilder<S, exif_state::SetPhoto<St>> {
self._fields.11 = Option::Some(value.into());
ExifBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ExifBuilder<S, St>
where
St: exif_state::State,
St::Photo: exif_state::IsSet,
St::CreatedAt: exif_state::IsSet,
{
pub fn build(self) -> Exif<S> {
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<SmolStr, Data<S>>) -> Exif<S> {
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> {
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
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()
}
}