jacquard-api 0.12.0-beta.2

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: sh.tangled.repo.pull.status
//
// This file was automatically generated from Lexicon schemas.
// Any manual changes will be overwritten on the next regeneration.

pub mod closed;
pub mod merged;
pub mod open;

#[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};
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 = "sh.tangled.repo.pull.status",
    tag = "$type",
    bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Status<S: BosStr = DefaultStr> {
    pub pull: AtUri<S>,
    ///status of the pull request
    pub status: StatusStatus<S>,
    #[serde(flatten, default, skip_serializing_if = "Option::is_none")]
    pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}

/// status of the pull request

#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum StatusStatus<S: BosStr = DefaultStr> {
    ShTangledRepoPullStatusOpen,
    ShTangledRepoPullStatusClosed,
    ShTangledRepoPullStatusMerged,
    Other(S),
}

impl<S: BosStr> StatusStatus<S> {
    pub fn as_str(&self) -> &str {
        match self {
            Self::ShTangledRepoPullStatusOpen => "sh.tangled.repo.pull.status.open",
            Self::ShTangledRepoPullStatusClosed => "sh.tangled.repo.pull.status.closed",
            Self::ShTangledRepoPullStatusMerged => "sh.tangled.repo.pull.status.merged",
            Self::Other(s) => s.as_ref(),
        }
    }
    /// Construct from a string-like value, matching known values.
    pub fn from_value(s: S) -> Self {
        match s.as_ref() {
            "sh.tangled.repo.pull.status.open" => Self::ShTangledRepoPullStatusOpen,
            "sh.tangled.repo.pull.status.closed" => Self::ShTangledRepoPullStatusClosed,
            "sh.tangled.repo.pull.status.merged" => Self::ShTangledRepoPullStatusMerged,
            _ => Self::Other(s),
        }
    }
}

impl<S: BosStr> core::fmt::Display for StatusStatus<S> {
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        write!(f, "{}", self.as_str())
    }
}

impl<S: BosStr> AsRef<str> for StatusStatus<S> {
    fn as_ref(&self) -> &str {
        self.as_str()
    }
}

impl<S: BosStr> Serialize for StatusStatus<S> {
    fn serialize<Ser>(&self, serializer: Ser) -> Result<Ser::Ok, Ser::Error>
    where
        Ser: serde::Serializer,
    {
        serializer.serialize_str(self.as_str())
    }
}

impl<'de, S: Deserialize<'de> + BosStr> Deserialize<'de> for StatusStatus<S> {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: serde::Deserializer<'de>,
    {
        let s = S::deserialize(deserializer)?;
        Ok(Self::from_value(s))
    }
}

impl<S: BosStr + Default> Default for StatusStatus<S> {
    fn default() -> Self {
        Self::Other(Default::default())
    }
}

impl<S: BosStr> jacquard_common::IntoStatic for StatusStatus<S>
where
    S: BosStr + jacquard_common::IntoStatic,
    S::Output: BosStr,
{
    type Output = StatusStatus<S::Output>;
    fn into_static(self) -> Self::Output {
        match self {
            StatusStatus::ShTangledRepoPullStatusOpen => StatusStatus::ShTangledRepoPullStatusOpen,
            StatusStatus::ShTangledRepoPullStatusClosed => {
                StatusStatus::ShTangledRepoPullStatusClosed
            }
            StatusStatus::ShTangledRepoPullStatusMerged => {
                StatusStatus::ShTangledRepoPullStatusMerged
            }
            StatusStatus::Other(v) => StatusStatus::Other(v.into_static()),
        }
    }
}

/// Typed wrapper for GetRecord response with this collection's record type.

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct StatusGetRecordOutput<S: BosStr = DefaultStr> {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub cid: Option<Cid<S>>,
    pub uri: AtUri<S>,
    pub value: Status<S>,
}

impl<S: BosStr> Status<S> {
    pub fn uri(uri: S) -> Result<RecordUri<S, StatusRecord>, UriError> {
        RecordUri::try_from_uri(AtUri::new(uri)?)
    }
}

/// Marker type for deserializing records from this collection.

#[derive(Debug, Serialize, Deserialize)]
pub struct StatusRecord;
impl XrpcResp for StatusRecord {
    const NSID: &'static str = "sh.tangled.repo.pull.status";
    const ENCODING: &'static str = "application/json";
    type Output<S: BosStr> = StatusGetRecordOutput<S>;
    type Err = RecordError;
}

impl<S: BosStr> From<StatusGetRecordOutput<S>> for Status<S> {
    fn from(output: StatusGetRecordOutput<S>) -> Self {
        output.value
    }
}

impl<S: BosStr> Collection for Status<S> {
    const NSID: &'static str = "sh.tangled.repo.pull.status";
    type Record = StatusRecord;
}

