-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add condition expressions to dependencies
- Loading branch information
1 parent
0bbac78
commit 6203ad0
Showing
7 changed files
with
229 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
# Copyright 2014 Open Source Robotics Foundation, Inc. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
import pyparsing | ||
|
||
|
||
def evaluate_condition(condition, context): | ||
if condition is None: | ||
return True | ||
expr = _get_condition_expression() | ||
try: | ||
parse_results = expr.parseString(condition, parseAll=True) | ||
except pyparsing.ParseException as e: | ||
raise ValueError( | ||
"condition '%s' failed to parse: %s" % (condition, e)) | ||
return _evaluate(parse_results.asList()[0], context) | ||
|
||
|
||
_condition_expression = None | ||
|
||
|
||
def _get_condition_expression(): | ||
global _condition_expression | ||
if not _condition_expression: | ||
pp = pyparsing | ||
operator = pp.Regex('==|!=').setName('operator') | ||
identifier = pp.Word('$', pp.alphanums + '_', min=2) | ||
value = pp.Word(pp.alphanums + '_-') | ||
comparison_term = identifier | value | ||
condition = pp.Group(comparison_term + operator + comparison_term) | ||
_condition_expression = pp.operatorPrecedence( | ||
condition, [ | ||
('and', 2, pp.opAssoc.LEFT, ), | ||
('or', 2, pp.opAssoc.LEFT, ), | ||
]) | ||
return _condition_expression | ||
|
||
|
||
def _evaluate(parse_results, context): | ||
if not isinstance(parse_results, list): | ||
if parse_results.startswith('$'): | ||
# get variable from context | ||
return str(context.get(parse_results[1:], '')) | ||
# return literal value | ||
return parse_results | ||
|
||
# recursion | ||
assert len(parse_results) == 3 | ||
|
||
# handle logical operators | ||
if parse_results[1] == 'and': | ||
return _evaluate(parse_results[0], context) and \ | ||
_evaluate(parse_results[2], context) | ||
if parse_results[1] == 'or': | ||
return _evaluate(parse_results[0], context) or \ | ||
_evaluate(parse_results[2], context) | ||
|
||
# handle comparison operators | ||
assert parse_results[1] in ('==', '!=') | ||
if parse_results[1] == '==': | ||
return _evaluate(parse_results[0], context) == \ | ||
_evaluate(parse_results[2], context) | ||
if parse_results[1] == '!=': | ||
return _evaluate(parse_results[0], context) != \ | ||
_evaluate(parse_results[2], context) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Copyright 2017 Open Source Robotics Foundation, Inc. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
from ament_package.condition import evaluate_condition | ||
|
||
|
||
class GroupMembership: | ||
__slots__ = [ | ||
'name', | ||
'condition', | ||
'evaluated_condition', | ||
] | ||
|
||
def __init__(self, name, condition=None): | ||
self.name = name | ||
self.condition = condition | ||
self.evaluated_condition = None | ||
|
||
def __eq__(self, other): | ||
if not isinstance(other, GroupMembership): | ||
return False | ||
return all(getattr(self, attr) == getattr(other, attr) | ||
for attr in self.__slots__) | ||
|
||
def __str__(self): | ||
return self.name | ||
|
||
def evaluate_condition(self, context): | ||
""" | ||
Evaluate the condition. | ||
The result is also stored in the member variable `evaluated_condition`. | ||
:param context: A dictionary with key value pairs to replace variables | ||
starting with $ in the condition. | ||
:returns: True if the condition evaluates to True, else False | ||
:raises: :exc:`ValueError` if the condition fails to parse | ||
""" | ||
self.evaluated_condition = evaluate_condition(self.condition, context) | ||
return self.evaluated_condition |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters