#[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::blob::BlobRef;
use jacquard_common::types::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Cid, Datetime, UriValue};
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")]
pub struct Painting<'a> {
#[serde(borrow)]
pub code: CowStr<'a>,
#[serde(borrow)]
pub image_url: UriValue<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub recording_url: Option<UriValue<'a>>,
#[serde(borrow)]
pub r#ref: CowStr<'a>,
#[serde(borrow)]
pub slug: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub thumbnail: Option<BlobRef<'a>>,
pub when: Datetime,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct PaintingGetRecordOutput<'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: Painting<'a>,
}
impl<'a> Painting<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, PaintingRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct PaintingRecord;
impl XrpcResp for PaintingRecord {
const NSID: &'static str = "computer.aesthetic.painting";
const ENCODING: &'static str = "application/json";
type Output<'de> = PaintingGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<PaintingGetRecordOutput<'_>> for Painting<'_> {
fn from(output: PaintingGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Painting<'_> {
const NSID: &'static str = "computer.aesthetic.painting";
type Record = PaintingRecord;
}
impl Collection for PaintingRecord {
const NSID: &'static str = "computer.aesthetic.painting";
type Record = PaintingRecord;
}
impl<'a> LexiconSchema for Painting<'a> {
fn nsid() -> &'static str {
"computer.aesthetic.painting"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_computer_aesthetic_painting()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.code;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 10usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("code"),
max: 10usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.image_url;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 512usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("image_url"),
max: 512usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.recording_url {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 512usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("recording_url"),
max: 512usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.r#ref;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 24usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("ref"),
max: 24usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.slug;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 128usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("slug"),
max: 128usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.thumbnail {
{
let size = value.blob().size;
if size > 1048576usize {
return Err(ConstraintError::BlobTooLarge {
path: ValidationPath::from_field("thumbnail"),
max: 1048576usize,
actual: size,
});
}
}
}
if let Some(ref value) = self.thumbnail {
{
let mime = value.blob().mime_type.as_str();
let accepted: &[&str] = &["image/png", "image/jpeg"];
let matched = accepted
.iter()
.any(|pattern| {
if *pattern == "*/*" {
true
} else if pattern.ends_with("/*") {
let prefix = &pattern[..pattern.len() - 2];
mime.starts_with(prefix)
&& mime.as_bytes().get(prefix.len()) == Some(&b'/')
} else {
mime == *pattern
}
});
if !matched {
return Err(ConstraintError::BlobMimeTypeNotAccepted {
path: ValidationPath::from_field("thumbnail"),
accepted: vec![
"image/png".to_string(), "image/jpeg".to_string()
],
actual: mime.to_string(),
});
}
}
}
Ok(())
}
}
pub mod painting_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 Slug;
type Code;
type When;
type Ref;
type ImageUrl;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Slug = Unset;
type Code = Unset;
type When = Unset;
type Ref = Unset;
type ImageUrl = Unset;
}
pub struct SetSlug<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetSlug<S> {}
impl<S: State> State for SetSlug<S> {
type Slug = Set<members::slug>;
type Code = S::Code;
type When = S::When;
type Ref = S::Ref;
type ImageUrl = S::ImageUrl;
}
pub struct SetCode<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCode<S> {}
impl<S: State> State for SetCode<S> {
type Slug = S::Slug;
type Code = Set<members::code>;
type When = S::When;
type Ref = S::Ref;
type ImageUrl = S::ImageUrl;
}
pub struct SetWhen<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetWhen<S> {}
impl<S: State> State for SetWhen<S> {
type Slug = S::Slug;
type Code = S::Code;
type When = Set<members::when>;
type Ref = S::Ref;
type ImageUrl = S::ImageUrl;
}
pub struct SetRef<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetRef<S> {}
impl<S: State> State for SetRef<S> {
type Slug = S::Slug;
type Code = S::Code;
type When = S::When;
type Ref = Set<members::r#ref>;
type ImageUrl = S::ImageUrl;
}
pub struct SetImageUrl<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetImageUrl<S> {}
impl<S: State> State for SetImageUrl<S> {
type Slug = S::Slug;
type Code = S::Code;
type When = S::When;
type Ref = S::Ref;
type ImageUrl = Set<members::image_url>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct slug(());
pub struct code(());
pub struct when(());
pub struct r#ref(());
pub struct image_url(());
}
}
pub struct PaintingBuilder<'a, S: painting_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<CowStr<'a>>,
Option<UriValue<'a>>,
Option<UriValue<'a>>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<BlobRef<'a>>,
Option<Datetime>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Painting<'a> {
pub fn new() -> PaintingBuilder<'a, painting_state::Empty> {
PaintingBuilder::new()
}
}
impl<'a> PaintingBuilder<'a, painting_state::Empty> {
pub fn new() -> Self {
PaintingBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> PaintingBuilder<'a, S>
where
S: painting_state::State,
S::Code: painting_state::IsUnset,
{
pub fn code(
mut self,
value: impl Into<CowStr<'a>>,
) -> PaintingBuilder<'a, painting_state::SetCode<S>> {
self._fields.0 = Option::Some(value.into());
PaintingBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PaintingBuilder<'a, S>
where
S: painting_state::State,
S::ImageUrl: painting_state::IsUnset,
{
pub fn image_url(
mut self,
value: impl Into<UriValue<'a>>,
) -> PaintingBuilder<'a, painting_state::SetImageUrl<S>> {
self._fields.1 = Option::Some(value.into());
PaintingBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: painting_state::State> PaintingBuilder<'a, S> {
pub fn recording_url(mut self, value: impl Into<Option<UriValue<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_recording_url(mut self, value: Option<UriValue<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S> PaintingBuilder<'a, S>
where
S: painting_state::State,
S::Ref: painting_state::IsUnset,
{
pub fn r#ref(
mut self,
value: impl Into<CowStr<'a>>,
) -> PaintingBuilder<'a, painting_state::SetRef<S>> {
self._fields.3 = Option::Some(value.into());
PaintingBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PaintingBuilder<'a, S>
where
S: painting_state::State,
S::Slug: painting_state::IsUnset,
{
pub fn slug(
mut self,
value: impl Into<CowStr<'a>>,
) -> PaintingBuilder<'a, painting_state::SetSlug<S>> {
self._fields.4 = Option::Some(value.into());
PaintingBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: painting_state::State> PaintingBuilder<'a, S> {
pub fn thumbnail(mut self, value: impl Into<Option<BlobRef<'a>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_thumbnail(mut self, value: Option<BlobRef<'a>>) -> Self {
self._fields.5 = value;
self
}
}
impl<'a, S> PaintingBuilder<'a, S>
where
S: painting_state::State,
S::When: painting_state::IsUnset,
{
pub fn when(
mut self,
value: impl Into<Datetime>,
) -> PaintingBuilder<'a, painting_state::SetWhen<S>> {
self._fields.6 = Option::Some(value.into());
PaintingBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PaintingBuilder<'a, S>
where
S: painting_state::State,
S::Slug: painting_state::IsSet,
S::Code: painting_state::IsSet,
S::When: painting_state::IsSet,
S::Ref: painting_state::IsSet,
S::ImageUrl: painting_state::IsSet,
{
pub fn build(self) -> Painting<'a> {
Painting {
code: self._fields.0.unwrap(),
image_url: self._fields.1.unwrap(),
recording_url: self._fields.2,
r#ref: self._fields.3.unwrap(),
slug: self._fields.4.unwrap(),
thumbnail: self._fields.5,
when: self._fields.6.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>,
>,
) -> Painting<'a> {
Painting {
code: self._fields.0.unwrap(),
image_url: self._fields.1.unwrap(),
recording_url: self._fields.2,
r#ref: self._fields.3.unwrap(),
slug: self._fields.4.unwrap(),
thumbnail: self._fields.5,
when: self._fields.6.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_computer_aesthetic_painting() -> 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("computer.aesthetic.painting"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"A digital painting created on aesthetic.computer",
),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("slug"), SmolStr::new_static("code"),
SmolStr::new_static("imageUrl"),
SmolStr::new_static("when"), SmolStr::new_static("ref")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("code"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Short alphanumeric code for easy lookup (e.g., 'a3b')",
),
),
max_length: Some(10usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("imageUrl"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("URL to full resolution PNG"),
),
format: Some(LexStringFormat::Uri),
max_length: Some(512usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("recordingUrl"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"URL to .zip recording file (if available)",
),
),
format: Some(LexStringFormat::Uri),
max_length: Some(512usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("ref"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"MongoDB ObjectId reference for bidirectional sync",
),
),
max_length: Some(24usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("slug"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Timestamp slug (may include recording: imageSlug:recordingSlug)",
),
),
max_length: Some(128usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("thumbnail"),
LexObjectProperty::Blob(LexBlob { ..Default::default() }),
);
map.insert(
SmolStr::new_static("when"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Creation timestamp (ISO 8601)"),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}