This library provides C++ implementation of Simple String Expression Evaluator a.k.a. s2e2. The Evaluator returns value of an input expression. Unlike commonly known mathematical expression evaluators this one treats all parts of the expression as strings and its output value is also a string.
For example:
- the value of the expression
A + BisAB - the value of
REPLACE("The cat is black", cat, dog)isThe dog is black
This is how one can use Evaluator to get value of some expression:
#include <s2e2/evaluator.hpp>
s2e2::Evaluator evaluator;
evaluator.addStandardFunctions();
evaluator.addStandardOperators();
const std::string expression = "A + B";
const auto result = evaluator.evaluate(expression);Supported expressions consist of the following tokens: string literals, operators (unary and binary), functions, predefined constants, round brackets for function's arguments denoting, commas for function's arguments separation and double quotes for characters escaping.
The difference between a function and an operator is that a function is always followed by a pair of round brackets with a list of function's arguments (probably empty) in between, while an operator does not use brackets and, if it is a binary operator, sticks between its operands. Also operators can have different priorities a.k.a. precedence.
For example:
- this is a function of 2 arguments:
FUNC(Arg1, Arg2) - and this is a binary operator:
Arg1 OP Arg2
There is only one predefined constant - NULL - which corresponds to an absent value. It can be used to check if some sub-expression is evaluated into some result: IF(SUBEXPR(Arg1, Arg2) == NULL, NULL, Value)
s2e2 provides a small set of predefined functions. They are:
-
Function
IF(Condition, Value1, Value2)Returns
Value1ifConditionis true, andValue2otherwise.Conditionmust be a boolean value. -
Function
REPLACE(Source, Regex, Replacement)Returns copy of
Sourcewith all matches ofRegexreplaced byReplacement. All three arguments are strings,Regexcannot beNULLor an empty string,Replacementcannot beNULL. -
Function
NOW()Returns current UTC datetime. The result is of
std::tmtype. -
Function
ADD_DAYS(Datetime, NumberOfDays)Adds days to the provided datetime.
Datetimemust be ofstd::tmtype and notNULL.NumberOfDaysis a string parsable into an any integer. The result is ofstd::tmtype. -
Function
FORMAT_DATE(Datetime, Format)Converts
Datetimeinto a string according toFormat.Datetimemust be ofstd::tmtype and notNULL.Formatshould be a string.
It is possible to create and use any custom function. Here is a simple example:
#include <s2e2/evaluator.hpp>
#include <s2e2/function.hpp>
#include <memory>
#include <unordered_set>
class CustomFunction final : public s2e2::Function
{
public:
CustomFunction(const std::unordered_set<std::string>& set)
: s2e2::Function("CONTAINS", 1)
, set_(set)
{
}
bool checkArguments() const override
{
return arguments_[0].has_value() &&
arguments_[0].type() == typeid(std::string);
}
std::any result() const override
{
const auto* arg = std::any_cast<std::string>(&arguments_[0]);
return {set_.count(*arg) > 0};
}
private:
const std::unordered_set<std::string> set_;
};
void customFunctionExample() {
s2e2::Evaluator evaluator;
evaluator.addStandardFunctions();
evaluator.addStandardOperators();
std::unordered_set<std::string> someSet = {"key1", "key2"};
auto funcPtr = std::make_unique<CustomFunction>(someSet);
evaluator.addFunction(std::move(funcPtr));
const std::string expression = "IF(CONTAINS(key1), YES, NO)";
const auto result = evaluator.evaluate(expression);
}As it was mentioned before, every operator has a priority. Within s2e2 the range of priorities is from 1 to 999. A set of predefined operators is provided. They are:
-
Binary operator
+, priority500Concatenates two strings. Every operand can be either a
NULLor a string. The result is a string. -
Binary operator
==, priority300Compares two strings, including
NULL. If both operands areNULLthe result istrue. The type of the result is boolean. -
Binary operator
!=, priority300The same as
==, but checks strings for inequality. -
Binary operator
>, priority400Compares two strings lexicographically. None of the operands can be
NULL. The result is a boolean. -
Binary operator
>=, priority400Compares two string lexicographically as well. Both operands must be not
NULLor both must beNULL. In the latter case the result istrue. -
Binary operator
<, priority400Same as
>, but checks if first operand is less that the second one. -
Binary operator
<=, priority400Same as
>=, but checks if first operand is less or equal that the second one. -
Binary operator
&&, priority200Computes logical conjunction of two boolean values. Both arguments are boolean, not
NULLvalue. The result is a boolean. -
Binary operator
||, priority100Computes logical disjunction of two boolean values. Both arguments are boolean, not
NULLvalue. The result is a boolean. -
Unary operator
!, priority600Negates boolean value. Operand cannot be
NULL. The result is a boolean.
It is possible to create and use any custom operator. Here is a simple example:
#include <s2e2/evaluator.hpp>
#include <s2e2/operator.hpp>
#include <algorithm>
#include <memory>
#include <unordered_set>
class CustomOperator final : public s2e2::Operator
{
public:
CustomOperator()
: s2e2::Operator("~", 600, 1)
{
}
bool checkArguments() const override
{
return arguments_[0].has_value() &&
arguments_[0].type() == typeid(std::string);
}
std::any result() const override
{
auto result = std::any_cast<std::string>(arguments_[0]);
std::reverse(result.begin(), result.end());
return {std::move(result)};
}
};
void customOperatorExample() {
s2e2::Evaluator evaluator;
evaluator.addStandardFunctions();
evaluator.addStandardOperators();
evaluator.addOperator(std::make_unique<CustomOperator>());
const std::string expression = "~Foo";
const auto result = evaluator.evaluate(expression);
}To compile this project one would need:
- C++ compiler with C++17 support (tested ones are GCC, Clang and MSVC)
- CMake >= 3.5.0
gtest and gmock libraries are used for unit testing and are included as git submodules.
On Linux this will compile the static library, the unit tests executable and install everything into ./build/output/<Build Type> directory:
./build.sh
On Windows do the following:
cd ./build
cmake ..
and open 's2e2.sln' with Visual Studio.
On Linux:
./run_tests.sh
On Windows:
./build/output/<Build Type>/test/s2e2_tests.exe
This project is licensed under the MIT License - see the LICENSE file for details