1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
use serde::Deserialize;
use crate::*;
#[derive(Deserialize)]
struct VersionFile {
version: String,
}
pub fn add_version_element(
paths: &DirPaths,
output_scope: &mut codegen::Scope,
) -> Result<(), Box<dyn Error>> {
let version_file = read_file_to_value(&format!("{}version.json", paths.schema_path))?;
let schema_version: VersionFile = serde_json::from_value(version_file)?;
debug!("OCSF Schema Version: {}", schema_version.version);
output_scope.raw(format!(
"/// This was the schema version that the code was generated from ({}).",
&schema_version.version
));
output_scope.raw(format!(
"pub static OCSF_SCHEMA_VERSION: &str = {:?};\n\n",
schema_version.version
));
Ok(())
}