2015-11-09 19:29:57 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// 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_EXTERNAL_COMMIT_HELPER_HPP
|
|
|
|
#define REALM_EXTERNAL_COMMIT_HELPER_HPP
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace realm {
|
2015-11-10 05:12:18 +00:00
|
|
|
class Query;
|
|
|
|
class Schema;
|
|
|
|
|
2015-11-09 19:29:57 +00:00
|
|
|
namespace parser {
|
|
|
|
struct Expression
|
|
|
|
{
|
|
|
|
enum class Type
|
|
|
|
{
|
|
|
|
Number,
|
|
|
|
String,
|
|
|
|
KeyPath,
|
|
|
|
};
|
|
|
|
Type type;
|
|
|
|
|
|
|
|
std::string s;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Predicate
|
|
|
|
{
|
|
|
|
enum class Type
|
|
|
|
{
|
|
|
|
None,
|
|
|
|
Comparison,
|
|
|
|
Or,
|
|
|
|
And,
|
|
|
|
True,
|
|
|
|
False,
|
|
|
|
};
|
|
|
|
Type type = Type::None;
|
|
|
|
|
|
|
|
// for comparison
|
|
|
|
enum class Operator
|
|
|
|
{
|
|
|
|
None,
|
|
|
|
Equal,
|
|
|
|
NotEqual,
|
|
|
|
LessThan,
|
|
|
|
LessThanOrEqual,
|
|
|
|
GreaterThan,
|
|
|
|
GreaterThanOrEqual,
|
|
|
|
BeginsWith,
|
|
|
|
EndsWith,
|
|
|
|
Contains,
|
|
|
|
};
|
|
|
|
Operator op = Operator::None;
|
|
|
|
std::vector<Expression> sub_expressions;
|
|
|
|
|
|
|
|
// for compounds
|
|
|
|
std::vector<Predicate> sub_predicates;
|
2015-11-09 20:20:59 +00:00
|
|
|
|
|
|
|
bool negate;
|
2015-11-09 19:29:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Predicate parse(const std::string &query);
|
2015-11-10 05:12:18 +00:00
|
|
|
|
|
|
|
void apply_predicate(Query &query, Predicate &predicate, Schema &schema, std::string objectType);
|
2015-11-09 19:29:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // REALM_EXTERNAL_COMMIT_HELPER_HPP
|