File size: 7,761 Bytes
f0f4f2b |
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 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 |
# 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.
import re
from decimal import Decimal
from pyparsing import (
CaselessKeyword,
DelimitedList,
Group,
ParserElement,
ParseResults,
Suppress,
Word,
alphanums,
alphas,
infix_notation,
one_of,
opAssoc,
sgl_quoted_string,
)
from pyparsing.common import pyparsing_common as common
from pyiceberg.expressions import (
AlwaysFalse,
AlwaysTrue,
And,
BooleanExpression,
EqualTo,
GreaterThan,
GreaterThanOrEqual,
In,
IsNaN,
IsNull,
LessThan,
LessThanOrEqual,
Not,
NotEqualTo,
NotIn,
NotNaN,
NotNull,
Or,
Reference,
StartsWith,
)
from pyiceberg.expressions.literals import (
DecimalLiteral,
Literal,
LongLiteral,
StringLiteral,
)
from pyiceberg.typedef import L
ParserElement.enablePackrat()
AND = CaselessKeyword("and")
OR = CaselessKeyword("or")
NOT = CaselessKeyword("not")
IS = CaselessKeyword("is")
IN = CaselessKeyword("in")
NULL = CaselessKeyword("null")
NAN = CaselessKeyword("nan")
LIKE = CaselessKeyword("like")
identifier = Word(alphas, alphanums + "_$").set_results_name("identifier")
column = DelimitedList(identifier, delim=".", combine=False).set_results_name("column")
like_regex = r"(?P<valid_wildcard>(?<!\\)%$)|(?P<invalid_wildcard>(?<!\\)%)"
@column.set_parse_action
def _(result: ParseResults) -> Reference:
return Reference(result.column[-1])
boolean = one_of(["true", "false"], caseless=True).set_results_name("boolean")
string = sgl_quoted_string.set_results_name("raw_quoted_string")
decimal = common.real().set_results_name("decimal")
integer = common.signed_integer().set_results_name("integer")
literal = Group(string | decimal | integer).set_results_name("literal")
literal_set = Group(DelimitedList(string) | DelimitedList(decimal) | DelimitedList(integer)).set_results_name("literal_set")
@boolean.set_parse_action
def _(result: ParseResults) -> BooleanExpression:
if "true" == result.boolean.lower():
return AlwaysTrue()
else:
return AlwaysFalse()
@string.set_parse_action
def _(result: ParseResults) -> Literal[str]:
return StringLiteral(result.raw_quoted_string[1:-1].replace("''", "'"))
@decimal.set_parse_action
def _(result: ParseResults) -> Literal[Decimal]:
return DecimalLiteral(Decimal(result.decimal))
@integer.set_parse_action
def _(result: ParseResults) -> Literal[int]:
return LongLiteral(int(result.integer))
@literal.set_parse_action
def _(result: ParseResults) -> Literal[L]:
return result[0][0]
@literal_set.set_parse_action
def _(result: ParseResults) -> Literal[L]:
return result[0]
comparison_op = one_of(["<", "<=", ">", ">=", "=", "==", "!=", "<>"], caseless=True).set_results_name("op")
left_ref = column + comparison_op + literal
right_ref = literal + comparison_op + column
comparison = left_ref | right_ref
@left_ref.set_parse_action
def _(result: ParseResults) -> BooleanExpression:
if result.op == "<":
return LessThan(result.column, result.literal)
elif result.op == "<=":
return LessThanOrEqual(result.column, result.literal)
elif result.op == ">":
return GreaterThan(result.column, result.literal)
elif result.op == ">=":
return GreaterThanOrEqual(result.column, result.literal)
if result.op in ("=", "=="):
return EqualTo(result.column, result.literal)
if result.op in ("!=", "<>"):
return NotEqualTo(result.column, result.literal)
raise ValueError(f"Unsupported operation type: {result.op}")
@right_ref.set_parse_action
def _(result: ParseResults) -> BooleanExpression:
if result.op == "<":
return GreaterThan(result.column, result.literal)
elif result.op == "<=":
return GreaterThanOrEqual(result.column, result.literal)
elif result.op == ">":
return LessThan(result.column, result.literal)
elif result.op == ">=":
return LessThanOrEqual(result.column, result.literal)
elif result.op in ("=", "=="):
return EqualTo(result.column, result.literal)
elif result.op in ("!=", "<>"):
return NotEqualTo(result.column, result.literal)
raise ValueError(f"Unsupported operation type: {result.op}")
is_null = column + IS + NULL
not_null = column + IS + NOT + NULL
null_check = is_null | not_null
@is_null.set_parse_action
def _(result: ParseResults) -> BooleanExpression:
return IsNull(result.column)
@not_null.set_parse_action
def _(result: ParseResults) -> BooleanExpression:
return NotNull(result.column)
is_nan = column + IS + NAN
not_nan = column + IS + NOT + NAN
nan_check = is_nan | not_nan
@is_nan.set_parse_action
def _(result: ParseResults) -> BooleanExpression:
return IsNaN(result.column)
@not_nan.set_parse_action
def _(result: ParseResults) -> BooleanExpression:
return NotNaN(result.column)
is_in = column + IN + "(" + literal_set + ")"
not_in = column + NOT + IN + "(" + literal_set + ")"
in_check = is_in | not_in
@is_in.set_parse_action
def _(result: ParseResults) -> BooleanExpression:
return In(result.column, result.literal_set)
@not_in.set_parse_action
def _(result: ParseResults) -> BooleanExpression:
return NotIn(result.column, result.literal_set)
starts_with = column + LIKE + string
not_starts_with = column + NOT + LIKE + string
starts_check = starts_with | not_starts_with
@starts_with.set_parse_action
def _(result: ParseResults) -> BooleanExpression:
return _evaluate_like_statement(result)
@not_starts_with.set_parse_action
def _(result: ParseResults) -> BooleanExpression:
return ~_evaluate_like_statement(result)
def _evaluate_like_statement(result: ParseResults) -> BooleanExpression:
literal_like: StringLiteral = result.raw_quoted_string
match = re.search(like_regex, literal_like.value)
if match and match.groupdict()["invalid_wildcard"]:
raise ValueError("LIKE expressions only supports wildcard, '%', at the end of a string")
elif match and match.groupdict()["valid_wildcard"]:
return StartsWith(result.column, StringLiteral(literal_like.value[:-1].replace("\\%", "%")))
else:
return EqualTo(result.column, StringLiteral(literal_like.value.replace("\\%", "%")))
predicate = (comparison | in_check | null_check | nan_check | starts_check | boolean).set_results_name("predicate")
def handle_not(result: ParseResults) -> Not:
return Not(result[0][0])
def handle_and(result: ParseResults) -> And:
return And(*result[0])
def handle_or(result: ParseResults) -> Or:
return Or(*result[0])
boolean_expression = infix_notation(
predicate,
[
(Suppress(NOT), 1, opAssoc.RIGHT, handle_not),
(Suppress(AND), 2, opAssoc.LEFT, handle_and),
(Suppress(OR), 2, opAssoc.LEFT, handle_or),
],
).set_name("expr")
def parse(expr: str) -> BooleanExpression:
"""Parse a boolean expression."""
return boolean_expression.parse_string(expr, parse_all=True)[0]
|