90 lines
2.3 KiB
C++
90 lines
2.3 KiB
C++
////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright 2015 Realm 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.
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef REALM_PARSER_HPP
|
|
#define REALM_PARSER_HPP
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
namespace realm {
|
|
class Schema;
|
|
|
|
namespace parser {
|
|
struct Expression
|
|
{
|
|
enum class Type { None, Number, String, KeyPath, Argument, True, False } type = Type::None;
|
|
std::string s;
|
|
Expression() {}
|
|
Expression(Type t, std::string s) : type(t), s(s) {}
|
|
};
|
|
|
|
struct Predicate
|
|
{
|
|
enum class Type
|
|
{
|
|
Comparison,
|
|
Or,
|
|
And,
|
|
True,
|
|
False
|
|
} type = Type::And;
|
|
|
|
enum class Operator
|
|
{
|
|
None,
|
|
Equal,
|
|
NotEqual,
|
|
LessThan,
|
|
LessThanOrEqual,
|
|
GreaterThan,
|
|
GreaterThanOrEqual,
|
|
BeginsWith,
|
|
EndsWith,
|
|
Contains
|
|
};
|
|
|
|
struct Comparison
|
|
{
|
|
Operator op = Operator::None;
|
|
Expression expr[2];
|
|
~Comparison() {}
|
|
};
|
|
|
|
struct Compound
|
|
{
|
|
std::vector<Predicate> sub_predicates;
|
|
};
|
|
|
|
Comparison cmpr;
|
|
Compound cpnd;
|
|
|
|
bool negate = false;
|
|
|
|
Predicate(Type t, bool n = false) : type(t), negate(n) {}
|
|
};
|
|
|
|
Predicate parse(const std::string &query);
|
|
|
|
void analyzeGrammar();
|
|
bool testGrammar();
|
|
}
|
|
}
|
|
|
|
#endif // REALM_PARSER_HPP
|