vrl 0.32.0

Vector Remap Language
Documentation
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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
use std::fmt;

use dyn_clone::{DynClone, clone_trait_object};

pub use abort::Abort;
pub use array::Array;
pub use assignment::Assignment;
pub use block::Block;
pub use container::{Container, Variant};
#[allow(clippy::module_name_repetitions)]
pub use function::FunctionExpression;
pub use function_argument::FunctionArgument;
pub use function_call::FunctionCall;
pub use group::Group;
pub use if_statement::IfStatement;
pub use literal::Literal;
pub use noop::Noop;
pub use not::Not;
pub use object::Object;
pub use op::Op;
pub use predicate::Predicate;
pub use query::{Query, Target};
pub use r#return::Return;
pub use unary::Unary;
pub use variable::Variable;

use crate::value::Value;

#[allow(clippy::module_name_repetitions)]
pub use super::ExpressionError;
pub use super::Resolved;
use super::state::{TypeInfo, TypeState};
use super::{Context, TypeDef};

mod abort;
mod array;
mod block;
mod function_argument;
mod group;
mod if_statement;
mod levenstein;
mod noop;
mod not;
mod object;
mod op;
mod r#return;
pub(crate) mod unary;
mod variable;

pub(crate) mod assignment;
pub(crate) mod container;
pub(crate) mod function;
pub(crate) mod function_call;
pub(crate) mod literal;
pub(crate) mod predicate;
pub mod query;

#[allow(clippy::missing_errors_doc)]
pub trait Expression: Send + Sync + fmt::Debug + DynClone {
    /// Resolve an expression to a concrete [`Value`].
    ///
    /// This method is executed at runtime.
    ///
    /// An expression is allowed to fail, which aborts the running program.
    fn resolve(&self, ctx: &mut Context) -> Resolved;

    /// Resolve an expression to a value without any context, if possible.
    /// This attempts to resolve expressions using only compile-time information.
    ///
    /// This returns `Some` for static expressions, or `None` for dynamic expressions.
    fn resolve_constant(&self, _state: &TypeState) -> Option<Value> {
        None
    }

    /// Resolve an expression to its [`TypeDef`] type definition.
    /// This must be called with the _initial_ `TypeState`.
    ///
    /// Consider calling `type_info` instead if you want to capture changes in the type
    /// state from side-effects.
    fn type_def(&self, state: &TypeState) -> TypeDef {
        self.type_info(state).result
    }

    /// Calculates the type state after an expression resolves, including the expression result itself.
    /// This must be called with the _initial_ `TypeState`.
    ///
    /// Consider using `apply_type_info` instead if you want to just access
    /// the expr result type, while updating an existing state.
    fn type_info(&self, state: &TypeState) -> TypeInfo;

    /// Applies state changes from the expression to the given state, and
    /// returns the result type.
    fn apply_type_info(&self, state: &mut TypeState) -> TypeDef {
        let new_info = self.type_info(state);
        *state = new_info.state;
        new_info.result
    }

    /// Format the expression into a consistent style.
    ///
    /// This defaults to not formatting, so that function implementations don't
    /// need to care about formatting (this is handled by the internal function
    /// call expression).
    fn format(&self) -> Option<String> {
        None
    }
}

clone_trait_object!(Expression);

#[derive(Debug, Clone, PartialEq)]
pub enum Expr {
    Literal(Literal),
    Container(Container),
    IfStatement(IfStatement),
    Op(Op),
    Assignment(Assignment),
    Query(Query),
    FunctionCall(FunctionCall),
    Variable(Variable),
    Noop(Noop),
    Unary(Unary),
    Abort(Abort),
    Return(Return),
}

impl Expr {
    pub fn as_str(&self) -> &str {
        use Expr::{
            Abort, Assignment, Container, FunctionCall, IfStatement, Literal, Noop, Op, Query,
            Return, Unary, Variable,
        };
        use container::Variant::{Array, Block, Group, Object};

        match self {
            Literal(..) => "literal",
            Container(v) => match &v.variant {
                Group(..) => "group",
                Block(..) => "block",
                Array(..) => "array",
                Object(..) => "object",
            },
            IfStatement(..) => "if-statement",
            Op(..) => "operation",
            Assignment(..) => "assignment",
            Query(..) => "query",
            FunctionCall(..) => "function call",
            Variable(..) => "variable call",
            Noop(..) => "noop",
            Unary(..) => "unary operation",
            Abort(..) => "abort operation",
            Return(..) => "return",
        }
    }

