2012-12-03 18:48:01 -06:00
|
|
|
// 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.
|
|
|
|
|
2013-05-17 17:28:44 -05:00
|
|
|
|
2013-08-29 14:10:02 -05:00
|
|
|
use syntax::fold::ast_fold;
|
2012-09-04 13:54:36 -05:00
|
|
|
use syntax::{ast, fold, attr};
|
2011-06-30 00:32:08 -05:00
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
struct Context<'a> {
|
|
|
|
in_cfg: 'a |attrs: &[ast::Attribute]| -> bool,
|
2013-02-19 01:40:42 -06:00
|
|
|
}
|
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
|
2013-09-27 21:46:09 -05:00
|
|
|
pub fn strip_unconfigured_items(crate: ast::Crate) -> ast::Crate {
|
|
|
|
let config = crate.config.clone();
|
2013-11-21 17:42:55 -06:00
|
|
|
strip_items(crate, |attrs| in_cfg(config, attrs))
|
2012-01-05 19:30:00 -06:00
|
|
|
}
|
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
impl<'a> fold::ast_fold for Context<'a> {
|
2013-08-29 14:10:02 -05:00
|
|
|
fn fold_mod(&self, module: &ast::_mod) -> ast::_mod {
|
2013-08-29 17:04:09 -05:00
|
|
|
fold_mod(self, module)
|
2013-08-29 14:10:02 -05:00
|
|
|
}
|
2013-11-30 16:00:39 -06:00
|
|
|
fn fold_block(&self, block: ast::P<ast::Block>) -> ast::P<ast::Block> {
|
2013-08-29 17:04:09 -05:00
|
|
|
fold_block(self, block)
|
2013-08-29 14:10:02 -05:00
|
|
|
}
|
|
|
|
fn fold_foreign_mod(&self, foreign_module: &ast::foreign_mod)
|
|
|
|
-> ast::foreign_mod {
|
2013-08-29 17:04:09 -05:00
|
|
|
fold_foreign_mod(self, foreign_module)
|
2013-08-29 14:10:02 -05:00
|
|
|
}
|
|
|
|
fn fold_item_underscore(&self, item: &ast::item_) -> ast::item_ {
|
2013-08-29 17:04:09 -05:00
|
|
|
fold_item_underscore(self, item)
|
2013-08-29 14:10:02 -05:00
|
|
|
}
|
|
|
|
}
|
2011-06-30 00:32:08 -05:00
|
|
|
|
2013-09-27 21:46:09 -05:00
|
|
|
pub fn strip_items(crate: ast::Crate,
|
2013-11-19 15:22:03 -06:00
|
|
|
in_cfg: |attrs: &[ast::Attribute]| -> bool)
|
2013-09-27 21:46:09 -05:00
|
|
|
-> ast::Crate {
|
2013-08-29 17:04:09 -05:00
|
|
|
let ctxt = Context {
|
2013-08-29 14:10:02 -05:00
|
|
|
in_cfg: in_cfg,
|
2013-06-27 19:41:35 -05:00
|
|
|
};
|
2013-09-27 21:46:09 -05:00
|
|
|
ctxt.fold_crate(crate)
|
2011-06-30 00:32:08 -05:00
|
|
|
}
|
|
|
|
|
2013-08-29 17:04:09 -05:00
|
|
|
fn filter_view_item<'r>(cx: &Context, view_item: &'r ast::view_item)
|
|
|
|
-> Option<&'r ast::view_item> {
|
2012-07-09 16:02:39 -05:00
|
|
|
if view_item_in_cfg(cx, view_item) {
|
2013-08-29 17:04:09 -05:00
|
|
|
Some(view_item)
|
2012-07-09 16:02:39 -05:00
|
|
|
} else {
|
2013-08-29 17:04:09 -05:00
|
|
|
None
|
2012-07-09 16:02:39 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-29 17:04:09 -05:00
|
|
|
fn fold_mod(cx: &Context, m: &ast::_mod) -> ast::_mod {
|
2013-11-25 01:08:53 -06:00
|
|
|
let filtered_items = m.items.iter()
|
|
|
|
.filter(|&a| item_in_cfg(cx, *a))
|
|
|
|
.flat_map(|&x| cx.fold_item(x).move_iter())
|
|
|
|
.collect();
|
2013-11-21 17:42:55 -06:00
|
|
|
let filtered_view_items = m.view_items.iter().filter_map(|a| {
|
|
|
|
filter_view_item(cx, a).map(|x| cx.fold_view_item(x))
|
|
|
|
}).collect();
|
2013-01-15 18:05:20 -06:00
|
|
|
ast::_mod {
|
2013-07-01 21:38:19 -05:00
|
|
|
view_items: filtered_view_items,
|
|
|
|
items: filtered_items
|
2013-01-15 18:05:20 -06:00
|
|
|
}
|
2011-06-30 00:32:08 -05:00
|
|
|
}
|
|
|
|
|
2013-08-29 17:04:09 -05:00
|
|
|
fn filter_foreign_item(cx: &Context, item: @ast::foreign_item)
|
|
|
|
-> Option<@ast::foreign_item> {
|
2012-06-26 18:18:37 -05:00
|
|
|
if foreign_item_in_cfg(cx, item) {
|
2013-08-29 17:04:09 -05:00
|
|
|
Some(item)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2011-07-05 15:29:21 -05:00
|
|
|
}
|
|
|
|
|
2013-08-29 17:04:09 -05:00
|
|
|
fn fold_foreign_mod(cx: &Context, nm: &ast::foreign_mod) -> ast::foreign_mod {
|
2013-08-29 14:10:02 -05:00
|
|
|
let filtered_items = nm.items
|
|
|
|
.iter()
|
|
|
|
.filter_map(|a| filter_foreign_item(cx, *a))
|
|
|
|
.collect();
|
2013-11-21 17:42:55 -06:00
|
|
|
let filtered_view_items = nm.view_items.iter().filter_map(|a| {
|
|
|
|
filter_view_item(cx, a).map(|x| cx.fold_view_item(x))
|
|
|
|
}).collect();
|
2013-01-15 18:05:20 -06:00
|
|
|
ast::foreign_mod {
|
2013-03-13 21:25:28 -05:00
|
|
|
abis: nm.abis,
|
2013-07-01 21:38:19 -05:00
|
|
|
view_items: filtered_view_items,
|
2012-08-01 19:30:05 -05:00
|
|
|
items: filtered_items
|
2013-01-15 18:05:20 -06:00
|
|
|
}
|
2011-07-05 15:29:21 -05:00
|
|
|
}
|
|
|
|
|
2013-08-29 17:04:09 -05:00
|
|
|
fn fold_item_underscore(cx: &Context, item: &ast::item_) -> ast::item_ {
|
2013-02-18 00:20:36 -06:00
|
|
|
let item = match *item {
|
2013-11-30 16:00:39 -06:00
|
|
|
ast::item_impl(ref a, ref b, c, ref methods) => {
|
2013-07-01 21:38:19 -05:00
|
|
|
let methods = methods.iter().filter(|m| method_in_cfg(cx, **m))
|
2013-08-09 22:09:47 -05:00
|
|
|
.map(|x| *x).collect();
|
2013-11-30 16:00:39 -06:00
|
|
|
ast::item_impl((*a).clone(), (*b).clone(), c, methods)
|
2012-11-01 17:48:37 -05:00
|
|
|
}
|
2013-01-07 16:16:52 -06:00
|
|
|
ast::item_trait(ref a, ref b, ref methods) => {
|
2013-08-29 17:04:09 -05:00
|
|
|
let methods = methods.iter()
|
|
|
|
.filter(|m| trait_method_in_cfg(cx, *m) )
|
|
|
|
.map(|x| (*x).clone())
|
|
|
|
.collect();
|
2013-07-02 14:47:32 -05:00
|
|
|
ast::item_trait((*a).clone(), (*b).clone(), methods)
|
2012-11-01 17:48:37 -05:00
|
|
|
}
|
2013-07-02 14:47:32 -05:00
|
|
|
ref item => (*item).clone(),
|
2012-11-01 17:48:37 -05:00
|
|
|
};
|
|
|
|
|
2013-08-29 17:04:09 -05:00
|
|
|
fold::noop_fold_item_underscore(&item, cx)
|
2012-11-01 17:48:37 -05:00
|
|
|
}
|
|
|
|
|
2013-11-25 01:08:53 -06:00
|
|
|
fn retain_stmt(cx: &Context, stmt: @ast::Stmt) -> bool {
|
2012-08-06 14:34:08 -05:00
|
|
|
match stmt.node {
|
2013-09-01 20:45:37 -05:00
|
|
|
ast::StmtDecl(decl, _) => {
|
2012-08-06 14:34:08 -05:00
|
|
|
match decl.node {
|
2013-09-01 20:45:37 -05:00
|
|
|
ast::DeclItem(item) => {
|
2013-11-25 01:08:53 -06:00
|
|
|
item_in_cfg(cx, item)
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2013-11-25 01:08:53 -06:00
|
|
|
_ => true
|
2011-06-30 15:04:02 -05:00
|
|
|
}
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2013-11-25 01:08:53 -06:00
|
|
|
_ => true
|
2011-06-30 15:04:02 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-30 16:00:39 -06:00
|
|
|
fn fold_block(cx: &Context, b: ast::P<ast::Block>) -> ast::P<ast::Block> {
|
2013-11-25 01:08:53 -06:00
|
|
|
let resulting_stmts = b.stmts.iter()
|
|
|
|
.filter(|&a| retain_stmt(cx, *a))
|
|
|
|
.flat_map(|&stmt| cx.fold_stmt(stmt).move_iter())
|
|
|
|
.collect();
|
2013-11-21 17:42:55 -06:00
|
|
|
let filtered_view_items = b.view_items.iter().filter_map(|a| {
|
2013-09-20 01:08:47 -05:00
|
|
|
filter_view_item(cx, a).map(|x| cx.fold_view_item(x))
|
2013-11-21 17:42:55 -06:00
|
|
|
}).collect();
|
2013-11-30 16:00:39 -06:00
|
|
|
ast::P(ast::Block {
|
2013-06-04 23:43:41 -05:00
|
|
|
view_items: filtered_view_items,
|
|
|
|
stmts: resulting_stmts,
|
2013-09-20 01:08:47 -05:00
|
|
|
expr: b.expr.map(|x| cx.fold_expr(x)),
|
2013-01-14 22:52:28 -06:00
|
|
|
id: b.id,
|
|
|
|
rules: b.rules,
|
2013-07-16 13:08:35 -05:00
|
|
|
span: b.span,
|
2013-11-30 16:00:39 -06:00
|
|
|
})
|
2011-06-30 15:04:02 -05:00
|
|
|
}
|
|
|
|
|
2013-08-29 17:04:09 -05:00
|
|
|
fn item_in_cfg(cx: &Context, item: @ast::item) -> bool {
|
2013-07-02 14:47:32 -05:00
|
|
|
return (cx.in_cfg)(item.attrs);
|
2011-07-05 15:29:21 -05:00
|
|
|
}
|
|
|
|
|
2013-08-29 17:04:09 -05:00
|
|
|
fn foreign_item_in_cfg(cx: &Context, item: @ast::foreign_item) -> bool {
|
2013-07-02 14:47:32 -05:00
|
|
|
return (cx.in_cfg)(item.attrs);
|
2011-07-05 15:29:21 -05:00
|
|
|
}
|
|
|
|
|
2013-08-29 17:04:09 -05:00
|
|
|
fn view_item_in_cfg(cx: &Context, item: &ast::view_item) -> bool {
|
2013-07-05 03:28:53 -05:00
|
|
|
return (cx.in_cfg)(item.attrs);
|
2012-07-09 16:02:39 -05:00
|
|
|
}
|
|
|
|
|
2013-08-29 17:04:09 -05:00
|
|
|
fn method_in_cfg(cx: &Context, meth: @ast::method) -> bool {
|
2013-07-02 14:47:32 -05:00
|
|
|
return (cx.in_cfg)(meth.attrs);
|
2012-11-01 17:48:37 -05:00
|
|
|
}
|
|
|
|
|
2013-08-29 17:04:09 -05:00
|
|
|
fn trait_method_in_cfg(cx: &Context, meth: &ast::trait_method) -> bool {
|
2012-11-01 17:48:37 -05:00
|
|
|
match *meth {
|
2013-07-02 14:47:32 -05:00
|
|
|
ast::required(ref meth) => (cx.in_cfg)(meth.attrs),
|
|
|
|
ast::provided(@ref meth) => (cx.in_cfg)(meth.attrs)
|
2012-11-01 17:48:37 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
2013-07-19 06:51:37 -05:00
|
|
|
fn in_cfg(cfg: &[@ast::MetaItem], attrs: &[ast::Attribute]) -> bool {
|
2013-08-09 22:09:47 -05:00
|
|
|
attr::test_cfg(cfg, attrs.iter().map(|x| *x))
|
2011-06-30 00:32:08 -05:00
|
|
|
}
|
2013-08-29 17:04:09 -05:00
|
|
|
|