rust/src/librustc/front/config.rs

208 lines
6.5 KiB
Rust
Raw Normal View History

// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
use std::option;
2012-09-04 13:54:36 -05:00
use syntax::{ast, fold, attr};
2013-07-05 03:28:53 -05:00
type in_cfg_pred = @fn(attrs: &[ast::attribute]) -> bool;
struct Context {
in_cfg: in_cfg_pred
}
// Support conditional compilation by transforming the AST, stripping out
// any items that do not belong in the current configuration
pub fn strip_unconfigured_items(crate: @ast::crate) -> @ast::crate {
2012-06-30 18:19:07 -05:00
do strip_items(crate) |attrs| {
in_cfg(crate.node.config, attrs)
}
}
pub fn strip_items(crate: &ast::crate, in_cfg: in_cfg_pred)
-> @ast::crate {
let ctxt = @Context { in_cfg: in_cfg };
let precursor = @fold::AstFoldFns {
fold_mod: |a,b| fold_mod(ctxt, a, b),
fold_block: |a,b| fold_block(ctxt, a, b),
2012-09-04 15:29:32 -05:00
fold_foreign_mod: |a,b| fold_foreign_mod(ctxt, a, b),
fold_item_underscore: |a,b| {
// Bad copy.
fold_item_underscore(ctxt, copy a, b)
},
2012-09-04 15:29:32 -05:00
.. *fold::default_ast_fold()};
2011-07-27 07:19:39 -05:00
let fold = fold::make_fold(precursor);
@fold.fold_crate(crate)
}
fn filter_item(cx: @Context, item: @ast::item) ->
2012-08-20 14:23:37 -05:00
Option<@ast::item> {
if item_in_cfg(cx, item) { option::Some(item) } else { option::None }
}
2013-07-05 03:28:53 -05:00
fn filter_view_item<'r>(cx: @Context, view_item: &'r ast::view_item)-> Option<&'r ast::view_item> {
if view_item_in_cfg(cx, view_item) {
2012-08-20 14:23:37 -05:00
option::Some(view_item)
} else {
2012-08-20 14:23:37 -05:00
option::None
}
}
fn fold_mod(cx: @Context, m: &ast::_mod, fld: @fold::ast_fold) -> ast::_mod {
let filtered_items = do m.items.iter().filter_map |a| {
filter_item(cx, *a).chain(|x| fld.fold_item(x))
}.collect();
let filtered_view_items = do m.view_items.iter().filter_map |a| {
2013-07-05 03:28:53 -05:00
filter_view_item(cx, a).map(|&x| fld.fold_view_item(x))
}.collect();
ast::_mod {
view_items: filtered_view_items,
items: filtered_items
}
}
fn filter_foreign_item(cx: @Context, item: @ast::foreign_item) ->
2012-08-20 14:23:37 -05:00
Option<@ast::foreign_item> {
if foreign_item_in_cfg(cx, item) {
2012-08-20 14:23:37 -05:00
option::Some(item)
} else { option::None }
}
fn fold_foreign_mod(
cx: @Context,
nm: &ast::foreign_mod,
fld: @fold::ast_fold
) -> ast::foreign_mod {
let filtered_items = nm.items.iter().filter_map(|a| filter_foreign_item(cx, *a)).collect();
let filtered_view_items = do nm.view_items.iter().filter_map |a| {
2013-07-05 03:28:53 -05:00
filter_view_item(cx, a).map(|&x| fld.fold_view_item(x))
}.collect();
ast::foreign_mod {
sort: nm.sort,
abis: nm.abis,
view_items: filtered_view_items,
2012-08-01 19:30:05 -05:00
items: filtered_items
}
}
fn fold_item_underscore(cx: @Context, item: &ast::item_,
fld: @fold::ast_fold) -> ast::item_ {
let item = match *item {
2013-07-05 23:57:11 -05:00
ast::item_impl(ref a, ref b, ref c, ref methods) => {
let methods = methods.iter().filter(|m| method_in_cfg(cx, **m))
.transform(|x| *x).collect();
2013-07-05 23:57:11 -05:00
ast::item_impl(/*bad*/ copy *a, /*bad*/ copy *b, /*bad*/ copy *c, methods)
2012-11-01 17:48:37 -05:00
}
ast::item_trait(ref a, ref b, ref methods) => {
let methods = methods.iter().filter(|m| trait_method_in_cfg(cx, *m) )
.transform(|x| /* bad */copy *x).collect();
ast::item_trait(/*bad*/copy *a, /*bad*/copy *b, methods)
2012-11-01 17:48:37 -05:00
}
ref item => /*bad*/ copy *item
2012-11-01 17:48:37 -05:00
};
fold::noop_fold_item_underscore(&item, fld)
2012-11-01 17:48:37 -05:00
}
fn filter_stmt(cx: @Context, stmt: @ast::stmt) ->
2012-08-20 14:23:37 -05:00
Option<@ast::stmt> {
2012-08-06 14:34:08 -05:00
match stmt.node {
2012-08-03 21:59:04 -05:00
ast::stmt_decl(decl, _) => {
2012-08-06 14:34:08 -05:00
match decl.node {
2012-08-03 21:59:04 -05:00
ast::decl_item(item) => {
if item_in_cfg(cx, item) {
2012-08-20 14:23:37 -05:00
option::Some(stmt)
} else { option::None }
2011-07-27 07:19:39 -05:00
}
2012-08-20 14:23:37 -05:00
_ => option::Some(stmt)
}
2011-07-27 07:19:39 -05:00
}
2012-08-20 14:23:37 -05:00
_ => option::Some(stmt)
}
}
fn fold_block(
cx: @Context,
b: &ast::blk,
fld: @fold::ast_fold
) -> ast::blk {
let resulting_stmts = do b.stmts.iter().filter_map |a| {
filter_stmt(cx, *a).chain(|stmt| fld.fold_stmt(stmt))
}.collect();
let filtered_view_items = do b.view_items.iter().filter_map |a| {
2013-07-05 03:28:53 -05:00
filter_view_item(cx, a).map(|&x| fld.fold_view_item(x))
}.collect();
ast::blk {
view_items: filtered_view_items,
stmts: resulting_stmts,
expr: b.expr.map(|x| fld.fold_expr(*x)),
id: b.id,
rules: b.rules,
span: b.span,
}
}
fn item_in_cfg(cx: @Context, item: @ast::item) -> bool {
return (cx.in_cfg)(/*bad*/copy item.attrs);
}
fn foreign_item_in_cfg(cx: @Context, item: @ast::foreign_item) -> bool {
return (cx.in_cfg)(/*bad*/copy item.attrs);
}
2013-07-05 03:28:53 -05:00
fn view_item_in_cfg(cx: @Context, item: &ast::view_item) -> bool {
return (cx.in_cfg)(item.attrs);
}
fn method_in_cfg(cx: @Context, meth: @ast::method) -> bool {
return (cx.in_cfg)(/*bad*/copy meth.attrs);
2012-11-01 17:48:37 -05:00
}
fn trait_method_in_cfg(cx: @Context, meth: &ast::trait_method) -> bool {
2012-11-01 17:48:37 -05:00
match *meth {
ast::required(ref meth) => (cx.in_cfg)(/*bad*/copy meth.attrs),
ast::provided(@ref meth) => (cx.in_cfg)(/*bad*/copy meth.attrs)
2012-11-01 17:48:37 -05:00
}
}
// Determine if an item should be translated in the current crate
// configuration based on the item's attributes
fn in_cfg(cfg: &[@ast::meta_item], attrs: &[ast::attribute]) -> bool {
metas_in_cfg(cfg, attr::attr_metas(attrs))
}
pub fn metas_in_cfg(cfg: &[@ast::meta_item],
metas: &[@ast::meta_item]) -> bool {
// The "cfg" attributes on the item
let cfg_metas = attr::find_meta_items_by_name(metas, "cfg");
// 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
let cfg_metas = cfg_metas.consume_iter()
.filter_map(|i| attr::get_meta_item_list(i))
.collect::<~[~[@ast::meta_item]]>();
if cfg_metas.iter().all(|c| c.is_empty()) { return true; }
2013-07-04 21:13:26 -05:00
cfg_metas.iter().any(|cfg_meta| {
cfg_meta.iter().all(|cfg_mi| {
match cfg_mi.node {
ast::meta_list(s, ref it) if "not" == s
=> it.iter().all(|mi| !attr::contains(cfg, *mi)),
_ => attr::contains(cfg, *cfg_mi)
}
})
})
}