#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{BosStr, 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::UriValue;
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
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",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct StorageExternal<S: BosStr = DefaultStr> {
pub urls: Vec<UriValue<S>>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
impl<S: BosStr> LexiconSchema for StorageExternal<S> {
fn nsid() -> &'static str {
"science.alt.dataset.storageExternal"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_science_alt_dataset_storageExternal()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.urls;
#[allow(unused_comparisons)]
if value.len() < 1usize {
return Err(ConstraintError::MinLength {
path: ValidationPath::from_field("urls"),
min: 1usize,
actual: value.len(),
});
}
}
Ok(())
}
}
pub mod storage_external_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 Urls;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Urls = Unset;
}
pub struct SetUrls<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetUrls<St> {}
impl<St: State> State for SetUrls<St> {
type Urls = Set<members::urls>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct urls(());
}
}
pub struct StorageExternalBuilder<S: BosStr, St: storage_external_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Vec<UriValue<S>>>,),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> StorageExternal<S> {
pub fn new() -> StorageExternalBuilder<S, storage_external_state::Empty> {
StorageExternalBuilder::new()
}
}
impl<S: BosStr> StorageExternalBuilder<S, storage_external_state::Empty> {
pub fn new() -> Self {
StorageExternalBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> StorageExternalBuilder<S, St>
where
St: storage_external_state::State,
St::Urls: storage_external_state::IsUnset,
{
pub fn urls(
mut self,
value: impl Into<Vec<UriValue<S>>>,
) -> StorageExternalBuilder<S, storage_external_state::SetUrls<St>> {
self._fields.0 = Option::Some(value.into());
StorageExternalBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> StorageExternalBuilder<S, St>
where
St: storage_external_state::State,
St::Urls: storage_external_state::IsSet,
{
pub fn build(self) -> StorageExternal<S> {
StorageExternal {
urls: self._fields.0.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> StorageExternal<S> {
StorageExternal {
urls: self._fields.0.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_science_alt_dataset_storageExternal() -> 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("science.alt.dataset.storageExternal"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static(
"(Deprecated: use storageHttp or storageS3 instead.) External storage via URLs for WebDataset tar archives. URLs support brace notation for sharding (e.g., 'data-{000000..000099}.tar').",
),
),
required: Some(vec![SmolStr::new_static("urls")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("urls"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static(
"WebDataset URLs with optional brace notation for sharded tar files",
),
),
items: LexArrayItem::String(LexString {
format: Some(LexStringFormat::Uri),
max_length: Some(1000usize),
..Default::default()
}),
min_length: Some(1usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}