rust/src/librustc/metadata/creader.rs

287 lines
9.2 KiB
Rust
Raw Normal View History

//! Validates all used crates and extern libraries and loads their metadata
2012-09-04 13:54:36 -05:00
use syntax::diagnostic::span_handler;
use syntax::{ast, ast_util};
use syntax::attr;
use syntax::visit;
use syntax::codemap::span;
use std::map::HashMap;
2012-09-04 13:54:36 -05:00
use syntax::print::pprust;
use filesearch::FileSearch;
2012-09-04 13:54:36 -05:00
use common::*;
use dvec::DVec;
use syntax::parse::token::ident_interner;
2011-06-22 21:04:04 -05:00
export read_crates;
// Traverses an AST, reading all the information about use'd crates and extern
2011-07-07 23:03:09 -05:00
// libraries necessary for later resolving, typechecking, linking, etc.
fn read_crates(diag: span_handler, crate: ast::crate,
cstore: cstore::CStore, filesearch: FileSearch,
os: loader::os, static: bool, intr: @ident_interner) {
let e = @{diag: diag,
filesearch: filesearch,
cstore: cstore,
os: os,
static: static,
2012-08-27 16:22:25 -05:00
crate_cache: DVec(),
2012-07-18 18:18:02 -05:00
mut next_crate_num: 1,
intr: intr};
2011-07-27 07:19:39 -05:00
let v =
visit::mk_simple_visitor(@{visit_view_item:
2012-06-30 18:19:07 -05:00
|a| visit_view_item(e, a),
visit_item: |a| visit_item(e, a)
2012-09-04 15:29:32 -05:00
,.. *visit::default_simple_visitor()});
visit::visit_crate(crate, (), v);
2012-04-09 17:06:38 -05:00
dump_crates(e.crate_cache);
2012-07-18 18:18:02 -05:00
warn_if_multiple_versions(e, diag, e.crate_cache.get());
}
type cache_entry = {
cnum: int,
span: span,
2012-07-18 18:18:02 -05:00
hash: ~str,
metas: @~[@ast::meta_item]
};
2012-08-14 18:54:13 -05:00
fn dump_crates(crate_cache: DVec<cache_entry>) {
2012-08-22 19:24:52 -05:00
debug!("resolved crates:");
2012-06-30 18:19:07 -05:00
for crate_cache.each |entry| {
2012-08-22 19:24:52 -05:00
debug!("cnum: %?", entry.cnum);
debug!("span: %?", entry.span);
debug!("hash: %?", entry.hash);
2012-04-09 17:06:38 -05:00
}
}
2012-07-18 18:18:02 -05:00
fn warn_if_multiple_versions(e: env, diag: span_handler,
crate_cache: ~[cache_entry]) {
use either::*;
2012-06-04 10:03:14 -05:00
if crate_cache.len() != 0u {
let name = loader::crate_name_from_metas(*crate_cache.last().metas);
2012-11-26 22:05:19 -06:00
let (matches, non_matches) =
2012-06-30 18:19:07 -05:00
partition(crate_cache.map_to_vec(|entry| {
let othername = loader::crate_name_from_metas(*entry.metas);
if name == othername {
Left(entry)
} else {
Right(entry)
}
}));
assert matches.is_not_empty();
if matches.len() != 1u {
diag.handler().warn(
2012-08-22 19:24:52 -05:00
fmt!("using multiple versions of crate `%s`", name));
for matches.each |match_| {
diag.span_note(match_.span, ~"used here");
let attrs = ~[
2012-07-18 18:18:02 -05:00
attr::mk_attr(attr::mk_list_item(~"link", *match_.metas))
];
2012-07-18 18:18:02 -05:00
loader::note_linkage_attrs(e.intr, diag, attrs);
}
}
2012-07-18 18:18:02 -05:00
warn_if_multiple_versions(e, diag, non_matches);
}
2011-07-07 23:03:09 -05:00
}
type env = @{diag: span_handler,
filesearch: FileSearch,
cstore: cstore::CStore,
os: loader::os,
static: bool,
2012-08-14 18:54:13 -05:00
crate_cache: DVec<cache_entry>,
2012-07-18 18:18:02 -05:00
mut next_crate_num: ast::crate_num,
intr: @ident_interner};
2011-07-07 23:37:56 -05:00
fn visit_view_item(e: env, i: @ast::view_item) {
2012-08-06 14:34:08 -05:00
match i.node {
2012-08-03 21:59:04 -05:00
ast::view_item_use(ident, meta_items, id) => {
2012-08-22 19:24:52 -05:00
debug!("resolving use stmt. ident: %?, meta: %?", ident, meta_items);
let cnum = resolve_crate(e, ident, meta_items, ~"", i.span);
cstore::add_use_stmt_cnum(e.cstore, id, cnum);
2011-07-27 07:19:39 -05:00
}
2012-08-03 21:59:04 -05:00
_ => ()
2011-07-07 23:37:56 -05:00
}
}
fn visit_item(e: env, i: @ast::item) {
2012-08-06 14:34:08 -05:00
match i.node {
ast::item_foreign_mod(fm) => {
2012-08-06 14:34:08 -05:00
match attr::foreign_abi(i.attrs) {
2012-08-14 18:54:13 -05:00
either::Right(abi) => {
if abi != ast::foreign_abi_cdecl &&
2012-08-01 19:30:05 -05:00
abi != ast::foreign_abi_stdcall { return; }
2011-11-20 12:15:40 -06:00
}
2012-08-14 18:54:13 -05:00
either::Left(msg) => e.diag.span_fatal(i.span, msg)
2011-07-07 23:37:56 -05:00
}
let cstore = e.cstore;
let mut already_added = false;
let link_args = attr::find_attrs_by_name(i.attrs, ~"link_args");
match fm.sort {
ast::named => {
let foreign_name =
match attr::first_attr_value_str_by_name(i.attrs,
~"link_name") {
Some(nn) => {
if nn == ~"" {
e.diag.span_fatal(
i.span,
~"empty #[link_name] not allowed; use #[nolink].");
}
nn
}
None => *e.intr.get(i.ident)
};
if attr::find_attrs_by_name(i.attrs, ~"nolink").is_empty() {
already_added = !cstore::add_used_library(cstore,
foreign_name);
}
if link_args.is_not_empty() && already_added {
e.diag.span_fatal(i.span, ~"library '" + foreign_name +
~"' already added: can't specify link_args.");
}
}
ast::anonymous => { /* do nothing */ }
}
2012-06-30 18:19:07 -05:00
for link_args.each |a| {
match attr::get_meta_item_value_str(attr::attr_meta(*a)) {
2012-08-20 14:23:37 -05:00
Some(linkarg) => {
2012-07-18 18:18:02 -05:00
cstore::add_used_link_args(cstore, linkarg);
}
2012-08-20 14:23:37 -05:00
None => {/* fallthrough */ }
2011-07-27 07:19:39 -05:00
}
2011-07-07 23:37:56 -05:00
}
2011-07-27 07:19:39 -05:00
}
2012-08-03 21:59:04 -05:00
_ => { }
2011-07-07 23:37:56 -05:00
}
}
fn metas_with(ident: ~str, key: ~str, metas: ~[@ast::meta_item])
-> ~[@ast::meta_item] {
2012-07-18 18:18:02 -05:00
let name_items = attr::find_meta_items_by_name(metas, key);
if name_items.is_empty() {
2012-07-18 18:18:02 -05:00
vec::append_one(metas, attr::mk_name_value_item_str(key, ident))
} else {
metas
}
}
fn metas_with_ident(ident: ~str, metas: ~[@ast::meta_item])
-> ~[@ast::meta_item] {
2012-07-18 18:18:02 -05:00
metas_with(ident, ~"name", metas)
}
fn existing_match(e: env, metas: ~[@ast::meta_item], hash: ~str) ->
2012-08-20 14:23:37 -05:00
Option<int> {
2012-06-30 18:19:07 -05:00
for e.crate_cache.each |c| {
2012-06-04 10:03:14 -05:00
if loader::metadata_matches(*c.metas, metas)
2012-07-18 18:18:02 -05:00
&& (hash.is_empty() || c.hash == hash) {
2012-08-20 14:23:37 -05:00
return Some(c.cnum);
2012-06-04 10:03:14 -05:00
}
}
2012-08-20 14:23:37 -05:00
return None;
}
fn resolve_crate(e: env, ident: ast::ident, metas: ~[@ast::meta_item],
hash: ~str, span: span) -> ast::crate_num {
2012-07-18 18:18:02 -05:00
let metas = metas_with_ident(*e.intr.get(ident), metas);
2012-08-06 14:34:08 -05:00
match existing_match(e, metas, hash) {
2012-08-20 14:23:37 -05:00
None => {
let load_ctxt: loader::ctxt = {
diag: e.diag,
filesearch: e.filesearch,
span: span,
ident: ident,
metas: metas,
hash: hash,
os: e.os,
2012-07-18 18:18:02 -05:00
static: e.static,
intr: e.intr
};
let cinfo = loader::load_library_crate(load_ctxt);
let cfilename = Path(cinfo.ident);
2011-07-27 07:19:39 -05:00
let cdata = cinfo.data;
let attrs = decoder::get_crate_attributes(cdata);
let linkage_metas = attr::find_linkage_metas(attrs);
let hash = decoder::get_crate_hash(cdata);
// Claim this crate number and cache it
2011-07-27 07:19:39 -05:00
let cnum = e.next_crate_num;
2012-06-04 10:03:14 -05:00
e.crate_cache.push({cnum: cnum, span: span,
hash: hash, metas: @linkage_metas});
e.next_crate_num += 1;
// Now resolve the crates referenced by this crate
2011-07-27 07:19:39 -05:00
let cnum_map = resolve_crate_deps(e, cdata);
let cname =
2012-08-06 14:34:08 -05:00
match attr::last_meta_item_value_str_by_name(metas, ~"name") {
2012-08-20 14:23:37 -05:00
option::Some(v) => v,
option::None => *e.intr.get(ident)
};
2012-07-18 18:18:02 -05:00
let cmeta = @{name: cname, data: cdata,
cnum_map: cnum_map, cnum: cnum};
let cstore = e.cstore;
cstore::set_crate_data(cstore, cnum, cmeta);
cstore::add_used_crate_file(cstore, &cfilename);
2012-08-01 19:30:05 -05:00
return cnum;
}
2012-08-20 14:23:37 -05:00
Some(cnum) => {
2012-08-01 19:30:05 -05:00
return cnum;
}
}
}
// Go through the crate metadata and load any crates that it references
fn resolve_crate_deps(e: env, cdata: @~[u8]) -> cstore::cnum_map {
2012-08-22 19:24:52 -05:00
debug!("resolving deps of external crate");
// The map from crate numbers in the crate we're resolving to local crate
// numbers
2012-09-19 11:41:06 -05:00
let cnum_map = HashMap();
2012-07-18 18:18:02 -05:00
for decoder::get_crate_deps(e.intr, cdata).each |dep| {
2011-07-27 07:19:39 -05:00
let extrn_cnum = dep.cnum;
let cname = dep.name;
2012-07-18 18:18:02 -05:00
let cmetas = metas_with(dep.vers, ~"vers", ~[]);
2012-08-22 19:24:52 -05:00
debug!("resolving dep crate %s ver: %s hash: %s",
*e.intr.get(dep.name), dep.vers, dep.hash);
2012-07-18 18:18:02 -05:00
match existing_match(e, metas_with_ident(*e.intr.get(cname), cmetas),
dep.hash) {
2012-08-20 14:23:37 -05:00
Some(local_cnum) => {
2012-08-22 19:24:52 -05:00
debug!("already have it");
// We've already seen this crate
cnum_map.insert(extrn_cnum, local_cnum);
}
2012-08-20 14:23:37 -05:00
None => {
2012-08-22 19:24:52 -05:00
debug!("need to load it");
// This is a new one so we've got to load it
// FIXME (#2404): Need better error reporting than just a bogus
// span.
let fake_span = ast_util::dummy_sp();
2012-07-18 18:18:02 -05:00
let local_cnum = resolve_crate(e, cname, cmetas, dep.hash,
fake_span);
cnum_map.insert(extrn_cnum, local_cnum);
}
}
}
2012-08-01 19:30:05 -05:00
return cnum_map;
}
2011-03-24 19:35:27 -05:00
// Local Variables:
// mode: rust
// fill-column: 78;
// indent-tabs-mode: nil
// c-basic-offset: 4
// buffer-file-coding-system: utf-8-unix
// End: