// 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 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. use syntax::{ast, fold, attr}; 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 { do strip_items(crate) |attrs| { in_cfg(/*bad*/copy 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: fold::wrap(|a,b| fold_block(ctxt, a, b) ), 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) }, .. *fold::default_ast_fold()}; let fold = fold::make_fold(precursor); let res = @fold.fold_crate(&*crate); return res; } fn filter_item(cx: @Context, item: @ast::item) -> Option<@ast::item> { if item_in_cfg(cx, item) { option::Some(item) } else { option::None } } fn filter_view_item(cx: @Context, view_item: @ast::view_item )-> Option<@ast::view_item> { if view_item_in_cfg(cx, view_item) { option::Some(view_item) } else { option::None } } fn fold_mod(cx: @Context, m: &ast::_mod, fld: @fold::ast_fold) -> ast::_mod { let filtered_items = m.items.filter_mapped(|a| filter_item(cx, *a)); let filtered_view_items = m.view_items.filter_mapped(|a| filter_view_item(cx, *a)); ast::_mod { view_items: filtered_view_items.map(|x| fld.fold_view_item(*x)), items: vec::filter_map(filtered_items, |x| fld.fold_item(x)) } } fn filter_foreign_item(cx: @Context, item: @ast::foreign_item) -> Option<@ast::foreign_item> { if foreign_item_in_cfg(cx, item) { 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.filter_mapped(|a| filter_foreign_item(cx, *a)); let filtered_view_items = nm.view_items.filter_mapped(|a| filter_view_item(cx, *a)); ast::foreign_mod { sort: nm.sort, abis: nm.abis, view_items: vec::map(filtered_view_items, |x| fld.fold_view_item(*x)), items: filtered_items } } fn fold_item_underscore(cx: @Context, item: &ast::item_, fld: @fold::ast_fold) -> ast::item_ { let item = match *item { ast::item_impl(ref a, b, c, ref methods) => { let methods = methods.filtered(|m| method_in_cfg(cx, *m) ); ast::item_impl(/*bad*/ copy *a, b, c, methods) } ast::item_trait(ref a, ref b, ref methods) => { let methods = methods.filtered(|m| trait_method_in_cfg(cx, m) ); ast::item_trait(/*bad*/copy *a, /*bad*/copy *b, methods) } ref item => /*bad*/ copy *item }; fold::noop_fold_item_underscore(&item, fld) } fn filter_stmt(cx: @Context, stmt: @ast::stmt) -> Option<@ast::stmt> { match stmt.node { ast::stmt_decl(decl, _) => { match decl.node { ast::decl_item(item) => { if item_in_cfg(cx, item) { option::Some(stmt) } else { option::None } } _ => option::Some(stmt) } } _ => option::Some(stmt) } } fn fold_block( cx: @Context, b: &ast::blk_, fld: @fold::ast_fold ) -> ast::blk_ { let filtered_stmts = b.stmts.filter_mapped(|a| filter_stmt(cx, *a)); ast::blk_ { view_items: /*bad*/copy b.view_items, stmts: vec::map(filtered_stmts, |x| fld.fold_stmt(*x)), expr: b.expr.map(|x| fld.fold_expr(*x)), id: b.id, rules: b.rules, } } 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); } fn view_item_in_cfg(cx: @Context, item: @ast::view_item) -> bool { return (cx.in_cfg)(/*bad*/copy item.attrs); } fn method_in_cfg(cx: @Context, meth: @ast::method) -> bool { return (cx.in_cfg)(/*bad*/copy meth.attrs); } fn trait_method_in_cfg(cx: @Context, meth: &ast::trait_method) -> bool { match *meth { ast::required(ref meth) => (cx.in_cfg)(/*bad*/copy meth.attrs), ast::provided(@ref meth) => (cx.in_cfg)(/*bad*/copy meth.attrs) } } // Determine if an item should be translated in the current crate // configuration based on the item's attributes fn in_cfg(cfg: ast::crate_cfg, attrs: ~[ast::attribute]) -> bool { metas_in_cfg(cfg, attr::attr_metas(attrs)) } pub fn metas_in_cfg(cfg: ast::crate_cfg, 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 = vec::filter_map(cfg_metas, |i| attr::get_meta_item_list(i)); if cfg_metas.all(|c| c.is_empty()) { return true; } cfg_metas.any(|cfg_meta| { cfg_meta.all(|cfg_mi| { match cfg_mi.node { ast::meta_list(s, ref it) if *s == ~"not" => it.all(|mi| !attr::contains(cfg, *mi)), _ => attr::contains(cfg, *cfg_mi) } }) }) }