mirror of
https://gitee.com/openharmony/third_party_rust_cxx
synced 2024-11-23 07:10:29 +00:00
b110613bee
Signed-off-by: 徐未来 <xuweilai2@huawei.com>
78 lines
2.2 KiB
Rust
78 lines
2.2 KiB
Rust
use proc_macro2::Ident;
|
|
use std::mem;
|
|
use syn::parse::{Error, ParseStream, Result};
|
|
use syn::{parenthesized, token, Attribute, LitStr, Token};
|
|
|
|
#[derive(Clone)]
|
|
pub enum CfgExpr {
|
|
Unconditional,
|
|
Eq(Ident, Option<LitStr>),
|
|
All(Vec<CfgExpr>),
|
|
Any(Vec<CfgExpr>),
|
|
Not(Box<CfgExpr>),
|
|
}
|
|
|
|
impl CfgExpr {
|
|
pub fn merge(&mut self, expr: CfgExpr) {
|
|
if let CfgExpr::Unconditional = self {
|
|
*self = expr;
|
|
} else if let CfgExpr::All(list) = self {
|
|
list.push(expr);
|
|
} else {
|
|
let prev = mem::replace(self, CfgExpr::Unconditional);
|
|
*self = CfgExpr::All(vec![prev, expr]);
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn parse_attribute(attr: &Attribute) -> Result<CfgExpr> {
|
|
attr.parse_args_with(|input: ParseStream| {
|
|
let cfg_expr = input.call(parse_single)?;
|
|
input.parse::<Option<Token![,]>>()?;
|
|
Ok(cfg_expr)
|
|
})
|
|
}
|
|
|
|
fn parse_single(input: ParseStream) -> Result<CfgExpr> {
|
|
let ident: Ident = input.parse()?;
|
|
let lookahead = input.lookahead1();
|
|
if input.peek(token::Paren) {
|
|
let content;
|
|
parenthesized!(content in input);
|
|
if ident == "all" {
|
|
let list = content.call(parse_multiple)?;
|
|
Ok(CfgExpr::All(list))
|
|
} else if ident == "any" {
|
|
let list = content.call(parse_multiple)?;
|
|
Ok(CfgExpr::Any(list))
|
|
} else if ident == "not" {
|
|
let expr = content.call(parse_single)?;
|
|
content.parse::<Option<Token![,]>>()?;
|
|
Ok(CfgExpr::Not(Box::new(expr)))
|
|
} else {
|
|
Err(Error::new(ident.span(), "unrecognized cfg expression"))
|
|
}
|
|
} else if lookahead.peek(Token![=]) {
|
|
input.parse::<Token![=]>()?;
|
|
let string: LitStr = input.parse()?;
|
|
Ok(CfgExpr::Eq(ident, Some(string)))
|
|
} else if lookahead.peek(Token![,]) || input.is_empty() {
|
|
Ok(CfgExpr::Eq(ident, None))
|
|
} else {
|
|
Err(lookahead.error())
|
|
}
|
|
}
|
|
|
|
fn parse_multiple(input: ParseStream) -> Result<Vec<CfgExpr>> {
|
|
let mut vec = Vec::new();
|
|
while !input.is_empty() {
|
|
let expr = input.call(parse_single)?;
|
|
vec.push(expr);
|
|
if input.is_empty() {
|
|
break;
|
|
}
|
|
input.parse::<Token![,]>()?;
|
|
}
|
|
Ok(vec)
|
|
}
|