#[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::string::Did;
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
use crate::sh_tangled::repo::merge_check;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct ConflictInfo<S: BosStr = DefaultStr> {
pub filename: S,
pub reason: S,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct MergeCheck<S: BosStr = DefaultStr> {
pub branch: S,
pub did: Did<S>,
pub name: S,
pub patch: S,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct MergeCheckOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub conflicts: Option<Vec<merge_check::ConflictInfo<S>>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub error: Option<S>,
pub is_conflicted: bool,
#[serde(skip_serializing_if = "Option::is_none")]
pub message: Option<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
impl<S: BosStr> LexiconSchema for ConflictInfo<S> {
fn nsid() -> &'static str {
"sh.tangled.repo.mergeCheck"
}
fn def_name() -> &'static str {
"conflictInfo"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_sh_tangled_repo_mergeCheck()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub struct MergeCheckResponse;
impl jacquard_common::xrpc::XrpcResp for MergeCheckResponse {
const NSID: &'static str = "sh.tangled.repo.mergeCheck";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = MergeCheckOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for MergeCheck<S> {
const NSID: &'static str = "sh.tangled.repo.mergeCheck";
const METHOD: jacquard_common::xrpc::XrpcMethod =
jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
type Response = MergeCheckResponse;
}
pub struct MergeCheckRequest;
impl jacquard_common::xrpc::XrpcEndpoint for MergeCheckRequest {
const PATH: &'static str = "/xrpc/sh.tangled.repo.mergeCheck";
const METHOD: jacquard_common::xrpc::XrpcMethod =
jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
type Request<S: BosStr> = MergeCheck<S>;
type Response = MergeCheckResponse;
}
fn lexicon_doc_sh_tangled_repo_mergeCheck() -> 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.mergeCheck"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("conflictInfo"),
LexUserType::Object(LexObject {
required: Some(vec![
SmolStr::new_static("filename"),
SmolStr::new_static("reason"),
]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("filename"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"Name of the conflicted file",
)),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("reason"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("Reason for the conflict")),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("main"),
LexUserType::XrpcProcedure(LexXrpcProcedure {
input: Some(LexXrpcBody {
encoding: CowStr::new_static("application/json"),
schema: Some(LexXrpcBodySchema::Object(LexObject {
required: Some(vec![
SmolStr::new_static("did"),
SmolStr::new_static("name"),
SmolStr::new_static("patch"),
SmolStr::new_static("branch"),
]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("branch"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"Target branch to merge into",
)),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("did"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"DID of the repository owner",
)),
format: Some(LexStringFormat::Did),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"Name of the repository",
)),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("patch"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"Patch or pull request to check for merge conflicts",
)),
..Default::default()
}),
);
map
},
..Default::default()
})),
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod merge_check_state {
pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Patch;
type Branch;
type Name;
type Did;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Patch = Unset;
type Branch = Unset;
type Name = Unset;
type Did = Unset;
}
pub struct SetPatch<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetPatch<St> {}
impl<St: State> State for SetPatch<St> {
type Patch = Set<members::patch>;
type Branch = St::Branch;
type Name = St::Name;
type Did = St::Did;
}
pub struct SetBranch<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetBranch<St> {}
impl<St: State> State for SetBranch<St> {
type Patch = St::Patch;
type Branch = Set<members::branch>;
type Name = St::Name;
type Did = St::Did;
}
pub struct SetName<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetName<St> {}
impl<St: State> State for SetName<St> {
type Patch = St::Patch;
type Branch = St::Branch;
type Name = Set<members::name>;
type Did = St::Did;
}
pub struct SetDid<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetDid<St> {}
impl<St: State> State for SetDid<St> {
type Patch = St::Patch;
type Branch = St::Branch;
type Name = St::Name;
type Did = Set<members::did>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct patch(());
pub struct branch(());
pub struct name(());
pub struct did(());
}
}
pub struct MergeCheckBuilder<S: BosStr, St: merge_check_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<S>, Option<Did<S>>, Option<S>, Option<S>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> MergeCheck<S> {
pub fn new() -> MergeCheckBuilder<S, merge_check_state::Empty> {
MergeCheckBuilder::new()
}
}
impl<S: BosStr> MergeCheckBuilder<S, merge_check_state::Empty> {
pub fn new() -> Self {
MergeCheckBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> MergeCheckBuilder<S, St>
where
St: merge_check_state::State,
St::Branch: merge_check_state::IsUnset,
{
pub fn branch(
mut self,
value: impl Into<S>,
) -> MergeCheckBuilder<S, merge_check_state::SetBranch<St>> {
self._fields.0 = Option::Some(value.into());
MergeCheckBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> MergeCheckBuilder<S, St>
where
St: merge_check_state::State,
St::Did: merge_check_state::IsUnset,
{
pub fn did(
mut self,
value: impl Into<Did<S>>,
) -> MergeCheckBuilder<S, merge_check_state::SetDid<St>> {
self._fields.1 = Option::Some(value.into());
MergeCheckBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> MergeCheckBuilder<S, St>
where
St: merge_check_state::State,
St::Name: merge_check_state::IsUnset,
{
pub fn name(
mut self,
value: impl Into<S>,
) -> MergeCheckBuilder<S, merge_check_state::SetName<St>> {
self._fields.2 = Option::Some(value.into());
MergeCheckBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> MergeCheckBuilder<S, St>
where
St: merge_check_state::State,
St::Patch: merge_check_state::IsUnset,
{
pub fn patch(
mut self,
value: impl Into<S>,
) -> MergeCheckBuilder<S, merge_check_state::SetPatch<St>> {
self._fields.3 = Option::Some(value.into());
MergeCheckBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> MergeCheckBuilder<S, St>
where
St: merge_check_state::State,
St::Patch: merge_check_state::IsSet,
St::Branch: merge_check_state::IsSet,
St::Name: merge_check_state::IsSet,
St::Did: merge_check_state::IsSet,
{
pub fn build(self) -> MergeCheck<S> {
MergeCheck {
branch: self._fields.0.unwrap(),
did: self._fields.1.unwrap(),
name: self._fields.2.unwrap(),
patch: self._fields.3.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> MergeCheck<S> {
MergeCheck {
branch: self._fields.0.unwrap(),
did: self._fields.1.unwrap(),
name: self._fields.2.unwrap(),
patch: self._fields.3.unwrap(),
extra_data: Some(extra_data),
}
}
}