-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a cfg_attr syntax extension #16230
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
// Copyright 2014 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::gc::{Gc, GC}; | ||
|
||
use ast; | ||
use attr; | ||
use codemap::Span; | ||
use ext::base::ExtCtxt; | ||
use ext::build::AstBuilder; | ||
|
||
pub fn expand(cx: &mut ExtCtxt, sp: Span, mi: Gc<ast::MetaItem>, it: Gc<ast::Item>) | ||
-> Gc<ast::Item> { | ||
let (cfg, attr) = match mi.node { | ||
ast::MetaList(_, ref mis) if mis.len() == 2 => (mis[0], mis[1]), | ||
_ => { | ||
cx.span_err(sp, "expected `#[cfg_attr(<cfg pattern>, <attr>)]`"); | ||
return it; | ||
} | ||
}; | ||
|
||
if cfg_matches(cx, cfg) { | ||
let mut out = (*it).clone(); | ||
out.attrs.push(cx.attribute(attr.span, attr)); | ||
box(GC) out | ||
} else { | ||
it | ||
} | ||
} | ||
|
||
fn cfg_matches(cx: &mut ExtCtxt, cfg: Gc<ast::MetaItem>) -> bool { | ||
match cfg.node { | ||
ast::MetaList(ref pred, ref mis) => { | ||
match pred.get() { | ||
"any" => mis.iter().any(|mi| cfg_matches(cx, *mi)), | ||
"all" => mis.iter().all(|mi| cfg_matches(cx, *mi)), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This seems a little odd to introduce a new sub-language for There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No. For one it's error prone, as I can see code easily ending up out of sync like There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. cc #2119 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @alexcrichton I like this proposal because the new sub-language makes a lot more sense than our current |
||
"not" if mis.len() == 1 => !cfg_matches(cx, mis[0]), | ||
"not" => { | ||
cx.span_err(cfg.span, | ||
format!("expected 1 value, got {}", mis.len()).as_slice()); | ||
false | ||
} | ||
_ => { | ||
cx.span_err(cfg.span, format!("invalid predicate `{}`", pred).as_slice()); | ||
false | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could the not/catch-all cases be passed through to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
} | ||
} | ||
ast::MetaWord(_) | ast::MetaNameValue(..) => attr::contains(cx.cfg.as_slice(), cfg), | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
// Copyright 2014 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. | ||
|
||
// compile-flags:--cfg set1 --cfg set2 | ||
#![allow(dead_code)] | ||
use std::fmt::Show; | ||
|
||
struct NotShowable; | ||
|
||
#[cfg_attr(set1, deriving(Show))] | ||
struct Set1; | ||
|
||
#[cfg_attr(notset, deriving(Show))] | ||
struct Notset(NotShowable); | ||
|
||
#[cfg_attr(not(notset), deriving(Show))] | ||
struct NotNotset; | ||
|
||
#[cfg_attr(not(set1), deriving(Show))] | ||
struct NotSet1(NotShowable); | ||
|
||
#[cfg_attr(all(set1, set2), deriving(Show))] | ||
struct AllSet1Set2; | ||
|
||
#[cfg_attr(all(set1, notset), deriving(Show))] | ||
struct AllSet1Notset(NotShowable); | ||
|
||
#[cfg_attr(any(set1, notset), deriving(Show))] | ||
struct AnySet1Notset; | ||
|
||
#[cfg_attr(any(notset, notset2), deriving(Show))] | ||
struct AnyNotsetNotset2(NotShowable); | ||
|
||
#[cfg_attr(all(not(notset), any(set1, notset)), deriving(Show))] | ||
struct Complex; | ||
|
||
#[cfg_attr(any(notset, not(any(set1, notset))), deriving(Show))] | ||
struct ComplexNot(NotShowable); | ||
|
||
#[cfg_attr(any(target_endian = "little", target_endian = "big"), deriving(Show))] | ||
struct KeyValue; | ||
|
||
fn is_show<T: Show>() {} | ||
|
||
fn main() { | ||
is_show::<Set1>(); | ||
is_show::<NotNotset>(); | ||
is_show::<AllSet1Set2>(); | ||
is_show::<AnySet1Notset>(); | ||
is_show::<Complex>(); | ||
is_show::<KeyValue>(); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe use
cfg.span
here?