2018-11-09 11:38:30 -06:00
|
|
|
use std::collections::HashMap;
|
|
|
|
use std::fs::File;
|
2019-04-01 12:34:26 -05:00
|
|
|
use std::path::{Path, PathBuf};
|
2018-11-09 11:38:30 -06:00
|
|
|
|
|
|
|
use crate::prelude::*;
|
|
|
|
|
2019-04-01 12:34:26 -05:00
|
|
|
use rustc_codegen_ssa::{METADATA_FILENAME, RLIB_BYTECODE_EXTENSION};
|
|
|
|
use rustc_codegen_ssa::back::archive::{ArchiveBuilder, find_library};
|
|
|
|
|
|
|
|
struct ArchiveConfig<'a> {
|
2018-11-09 11:38:30 -06:00
|
|
|
pub sess: &'a Session,
|
|
|
|
pub dst: PathBuf,
|
|
|
|
pub src: Option<PathBuf>,
|
|
|
|
pub lib_search_paths: Vec<PathBuf>,
|
|
|
|
}
|
|
|
|
|
2019-04-16 11:41:07 -05:00
|
|
|
enum ArchiveEntry {
|
|
|
|
FromArchive { archive_index: usize, entry_index: usize },
|
|
|
|
File(File),
|
|
|
|
}
|
|
|
|
|
2019-04-01 12:34:26 -05:00
|
|
|
pub struct ArArchiveBuilder<'a> {
|
|
|
|
config: ArchiveConfig<'a>,
|
2019-04-16 11:41:07 -05:00
|
|
|
src_archives: Vec<ar::Archive<File>>,
|
|
|
|
entries: HashMap<String, ArchiveEntry>,
|
2018-11-09 11:38:30 -06:00
|
|
|
update_symbols: bool,
|
|
|
|
}
|
|
|
|
|
2019-04-01 12:34:26 -05:00
|
|
|
impl<'a> ArchiveBuilder<'a> for ArArchiveBuilder<'a> {
|
|
|
|
fn new(sess: &'a Session, output: &Path, input: Option<&Path>) -> Self {
|
|
|
|
use rustc_codegen_ssa::back::link::archive_search_paths;
|
2019-04-16 11:41:07 -05:00
|
|
|
let config = ArchiveConfig {
|
2019-04-01 12:34:26 -05:00
|
|
|
sess,
|
|
|
|
dst: output.to_path_buf(),
|
|
|
|
src: input.map(|p| p.to_path_buf()),
|
|
|
|
lib_search_paths: archive_search_paths(sess),
|
|
|
|
};
|
|
|
|
|
2019-04-16 11:41:07 -05:00
|
|
|
let (src_archives, entries) = if let Some(src) = &config.src {
|
2018-11-09 11:38:30 -06:00
|
|
|
let mut archive = ar::Archive::new(File::open(src).unwrap());
|
|
|
|
let mut entries = HashMap::new();
|
|
|
|
|
|
|
|
let mut i = 0;
|
|
|
|
while let Some(entry) = archive.next_entry() {
|
|
|
|
let entry = entry.unwrap();
|
|
|
|
entries.insert(
|
|
|
|
String::from_utf8(entry.header().identifier().to_vec()).unwrap(),
|
2019-04-16 11:41:07 -05:00
|
|
|
ArchiveEntry::FromArchive { archive_index: 0, entry_index: i },
|
2018-11-09 11:38:30 -06:00
|
|
|
);
|
|
|
|
i += 1;
|
|
|
|
}
|
|
|
|
|
2019-04-16 11:41:07 -05:00
|
|
|
(vec![archive], entries)
|
2018-11-09 11:38:30 -06:00
|
|
|
} else {
|
2019-04-16 11:41:07 -05:00
|
|
|
(vec![], HashMap::new())
|
2018-11-09 11:38:30 -06:00
|
|
|
};
|
|
|
|
|
2019-04-01 12:34:26 -05:00
|
|
|
ArArchiveBuilder {
|
2019-04-16 11:41:07 -05:00
|
|
|
config,
|
|
|
|
src_archives,
|
|
|
|
entries,
|
2018-11-09 11:38:30 -06:00
|
|
|
update_symbols: false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-01 12:34:26 -05:00
|
|
|
fn src_files(&mut self) -> Vec<String> {
|
2019-04-16 11:41:07 -05:00
|
|
|
self.entries.keys().cloned().collect()
|
2018-11-09 11:38:30 -06:00
|
|
|
}
|
|
|
|
|
2019-04-01 12:34:26 -05:00
|
|
|
fn remove_file(&mut self, name: &str) {
|
2019-04-16 11:41:07 -05:00
|
|
|
let file = self.entries.remove(name);
|
2018-11-09 11:38:30 -06:00
|
|
|
assert!(
|
2018-12-28 08:18:17 -06:00
|
|
|
file.is_some(),
|
2018-11-09 11:38:30 -06:00
|
|
|
"Tried to remove file not existing in src archive",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-04-01 12:34:26 -05:00
|
|
|
fn add_file(&mut self, file: &Path) {
|
2019-04-16 11:41:07 -05:00
|
|
|
self.entries.insert(
|
|
|
|
file.file_name().unwrap().to_str().unwrap().to_string(),
|
|
|
|
ArchiveEntry::File(File::open(file).unwrap()),
|
|
|
|
);
|
2019-04-01 12:34:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn add_native_library(&mut self, name: &str) {
|
|
|
|
let location = find_library(name, &self.config.lib_search_paths, self.config.sess);
|
|
|
|
self.add_archive(&location, |_| false).unwrap_or_else(|e| {
|
|
|
|
panic!("failed to add native library {}: {}", location.to_string_lossy(), e);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
fn add_rlib(&mut self, rlib: &Path, name: &str, lto: bool, skip_objects: bool) -> std::io::Result<()> {
|
|
|
|
let obj_start = name.to_owned();
|
|
|
|
|
|
|
|
self.add_archive(rlib, move |fname: &str| {
|
|
|
|
// Ignore bytecode/metadata files, no matter the name.
|
|
|
|
if fname.ends_with(RLIB_BYTECODE_EXTENSION) || fname == METADATA_FILENAME {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't include Rust objects if LTO is enabled
|
|
|
|
if lto && fname.starts_with(&obj_start) && fname.ends_with(".o") {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise if this is *not* a rust object and we're skipping
|
|
|
|
// objects then skip this file
|
|
|
|
if skip_objects && (!fname.starts_with(&obj_start) || !fname.ends_with(".o")) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ok, don't skip this
|
|
|
|
return false;
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn update_symbols(&mut self) {
|
2018-11-09 11:38:30 -06:00
|
|
|
self.update_symbols = true;
|
|
|
|
}
|
|
|
|
|
2019-04-01 12:34:26 -05:00
|
|
|
fn build(mut self) {
|
2019-04-16 11:41:07 -05:00
|
|
|
let mut builder = ar::Builder::new(File::create(&self.config.dst).unwrap());
|
|
|
|
|
|
|
|
// Add all files
|
|
|
|
for (entry_name, entry) in self.entries.into_iter() {
|
|
|
|
match entry {
|
|
|
|
ArchiveEntry::FromArchive { archive_index, entry_index } => {
|
|
|
|
let entry = self.src_archives[archive_index].jump_to_entry(entry_index).unwrap();
|
|
|
|
let orig_header = entry.header();
|
|
|
|
let mut header =
|
|
|
|
ar::Header::new(orig_header.identifier().to_vec(), orig_header.size());
|
|
|
|
header.set_mtime(orig_header.mtime());
|
|
|
|
header.set_uid(orig_header.uid());
|
|
|
|
header.set_gid(orig_header.gid());
|
|
|
|
header.set_mode(orig_header.mode());
|
|
|
|
builder.append(&header, entry).unwrap();
|
|
|
|
}
|
|
|
|
ArchiveEntry::File(mut file) => {
|
|
|
|
builder.append_file(entry_name.as_bytes(), &mut file).unwrap();
|
|
|
|
}
|
2018-11-09 11:38:30 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Finalize archive
|
2019-04-16 11:41:07 -05:00
|
|
|
std::mem::drop(builder);
|
2018-11-09 11:38:30 -06:00
|
|
|
|
|
|
|
// Run ranlib to be able to link the archive
|
|
|
|
let status = std::process::Command::new("ranlib")
|
2019-04-01 12:34:26 -05:00
|
|
|
.arg(self.config.dst)
|
2018-11-09 11:38:30 -06:00
|
|
|
.status()
|
|
|
|
.expect("Couldn't run ranlib");
|
|
|
|
assert!(
|
|
|
|
status.success(),
|
|
|
|
"Ranlib exited with code {:?}",
|
|
|
|
status.code()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2019-04-01 12:34:26 -05:00
|
|
|
|
|
|
|
impl<'a> ArArchiveBuilder<'a> {
|
|
|
|
fn add_archive<F>(&mut self, archive: &Path, mut skip: F) -> std::io::Result<()>
|
|
|
|
where F: FnMut(&str) -> bool + 'static
|
|
|
|
{
|
|
|
|
let mut archive = ar::Archive::new(std::fs::File::open(archive)?);
|
2019-04-16 11:41:07 -05:00
|
|
|
let archive_index = self.src_archives.len();
|
2019-04-01 12:34:26 -05:00
|
|
|
|
2019-04-16 11:41:07 -05:00
|
|
|
let mut i = 0;
|
|
|
|
while let Some(entry) = archive.next_entry() {
|
|
|
|
let entry = entry.unwrap();
|
|
|
|
let file_name = String::from_utf8(entry.header().identifier().to_vec()).unwrap();
|
|
|
|
if !skip(&file_name) {
|
|
|
|
self.entries.insert(
|
|
|
|
file_name,
|
|
|
|
ArchiveEntry::FromArchive { archive_index, entry_index: i },
|
|
|
|
);
|
2019-04-01 12:34:26 -05:00
|
|
|
}
|
2019-04-16 11:41:07 -05:00
|
|
|
i += 1;
|
2019-04-01 12:34:26 -05:00
|
|
|
}
|
2019-04-16 11:41:07 -05:00
|
|
|
|
|
|
|
self.src_archives.push(archive);
|
2019-04-01 12:34:26 -05:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|