jacquard-api 0.11.0

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

#[allow(unused_imports)]
use alloc::collections::BTreeMap;

#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_common::types::string::Did;
use jacquard_derive::{IntoStatic, lexicon};
use serde::{Serialize, Deserialize};

#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ForkStatus<'a> {
    ///Branch to check status for
    #[serde(borrow)]
    pub branch: CowStr<'a>,
    ///DID of the fork owner
    #[serde(borrow)]
    pub did: Did<'a>,
    ///Hidden ref to use for comparison
    #[serde(borrow)]
    pub hidden_ref: CowStr<'a>,
    ///Name of the forked repository
    #[serde(borrow)]
    pub name: CowStr<'a>,
    ///Source repository URL
    #[serde(borrow)]
    pub source: CowStr<'a>,
}


#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ForkStatusOutput<'a> {
    ///Fork status: 0=UpToDate, 1=FastForwardable, 2=Conflict, 3=MissingBranch
    pub status: i64,
}

/// Response type for sh.tangled.repo.forkStatus
pub struct ForkStatusResponse;
impl jacquard_common::xrpc::XrpcResp for ForkStatusResponse {
    const NSID: &'static str = "sh.tangled.repo.forkStatus";
    const ENCODING: &'static str = "application/json";
    type Output<'de> = ForkStatusOutput<'de>;
    type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}

impl<'a> jacquard_common::xrpc::XrpcRequest for ForkStatus<'a> {
    const NSID: &'static str = "sh.tangled.repo.forkStatus";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Response = ForkStatusResponse;
}

/// Endpoint type for sh.tangled.repo.forkStatus
pub struct ForkStatusRequest;
impl jacquard_common::xrpc::XrpcEndpoint for ForkStatusRequest {
    const PATH: &'static str = "/xrpc/sh.tangled.repo.forkStatus";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Request<'de> = ForkStatus<'de>;
    type Response = ForkStatusResponse;
}

pub mod fork_status_state {

    pub use crate::builder_types::{Set, Unset, IsSet, IsUnset};
    #[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 Did;
        type Source;
        type Name;
        type Branch;
        type HiddenRef;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Did = Unset;
        type Source = Unset;
        type Name = Unset;
        type Branch = Unset;
        type HiddenRef = Unset;
    }
    ///State transition - sets the `did` field to Set
    pub struct SetDid<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetDid<S> {}
    impl<S: State> State for SetDid<S> {
        type Did = Set<members::did>;
        type Source = S::Source;
        type Name = S::Name;
        type Branch = S::Branch;
        type HiddenRef = S::HiddenRef;
    }
    ///State transition - sets the `source` field to Set
    pub struct SetSource<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetSource<S> {}
    impl<S: State> State for SetSource<S> {
        type Did = S::Did;
        type Source = Set<members::source>;
        type Name = S::Name;
        type Branch = S::Branch;
        type HiddenRef = S::HiddenRef;
    }
    ///State transition - sets the `name` field to Set
    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 Did = S::Did;
        type Source = S::Source;
        type Name = Set<members::name>;
        type Branch = S::Branch;
        type HiddenRef = S::HiddenRef;
    }
    ///State transition - sets the `branch` field to Set
    pub struct SetBranch<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetBranch<S> {}
    impl<S: State> State for SetBranch<S> {
        type Did = S::Did;
        type Source = S::Source;
        type Name = S::Name;
        type Branch = Set<members::branch>;
        type HiddenRef = S::HiddenRef;
    }
    ///State transition - sets the `hidden_ref` field to Set
    pub struct SetHiddenRef<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetHiddenRef<S> {}
    impl<S: State> State for SetHiddenRef<S> {
        type Did = S::Did;
        type Source = S::Source;
        type Name = S::Name;
        type Branch = S::Branch;
        type HiddenRef = Set<members::hidden_ref>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `did` field
        pub struct did(());
        ///Marker type for the `source` field
        pub struct source(());
        ///Marker type for the `name` field
        pub struct name(());
        ///Marker type for the `branch` field
        pub struct branch(());
        ///Marker type for the `hidden_ref` field
        pub struct hidden_ref(());
    }
}

