#[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, Nsid, 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};
use crate::sh_tangled::label::definition;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Definition<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub color: Option<CowStr<'a>>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub multiple: Option<bool>,
#[serde(borrow)]
pub name: CowStr<'a>,
#[serde(borrow)]
pub scope: Vec<Nsid<'a>>,
#[serde(borrow)]
pub value_type: definition::ValueType<'a>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct DefinitionGetRecordOutput<'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: Definition<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase")]
pub struct ValueType<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub r#enum: Option<Vec<CowStr<'a>>>,
#[serde(borrow)]
pub format: CowStr<'a>,
#[serde(borrow)]
pub r#type: CowStr<'a>,
}
impl<'a> Definition<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, DefinitionRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct DefinitionRecord;
impl XrpcResp for DefinitionRecord {
const NSID: &'static str = "sh.tangled.label.definition";
const ENCODING: &'static str = "application/json";
type Output<'de> = DefinitionGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<DefinitionGetRecordOutput<'_>> for Definition<'_> {
fn from(output: DefinitionGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Definition<'_> {
const NSID: &'static str = "sh.tangled.label.definition";
type Record = DefinitionRecord;
}
impl Collection for DefinitionRecord {
const NSID: &'static str = "sh.tangled.label.definition";
type Record = DefinitionRecord;
}
impl<'a> LexiconSchema for Definition<'a> {
fn nsid() -> &'static str {
"sh.tangled.label.definition"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_sh_tangled_label_definition()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.name;
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 40usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("name"),
max: 40usize,
actual: count,
});
}
}
}
{
let value = &self.name;
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count < 1usize {
return Err(ConstraintError::MinGraphemes {
path: ValidationPath::from_field("name"),
min: 1usize,
actual: count,
});
}
}
}
Ok(())
}
}
impl<'a> LexiconSchema for ValueType<'a> {
fn nsid() -> &'static str {
"sh.tangled.label.definition"
}
fn def_name() -> &'static str {
"valueType"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_sh_tangled_label_definition()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod definition_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 Name;
type Scope;
type ValueType;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CreatedAt = Unset;
type Name = Unset;
type Scope = Unset;
type ValueType = 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 Name = S::Name;
type Scope = S::Scope;
type ValueType = S::ValueType;
}
pub struct SetName<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetName<S> {}
impl<S: State> State for SetName<S> {
type CreatedAt = S::CreatedAt;
type Name = Set<members::name>;
type Scope = S::Scope;
type ValueType = S::ValueType;
}
pub struct SetScope<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetScope<S> {}
impl<S: State> State for SetScope<S> {
type CreatedAt = S::CreatedAt;
type Name = S::Name;
type Scope = Set<members::scope>;
type ValueType = S::ValueType;
}
pub struct SetValueType<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetValueType<S> {}
impl<S: State> State for SetValueType<S> {
type CreatedAt = S::CreatedAt;
type Name = S::Name;
type Scope = S::Scope;
type ValueType = Set<members::value_type>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct created_at(());
pub struct name(());
pub struct scope(());
pub struct value_type(());
}
}
pub struct DefinitionBuilder<'a, S: definition_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<CowStr<'a>>,
Option<Datetime>,
Option<bool>,
Option<CowStr<'a>>,
Option<Vec<Nsid<'a>>>,
Option<definition::ValueType<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Definition<'a> {
pub fn new() -> DefinitionBuilder<'a, definition_state::Empty> {
DefinitionBuilder::new()
}
}
impl<'a> DefinitionBuilder<'a, definition_state::Empty> {
pub fn new() -> Self {
DefinitionBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: definition_state::State> DefinitionBuilder<'a, S> {
pub fn color(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_color(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S> DefinitionBuilder<'a, S>
where
S: definition_state::State,
S::CreatedAt: definition_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> DefinitionBuilder<'a, definition_state::SetCreatedAt<S>> {
self._fields.1 = Option::Some(value.into());
DefinitionBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: definition_state::State> DefinitionBuilder<'a, S> {
pub fn multiple(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_multiple(mut self, value: Option<bool>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S> DefinitionBuilder<'a, S>
where
S: definition_state::State,
S::Name: definition_state::IsUnset,
{
pub fn name(
mut self,
value: impl Into<CowStr<'a>>,
) -> DefinitionBuilder<'a, definition_state::SetName<S>> {
self._fields.3 = Option::Some(value.into());
DefinitionBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> DefinitionBuilder<'a, S>
where
S: definition_state::State,
S::Scope: definition_state::IsUnset,
{
pub fn scope(
mut self,
value: impl Into<Vec<Nsid<'a>>>,
) -> DefinitionBuilder<'a, definition_state::SetScope<S>> {
self._fields.4 = Option::Some(value.into());
DefinitionBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> DefinitionBuilder<'a, S>
where
S: definition_state::State,
S::ValueType: definition_state::IsUnset,
{
pub fn value_type(
mut self,
value: impl Into<definition::ValueType<'a>>,
) -> DefinitionBuilder<'a, definition_state::SetValueType<S>> {
self._fields.5 = Option::Some(value.into());
DefinitionBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> DefinitionBuilder<'a, S>
where
S: definition_state::State,
S::CreatedAt: definition_state::IsSet,
S::Name: definition_state::IsSet,
S::Scope: definition_state::IsSet,
S::ValueType: definition_state::IsSet,
{
pub fn build(self) -> Definition<'a> {
Definition {
color: self._fields.0,
created_at: self._fields.1.unwrap(),
multiple: self._fields.2,
name: self._fields.3.unwrap(),
scope: self._fields.4.unwrap(),
value_type: self._fields.5.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>,
>,
) -> Definition<'a> {
Definition {
color: self._fields.0,
created_at: self._fields.1.unwrap(),
multiple: self._fields.2,
name: self._fields.3.unwrap(),
scope: self._fields.4.unwrap(),
value_type: self._fields.5.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_sh_tangled_label_definition() -> 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("sh.tangled.label.definition"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
key: Some(CowStr::new_static("any")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("name"),
SmolStr::new_static("valueType"),
SmolStr::new_static("scope"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("color"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The hex value for the background color for the label. Appviews may choose to respect this.",
),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("multiple"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The display name of this label."),
),
min_graphemes: Some(1usize),
max_graphemes: Some(40usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("scope"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static(
"The areas of the repo this label may apply to, eg.: sh.tangled.repo.issue. Appviews may choose to respect this.",
),
),
items: LexArrayItem::String(LexString {
format: Some(LexStringFormat::Nsid),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("valueType"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("#valueType"),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("valueType"),
LexUserType::Object(LexObject {
required: Some(
vec![SmolStr::new_static("type"), SmolStr::new_static("format")],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("enum"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static(
"Closed set of values that this label can take.",
),
),
items: LexArrayItem::String(LexString {
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("format"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"An optional constraint that can be applied on string concrete types.",
),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("type"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The concrete type of this label's value.",
),
),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}