autocxx_parser/
file_locations.rsuse proc_macro2::TokenStream;
use quote::quote;
use std::{fs::File, path::PathBuf};
use crate::{multi_bindings::MultiBindings, IncludeCppConfig};
pub enum FileLocationStrategy {
Custom(PathBuf),
FromAutocxxRsFile(PathBuf),
FromAutocxxRs(PathBuf),
FromOutDir(PathBuf),
FromAutocxxRsJsonArchive(PathBuf),
UnknownMaybeFromOutdir,
}
static BUILD_DIR_NAME: &str = "autocxx-build-dir";
static RS_DIR_NAME: &str = "rs";
static AUTOCXX_RS: &str = "AUTOCXX_RS";
static AUTOCXX_RS_FILE: &str = "AUTOCXX_RS_FILE";
static AUTOCXX_RS_JSON_ARCHIVE: &str = "AUTOCXX_RS_JSON_ARCHIVE";
impl FileLocationStrategy {
pub fn new() -> Self {
match std::env::var_os(AUTOCXX_RS_JSON_ARCHIVE) {
Some(of) => FileLocationStrategy::FromAutocxxRsJsonArchive(PathBuf::from(of)),
None => match std::env::var_os(AUTOCXX_RS_FILE) {
Some(of) => FileLocationStrategy::FromAutocxxRsFile(PathBuf::from(of)),
None => match std::env::var_os(AUTOCXX_RS) {
None => match std::env::var_os("OUT_DIR") {
None => FileLocationStrategy::UnknownMaybeFromOutdir,
Some(od) => FileLocationStrategy::FromOutDir(PathBuf::from(od)),
},
Some(acrs) => FileLocationStrategy::FromAutocxxRs(PathBuf::from(acrs)),
},
},
}
}
pub fn new_custom(gen_dir: PathBuf) -> Self {
FileLocationStrategy::Custom(gen_dir)
}
pub fn make_include(&self, config: &IncludeCppConfig) -> TokenStream {
match self {
FileLocationStrategy::FromAutocxxRs(custom_dir) => {
let fname = config.get_rs_filename();
let fname = custom_dir.join(fname).to_str().unwrap().to_string();
quote! {
include!( #fname );
}
}
FileLocationStrategy::Custom(_) => panic!("Should never happen in the macro"),
FileLocationStrategy::UnknownMaybeFromOutdir | FileLocationStrategy::FromOutDir(_) => {
let fname = config.get_rs_filename();
let fname = format!("/{BUILD_DIR_NAME}/{RS_DIR_NAME}/{fname}");
quote! {
include!(concat!(env!("OUT_DIR"), #fname));
}
}
FileLocationStrategy::FromAutocxxRsFile(fname) => {
let fname = fname
.to_str()
.expect("AUTOCXX_RS_FILE environment variable contained non-UTF8 characters");
quote! {
include!( #fname );
}
}
FileLocationStrategy::FromAutocxxRsJsonArchive(fnames) => {
let archive = std::env::split_paths(fnames).flat_map(File::open).next().unwrap_or_else(|| panic!("Unable to open any of the paths listed in {}. This may mean you didn't run the codegen tool (autocxx_gen) before building the Rust code.", fnames.to_string_lossy()));
let multi_bindings: MultiBindings = serde_json::from_reader(archive)
.unwrap_or_else(|_| {
panic!("Unable to interpret {} as JSON", fnames.to_string_lossy())
});
multi_bindings.get(config).unwrap_or_else(|err| panic!("Unable to find a suitable set of bindings within the JSON archive {} ({}). This likely means that the codegen tool hasn't been rerun since some changes in your include_cpp! macro.", fnames.to_string_lossy(), err))
}
}
}
fn get_gen_dir(&self, suffix: &str) -> PathBuf {
let root = match self {
FileLocationStrategy::Custom(gen_dir)
| FileLocationStrategy::FromAutocxxRs(gen_dir) => gen_dir.clone(),
FileLocationStrategy::FromOutDir(out_dir) => out_dir.join(BUILD_DIR_NAME),
FileLocationStrategy::UnknownMaybeFromOutdir => {
panic!("Could not determine OUT_DIR or AUTOCXX_RS dir")
}
FileLocationStrategy::FromAutocxxRsFile(_) => {
panic!("It's invalid to set AUTOCXX_RS_FILE during the codegen phase.")
}
FileLocationStrategy::FromAutocxxRsJsonArchive(_) => {
panic!("It's invalid to set AUTOCXX_RS_JSON_ARCHIVE during the codegen phase.")
}
};
root.join(suffix)
}
pub fn get_rs_dir(&self) -> PathBuf {
self.get_gen_dir(RS_DIR_NAME)
}
pub fn get_include_dir(&self) -> PathBuf {
self.get_gen_dir("include")
}
pub fn get_cxx_dir(&self) -> PathBuf {
self.get_gen_dir("cxx")
}
pub fn set_cargo_env_vars_for_build(&self) {
if let FileLocationStrategy::Custom(_) = self {
println!(
"cargo:rustc-env={}={}",
AUTOCXX_RS,
self.get_rs_dir().to_str().unwrap()
);
}
}
}
impl Default for FileLocationStrategy {
fn default() -> Self {
Self::new()
}
}