forked from apache/iceberg-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexpression.h
More file actions
162 lines (130 loc) · 4.49 KB
/
expression.h
File metadata and controls
162 lines (130 loc) · 4.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
#pragma once
/// \file iceberg/expression/expression.h
/// Expression interface for Iceberg table operations.
#include <memory>
#include <string>
#include "iceberg/expected.h"
#include "iceberg/iceberg_export.h"
#include "iceberg/result.h"
namespace iceberg {
/// \brief Represents a boolean expression tree.
class ICEBERG_EXPORT Expression {
public:
/// Operation types for expressions
enum class Operation {
kTrue,
kFalse,
kIsNull,
kNotNull,
kIsNan,
kNotNan,
kLt,
kLtEq,
kGt,
kGtEq,
kEq,
kNotEq,
kIn,
kNotIn,
kNot,
kAnd,
kOr,
kStartsWith,
kNotStartsWith,
kCount,
kCountStar,
kMax,
kMin
};
virtual ~Expression() = default;
/// \brief Returns the operation for an expression node.
virtual Operation op() const = 0;
/// \brief Returns the negation of this expression, equivalent to not(this).
virtual Result<std::shared_ptr<Expression>> Negate() const {
return InvalidExpression("Expression cannot be negated");
}
/// \brief Returns whether this expression will accept the same values as another.
/// \param other another expression
/// \return true if the expressions are equivalent
virtual bool Equals(const Expression& other) const {
// only bound predicates can be equivalent
return false;
}
virtual std::string ToString() const { return "Expression"; }
};
/// \brief An Expression that is always true.
///
/// Represents a boolean predicate that always evaluates to true.
class ICEBERG_EXPORT True : public Expression {
public:
/// \brief Returns the singleton instance
static const std::shared_ptr<True>& Instance();
Operation op() const override { return Operation::kTrue; }
std::string ToString() const override { return "true"; }
Result<std::shared_ptr<Expression>> Negate() const override;
bool Equals(const Expression& other) const override {
return other.op() == Operation::kTrue;
}
private:
constexpr True() = default;
};
/// \brief An expression that is always false.
class ICEBERG_EXPORT False : public Expression {
public:
/// \brief Returns the singleton instance
static const std::shared_ptr<False>& Instance();
Operation op() const override { return Operation::kFalse; }
std::string ToString() const override { return "false"; }
Result<std::shared_ptr<Expression>> Negate() const override;
bool Equals(const Expression& other) const override {
return other.op() == Operation::kFalse;
}
private:
constexpr False() = default;
};
/// \brief An Expression that represents a logical AND operation between two expressions.
///
/// This expression evaluates to true if and only if both of its child expressions
/// evaluate to true.
class ICEBERG_EXPORT And : public Expression {
public:
/// \brief Constructs an And expression from two sub-expressions.
///
/// \param left The left operand of the AND expression
/// \param right The right operand of the AND expression
And(std::shared_ptr<Expression> left, std::shared_ptr<Expression> right);
/// \brief Returns the left operand of the AND expression.
///
/// \return The left operand of the AND expression
const std::shared_ptr<Expression>& left() const { return left_; }
/// \brief Returns the right operand of the AND expression.
///
/// \return The right operand of the AND expression
const std::shared_ptr<Expression>& right() const { return right_; }
Operation op() const override { return Operation::kAnd; }
std::string ToString() const override;
Result<std::shared_ptr<Expression>> Negate() const override;
bool Equals(const Expression& other) const override;
private:
std::shared_ptr<Expression> left_;
std::shared_ptr<Expression> right_;
};
} // namespace iceberg