/// Builder for constructing an instance of this type
pub struct ForkStatusBuilder<'a, S: fork_status_state::State> {
    _state: PhantomData<fn() -> S>,
    _fields: (
        Option<CowStr<'a>>,
        Option<Did<'a>>,
        Option<CowStr<'a>>,
        Option<CowStr<'a>>,
        Option<CowStr<'a>>,
    ),
    _lifetime: PhantomData<&'a ()>,
}

impl<'a> ForkStatus<'a> {
    /// Create a new builder for this type
    pub fn new() -> ForkStatusBuilder<'a, fork_status_state::Empty> {
        ForkStatusBuilder::new()
    }
}

impl<'a> ForkStatusBuilder<'a, fork_status_state::Empty> {
    /// Create a new builder with all fields unset
    pub fn new() -> Self {
        ForkStatusBuilder {
            _state: PhantomData,
            _fields: (None, None, None, None, None),
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> ForkStatusBuilder<'a, S>
where
    S: fork_status_state::State,
    S::Branch: fork_status_state::IsUnset,
{
    /// Set the `branch` field (required)
    pub fn branch(
        mut self,
        value: impl Into<CowStr<'a>>,
    ) -> ForkStatusBuilder<'a, fork_status_state::SetBranch<S>> {
        self._fields.0 = Option::Some(value.into());
        ForkStatusBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> ForkStatusBuilder<'a, S>
where
    S: fork_status_state::State,
    S::Did: fork_status_state::IsUnset,
{
    /// Set the `did` field (required)
    pub fn did(
        mut self,
        value: impl Into<Did<'a>>,
    ) -> ForkStatusBuilder<'a, fork_status_state::SetDid<S>> {
        self._fields.1 = Option::Some(value.into());
        ForkStatusBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> ForkStatusBuilder<'a, S>
where
    S: fork_status_state::State,
    S::HiddenRef: fork_status_state::IsUnset,
{
    /// Set the `hiddenRef` field (required)
    pub fn hidden_ref(
        mut self,
        value: impl Into<CowStr<'a>>,
    ) -> ForkStatusBuilder<'a, fork_status_state::SetHiddenRef<S>> {
        self._fields.2 = Option::Some(value.into());
        ForkStatusBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> ForkStatusBuilder<'a, S>
where
    S: fork_status_state::State,
    S::Name: fork_status_state::IsUnset,
{
    /// Set the `name` field (required)
    pub fn name(
        mut self,
        value: impl Into<CowStr<'a>>,
    ) -> ForkStatusBuilder<'a, fork_status_state::SetName<S>> {
        self._fields.3 = Option::Some(value.into());
        ForkStatusBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> ForkStatusBuilder<'a, S>
where
    S: fork_status_state::State,
    S::Source: fork_status_state::IsUnset,
{
    /// Set the `source` field (required)
    pub fn source(
        mut self,
        value: impl Into<CowStr<'a>>,
    ) -> ForkStatusBuilder<'a, fork_status_state::SetSource<S>> {
        self._fields.4 = Option::Some(value.into());
        ForkStatusBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> ForkStatusBuilder<'a, S>
where
    S: fork_status_state::State,
    S::Did: fork_status_state::IsSet,
    S::Source: fork_status_state::IsSet,
    S::Name: fork_status_state::IsSet,
    S::Branch: fork_status_state::IsSet,
    S::HiddenRef: fork_status_state::IsSet,
{
    /// Build the final struct
    pub fn build(self) -> ForkStatus<'a> {
        ForkStatus {
            branch: self._fields.0.unwrap(),
            did: self._fields.1.unwrap(),
            hidden_ref: self._fields.2.unwrap(),
            name: self._fields.3.unwrap(),
            source: self._fields.4.unwrap(),
            extra_data: Default::default(),
        }
    }
    /// Build the final struct with custom extra_data
    pub fn build_with_data(
        self,
        extra_data: BTreeMap<
            jacquard_common::deps::smol_str::SmolStr,
            jacquard_common::types::value::Data<'a>,
        >,
    ) -> ForkStatus<'a> {
        ForkStatus {
            branch: self._fields.0.unwrap(),
            did: self._fields.1.unwrap(),
            hidden_ref: self._fields.2.unwrap(),
            name: self._fields.3.unwrap(),
            source: self._fields.4.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}