2011-07-07 23:29:09 -07:00
|
|
|
// Searching for information from the cstore
|
|
|
|
|
2011-07-07 22:18:38 -07:00
|
|
|
import syntax::ast;
|
2012-01-21 02:45:25 +08:00
|
|
|
import syntax::ast_util;
|
2012-02-10 06:01:32 -08:00
|
|
|
import middle::{ty, ast_map};
|
|
|
|
import option::{some, none};
|
2011-07-08 14:53:25 -07:00
|
|
|
import driver::session;
|
2012-02-14 15:21:53 -08:00
|
|
|
import middle::trans::common::maps;
|
2012-03-07 16:48:57 -08:00
|
|
|
import std::map::hashmap;
|
2011-07-08 14:53:25 -07:00
|
|
|
|
|
|
|
export get_symbol;
|
|
|
|
export get_type_param_count;
|
|
|
|
export lookup_defs;
|
2012-02-13 18:56:09 +01:00
|
|
|
export lookup_method_purity;
|
2012-01-25 14:34:31 +01:00
|
|
|
export get_enum_variants;
|
2011-12-16 14:41:12 +01:00
|
|
|
export get_impls_for_mod;
|
2012-01-05 13:57:27 +01:00
|
|
|
export get_iface_methods;
|
2011-07-08 14:53:25 -07:00
|
|
|
export get_type;
|
2012-01-05 10:57:19 +01:00
|
|
|
export get_impl_iface;
|
2012-02-10 06:01:32 -08:00
|
|
|
export get_item_path;
|
2012-02-14 15:21:53 -08:00
|
|
|
export maybe_get_item_ast;
|
2011-07-07 22:18:38 -07:00
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn get_symbol(cstore: cstore::cstore, def: ast::def_id) -> str {
|
2011-07-27 14:19:39 +02:00
|
|
|
let cdata = cstore::get_crate_data(cstore, def.crate).data;
|
2011-07-26 14:06:02 +02:00
|
|
|
ret decoder::get_symbol(cdata, def.node);
|
2011-07-07 22:18:38 -07:00
|
|
|
}
|
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn get_type_param_count(cstore: cstore::cstore, def: ast::def_id) -> uint {
|
2011-07-27 14:19:39 +02:00
|
|
|
let cdata = cstore::get_crate_data(cstore, def.crate).data;
|
2011-07-26 14:06:02 +02:00
|
|
|
ret decoder::get_type_param_count(cdata, def.node);
|
2011-07-07 22:18:38 -07:00
|
|
|
}
|
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn lookup_defs(cstore: cstore::cstore, cnum: ast::crate_num,
|
|
|
|
path: [ast::ident]) -> [ast::def] {
|
2011-12-15 18:42:27 +08:00
|
|
|
let result = [];
|
|
|
|
for (c, data, def) in resolve_path(cstore, cnum, path) {
|
|
|
|
result += [decoder::lookup_def(c, data, def)];
|
|
|
|
}
|
|
|
|
ret result;
|
|
|
|
}
|
|
|
|
|
2012-02-13 18:56:09 +01:00
|
|
|
fn lookup_method_purity(cstore: cstore::cstore, did: ast::def_id)
|
|
|
|
-> ast::purity {
|
|
|
|
let cdata = cstore::get_crate_data(cstore, did.crate).data;
|
2012-02-15 15:42:35 +01:00
|
|
|
alt check decoder::lookup_def(did.crate, cdata, did) {
|
2012-02-13 18:56:09 +01:00
|
|
|
ast::def_fn(_, p) { p }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-15 18:42:27 +08:00
|
|
|
fn resolve_path(cstore: cstore::cstore, cnum: ast::crate_num,
|
|
|
|
path: [ast::ident]) ->
|
|
|
|
[(ast::crate_num, @[u8], ast::def_id)] {
|
|
|
|
let cm = cstore::get_crate_data(cstore, cnum);
|
2011-12-22 16:13:40 -08:00
|
|
|
#debug("resolve_path %s in crates[%d]:%s",
|
|
|
|
str::connect(path, "::"), cnum, cm.name);
|
2011-12-15 18:42:27 +08:00
|
|
|
let result = [];
|
|
|
|
for def in decoder::resolve_path(path, cm.data) {
|
|
|
|
if def.crate == ast::local_crate {
|
|
|
|
result += [(cnum, cm.data, def)];
|
|
|
|
} else {
|
|
|
|
if cm.cnum_map.contains_key(def.crate) {
|
|
|
|
// This reexport is itself a reexport from anther crate
|
|
|
|
let next_cnum = cm.cnum_map.get(def.crate);
|
|
|
|
let next_cm_data = cstore::get_crate_data(cstore, next_cnum);
|
|
|
|
result += [(next_cnum, next_cm_data.data, def)];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ret result;
|
2011-07-08 14:53:25 -07:00
|
|
|
}
|
|
|
|
|
2012-02-10 06:01:32 -08:00
|
|
|
fn get_item_path(tcx: ty::ctxt, def: ast::def_id) -> ast_map::path {
|
|
|
|
let cstore = tcx.sess.cstore;
|
|
|
|
let cdata = cstore::get_crate_data(cstore, def.crate);
|
2012-02-11 09:49:38 -08:00
|
|
|
let path = decoder::get_item_path(cdata, def.node);
|
2012-03-02 20:06:08 -08:00
|
|
|
|
|
|
|
// FIXME #1920: This path is not always correct if the crate is not linked
|
|
|
|
// into the root namespace.
|
2012-02-11 09:49:38 -08:00
|
|
|
[ast_map::path_mod(cdata.name)] + path
|
2012-02-10 06:01:32 -08:00
|
|
|
}
|
|
|
|
|
2012-02-14 15:21:53 -08:00
|
|
|
// Finds the AST for this item in the crate metadata, if any. If the item was
|
|
|
|
// not marked for inlining, then the AST will not be present and hence none
|
|
|
|
// will be returned.
|
|
|
|
fn maybe_get_item_ast(tcx: ty::ctxt, maps: maps, def: ast::def_id)
|
2012-03-01 19:37:52 -08:00
|
|
|
-> option<ast::inlined_item> {
|
2012-02-14 15:21:53 -08:00
|
|
|
let cstore = tcx.sess.cstore;
|
|
|
|
let cdata = cstore::get_crate_data(cstore, def.crate);
|
|
|
|
decoder::maybe_get_item_ast(cdata, tcx, maps, def.node)
|
|
|
|
}
|
|
|
|
|
2012-01-25 14:34:31 +01:00
|
|
|
fn get_enum_variants(tcx: ty::ctxt, def: ast::def_id) -> [ty::variant_info] {
|
2012-01-12 17:59:49 +01:00
|
|
|
let cstore = tcx.sess.cstore;
|
2012-01-05 16:04:59 +01:00
|
|
|
let cdata = cstore::get_crate_data(cstore, def.crate);
|
2012-01-25 14:34:31 +01:00
|
|
|
ret decoder::get_enum_variants(cdata, def.node, tcx)
|
2011-07-07 22:18:38 -07:00
|
|
|
}
|
|
|
|
|
2011-12-16 14:41:12 +01:00
|
|
|
fn get_impls_for_mod(cstore: cstore::cstore, def: ast::def_id,
|
2012-01-31 17:05:20 -08:00
|
|
|
name: option<ast::ident>)
|
2012-01-05 13:57:27 +01:00
|
|
|
-> @[@middle::resolve::_impl] {
|
2012-01-05 16:04:59 +01:00
|
|
|
let cdata = cstore::get_crate_data(cstore, def.crate);
|
|
|
|
decoder::get_impls_for_mod(cdata, def.node, name)
|
2011-12-16 14:41:12 +01:00
|
|
|
}
|
|
|
|
|
2012-01-05 13:57:27 +01:00
|
|
|
fn get_iface_methods(tcx: ty::ctxt, def: ast::def_id) -> @[ty::method] {
|
2012-01-12 17:59:49 +01:00
|
|
|
let cstore = tcx.sess.cstore;
|
2012-01-05 16:04:59 +01:00
|
|
|
let cdata = cstore::get_crate_data(cstore, def.crate);
|
|
|
|
decoder::get_iface_methods(cdata, def.node, tcx)
|
2011-12-16 14:41:12 +01:00
|
|
|
}
|
|
|
|
|
2011-12-28 17:50:12 +01:00
|
|
|
fn get_type(tcx: ty::ctxt, def: ast::def_id) -> ty::ty_param_bounds_and_ty {
|
2012-01-12 17:59:49 +01:00
|
|
|
let cstore = tcx.sess.cstore;
|
2012-01-05 16:04:59 +01:00
|
|
|
let cdata = cstore::get_crate_data(cstore, def.crate);
|
|
|
|
decoder::get_type(cdata, def.node, tcx)
|
2011-07-07 22:18:38 -07:00
|
|
|
}
|
|
|
|
|
2012-01-05 10:57:19 +01:00
|
|
|
fn get_impl_iface(tcx: ty::ctxt, def: ast::def_id)
|
2012-01-31 17:05:20 -08:00
|
|
|
-> option<ty::t> {
|
2012-01-12 17:59:49 +01:00
|
|
|
let cstore = tcx.sess.cstore;
|
2012-01-05 16:04:59 +01:00
|
|
|
let cdata = cstore::get_crate_data(cstore, def.crate);
|
|
|
|
decoder::get_impl_iface(cdata, def.node, tcx)
|
2011-07-07 22:18:38 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Local Variables:
|
|
|
|
// mode: rust
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// End:
|