Skip to content
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

Fix nested any/all evaluation #6

Merged
merged 1 commit into from
Mar 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pub struct ParseError<'a> {
#[derive(Debug, PartialEq)]
pub enum Reason {
/// not() takes exactly 1 predicate, unlike all() and any()
InvalidNot(u8),
InvalidNot(usize),
/// The characters are not valid in an SDPX license expression
InvalidCharacters,
/// An opening parens was unmatched with a closing parens
Expand Down
22 changes: 14 additions & 8 deletions src/expr/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,15 @@ pub enum Func {
/// `all()` with a comma separated list of configuration predicates. It
/// is false if at least one predicate is false. If there are no predicates,
/// it is true.
All,
///
/// The associated `usize` is the number of predicates inside the `all()`.
All(usize),
/// `any()` with a comma separated list of configuration predicates. It
/// is true if at least one predicate is true. If there are no predicates,
/// it is false.
Any,
///
/// The associated `usize` is the number of predicates inside the `any()`.
Any(usize),
}

use crate::targets as targ;
Expand Down Expand Up @@ -192,26 +196,28 @@ impl Expression {
let pred = pred.to_pred(&self.original);
result_stack.push(eval_predicate(&pred));
}
ExprNode::Fn(Func::All) => {
ExprNode::Fn(Func::All(count)) => {
// all() with a comma separated list of configuration predicates.
// It is false if at least one predicate is false.
// If there are no predicates, it is true.
let mut result = true;

while let Some(rs) = result_stack.pop() {
result = result && rs;
for _ in 0..*count {
let r = result_stack.pop().unwrap();
result = result && r;
}

result_stack.push(result);
}
ExprNode::Fn(Func::Any) => {
ExprNode::Fn(Func::Any(count)) => {
// any() with a comma separated list of configuration predicates.
// It is true if at least one predicate is true.
// If there are no predicates, it is false.
let mut result = false;

while let Some(rs) = result_stack.pop() {
result = result || rs;
for _ in 0..*count {
let r = result_stack.pop().unwrap();
result = result || r;
}

result_stack.push(result);
Expand Down
19 changes: 11 additions & 8 deletions src/expr/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ impl Expression {
// the string before we start walking tokens
let original = lexer.inner;

#[derive(Debug)]
struct FuncAndSpan {
func: Func,
parens_index: usize,
Expand Down Expand Up @@ -248,8 +249,10 @@ impl Expression {
Token::All | Token::Any | Token::Not => match last_token {
None | Some(Token::OpenParen) | Some(Token::Comma) => {
let new_fn = match lt.token {
Token::All => Func::All,
Token::Any => Func::Any,
// the 0 is a dummy value -- it will be substituted for the real
// number of predicates in the `CloseParen` branch below.
Token::All => Func::All(0),
Token::Any => Func::Any(0),
Token::Not => Func::Not,
_ => unreachable!(),
};
Expand Down Expand Up @@ -284,16 +287,16 @@ impl Expression {
let key = pred_key.take();
let val = pred_val.take();

let num_predicates = top.predicates.len()
+ if key.is_some() { 1 } else { 0 }
+ top.nest_level as usize;

let func = match top.func {
Func::All => Func::All,
Func::Any => Func::Any,
Func::All(_) => Func::All(num_predicates),
Func::Any(_) => Func::Any(num_predicates),
Func::Not => {
// not() doesn't take a predicate list, but only a single predicate,
// so ensure we have exactly 1
let num_predicates = top.predicates.len() as u8
+ if key.is_some() { 1 } else { 0 }
+ top.nest_level;

if num_predicates != 1 {
return Err(ParseError {
original,
Expand Down
11 changes: 11 additions & 0 deletions tests/eval.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,17 @@ fn complex() {
assert!(complex.eval(|pred| tg_match!(pred, windows_msvc)));
assert!(complex.eval(|pred| tg_match!(pred, mac)));
assert!(!complex.eval(|pred| tg_match!(pred, android)));

let complex = Expression::parse(r#"all(any(unix, target_arch="x86"), not(any(target_os="android", target_os="emscripten")))"#).unwrap();

// Should match linuxes and mac
assert!(complex.eval(|pred| tg_match!(pred, linux_gnu)));
assert!(complex.eval(|pred| tg_match!(pred, linux_musl)));
assert!(complex.eval(|pred| tg_match!(pred, mac)));

// Should *not* match x86_64 windows or android
assert!(!complex.eval(|pred| tg_match!(pred, windows_msvc)));
assert!(!complex.eval(|pred| tg_match!(pred, android)));
}

#[test]
Expand Down