    /// Attempts to resolve the current expression into a literal value.
    ///
    /// This function checks if the expression can be resolved to a constant
    /// value within the given [`TypeState`]. If it can, the resolved value
    /// is returned. Otherwise, an error is returned indicating that a
    /// literal was expected but not found.
    ///
    /// # Arguments
    ///
    /// * `keyword` - A static string representing the keyword associated with this expression.
    /// * `state` - A reference to the [`TypeState`] used to resolve constants.
    ///
    /// # Returns
    ///
    /// Returns a [`Result`] containing the resolved [`Value`] if the expression
    /// evaluates to a constant. Otherwise, returns an [`Error`](`super::function::Error`) indicating
    /// an unexpected expression.
    ///
    /// # Errors
    ///
    /// Returns [`super::function::Error::UnexpectedExpression`] if the
    /// expression does not resolve to a literal.
    pub fn as_literal(
        &self,
        keyword: &'static str,
        state: &TypeState,
    ) -> Result<Value, super::function::Error> {
        match self.resolve_constant(state) {
            Some(value) => Ok(value),
            None => Err(super::function::Error::UnexpectedExpression {
                keyword,
                expected: "literal",
                expr: self.clone(),
            }),
        }
    }

    /// Attempts to convert the value into an enumeration variant.
    ///
    /// This function checks whether the given value matches one of the provided
    /// enumeration variants. If the value is not a valid variant, it returns an error.
    ///
    /// # Arguments
    ///
    /// * `keyword` - A static string representing the keyword associated with the enumeration.
    /// * `variants` - A vector of possible valid `Value` variants.
    /// * `state` - A reference to the `TypeState` used for type resolution.
    ///
    /// # Returns
    ///
    /// Returns `Ok(Value)` if the value is one of the allowed enumeration variants.
    /// Otherwise, it returns an `Err(super::function::Error::InvalidEnumVariant)`.
    ///
    /// # Errors
    ///
    /// This function returns an `InvalidEnumVariant` error if the value is not found
    /// in the provided list of valid variants.
    pub fn as_enum(
        &self,
        keyword: &'static str,
        variants: Vec<Value>,
        state: &TypeState,
    ) -> Result<Value, super::function::Error> {
        let value = self.as_literal(keyword, state)?;
        variants.iter().find(|v| **v == value).cloned().ok_or(
            super::function::Error::InvalidEnumVariant {
                keyword,
                value,
                variants,
            },
        )
    }
}

impl Expression for Expr {
    fn resolve(&self, ctx: &mut Context) -> Resolved {
        use Expr::{
            Abort, Assignment, Container, FunctionCall, IfStatement, Literal, Noop, Op, Query,
            Return, Unary, Variable,
        };

        match self {
            Literal(v) => v.resolve(ctx),
            Container(v) => v.resolve(ctx),
            IfStatement(v) => v.resolve(ctx),
            Op(v) => v.resolve(ctx),
            Assignment(v) => v.resolve(ctx),
            Query(v) => v.resolve(ctx),
            FunctionCall(v) => v.resolve(ctx),
            Variable(v) => v.resolve(ctx),
            Noop(v) => v.resolve(ctx),
            Unary(v) => v.resolve(ctx),
            Abort(v) => v.resolve(ctx),
            Return(v) => v.resolve(ctx),
        }
    }

    fn resolve_constant(&self, state: &TypeState) -> Option<Value> {
        use Expr::{
            Abort, Assignment, Container, FunctionCall, IfStatement, Literal, Noop, Op, Query,
            Return, Unary, Variable,
        };

        match self {
            Literal(v) => Expression::resolve_constant(v, state),
            Container(v) => Expression::resolve_constant(v, state),
            IfStatement(v) => Expression::resolve_constant(v, state),
            Op(v) => Expression::resolve_constant(v, state),
            Assignment(v) => Expression::resolve_constant(v, state),
            Query(v) => Expression::resolve_constant(v, state),
            FunctionCall(v) => Expression::resolve_constant(v, state),
            Variable(v) => Expression::resolve_constant(v, state),
            Noop(v) => Expression::resolve_constant(v, state),
            Unary(v) => Expression::resolve_constant(v, state),
            Abort(v) => Expression::resolve_constant(v, state),
            Return(v) => Expression::resolve_constant(v, state),
        }
    }

    fn type_info(&self, state: &TypeState) -> TypeInfo {
        use Expr::{
            Abort, Assignment, Container, FunctionCall, IfStatement, Literal, Noop, Op, Query,
            Return, Unary, Variable,
        };

        match self {
            Literal(v) => v.type_info(state),
            Container(v) => v.type_info(state),
            IfStatement(v) => v.type_info(state),
            Op(v) => v.type_info(state),
            Assignment(v) => v.type_info(state),
            Query(v) => v.type_info(state),
            FunctionCall(v) => v.type_info(state),
            Variable(v) => v.type_info(state),
            Noop(v) => v.type_info(state),
            Unary(v) => v.type_info(state),
            Abort(v) => v.type_info(state),
            Return(v) => v.type_info(state),
        }
    }
}

