2018-10-30 09:04:30 +00:00
|
|
|
#![feature(plugin)]
|
|
|
|
#![plugin(phf_macros)]
|
|
|
|
extern crate phf;
|
|
|
|
|
2018-10-30 09:40:05 +00:00
|
|
|
extern crate failure;
|
2018-10-30 13:06:37 +00:00
|
|
|
use failure::*;
|
2018-10-30 09:04:30 +00:00
|
|
|
|
2018-10-30 09:40:05 +00:00
|
|
|
extern crate json_schema;
|
|
|
|
use json_schema::*;
|
2018-10-30 09:04:30 +00:00
|
|
|
|
2018-10-30 13:06:37 +00:00
|
|
|
extern crate serde_json;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate serde_derive;
|
|
|
|
|
|
|
|
use serde_json::{json, Value};
|
|
|
|
|
2018-10-30 09:04:30 +00:00
|
|
|
|
|
|
|
static PARAMETERS1: StaticPropertyMap = phf_map! {
|
|
|
|
"force" => Boolean!{
|
|
|
|
description => "Test for boolean options."
|
|
|
|
},
|
|
|
|
"text1" => ApiString!{
|
|
|
|
description => "A simple text string.",
|
|
|
|
min_length => Some(10),
|
|
|
|
max_length => Some(30)
|
|
|
|
},
|
|
|
|
"count" => Integer!{
|
|
|
|
description => "A counter for everything.",
|
|
|
|
minimum => Some(0),
|
|
|
|
maximum => Some(10)
|
|
|
|
},
|
|
|
|
"myarray1" => Array!{
|
|
|
|
description => "Test Array of simple integers.",
|
|
|
|
items => &PVE_VMID
|
|
|
|
},
|
2018-10-30 09:40:05 +00:00
|
|
|
"myarray2" => Jss::Array(JssArray {
|
2018-10-30 09:04:30 +00:00
|
|
|
description: "Test Array of simple integers.",
|
|
|
|
optional: Some(false),
|
|
|
|
items: &Object!{description => "Empty Object."},
|
|
|
|
}),
|
|
|
|
"myobject" => Object!{
|
|
|
|
description => "TEST Object.",
|
|
|
|
properties => &phf_map!{
|
2018-10-30 09:40:05 +00:00
|
|
|
"vmid" => Jss::Reference { reference: &PVE_VMID},
|
2018-10-30 09:04:30 +00:00
|
|
|
"loop" => Integer!{
|
|
|
|
description => "Totally useless thing.",
|
|
|
|
optional => Some(false)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"emptyobject" => Object!{description => "Empty Object."},
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2018-10-30 13:06:37 +00:00
|
|
|
struct ApiMethod {
|
|
|
|
description: &'static str,
|
|
|
|
properties: StaticPropertyMap,
|
|
|
|
returns: Jss,
|
|
|
|
handler: fn(Value) -> Result<Value, Error>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
struct Myparam {
|
|
|
|
test: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_api_handler(param: Value) -> Result<Value, Error> {
|
|
|
|
println!("This is a test {}", param);
|
|
|
|
|
|
|
|
// let force: Option<bool> = Some(false);
|
|
|
|
|
|
|
|
//if let Some(force) = param.force {
|
|
|
|
//}
|
|
|
|
|
|
|
|
let force = param["force"].as_bool()
|
|
|
|
.ok_or_else(|| format_err!("meine fehlermeldung"))?;
|
|
|
|
|
|
|
|
if let Some(force) = param["force"].as_bool() {
|
|
|
|
}
|
|
|
|
|
|
|
|
let tmp: Myparam = serde_json::from_value(param)?;
|
|
|
|
|
|
|
|
|
|
|
|
Ok(json!(null))
|
|
|
|
}
|
|
|
|
|
|
|
|
static TEST_API_METHOD: ApiMethod = ApiMethod {
|
|
|
|
description: "This is a simple test.",
|
|
|
|
properties: phf_map! {
|
|
|
|
"force" => Boolean!{
|
|
|
|
description => "Test for boolean options."
|
|
|
|
}
|
|
|
|
},
|
|
|
|
returns: Jss::Null,
|
|
|
|
handler: test_api_handler,
|
|
|
|
};
|
|
|
|
|
|
|
|
type StaticSubdirMap = phf::Map<&'static str, &'static MethodInfo>;
|
|
|
|
|
|
|
|
struct MethodInfo {
|
|
|
|
path: &'static str,
|
|
|
|
get: Option<&'static ApiMethod>,
|
|
|
|
subdirs: Option<&'static StaticSubdirMap>,
|
|
|
|
}
|
|
|
|
|
|
|
|
static API3_NODES: MethodInfo = MethodInfo {
|
|
|
|
path: "",
|
|
|
|
get: Some(&TEST_API_METHOD),
|
|
|
|
subdirs: None,
|
|
|
|
};
|
|
|
|
|
|
|
|
static API3: MethodInfo = MethodInfo {
|
|
|
|
path: "",
|
|
|
|
get: Some(&TEST_API_METHOD),
|
|
|
|
subdirs: Some(&phf_map!{"nodes" => &API3_NODES}),
|
|
|
|
};
|
|
|
|
|
2018-10-30 09:04:30 +00:00
|
|
|
fn main() {
|
|
|
|
println!("Fast Static Type Definitions 1");
|
|
|
|
|
|
|
|
for (k, v) in PARAMETERS1.entries() {
|
|
|
|
println!("Parameter: {} Value: {:?}", k, v);
|
|
|
|
}
|
2018-10-30 13:06:37 +00:00
|
|
|
|
2018-10-30 09:04:30 +00:00
|
|
|
}
|