#[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};
use crate::com_atproto::repo::strong_ref::StrongRef;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Activity<'a> {
#[serde(borrow)]
pub activity_type: ActivityActivityType<'a>,
#[serde(borrow)]
pub committee_sims: Vec<StrongRef<'a>>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub evaluation: Option<StrongRef<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub proposal_text: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub result_summary: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub status: Option<ActivityStatus<'a>>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum ActivityActivityType<'a> {
CommitteeEvaluation,
SimulationStarted,
SimulationCompleted,
Other(CowStr<'a>),
}
impl<'a> ActivityActivityType<'a> {
pub fn as_str(&self) -> &str {
match self {
Self::CommitteeEvaluation => "committee_evaluation",
Self::SimulationStarted => "simulation_started",
Self::SimulationCompleted => "simulation_completed",
Self::Other(s) => s.as_ref(),
}
}
}
impl<'a> From<&'a str> for ActivityActivityType<'a> {
fn from(s: &'a str) -> Self {
match s {
"committee_evaluation" => Self::CommitteeEvaluation,
"simulation_started" => Self::SimulationStarted,
"simulation_completed" => Self::SimulationCompleted,
_ => Self::Other(CowStr::from(s)),
}
}
}
impl<'a> From<String> for ActivityActivityType<'a> {
fn from(s: String) -> Self {
match s.as_str() {
"committee_evaluation" => Self::CommitteeEvaluation,
"simulation_started" => Self::SimulationStarted,
"simulation_completed" => Self::SimulationCompleted,
_ => Self::Other(CowStr::from(s)),
}
}
}
impl<'a> core::fmt::Display for ActivityActivityType<'a> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<'a> AsRef<str> for ActivityActivityType<'a> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<'a> serde::Serialize for ActivityActivityType<'a> {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, 'a> serde::Deserialize<'de> for ActivityActivityType<'a>
where
'de: 'a,
{
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = <&'de str>::deserialize(deserializer)?;
Ok(Self::from(s))
}
}
impl<'a> Default for ActivityActivityType<'a> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl jacquard_common::IntoStatic for ActivityActivityType<'_> {
type Output = ActivityActivityType<'static>;
fn into_static(self) -> Self::Output {
match self {
ActivityActivityType::CommitteeEvaluation => {
ActivityActivityType::CommitteeEvaluation
}
ActivityActivityType::SimulationStarted => {
ActivityActivityType::SimulationStarted
}
ActivityActivityType::SimulationCompleted => {
ActivityActivityType::SimulationCompleted
}
ActivityActivityType::Other(v) => {
ActivityActivityType::Other(v.into_static())
}
}
}
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum ActivityStatus<'a> {
InProgress,
Completed,
Failed,
Other(CowStr<'a>),
}
impl<'a> ActivityStatus<'a> {
pub fn as_str(&self) -> &str {
match self {
Self::InProgress => "in_progress",
Self::Completed => "completed",
Self::Failed => "failed",
Self::Other(s) => s.as_ref(),
}
}
}
impl<'a> From<&'a str> for ActivityStatus<'a> {
fn from(s: &'a str) -> Self {
match s {
"in_progress" => Self::InProgress,
"completed" => Self::Completed,
"failed" => Self::Failed,
_ => Self::Other(CowStr::from(s)),
}
}
}
impl<'a> From<String> for ActivityStatus<'a> {
fn from(s: String) -> Self {
match s.as_str() {
"in_progress" => Self::InProgress,
"completed" => Self::Completed,
"failed" => Self::Failed,
_ => Self::Other(CowStr::from(s)),
}
}
}
impl<'a> core::fmt::Display for ActivityStatus<'a> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<'a> AsRef<str> for ActivityStatus<'a> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<'a> serde::Serialize for ActivityStatus<'a> {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, 'a> serde::Deserialize<'de> for ActivityStatus<'a>
where
'de: 'a,
{
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = <&'de str>::deserialize(deserializer)?;
Ok(Self::from(s))
}
}
impl<'a> Default for ActivityStatus<'a> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl jacquard_common::IntoStatic for ActivityStatus<'_> {
type Output = ActivityStatus<'static>;
fn into_static(self) -> Self::Output {
match self {
ActivityStatus::InProgress => ActivityStatus::InProgress,
ActivityStatus::Completed => ActivityStatus::Completed,
ActivityStatus::Failed => ActivityStatus::Failed,
ActivityStatus::Other(v) => ActivityStatus::Other(v.into_static()),
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ActivityGetRecordOutput<'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: Activity<'a>,
}
impl<'a> Activity<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, ActivityRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ActivityRecord;
impl XrpcResp for ActivityRecord {
const NSID: &'static str = "org.simocracy.senate.activity";
const ENCODING: &'static str = "application/json";
type Output<'de> = ActivityGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<ActivityGetRecordOutput<'_>> for Activity<'_> {
fn from(output: ActivityGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Activity<'_> {
const NSID: &'static str = "org.simocracy.senate.activity";
type Record = ActivityRecord;
}
impl Collection for ActivityRecord {
const NSID: &'static str = "org.simocracy.senate.activity";
type Record = ActivityRecord;
}
impl<'a> LexiconSchema for Activity<'a> {
fn nsid() -> &'static str {
"org.simocracy.senate.activity"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_org_simocracy_senate_activity()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.committee_sims;
#[allow(unused_comparisons)]
if value.len() > 7usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("committee_sims"),
max: 7usize,
actual: value.len(),
});
}
}
if let Some(ref value) = self.proposal_text {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 10000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("proposal_text"),
max: 10000usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.result_summary {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 50000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("result_summary"),
max: 50000usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
pub mod activity_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 ActivityType;
type CommitteeSims;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CreatedAt = Unset;
type ActivityType = Unset;
type CommitteeSims = 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 ActivityType = S::ActivityType;
type CommitteeSims = S::CommitteeSims;
}
pub struct SetActivityType<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetActivityType<S> {}
impl<S: State> State for SetActivityType<S> {
type CreatedAt = S::CreatedAt;
type ActivityType = Set<members::activity_type>;
type CommitteeSims = S::CommitteeSims;
}
pub struct SetCommitteeSims<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCommitteeSims<S> {}
impl<S: State> State for SetCommitteeSims<S> {
type CreatedAt = S::CreatedAt;
type ActivityType = S::ActivityType;
type CommitteeSims = Set<members::committee_sims>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct created_at(());
pub struct activity_type(());
pub struct committee_sims(());
}
}
pub struct ActivityBuilder<'a, S: activity_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<ActivityActivityType<'a>>,
Option<Vec<StrongRef<'a>>>,
Option<Datetime>,
Option<StrongRef<'a>>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<ActivityStatus<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Activity<'a> {
pub fn new() -> ActivityBuilder<'a, activity_state::Empty> {
ActivityBuilder::new()
}
}
impl<'a> ActivityBuilder<'a, activity_state::Empty> {
pub fn new() -> Self {
ActivityBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> ActivityBuilder<'a, S>
where
S: activity_state::State,
S::ActivityType: activity_state::IsUnset,
{
pub fn activity_type(
mut self,
value: impl Into<ActivityActivityType<'a>>,
) -> ActivityBuilder<'a, activity_state::SetActivityType<S>> {
self._fields.0 = Option::Some(value.into());
ActivityBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ActivityBuilder<'a, S>
where
S: activity_state::State,
S::CommitteeSims: activity_state::IsUnset,
{
pub fn committee_sims(
mut self,
value: impl Into<Vec<StrongRef<'a>>>,
) -> ActivityBuilder<'a, activity_state::SetCommitteeSims<S>> {
self._fields.1 = Option::Some(value.into());
ActivityBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ActivityBuilder<'a, S>
where
S: activity_state::State,
S::CreatedAt: activity_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ActivityBuilder<'a, activity_state::SetCreatedAt<S>> {
self._fields.2 = Option::Some(value.into());
ActivityBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: activity_state::State> ActivityBuilder<'a, S> {
pub fn evaluation(mut self, value: impl Into<Option<StrongRef<'a>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_evaluation(mut self, value: Option<StrongRef<'a>>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S: activity_state::State> ActivityBuilder<'a, S> {
pub fn proposal_text(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_proposal_text(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.4 = value;
self
}
}
impl<'a, S: activity_state::State> ActivityBuilder<'a, S> {
pub fn result_summary(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_result_summary(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.5 = value;
self
}
}
impl<'a, S: activity_state::State> ActivityBuilder<'a, S> {
pub fn status(mut self, value: impl Into<Option<ActivityStatus<'a>>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_status(mut self, value: Option<ActivityStatus<'a>>) -> Self {
self._fields.6 = value;
self
}
}
impl<'a, S> ActivityBuilder<'a, S>
where
S: activity_state::State,
S::CreatedAt: activity_state::IsSet,
S::ActivityType: activity_state::IsSet,
S::CommitteeSims: activity_state::IsSet,
{
pub fn build(self) -> Activity<'a> {
Activity {
activity_type: self._fields.0.unwrap(),
committee_sims: self._fields.1.unwrap(),
created_at: self._fields.2.unwrap(),
evaluation: self._fields.3,
proposal_text: self._fields.4,
result_summary: self._fields.5,
status: self._fields.6,
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>,
>,
) -> Activity<'a> {
Activity {
activity_type: self._fields.0.unwrap(),
committee_sims: self._fields.1.unwrap(),
created_at: self._fields.2.unwrap(),
evaluation: self._fields.3,
proposal_text: self._fields.4,
result_summary: self._fields.5,
status: self._fields.6,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_org_simocracy_senate_activity() -> 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("org.simocracy.senate.activity"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static("Senate simulation activity log entry."),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("activityType"),
SmolStr::new_static("committeeSims"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("activityType"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Type of senate activity"),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("committeeSims"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static(
"References to the sim records participating in this committee",
),
),
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("com.atproto.repo.strongRef"),
..Default::default()
}),
max_length: Some(7usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Timestamp when the activity was logged"),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("evaluation"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("com.atproto.repo.strongRef"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("proposalText"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The proposal text being evaluated"),
),
max_length: Some(10000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("resultSummary"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Summary of the simulation result"),
),
max_length: Some(50000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("status"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Current status of the activity"),
),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}