- when rustfmt is not detected (by attempting to run ``rustfmt --version) no formatting will be attempted - this should resolve issue mthom/scryer-prolog#1504
117 lines
3.5 KiB
Rust
117 lines
3.5 KiB
Rust
mod instructions_template;
|
|
mod static_string_indexing;
|
|
|
|
use instructions_template::generate_instructions_rs;
|
|
use static_string_indexing::index_static_strings;
|
|
|
|
use std::env;
|
|
use std::fs;
|
|
use std::fs::File;
|
|
use std::io::Write;
|
|
use std::path::Path;
|
|
use std::process::{self, Command, Stdio};
|
|
|
|
fn find_prolog_files(libraries: &mut File, prefix: &str, current_dir: &Path) {
|
|
let entries = match current_dir.read_dir() {
|
|
Ok(entries) => entries,
|
|
Err(_) => return,
|
|
};
|
|
|
|
for entry in entries.filter_map(Result::ok).map(|e| e.path()) {
|
|
if entry.is_dir() {
|
|
if let Some(file_name) = entry.file_name() {
|
|
let new_prefix = prefix.to_owned() + file_name.to_str().unwrap() + "/";
|
|
find_prolog_files(libraries, &new_prefix, &entry);
|
|
}
|
|
} else if entry.is_file() {
|
|
let ext = std::ffi::OsStr::new("pl");
|
|
if entry.extension() == Some(ext) {
|
|
let contain = String::from_utf8(fs::read(&entry).unwrap()).unwrap();
|
|
let name = entry.file_stem().unwrap().to_str().unwrap();
|
|
|
|
let line = format!(
|
|
" m.insert(\"{}\",\n{:?});\n",
|
|
prefix.to_owned() + name,
|
|
contain
|
|
);
|
|
|
|
libraries.write_all(line.as_bytes()).unwrap();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let has_rustfmt = Command::new("rustfmt")
|
|
.arg("--version")
|
|
.stdin(Stdio::inherit())
|
|
.status()
|
|
.is_ok();
|
|
|
|
if !has_rustfmt {
|
|
println!("Failed to run rustfmt, will skip formatting generated files.")
|
|
}
|
|
|
|
let out_dir = env::var("OUT_DIR").unwrap();
|
|
let dest_path = Path::new(&out_dir).join("libraries.rs");
|
|
|
|
let mut libraries = File::create(&dest_path).unwrap();
|
|
let lib_path = Path::new("src/lib");
|
|
|
|
libraries
|
|
.write_all(
|
|
b"ref_thread_local::ref_thread_local! {
|
|
pub(crate) static managed LIBRARIES: IndexMap<&'static str, &'static str> = {
|
|
let mut m = IndexMap::new();\n",
|
|
)
|
|
.unwrap();
|
|
|
|
find_prolog_files(&mut libraries, "", &lib_path);
|
|
libraries.write_all(b"\n m\n };\n}\n").unwrap();
|
|
|
|
let instructions_path = Path::new(&out_dir).join("instructions.rs");
|
|
let mut instructions_file = File::create(&instructions_path).unwrap();
|
|
|
|
let quoted_output = generate_instructions_rs();
|
|
|
|
instructions_file
|
|
.write_all(quoted_output.to_string().as_bytes())
|
|
.unwrap();
|
|
|
|
if has_rustfmt {
|
|
format_generated_file(instructions_path.as_path());
|
|
}
|
|
|
|
let static_atoms_path = Path::new(&out_dir).join("static_atoms.rs");
|
|
let mut static_atoms_file = File::create(&static_atoms_path).unwrap();
|
|
|
|
let quoted_output = index_static_strings(&instructions_path);
|
|
|
|
static_atoms_file
|
|
.write_all(quoted_output.to_string().as_bytes())
|
|
.unwrap();
|
|
|
|
if has_rustfmt {
|
|
format_generated_file(static_atoms_path.as_path());
|
|
}
|
|
|
|
println!("cargo:rerun-if-changed=src/");
|
|
}
|
|
|
|
fn format_generated_file(path: &Path) {
|
|
Command::new("rustfmt")
|
|
.arg(path.as_os_str())
|
|
.spawn()
|
|
.unwrap_or_else(|err| {
|
|
eprintln!(
|
|
"{}: rustfmt (https://github.com/rust-lang/rustfmt) \
|
|
is required build time dependency and must be available \
|
|
in the environment's PATH variable.",
|
|
err
|
|
);
|
|
process::exit(1);
|
|
})
|
|
.wait()
|
|
.unwrap();
|
|
}
|