rust/src/archive.rs

263 lines
8.6 KiB
Rust
Raw Normal View History

2018-11-09 11:38:30 -06:00
use std::fs::File;
use std::path::{Path, PathBuf};
2018-11-09 11:38:30 -06:00
use crate::prelude::*;
2019-08-31 12:28:09 -05:00
use rustc_codegen_ssa::back::archive::{find_library, ArchiveBuilder};
use rustc_codegen_ssa::METADATA_FILENAME;
struct ArchiveConfig<'a> {
2019-04-16 12:07:30 -05:00
sess: &'a Session,
dst: PathBuf,
lib_search_paths: Vec<PathBuf>,
use_native_ar: bool,
2019-04-24 14:08:11 -05:00
use_gnu_style_archive: bool,
2018-11-09 11:38:30 -06:00
}
2019-04-16 12:07:30 -05:00
#[derive(Debug)]
enum ArchiveEntry {
2019-08-31 12:28:09 -05:00
FromArchive {
archive_index: usize,
entry_index: usize,
},
File(PathBuf),
}
pub(crate) struct ArArchiveBuilder<'a> {
config: ArchiveConfig<'a>,
src_archives: Vec<(PathBuf, ar::Archive<File>)>,
// Don't use `HashMap` here, as the order is important. `rust.metadata.bin` must always be at
// the end of an archive for linkers to not get confused.
entries: Vec<(String, ArchiveEntry)>,
2018-11-09 11:38:30 -06:00
update_symbols: bool,
}
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;
let config = ArchiveConfig {
sess,
dst: output.to_path_buf(),
lib_search_paths: archive_search_paths(sess),
2019-09-01 04:17:01 -05:00
use_native_ar: false,
2019-04-24 14:08:11 -05:00
// FIXME test for linux and System V derivatives instead
use_gnu_style_archive: sess.target.target.options.archive_format == "gnu",
};
let (src_archives, entries) = if let Some(input) = input {
let mut archive = ar::Archive::new(File::open(input).unwrap());
let mut entries = Vec::new();
2018-11-09 11:38:30 -06:00
let mut i = 0;
while let Some(entry) = archive.next_entry() {
let entry = entry.unwrap();
entries.push((
2018-11-09 11:38:30 -06:00
String::from_utf8(entry.header().identifier().to_vec()).unwrap(),
2019-08-31 12:28:09 -05:00
ArchiveEntry::FromArchive {
archive_index: 0,
entry_index: i,
},
));
2018-11-09 11:38:30 -06:00
i += 1;
}
(vec![(input.to_owned(), archive)], entries)
2018-11-09 11:38:30 -06:00
} else {
(vec![], Vec::new())
2018-11-09 11:38:30 -06:00
};
ArArchiveBuilder {
config,
src_archives,
entries,
2018-11-09 11:38:30 -06:00
update_symbols: false,
}
}
fn src_files(&mut self) -> Vec<String> {
self.entries.iter().map(|(name, _)| name.clone()).collect()
2018-11-09 11:38:30 -06:00
}
fn remove_file(&mut self, name: &str) {
2019-08-31 12:28:09 -05:00
let index = self
.entries
.iter()
.position(|(entry_name, _)| entry_name == name)
.expect("Tried to remove file not existing in src archive");
self.entries.remove(index);
2018-11-09 11:38:30 -06:00
}
fn add_file(&mut self, file: &Path) {
self.entries.push((
file.file_name().unwrap().to_str().unwrap().to_string(),
ArchiveEntry::File(file.to_owned()),
));
}
fn add_native_library(&mut self, name: rustc_ast::ast::Name) {
let location = find_library(name, &self.config.lib_search_paths, self.config.sess);
2019-08-31 12:28:09 -05:00
self.add_archive(location.clone(), |_| false)
.unwrap_or_else(|e| {
panic!(
"failed to add native library {}: {}",
location.to_string_lossy(),
e
);
});
}
2019-08-31 12:28:09 -05:00
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.to_owned(), move |fname: &str| {
// Ignore metadata files, no matter the name.
if 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;
}
fn build(mut self) {
use std::process::Command;
fn add_file_using_ar(archive: &Path, file: &Path) {
Command::new("ar")
.arg("r") // add or replace file
.arg("-c") // silence created file message
.arg(archive)
.arg(&file)
.status()
.unwrap();
}
enum BuilderKind<'a> {
2019-04-16 12:07:30 -05:00
Bsd(ar::Builder<File>),
Gnu(ar::GnuBuilder<File>),
NativeAr(&'a Path),
2019-04-16 12:07:30 -05:00
}
let mut builder = if self.config.use_native_ar {
BuilderKind::NativeAr(&self.config.dst)
} else if self.config.use_gnu_style_archive {
2019-04-16 12:07:30 -05:00
BuilderKind::Gnu(ar::GnuBuilder::new(
File::create(&self.config.dst).unwrap(),
2019-08-31 12:28:09 -05:00
self.entries
.iter()
.map(|(name, _)| name.as_bytes().to_vec())
.collect(),
2019-04-16 12:07:30 -05:00
))
2019-04-24 14:08:11 -05:00
} else {
BuilderKind::Bsd(ar::Builder::new(File::create(&self.config.dst).unwrap()))
2019-04-16 12:07:30 -05:00
};
// Add all files
for (entry_name, entry) in self.entries.into_iter() {
match entry {
2019-08-31 12:28:09 -05:00
ArchiveEntry::FromArchive {
archive_index,
entry_index,
} => {
let (ref src_archive_path, ref mut src_archive) =
self.src_archives[archive_index];
let entry = src_archive.jump_to_entry(entry_index).unwrap();
let header = entry.header().clone();
2019-04-16 12:07:30 -05:00
match builder {
2019-08-31 12:28:09 -05:00
BuilderKind::Bsd(ref mut builder) => {
builder.append(&header, entry).unwrap()
}
BuilderKind::Gnu(ref mut builder) => {
builder.append(&header, entry).unwrap()
}
BuilderKind::NativeAr(archive_file) => {
2019-08-31 12:28:09 -05:00
Command::new("ar")
.arg("x")
.arg(src_archive_path)
.arg(&entry_name)
.status()
.unwrap();
add_file_using_ar(archive_file, Path::new(&entry_name));
std::fs::remove_file(entry_name).unwrap();
}
2019-04-16 12:07:30 -05:00
}
}
2019-08-31 12:28:09 -05:00
ArchiveEntry::File(file) => match builder {
BuilderKind::Bsd(ref mut builder) => builder
.append_file(entry_name.as_bytes(), &mut File::open(file).unwrap())
.unwrap(),
BuilderKind::Gnu(ref mut builder) => builder
.append_file(entry_name.as_bytes(), &mut File::open(file).unwrap())
.unwrap(),
BuilderKind::NativeAr(archive_file) => add_file_using_ar(archive_file, &file),
},
2018-11-09 11:38:30 -06:00
}
}
// Finalize archive
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")
.arg(self.config.dst)
2018-11-09 11:38:30 -06:00
.status()
.expect("Couldn't run ranlib");
if !status.success() {
self.config.sess.fatal(&format!("Ranlib exited with code {:?}", status.code()));
}
2018-11-09 11:38:30 -06:00
}
}
impl<'a> ArArchiveBuilder<'a> {
fn add_archive<F>(&mut self, archive_path: PathBuf, mut skip: F) -> std::io::Result<()>
2019-08-31 12:28:09 -05:00
where
F: FnMut(&str) -> bool + 'static,
{
let mut archive = ar::Archive::new(std::fs::File::open(&archive_path)?);
let archive_index = self.src_archives.len();
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.push((
file_name,
2019-08-31 12:28:09 -05:00
ArchiveEntry::FromArchive {
archive_index,
entry_index: i,
},
));
}
i += 1;
}
self.src_archives.push((archive_path, archive));
Ok(())
}
}