flow/adapter/
parse_expr.rs

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
// Copyright 2023 Greptime Team
//
// 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.

//! parse expr like "ts <= now() - interval '5 m'"

use nom::branch::alt;
use nom::bytes::complete::{tag, tag_no_case};
use nom::character::complete::{alphanumeric1, digit0, multispace0};
use nom::combinator::peek;
use nom::sequence::tuple;
use nom::IResult;

use crate::repr;

#[test]
fn test_parse_duration() {
    let input = "1 h 5 m 42 second";
    let (remain, ttl) = parse_duration(input).unwrap();
    assert_eq!(remain, "");
    assert_eq!(ttl, (3600 + 5 * 60 + 42) * 1000);
}

#[test]
fn test_parse_fixed() {
    let input = "timestamp < now() - INTERVAL '5m 42s'";
    let (remain, ttl) = parse_fixed(input).unwrap();
    assert_eq!(remain, "");
    assert_eq!(ttl, (5 * 60 + 42) * 1000);
}

pub fn parse_fixed(input: &str) -> IResult<&str, i64> {
    let (r, _) = tuple((
        multispace0,
        tag_no_case("timestamp"),
        multispace0,
        tag("<"),
        multispace0,
        tag_no_case("now()"),
        multispace0,
        tag("-"),
        multispace0,
        tag_no_case("interval"),
        multispace0,
    ))(input)?;
    tuple((tag("'"), parse_duration, tag("'")))(r).map(|(r, (_, ttl, _))| (r, ttl))
}

/// parse duration and return ttl, currently only support time part of psql interval type
pub fn parse_duration(input: &str) -> IResult<&str, i64> {
    let mut intervals = vec![];
    let mut remain = input;
    while peek(parse_quality)(remain).is_ok() {
        let (r, number) = parse_quality(remain)?;
        let (r, unit) = parse_time_unit(r)?;
        intervals.push((number, unit));
        remain = r;
    }
    let mut total = 0;
    for (number, unit) in intervals {
        let number = match unit {
            TimeUnit::Second => number,
            TimeUnit::Minute => number * 60,
            TimeUnit::Hour => number * 60 * 60,
        };
        total += number;
    }
    total *= 1000;
    Ok((remain, total))
}

enum Expr {
    Col(String),
    Now,
    Duration(repr::Duration),
    Binary {
        left: Box<Expr>,
        op: String,
        right: Box<Expr>,
    },
}

fn parse_expr(input: &str) -> IResult<&str, Expr> {
    parse_expr_bp(input, 0)
}

/// a simple pratt parser
fn parse_expr_bp(input: &str, min_bp: u8) -> IResult<&str, Expr> {
    let (mut input, mut lhs): (&str, Expr) = parse_item(input)?;
    loop {
        let (r, op) = parse_op(input)?;
        let (_, (l_bp, r_bp)) = infix_binding_power(op)?;
        if l_bp < min_bp {
            return Ok((input, lhs));
        }
        let (r, rhs) = parse_expr_bp(r, r_bp)?;
        input = r;
        lhs = Expr::Binary {
            left: Box::new(lhs),
            op: op.to_string(),
            right: Box::new(rhs),
        };
    }
}

fn parse_op(input: &str) -> IResult<&str, &str> {
    alt((parse_add_sub, parse_cmp))(input)
}

fn parse_item(input: &str) -> IResult<&str, Expr> {
    if let Ok((r, name)) = parse_col_name(input) {
        Ok((r, Expr::Col(name.to_string())))
    } else if let Ok((r, _now)) = parse_now(input) {
        Ok((r, Expr::Now))
    } else if let Ok((_r, _num)) = parse_quality(input) {
        todo!()
    } else {
        todo!()
    }
}

fn infix_binding_power(op: &str) -> IResult<&str, (u8, u8)> {
    let ret = match op {
        "<" | ">" | "<=" | ">=" => (1, 2),
        "+" | "-" => (3, 4),
        _ => {
            return Err(nom::Err::Error(nom::error::Error::new(
                op,
                nom::error::ErrorKind::Fail,
            )))
        }
    };
    Ok((op, ret))
}

fn parse_col_name(input: &str) -> IResult<&str, &str> {
    tuple((multispace0, alphanumeric1, multispace0))(input).map(|(r, (_, name, _))| (r, name))
}

fn parse_now(input: &str) -> IResult<&str, &str> {
    tag_no_case("now()")(input)
}

fn parse_add_sub(input: &str) -> IResult<&str, &str> {
    tuple((multispace0, alt((tag("+"), tag("-"))), multispace0))(input)
        .map(|(r, (_, op, _))| (r, op))
}

fn parse_cmp(input: &str) -> IResult<&str, &str> {
    tuple((
        multispace0,
        alt((tag("<="), tag(">="), tag("<"), tag(">"))),
        multispace0,
    ))(input)
    .map(|(r, (_, op, _))| (r, op))
}

/// parse a number with optional sign
fn parse_quality(input: &str) -> IResult<&str, repr::Duration> {
    tuple((
        multispace0,
        alt((tag("+"), tag("-"), tag(""))),
        digit0,
        multispace0,
    ))(input)
    .map(|(r, (_, sign, name, _))| (r, sign, name))
    .and_then(|(r, sign, name)| {
        let num = name.parse::<repr::Duration>().map_err(|_| {
            nom::Err::Error(nom::error::Error::new(input, nom::error::ErrorKind::Digit))
        })?;
        let num = match sign {
            "+" => num,
            "-" => -num,
            _ => num,
        };
        Ok((r, num))
    })
}

#[derive(Debug, Clone)]
enum TimeUnit {
    Second,
    Minute,
    Hour,
}

#[derive(Debug, Clone)]
enum DateUnit {
    Day,
    Month,
    Year,
}

fn parse_time_unit(input: &str) -> IResult<&str, TimeUnit> {
    fn to_second(input: &str) -> IResult<&str, TimeUnit> {
        alt((
            tag_no_case("second"),
            tag_no_case("seconds"),
            tag_no_case("S"),
        ))(input)
        .map(move |(r, _)| (r, TimeUnit::Second))
    }
    fn to_minute(input: &str) -> IResult<&str, TimeUnit> {
        alt((
            tag_no_case("minute"),
            tag_no_case("minutes"),
            tag_no_case("m"),
        ))(input)
        .map(move |(r, _)| (r, TimeUnit::Minute))
    }
    fn to_hour(input: &str) -> IResult<&str, TimeUnit> {
        alt((tag_no_case("hour"), tag_no_case("hours"), tag_no_case("h")))(input)
            .map(move |(r, _)| (r, TimeUnit::Hour))
    }

    tuple((
        multispace0,
        alt((
            to_second, to_minute,
            to_hour, /*
                    tag_no_case("day"),
                    tag_no_case("days"),
                    tag_no_case("d"),
                    tag_no_case("month"),
                    tag_no_case("months"),
                    tag_no_case("m"),
                    tag_no_case("year"),
                    tag_no_case("years"),
                    tag_no_case("y"),
                    */
        )),
        multispace0,
    ))(input)
    .map(|(r, (_, unit, _))| (r, unit))
}