diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2013-03-04 21:08:28 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2013-03-04 21:08:28 +0000 |
| commit | 7ac7cac4d371ff8498a5fd46b74278a6aa395c73 (patch) | |
| tree | e635426966b31b2add1f8dc1f4d7f3dc70401983 /qpid/cpp/src/CMakeLists.txt | |
| parent | 5aa4b2dc7e531c12597323c2ca73ade8fa72793a (diff) | |
| download | qpid-python-7ac7cac4d371ff8498a5fd46b74278a6aa395c73.tar.gz | |
QPID-4558: Selectors for C++ broker
- Initial Selectors implemented:
* Only string values supported (no numerics or bools)
- Parses and executes the forms:
* A=B
* A<>B
* I IS NULL
* I IS NOT NULL
- where A, B are strings or identifiers
- I is an identifier
* Conditional expressions can include the AND, OR and NOT
operators and use parentheses.
- Only limited special identifiers return useful values (although
they are all recognised)
- Unit tests for selector language
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1452523 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/CMakeLists.txt')
| -rw-r--r-- | qpid/cpp/src/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/qpid/cpp/src/CMakeLists.txt b/qpid/cpp/src/CMakeLists.txt index c44bb8d999..a85c32b8e1 100644 --- a/qpid/cpp/src/CMakeLists.txt +++ b/qpid/cpp/src/CMakeLists.txt @@ -1207,6 +1207,10 @@ set (qpidbroker_SOURCES qpid/broker/SecureConnectionFactory.cpp qpid/broker/Selector.h qpid/broker/Selector.cpp + qpid/broker/SelectorExpression.h + qpid/broker/SelectorExpression.cpp + qpid/broker/SelectorToken.h + qpid/broker/SelectorToken.cpp qpid/broker/SemanticState.h qpid/broker/SemanticState.cpp qpid/broker/SessionAdapter.cpp |