impl Collection for StatusRecord {
    const NSID: &'static str = "sh.tangled.repo.pull.status";
    type Record = StatusRecord;
}

impl<S: BosStr> LexiconSchema for Status<S> {
    fn nsid() -> &'static str {
        "sh.tangled.repo.pull.status"
    }
    fn def_name() -> &'static str {
        "main"
    }
    fn lexicon_doc() -> LexiconDoc<'static> {
        lexicon_doc_sh_tangled_repo_pull_status()
    }
    fn validate(&self) -> Result<(), ConstraintError> {
        Ok(())
    }
}

pub mod status_state {

    pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
    #[allow(unused)]
    use ::core::marker::PhantomData;
    mod sealed {
        pub trait Sealed {}
    }
    /// State trait tracking which required fields have been set
    pub trait State: sealed::Sealed {
        type Pull;
        type Status;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Pull = Unset;
        type Status = Unset;
    }
    ///State transition - sets the `pull` field to Set
    pub struct SetPull<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetPull<St> {}
    impl<St: State> State for SetPull<St> {
        type Pull = Set<members::pull>;
        type Status = St::Status;
    }
    ///State transition - sets the `status` field to Set
    pub struct SetStatus<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetStatus<St> {}
    impl<St: State> State for SetStatus<St> {
        type Pull = St::Pull;
        type Status = Set<members::status>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `pull` field
        pub struct pull(());
        ///Marker type for the `status` field
        pub struct status(());
    }
}

/// Builder for constructing an instance of this type.
pub struct StatusBuilder<S: BosStr, St: status_state::State> {
    _state: PhantomData<fn() -> St>,
    _fields: (Option<AtUri<S>>, Option<StatusStatus<S>>),
    _type: PhantomData<fn() -> S>,
}

impl<S: BosStr> Status<S> {
    /// Create a new builder for this type.
    pub fn new() -> StatusBuilder<S, status_state::Empty> {
        StatusBuilder::new()
    }
}

impl<S: BosStr> StatusBuilder<S, status_state::Empty> {
    /// Create a new builder with all fields unset.
    pub fn new() -> Self {
        StatusBuilder {
            _state: PhantomData,
            _fields: (None, None),
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> StatusBuilder<S, St>
where
    St: status_state::State,
    St::Pull: status_state::IsUnset,
{
    /// Set the `pull` field (required)
    pub fn pull(
        mut self,
        value: impl Into<AtUri<S>>,
    ) -> StatusBuilder<S, status_state::SetPull<St>> {
        self._fields.0 = Option::Some(value.into());
        StatusBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> StatusBuilder<S, St>
where
    St: status_state::State,
    St::Status: status_state::IsUnset,
{
    /// Set the `status` field (required)
    pub fn status(
        mut self,
        value: impl Into<StatusStatus<S>>,
    ) -> StatusBuilder<S, status_state::SetStatus<St>> {
        self._fields.1 = Option::Some(value.into());
        StatusBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> StatusBuilder<S, St>
where
    St: status_state::State,
    St::Pull: status_state::IsSet,
    St::Status: status_state::IsSet,
{
    /// Build the final struct.
    pub fn build(self) -> Status<S> {
        Status {
            pull: self._fields.0.unwrap(),
            status: self._fields.1.unwrap(),
            extra_data: Default::default(),
        }
    }
    /// Build the final struct with custom extra_data.
    pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Status<S> {
        Status {
            pull: self._fields.0.unwrap(),
            status: self._fields.1.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}

fn lexicon_doc_sh_tangled_repo_pull_status() -> 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("sh.tangled.repo.pull.status"),
        defs: {
            let mut map = BTreeMap::new();
            map.insert(
                SmolStr::new_static("main"),
                LexUserType::Record(LexRecord {
                    key: Some(CowStr::new_static("tid")),
                    record: LexRecordRecord::Object(LexObject {
                        required: Some(vec![
                            SmolStr::new_static("pull"),
                            SmolStr::new_static("status"),
                        ]),
                        properties: {
                            #[allow(unused_mut)]
                            let mut map = BTreeMap::new();
                            map.insert(
                                SmolStr::new_static("pull"),
                                LexObjectProperty::String(LexString {
                                    format: Some(LexStringFormat::AtUri),
                                    ..Default::default()
                                }),
                            );
                            map.insert(
                                SmolStr::new_static("status"),
                                LexObjectProperty::String(LexString {
                                    description: Some(CowStr::new_static(
                                        "status of the pull request",
                                    )),
                                    ..Default::default()
                                }),
                            );
                            map
                        },
                        ..Default::default()
                    }),
                    ..Default::default()
                }),
            );
            map
        },
        ..Default::default()
    }
}