2011-12-13 18:25:51 -06:00
|
|
|
import core::{vec, option};
|
2011-09-12 18:13:28 -05:00
|
|
|
import syntax::{ast, fold};
|
2011-06-30 00:32:08 -05:00
|
|
|
import attr;
|
|
|
|
|
|
|
|
export strip_unconfigured_items;
|
2011-10-29 19:35:45 -05:00
|
|
|
export metas_in_cfg;
|
2011-06-30 00:32:08 -05:00
|
|
|
|
|
|
|
// Support conditional compilation by transforming the AST, stripping out
|
|
|
|
// any items that do not belong in the current configuration
|
2011-07-27 07:19:39 -05:00
|
|
|
fn strip_unconfigured_items(crate: @ast::crate) -> @ast::crate {
|
|
|
|
let cfg = crate.node.config;
|
2011-06-30 00:32:08 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let precursor =
|
|
|
|
{fold_mod: bind fold_mod(cfg, _, _),
|
|
|
|
fold_block: bind fold_block(cfg, _, _),
|
|
|
|
fold_native_mod: bind fold_native_mod(cfg, _, _)
|
|
|
|
with *fold::default_ast_fold()};
|
2011-06-30 00:32:08 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let fold = fold::make_fold(precursor);
|
|
|
|
let res = @fold.fold_crate(*crate);
|
2011-06-30 00:32:08 -05:00
|
|
|
ret res;
|
|
|
|
}
|
|
|
|
|
2011-10-06 05:26:12 -05:00
|
|
|
fn filter_item(cfg: ast::crate_cfg, &&item: @ast::item) ->
|
2011-08-12 09:15:18 -05:00
|
|
|
option::t<@ast::item> {
|
2011-07-27 07:19:39 -05:00
|
|
|
if item_in_cfg(cfg, item) { option::some(item) } else { option::none }
|
2011-06-30 00:32:08 -05:00
|
|
|
}
|
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn fold_mod(cfg: ast::crate_cfg, m: ast::_mod, fld: fold::ast_fold) ->
|
2011-07-27 07:19:39 -05:00
|
|
|
ast::_mod {
|
|
|
|
let filter = bind filter_item(cfg, _);
|
2011-08-15 18:38:23 -05:00
|
|
|
let filtered_items = vec::filter_map(filter, m.items);
|
2011-10-07 02:36:53 -05:00
|
|
|
ret {view_items: vec::map(fld.fold_view_item, m.view_items),
|
|
|
|
items: vec::map(fld.fold_item, filtered_items)};
|
2011-06-30 00:32:08 -05:00
|
|
|
}
|
|
|
|
|
2011-10-06 05:26:12 -05:00
|
|
|
fn filter_native_item(cfg: ast::crate_cfg, &&item: @ast::native_item) ->
|
2011-08-12 09:15:18 -05:00
|
|
|
option::t<@ast::native_item> {
|
2011-07-27 07:19:39 -05:00
|
|
|
if native_item_in_cfg(cfg, item) {
|
2011-07-05 15:29:21 -05:00
|
|
|
option::some(item)
|
2011-07-27 07:19:39 -05:00
|
|
|
} else { option::none }
|
2011-07-05 15:29:21 -05:00
|
|
|
}
|
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn fold_native_mod(cfg: ast::crate_cfg, nm: ast::native_mod,
|
2011-07-27 07:19:39 -05:00
|
|
|
fld: fold::ast_fold) -> ast::native_mod {
|
|
|
|
let filter = bind filter_native_item(cfg, _);
|
2011-08-15 18:38:23 -05:00
|
|
|
let filtered_items = vec::filter_map(filter, nm.items);
|
2011-11-20 12:15:40 -06:00
|
|
|
ret {view_items: vec::map(fld.fold_view_item, nm.view_items),
|
2011-07-27 07:19:39 -05:00
|
|
|
items: filtered_items};
|
2011-07-05 15:29:21 -05:00
|
|
|
}
|
|
|
|
|
2011-10-06 05:26:12 -05:00
|
|
|
fn filter_stmt(cfg: ast::crate_cfg, &&stmt: @ast::stmt) ->
|
2011-08-12 09:15:18 -05:00
|
|
|
option::t<@ast::stmt> {
|
2011-07-27 07:19:39 -05:00
|
|
|
alt stmt.node {
|
|
|
|
ast::stmt_decl(decl, _) {
|
|
|
|
alt decl.node {
|
|
|
|
ast::decl_item(item) {
|
|
|
|
if item_in_cfg(cfg, item) {
|
|
|
|
option::some(stmt)
|
|
|
|
} else { option::none }
|
|
|
|
}
|
|
|
|
_ { option::some(stmt) }
|
2011-06-30 15:04:02 -05:00
|
|
|
}
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
|
|
|
_ { option::some(stmt) }
|
2011-06-30 15:04:02 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn fold_block(cfg: ast::crate_cfg, b: ast::blk_, fld: fold::ast_fold) ->
|
2011-07-27 07:19:39 -05:00
|
|
|
ast::blk_ {
|
|
|
|
let filter = bind filter_stmt(cfg, _);
|
2011-08-15 18:38:23 -05:00
|
|
|
let filtered_stmts = vec::filter_map(filter, b.stmts);
|
2011-11-23 13:57:34 -06:00
|
|
|
ret {view_items: b.view_items,
|
|
|
|
stmts: vec::map(fld.fold_stmt, filtered_stmts),
|
2011-10-07 02:36:53 -05:00
|
|
|
expr: option::map(fld.fold_expr, b.expr),
|
2011-09-02 17:34:58 -05:00
|
|
|
id: b.id,
|
|
|
|
rules: b.rules};
|
2011-06-30 15:04:02 -05:00
|
|
|
}
|
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn item_in_cfg(cfg: ast::crate_cfg, item: @ast::item) -> bool {
|
2011-07-05 15:29:21 -05:00
|
|
|
ret in_cfg(cfg, item.attrs);
|
|
|
|
}
|
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn native_item_in_cfg(cfg: ast::crate_cfg, item: @ast::native_item) -> bool {
|
2011-07-05 15:29:21 -05:00
|
|
|
ret in_cfg(cfg, item.attrs);
|
|
|
|
}
|
|
|
|
|
2011-06-30 00:32:08 -05:00
|
|
|
// Determine if an item should be translated in the current crate
|
|
|
|
// configuration based on the item's attributes
|
2011-09-12 04:27:30 -05:00
|
|
|
fn in_cfg(cfg: ast::crate_cfg, attrs: [ast::attribute]) -> bool {
|
2011-10-29 19:35:45 -05:00
|
|
|
metas_in_cfg(cfg, attr::attr_metas(attrs))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn metas_in_cfg(cfg: ast::crate_cfg, metas: [@ast::meta_item]) -> bool {
|
2011-06-30 00:32:08 -05:00
|
|
|
|
2011-06-30 16:12:11 -05:00
|
|
|
// The "cfg" attributes on the item
|
2011-10-29 19:35:45 -05:00
|
|
|
let cfg_metas = attr::find_meta_items_by_name(metas, "cfg");
|
2011-06-30 00:32:08 -05:00
|
|
|
|
2011-06-30 16:12:11 -05:00
|
|
|
// Pull the inner meta_items from the #[cfg(meta_item, ...)] attributes,
|
|
|
|
// so we can match against them. This is the list of configurations for
|
|
|
|
// which the item is valid
|
2011-10-29 19:35:45 -05:00
|
|
|
let cfg_metas = vec::concat(vec::filter_map(
|
|
|
|
{|&&i| attr::get_meta_item_list(i)}, cfg_metas));
|
|
|
|
|
|
|
|
let has_cfg_metas = vec::len(cfg_metas) > 0u;
|
|
|
|
if !has_cfg_metas { ret true; }
|
2011-06-30 00:32:08 -05:00
|
|
|
|
2011-10-29 19:35:45 -05:00
|
|
|
for cfg_mi: @ast::meta_item in cfg_metas {
|
2011-07-27 07:19:39 -05:00
|
|
|
if attr::contains(cfg, cfg_mi) { ret true; }
|
2011-06-30 00:32:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
ret false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Local Variables:
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// End:
|