2022-06-25 20:23:24 +00:00
|
|
|
use std::{cmp::Ordering, collections::HashMap, fs::File};
|
|
|
|
|
|
|
|
use bitflags::bitflags;
|
|
|
|
use serde::Serialize;
|
|
|
|
use tera::{Context, Tera};
|
|
|
|
use toml::Value;
|
|
|
|
|
|
|
|
bitflags! {
|
|
|
|
struct Command: u32 {
|
|
|
|
const CHECK_MISSING = 0b00000001;
|
|
|
|
const UPDATE = 0b00000010;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let what_to_run = match std::env::args().nth(1).as_deref() {
|
|
|
|
Some("check-missing") => Command::CHECK_MISSING,
|
|
|
|
Some("update") => Command::UPDATE,
|
|
|
|
_ => Command::all(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let examples = parse_examples(what_to_run.contains(Command::CHECK_MISSING));
|
|
|
|
|
|
|
|
if what_to_run.contains(Command::UPDATE) {
|
|
|
|
let categories = parse_categories();
|
|
|
|
let examples_by_category: HashMap<String, Category> = examples
|
|
|
|
.into_iter()
|
|
|
|
.fold(HashMap::<String, Vec<Example>>::new(), |mut v, ex| {
|
|
|
|
v.entry(ex.category.clone()).or_default().push(ex);
|
|
|
|
v
|
|
|
|
})
|
|
|
|
.into_iter()
|
|
|
|
.map(|(key, mut examples)| {
|
|
|
|
examples.sort();
|
|
|
|
let description = categories.get(&key).cloned();
|
|
|
|
(
|
|
|
|
key,
|
|
|
|
Category {
|
|
|
|
description,
|
|
|
|
examples,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
let mut context = Context::new();
|
|
|
|
context.insert("all_examples", &examples_by_category);
|
|
|
|
Tera::new("examples/*.md.tpl")
|
|
|
|
.expect("error parsing template")
|
|
|
|
.render_to(
|
|
|
|
"README.md.tpl",
|
|
|
|
&context,
|
|
|
|
File::create("examples/README.md").expect("error creating file"),
|
|
|
|
)
|
|
|
|
.expect("error rendering template");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Serialize, PartialEq, Eq)]
|
|
|
|
struct Category {
|
|
|
|
description: Option<String>,
|
|
|
|
examples: Vec<Example>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Serialize, PartialEq, Eq)]
|
|
|
|
struct Example {
|
|
|
|
technical_name: String,
|
|
|
|
path: String,
|
|
|
|
name: String,
|
|
|
|
description: String,
|
|
|
|
category: String,
|
|
|
|
wasm: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Ord for Example {
|
|
|
|
fn cmp(&self, other: &Self) -> Ordering {
|
|
|
|
match self.category.cmp(&other.category) {
|
|
|
|
Ordering::Equal => self.name.cmp(&other.name),
|
|
|
|
ordering => ordering,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PartialOrd for Example {
|
|
|
|
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
|
|
|
|
Some(self.cmp(other))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn parse_examples(panic_on_missing: bool) -> Vec<Example> {
|
|
|
|
let manifest_file = std::fs::read_to_string("Cargo.toml").unwrap();
|
|
|
|
let manifest: HashMap<String, Value> = toml::from_str(&manifest_file).unwrap();
|
|
|
|
let metadatas = manifest
|
|
|
|
.get("package")
|
|
|
|
.unwrap()
|
|
|
|
.get("metadata")
|
|
|
|
.as_ref()
|
|
|
|
.unwrap()["example"]
|
|
|
|
.clone();
|
|
|
|
|
|
|
|
manifest["example"]
|
|
|
|
.as_array()
|
|
|
|
.unwrap()
|
|
|
|
.iter()
|
|
|
|
.flat_map(|val| {
|
|
|
|
let technical_name = val["name"].as_str().unwrap().to_string();
|
|
|
|
if panic_on_missing && metadatas.get(&technical_name).is_none() {
|
2022-10-28 21:03:01 +00:00
|
|
|
panic!("Missing metadata for example {technical_name}");
|
2022-06-25 20:23:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if metadatas
|
|
|
|
.get(&technical_name)
|
|
|
|
.and_then(|metadata| metadata.get("hidden"))
|
|
|
|
.and_then(|hidden| hidden.as_bool())
|
2022-09-22 16:56:43 +00:00
|
|
|
.and_then(|hidden| hidden.then_some(()))
|
2022-06-25 20:23:24 +00:00
|
|
|
.is_some()
|
|
|
|
{
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
metadatas.get(&technical_name).map(|metadata| Example {
|
|
|
|
technical_name,
|
|
|
|
path: val["path"].as_str().unwrap().to_string(),
|
|
|
|
name: metadata["name"].as_str().unwrap().to_string(),
|
|
|
|
description: metadata["description"].as_str().unwrap().to_string(),
|
|
|
|
category: metadata["category"].as_str().unwrap().to_string(),
|
|
|
|
wasm: metadata["wasm"].as_bool().unwrap(),
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.collect()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn parse_categories() -> HashMap<String, String> {
|
|
|
|
let manifest_file = std::fs::read_to_string("Cargo.toml").unwrap();
|
|
|
|
let manifest: HashMap<String, Value> = toml::from_str(&manifest_file).unwrap();
|
|
|
|
manifest
|
|
|
|
.get("package")
|
|
|
|
.unwrap()
|
|
|
|
.get("metadata")
|
|
|
|
.as_ref()
|
|
|
|
.unwrap()["category"]
|
|
|
|
.clone()
|
|
|
|
.as_array()
|
|
|
|
.unwrap()
|
|
|
|
.iter()
|
|
|
|
.map(|v| {
|
|
|
|
(
|
|
|
|
v.get("name").unwrap().as_str().unwrap().to_string(),
|
|
|
|
v.get("description").unwrap().as_str().unwrap().to_string(),
|
|
|
|
)
|
|
|
|
})
|
|
|
|
.collect()
|
|
|
|
}
|