impl fmt::Display for Expr {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        use Expr::{
            Abort, Assignment, Container, FunctionCall, IfStatement, Literal, Noop, Op, Query,
            Return, Unary, Variable,
        };

        match self {
            Literal(v) => v.fmt(f),
            Container(v) => v.fmt(f),
            IfStatement(v) => v.fmt(f),
            Op(v) => v.fmt(f),
            Assignment(v) => v.fmt(f),
            Query(v) => v.fmt(f),
            FunctionCall(v) => v.fmt(f),
            Variable(v) => v.fmt(f),
            Noop(v) => v.fmt(f),
            Unary(v) => v.fmt(f),
            Abort(v) => v.fmt(f),
            Return(v) => v.fmt(f),
        }
    }
}

// -----------------------------------------------------------------------------

impl From<Literal> for Expr {
    fn from(literal: Literal) -> Self {
        Expr::Literal(literal)
    }
}

impl From<Container> for Expr {
    fn from(container: Container) -> Self {
        Expr::Container(container)
    }
}

impl From<IfStatement> for Expr {
    fn from(if_statement: IfStatement) -> Self {
        Expr::IfStatement(if_statement)
    }
}

impl From<Op> for Expr {
    fn from(op: Op) -> Self {
        Expr::Op(op)
    }
}

impl From<Assignment> for Expr {
    fn from(assignment: Assignment) -> Self {
        Expr::Assignment(assignment)
    }
}

impl From<Query> for Expr {
    fn from(query: Query) -> Self {
        Expr::Query(query)
    }
}

impl From<FunctionCall> for Expr {
    fn from(function_call: FunctionCall) -> Self {
        Expr::FunctionCall(function_call)
    }
}

impl From<Variable> for Expr {
    fn from(variable: Variable) -> Self {
        Expr::Variable(variable)
    }
}

impl From<Noop> for Expr {
    fn from(noop: Noop) -> Self {
        Expr::Noop(noop)
    }
}

impl From<Unary> for Expr {
    fn from(unary: Unary) -> Self {
        Expr::Unary(unary)
    }
}

impl From<Abort> for Expr {
    fn from(abort: Abort) -> Self {
        Expr::Abort(abort)
    }
}

impl From<Return> for Expr {
    fn from(r#return: Return) -> Self {
        Expr::Return(r#return)
    }
}

impl From<Value> for Expr {
    fn from(value: Value) -> Self {
        use std::collections::BTreeMap;

        use crate::value::Value::{
            Array, Boolean, Bytes, Float, Integer, Null, Object, Regex, Timestamp,
        };

        match value {
            Bytes(v) => Literal::from(v).into(),
            Integer(v) => Literal::from(v).into(),
            Float(v) => Literal::from(v).into(),
            Boolean(v) => Literal::from(v).into(),
            Object(v) => {
                let object = super::expression::Object::from(
                    v.into_iter()
                        .map(|(k, v)| (k, v.into()))
                        .collect::<BTreeMap<_, _>>(),
                );

                Container::new(container::Variant::from(object)).into()
            }
            Array(v) => {
                let array = super::expression::Array::from(
                    v.into_iter().map(Expr::from).collect::<Vec<_>>(),
                );

                Container::new(container::Variant::from(array)).into()
            }
            Timestamp(v) => Literal::from(v).into(),
            Regex(v) => Literal::from(v).into(),
            Null => Literal::from(()).into(),
        }
    }
}

// Helper trait
#[allow(clippy::missing_errors_doc)]
pub trait ExpressionExt {
    fn map_resolve(&self, ctx: &mut Context) -> Result<Option<Value>, ExpressionError>;
    fn map_resolve_with_default<F>(&self, ctx: &mut Context, default_fn: F) -> Resolved
    where
        F: FnOnce() -> Value;
}

impl ExpressionExt for Option<Box<dyn Expression>> {
    fn map_resolve(&self, ctx: &mut Context) -> Result<Option<Value>, ExpressionError> {
        self.as_ref().map(|expr| expr.resolve(ctx)).transpose()
    }

    fn map_resolve_with_default<F>(&self, ctx: &mut Context, default_fn: F) -> Resolved
    where
        F: FnOnce() -> Value,
    {
        Ok(self.map_resolve(ctx)?.unwrap_or_else(default_fn))
    }
}