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 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382
//! An implementation of [RCP 19][rcp19] (RETS Validation Expressions) from the [RESO Transport
//! group][transport].
//!
//! [transport]: https://github.com/RESOStandards/transport
//! [rcp19]: https://github.com/RESOStandards/transport/blob/main/web-api-validation-expression.md
//!
//! ## Example
//!
//! ```
//! use rets_expression::{Expression, Engine, EvaluateContext};
//! use serde_json::json;
//!
//! // Parse an expression
//! let expression = "MlsStatus .IN. ('Active', 'Pending') .AND. (ListPrice >= 1 .OR. LAST MlsStatus = 'Incomplete')"
//! .parse::<Expression>()
//! .unwrap();
//!
//! // Create the property data to run the expression against
//! let value = json!({
//! "MlsStatus": "Active",
//! "ListPrice": 1000000
//! });
//! // Create the previous property data to run the expression against (for when the expression
//! // includes references to previous data, like `LAST FieldName`)
//! let previous_value = json!({
//! "MlsStatus": "Incomplete",
//! "ListPrice": 0
//! });
//!
//! // Create a default engine and a context in which to evaluate the expression
//! let engine = Engine::default();
//! let context = EvaluateContext::new(&engine, &value).with_previous(&previous_value);
//!
//! // Evaluate the expression!
//! let value = expression.apply(context).unwrap();
//! assert_eq!(value.into_owned(), json!(true));
//! ```
#![cfg_attr(not(feature = "std"), no_std)]
#![deny(missing_docs)]
extern crate alloc;
use alloc::{
borrow::Cow,
boxed::Box,
collections::BTreeMap,
format,
string::{String, ToString},
vec::Vec,
};
use chrono::{DateTime, NaiveDate};
pub use context::{Engine, EvaluateContext};
use core::str::FromStr;
use serde_json::Value;
mod context;
mod formatter;
pub mod function;
mod parser;
/// An expression that can be inspected or evaluated
#[derive(Clone, Eq, PartialEq)]
pub enum Expression {
/// A node representing a reference to a field
///
/// E.g. `MlsStatus`
Field(FieldNode),
/// A node representing a reference to a field from the previous value
///
/// E.g. `LAST MlsStatus`
LastField(LastFieldNode),
/// A node representing the logical conjunction of two or more expressions
///
/// E.g. `A .AND. B`
And(AndNode),
/// A node representing the logical disjunction of two or more expressions
///
/// E.g. `A .OR. B`
Or(OrNode),
/// A node representing the logical negation of an expression
///
/// E.g. `.NOT. A`
Not(NotNode),
/// A node representing a binary operation
///
/// E.g. `A + B`
Op(OpNode),
/// A node representing a literal value
///
/// E.g. `.TRUE.`
Literal(LiteralNode),
/// A node representing a function call
///
/// E.g. `SUBSTR('A', 1, 2)`
Function(FunctionNode),
/// A node representing the special `IIF` conditional syntax
///
/// E.g. `IIF(A, B, C)`
Iif(IifNode),
/// A node representing a list of items
///
/// E.g. `(1, 2, 3)`
List(ListNode),
}
impl Expression {
/// Visit this node with the provided visitor
pub fn accept(&mut self, visitor: &mut impl Visitor) {
loop {
visitor.visit_expression_in(self);
match self {
Expression::Field(_) => {
visitor.visit_field_expression(self);
if let Some(node) = self.as_field_mut() {
node.accept(visitor);
} else {
continue;
}
}
Expression::LastField(_) => {
visitor.visit_last_field_expression(self);
if let Some(node) = self.as_last_field_mut() {
node.accept(visitor);
} else {
continue;
}
}
Expression::And(_) => {
visitor.visit_and_expression_in(self);
if let Some(node) = self.as_and_mut() {
node.accept(visitor);
} else {
continue;
}
visitor.visit_and_expression_out(self);
}
Expression::Or(_) => {
visitor.visit_or_expression_in(self);
if let Some(node) = self.as_or_mut() {
node.accept(visitor);
} else {
continue;
}
visitor.visit_or_expression_out(self);
}
Expression::Not(_) => {
visitor.visit_not_expression_in(self);
if let Some(node) = self.as_not_mut() {
node.accept(visitor);
} else {
continue;
}
visitor.visit_not_expression_out(self);
}
Expression::Op(_) => {
visitor.visit_op_expression_in(self);
if let Some(node) = self.as_op_mut() {
node.accept(visitor);
} else {
continue;
}
visitor.visit_op_expression_out(self);
}
Expression::Literal(_) => {
visitor.visit_literal_expression(self);
if let Some(node) = self.as_literal_mut() {
node.accept(visitor);
} else {
continue;
}
}
Expression::Function(_) => {
visitor.visit_function_expression_in(self);
if let Some(node) = self.as_function_mut() {
node.accept(visitor);
} else {
continue;
}
visitor.visit_function_expression_out(self);
}
Expression::Iif(_) => {
visitor.visit_iif_expression_in(self);
if let Some(node) = self.as_iif_mut() {
node.accept(visitor);
} else {
continue;
}
visitor.visit_iif_expression_out(self);
}
Expression::List(_) => {
visitor.visit_list_expression_in(self);
if let Some(node) = self.as_list_mut() {
node.accept(visitor);
} else {
continue;
}
visitor.visit_list_expression_out(self);
}
}
visitor.visit_expression_out(self);
break;
}
}
}
macro_rules! define_as_function {
($as_ref_name:ident, $as_mut_name:ident, $discriminant:ident, $node_type:ty) => {
/// If the [Expression] is a X, returns a reference to the associated Y. Returns `None`
/// otherwise.
pub fn $as_ref_name(&self) -> Option<&$node_type> {
match self {
Expression::$discriminant(node) => Some(node),
_ => None,
}
}
/// If the [Expression] is a X, returns a mutable reference to the associated Y. Returns
/// `None` otherwise.
pub fn $as_mut_name(&mut self) -> Option<&mut $node_type> {
match self {
Expression::$discriminant(node) => Some(node),
_ => None,
}
}
};
}
impl Expression {
define_as_function!(as_field, as_field_mut, Field, FieldNode);
define_as_function!(as_last_field, as_last_field_mut, LastField, LastFieldNode);
define_as_function!(as_and, as_and_mut, And, AndNode);
define_as_function!(as_or, as_or_mut, Or, OrNode);
define_as_function!(as_not, as_not_mut, Not, NotNode);
define_as_function!(as_op, as_op_mut, Op, OpNode);
define_as_function!(as_literal, as_literal_mut, Literal, LiteralNode);
define_as_function!(as_function, as_function_mut, Function, FunctionNode);
define_as_function!(as_iif, as_iif_mut, Iif, IifNode);
define_as_function!(as_list, as_list_mut, List, ListNode);
}
#[derive(Clone, Eq, PartialEq)]
struct Span {
start: usize,
end: usize,
}
/// A node representing a reference to a field
///
/// E.g. `MlsStatus`
#[derive(Clone, Eq, PartialEq)]
#[non_exhaustive]
pub struct FieldNode {
/// The name of the field that is being referenced
pub name: String,
span: Option<Span>,
}
impl FieldNode {
/// Create a new node
pub fn new(name: impl ToString) -> Self {
FieldNode {
name: name.to_string(),
span: None,
}
}
/// The name of the field that is being referenced
pub fn name(&self) -> &str {
&self.name
}
/// Visit this node with the provided visitor
pub fn accept(&mut self, visitor: &mut impl Visitor) {
visitor.visit_field_node(self)
}
}
impl From<FieldNode> for Expression {
fn from(node: FieldNode) -> Expression {
Expression::Field(node)
}
}
impl<T> From<T> for FieldNode
where
T: ToString,
{
fn from(name: T) -> Self {
FieldNode::new(name)
}
}
/// A node representing a reference to a field from the previous value
///
/// E.g. `LAST MlsStatus`
#[derive(Clone, Eq, PartialEq)]
#[non_exhaustive]
pub struct LastFieldNode {
/// The name of the field that is being referenced
pub name: String,
span: Option<Span>,
}
impl LastFieldNode {
/// Create a new node
pub fn new(name: impl ToString) -> Self {
LastFieldNode {
name: name.to_string(),
span: None,
}
}
/// The name of the field that is being referenced
pub fn name(&self) -> &str {
&self.name
}
/// Visit this node with the provided visitor
pub fn accept(&mut self, visitor: &mut impl Visitor) {
visitor.visit_last_field_node(self)
}
}
impl From<LastFieldNode> for Expression {
fn from(node: LastFieldNode) -> Expression {
Expression::LastField(node)
}
}
impl<T> From<T> for LastFieldNode
where
T: ToString,
{
fn from(name: T) -> Self {
LastFieldNode::new(name)
}
}
/// A node representing the logical conjunction of two or more expressions
///
/// E.g. `A .AND. B`
#[derive(Clone, Eq, PartialEq)]
#[non_exhaustive]
pub struct AndNode {
/// The expressions that are and-ed together
pub children: Vec<Expression>,
span: Option<Span>,
}
impl AndNode {
/// Create a new node
pub fn new(children: impl Expressions) -> Self {
AndNode {
children: children.to_vec(),
span: None,
}
}
/// An iterator over the expressions
pub fn iter(&self) -> impl Iterator<Item = &Expression> {
self.children.iter()
}
/// Visit this node with the provided visitor
pub fn accept(&mut self, visitor: &mut impl Visitor) {
visitor.visit_and_node_in(self);
for child in &mut self.children {
child.accept(visitor)
}
visitor.visit_and_node_out(self);
}
}
impl From<AndNode> for Expression {
fn from(node: AndNode) -> Expression {
Expression::And(node)
}
}
impl<T> From<T> for AndNode
where
T: Expressions,
{
fn from(expressions: T) -> Self {
AndNode::new(expressions)
}
}
/// A node representing the logical disjunction of two or more expressions
///
/// E.g. `A .OR. B`
#[derive(Clone, Eq, PartialEq)]
#[non_exhaustive]
pub struct OrNode {
/// The expressions that are or-ed together
pub children: Vec<Expression>,
span: Option<Span>,
}
impl OrNode {
/// Create a new node
pub fn new(children: impl Expressions) -> Self {
OrNode {
children: children.to_vec(),
span: None,
}
}
/// An iterator over the expressions
pub fn iter(&self) -> impl Iterator<Item = &Expression> {
self.children.iter()
}
/// Visit this node with the provided visitor
pub fn accept(&mut self, visitor: &mut impl Visitor) {
visitor.visit_or_node_in(self);
for child in &mut self.children {
child.accept(visitor)
}
visitor.visit_or_node_out(self);
}
}
impl From<OrNode> for Expression {
fn from(node: OrNode) -> Expression {
Expression::Or(node)
}
}
impl<T> From<T> for OrNode
where
T: Expressions,
{
fn from(expressions: T) -> Self {
OrNode::new(expressions)
}
}
/// A node representing the logical negation of an expression
///
/// E.g. `.NOT. A`
#[derive(Clone, Eq, PartialEq)]
#[non_exhaustive]
pub struct NotNode {
/// The negated expression
pub expression: Box<Expression>,
span: Option<Span>,
}
impl NotNode {
/// Create a new node
pub fn new(expression: impl Into<Box<Expression>>) -> Self {
NotNode {
expression: expression.into(),
span: None,
}
}
/// The negated expression
pub fn expression(&self) -> &Expression {
&self.expression
}
/// Visit this node with the provided visitor
pub fn accept(&mut self, visitor: &mut impl Visitor) {
visitor.visit_not_node_in(self);
self.expression.accept(visitor);
visitor.visit_not_node_out(self);
}
}
impl From<NotNode> for Expression {
fn from(node: NotNode) -> Expression {
Expression::Not(node)
}
}
/// A node representing a binary operation
///
/// E.g. `A + B`
#[derive(Clone, Eq, PartialEq)]
#[non_exhaustive]
pub struct OpNode {
/// The expression on the left of the operation
pub left: Box<Expression>,
/// The operation to perform
pub op: ExpressionOp,
/// The expression on the left of the operation
pub right: Box<Expression>,
op_span: Option<Span>,
}
impl OpNode {
/// Create a new node
pub fn new(
left: impl Into<Box<Expression>>,
op: ExpressionOp,
right: impl Into<Box<Expression>>,
) -> Self {
OpNode {
left: left.into(),
op,
right: right.into(),
op_span: None,
}
}
/// The expression on the left of the operation
pub fn left(&self) -> &Expression {
&self.left
}
/// The expression on the left of the operation
pub fn right(&self) -> &Expression {
&self.right
}
/// The operation being performed
pub fn op(&self) -> &ExpressionOp {
&self.op
}
/// Visit this node with the provided visitor
pub fn accept(&mut self, visitor: &mut impl Visitor) {
visitor.visit_op_node_in(self);
self.left.accept(visitor);
self.right.accept(visitor);
visitor.visit_op_node_out(self);
}
}
macro_rules! convenience_op_node {
($ident:ident, $op:expr) => {
/// Create a new node
pub fn $ident(
left: impl Into<Box<Expression>>,
right: impl Into<Box<Expression>>,
) -> OpNode {
OpNode::new(left, $op, right)
}
};
}
impl OpNode {
convenience_op_node!(add, ExpressionOp::Add);
convenience_op_node!(sub, ExpressionOp::Sub);
convenience_op_node!(mul, ExpressionOp::Mul);
convenience_op_node!(div, ExpressionOp::Div);
convenience_op_node!(gt, ExpressionOp::Gt);
convenience_op_node!(gte, ExpressionOp::Gte);
convenience_op_node!(lt, ExpressionOp::Lt);
convenience_op_node!(lte, ExpressionOp::Lte);
convenience_op_node!(eq, ExpressionOp::Eq);
convenience_op_node!(ne, ExpressionOp::Ne);
}
impl From<OpNode> for Expression {
fn from(node: OpNode) -> Expression {
Expression::Op(node)
}
}
/// A node representing a literal value
///
/// E.g. `.TRUE.`
#[derive(Clone, Eq, PartialEq)]
#[non_exhaustive]
pub struct LiteralNode {
/// The literal value
pub value: Value,
span: Option<Span>,
}
impl LiteralNode {
/// Create a new node
pub fn new(value: Value) -> Self {
LiteralNode { value, span: None }
}
/// The literal value
pub fn value(&self) -> &Value {
&self.value
}
/// Visit this node with the provided visitor
pub fn accept(&mut self, visitor: &mut impl Visitor) {
visitor.visit_literal_node(self);
}
}
impl From<LiteralNode> for Expression {
fn from(node: LiteralNode) -> Expression {
Expression::Literal(node)
}
}
/// A node representing a function call
///
/// E.g. `SUBSTR('A', 1, 2)`
#[derive(Clone, Eq, PartialEq)]
#[non_exhaustive]
pub struct FunctionNode {
/// The name of the function to execute
pub name: String,
/// The arguments to the function
pub arguments: Vec<Expression>,
name_span: Option<Span>,
left_parens_span: Option<Span>,
right_parens_span: Option<Span>,
}
impl FunctionNode {
/// Create a new node
pub fn new(name: impl ToString, arguments: impl Expressions) -> Self {
FunctionNode {
name: name.to_string(),
arguments: arguments.to_vec(),
name_span: None,
left_parens_span: None,
right_parens_span: None,
}
}
/// The name of the function to execute
pub fn name(&self) -> &str {
&self.name
}
/// An iterator over the arguments of the function
pub fn iter(&self) -> impl Iterator<Item = &Expression> {
self.arguments.iter()
}
/// Visit this node with the provided visitor
pub fn accept(&mut self, visitor: &mut impl Visitor) {
visitor.visit_function_node_in(self);
for argument in &mut self.arguments {
argument.accept(visitor);
}
visitor.visit_function_node_out(self);
}
}
impl From<FunctionNode> for Expression {
fn from(node: FunctionNode) -> Expression {
Expression::Function(node)
}
}
/// A node representing the special `IIF` conditional syntax
///
/// E.g. `IIF(A, B, C)`
#[derive(Clone, Eq, PartialEq)]
#[non_exhaustive]
pub struct IifNode {
/// The expression that represents the test or the conditional
pub test_expression: Box<Expression>,
/// The expression to execute if the test returns true
pub true_expression: Box<Expression>,
/// The expression to execute if the test returns false
pub false_expression: Box<Expression>,
span: Option<Span>,
}
impl IifNode {
/// Create a new node
pub fn new(
test: impl Into<Box<Expression>>,
t: impl Into<Box<Expression>>,
f: impl Into<Box<Expression>>,
) -> Self {
IifNode {
test_expression: test.into(),
true_expression: t.into(),
false_expression: f.into(),
span: None,
}
}
/// The expression that represents the test or the conditional
pub fn test(&self) -> &Expression {
&self.test_expression
}
/// The expression to execute if the test returns true
pub fn t(&self) -> &Expression {
&self.true_expression
}
/// The expression to execute if the test returns false
pub fn f(&self) -> &Expression {
&self.false_expression
}
/// Visit this node with the provided visitor
pub fn accept(&mut self, visitor: &mut impl Visitor) {
visitor.visit_iif_node_in(self);
self.test_expression.accept(visitor);
self.true_expression.accept(visitor);
self.false_expression.accept(visitor);
visitor.visit_iif_node_out(self);
}
}
impl From<IifNode> for Expression {
fn from(node: IifNode) -> Expression {
Expression::Iif(node)
}
}
/// A node representing a list of items
///
/// E.g. `(1, 2, 3)`
#[derive(Clone, Eq, PartialEq)]
#[non_exhaustive]
pub struct ListNode {
/// The items in the list
pub items: Vec<Expression>,
span: Option<Span>,
}
impl ListNode {
/// Create a new node
pub fn new(items: impl Expressions) -> Self {
ListNode {
items: items.to_vec(),
span: None,
}
}
/// Iterate over the expressions in the list
pub fn iter(&self) -> impl Iterator<Item = &Expression> {
self.items.iter()
}
/// Visit this node with the provided visitor
pub fn accept(&mut self, visitor: &mut impl Visitor) {
visitor.visit_list_node_in(self);
for argument in &mut self.items {
argument.accept(visitor);
}
visitor.visit_list_node_out(self);
}
}
impl From<ListNode> for Expression {
fn from(node: ListNode) -> Expression {
Expression::List(node)
}
}
impl FromStr for Expression {
type Err = String;
fn from_str(s: &str) -> Result<Self, Self::Err> {
match parser::top(s) {
Ok((rest, expression)) if rest.is_empty() => Ok(expression),
Ok((_rest, _expression)) => Err(String::from("Incomplete parse")),
Err(err) => Err(err.to_string()),
}
}
}
/// A binary operation in an [`OpNode`]
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
pub enum ExpressionOp {
/// Add two expressions `A + B`
Add,
/// Subtract one expression from another `A - B`
Sub,
/// Multiple two expressions `A * B`
Mul,
/// Divide one expression by another `A / B`
Div,
/// Take the modulus of one number with another `A .MOD. B`
Mod,
/// Concatenate two strings `A || B`
Concat,
/// Compare two expressions using a less-than comparison `A < B`
Lt,
/// Compare two expressions using a less-than-or-equal-to comparison `A <= B`
Lte,
/// Compare two expressions using a greater-than comparison `A > B`
Gt,
/// Compare two expressions using a greater-than-or-equal-to comparison `A >= B`
Gte,
/// Compare two expressions using an equal-to comparison `A = B`
Eq,
/// Compare two expressions using a not-equal-to comparison `A != B`
Ne,
/// Determine if one expression contains another expression `A .CONTAINS. B`
Contains,
/// Determine if one expression is in another expression `A .IN. B`
In,
}
impl ExpressionOp {
/// Apply the operation to two values
pub fn apply(self, left: &Value, right: &Value) -> Result<Value, Error> {
fn boolean(input: bool) -> Result<Value, Error> {
Ok(Value::Bool(input))
}
fn number<F, I, T1, T2>(
left: &serde_json::Number,
right: &serde_json::Number,
f: F,
i: I,
) -> Result<Value, Error>
where
F: Fn(f64, f64) -> T1,
I: Fn(i64, i64) -> T2,
T1: Into<serde_json::Value>,
T2: Into<serde_json::Value>,
{
// If both are i64s, treat them call the function for i64s
if let (Some(i_left), Some(i_right)) = (left.as_i64(), right.as_i64()) {
return Ok(i(i_left, i_right).into());
}
let f_left = left.as_f64().ok_or(Error::InvalidNumber)?;
let f_right = right.as_f64().ok_or(Error::InvalidNumber)?;
Ok(f(f_left, f_right).into())
}
fn string(input: String) -> Result<Value, Error> {
Ok(Value::String(input))
}
fn number_res<F, I, T1, T2>(
left: &serde_json::Number,
right: &serde_json::Number,
f: F,
i: I,
) -> Result<Value, Error>
where
F: Fn(f64, f64) -> Result<T1, Error>,
I: Fn(i64, i64) -> Result<T2, Error>,
T1: Into<serde_json::Value>,
T2: Into<serde_json::Value>,
{
// If both are i64s, treat them call the function for i64s
if let (Some(i_left), Some(i_right)) = (left.as_i64(), right.as_i64()) {
return Ok(i(i_left, i_right)?.into());
}
let f_left = left.as_f64().ok_or(Error::InvalidNumber)?;
let f_right = right.as_f64().ok_or(Error::InvalidNumber)?;
Ok(f(f_left, f_right)?.into())
}
fn add_date_number(left: &str, right: &serde_json::Number) -> Result<Value, Error> {
if let Ok(date) = NaiveDate::parse_from_str(left, "%Y-%m-%d") {
let days = right.as_f64().ok_or(Error::InvalidNumber)? as u64;
let new_date = date
.checked_add_days(chrono::Days::new(days))
.ok_or(Error::InvalidType)?;
Ok(Value::String(new_date.format("%Y-%m-%d").to_string()))
} else if let Ok(timestamp) = DateTime::parse_from_rfc3339(left) {
let days = right.as_f64().ok_or(Error::InvalidNumber)?;
let milliseconds = (days * 24.0 * 60.0 * 60.0 * 1000.0) as i64;
let new_timestamp = timestamp
.checked_add_signed(chrono::Duration::milliseconds(milliseconds))
.ok_or(Error::InvalidType)?;
Ok(Value::String(
new_timestamp.to_rfc3339_opts(chrono::SecondsFormat::Millis, true),
))
} else {
Err(Error::InvalidType)
}
}
fn add_number_date(left: &serde_json::Number, right: &str) -> Result<Value, Error> {
add_date_number(right, left)
}
fn subtract_date_number(left: &str, right: &serde_json::Number) -> Result<Value, Error> {
if let Ok(date) = NaiveDate::parse_from_str(left, "%Y-%m-%d") {
let days = right.as_f64().ok_or(Error::InvalidNumber)? as u64;
let new_date = date
.checked_sub_days(chrono::Days::new(days))
.ok_or(Error::InvalidType)?;
Ok(Value::String(new_date.format("%Y-%m-%d").to_string()))
} else if let Ok(timestamp) = DateTime::parse_from_rfc3339(left) {
let days = right.as_f64().ok_or(Error::InvalidNumber)?;
let milliseconds = (days * 24.0 * 60.0 * 60.0 * 1000.0) as i64;
let new_timestamp = timestamp
.checked_sub_signed(chrono::Duration::milliseconds(milliseconds))
.ok_or(Error::InvalidType)?;
Ok(Value::String(
new_timestamp.to_rfc3339_opts(chrono::SecondsFormat::Millis, true),
))
} else {
Err(Error::InvalidType)
}
}
fn subtract_date_date(left: &str, right: &str) -> Result<Value, Error> {
if let (Ok(left), Ok(right)) = (
NaiveDate::parse_from_str(left, "%Y-%m-%d"),
NaiveDate::parse_from_str(right, "%Y-%m-%d"),
) {
let duration = left.signed_duration_since(right);
Ok(Value::Number(serde_json::Number::from(duration.num_days())))
} else if let (Ok(left), Ok(right)) = (
DateTime::parse_from_rfc3339(left),
DateTime::parse_from_rfc3339(right),
) {
let duration = left.signed_duration_since(right);
let millis = duration.num_milliseconds();
let days = millis as f64 / (1000.0 * 60.0 * 60.0 * 24.0);
Ok(Value::Number(
serde_json::Number::from_f64(days).ok_or(Error::InvalidNumber)?,
))
} else {
Err(Error::InvalidType)
}
}
match (self, left, right) {
(Self::Eq, Value::Null, Value::Null) => boolean(true),
(Self::Eq, Value::Null, _) => boolean(false),
(Self::Eq, _, Value::Null) => boolean(false),
(Self::Eq, Value::Bool(ref a), Value::Bool(ref b)) => boolean(a == b),
(Self::Eq, Value::Number(ref a), Value::Number(ref b)) => {
number(a, b, |a, b| a == b, |a, b| a == b)
}
(Self::Eq, Value::String(ref a), Value::String(ref b)) => boolean(a == b),
(Self::Eq, _, _) => Err(Error::InvalidType),
(Self::Ne, Value::Null, Value::Null) => boolean(false),
(Self::Ne, Value::Null, _) => boolean(true),
(Self::Ne, _, Value::Null) => boolean(true),
(Self::Ne, Value::Bool(ref a), Value::Bool(ref b)) => boolean(a != b),
(Self::Ne, Value::Number(ref a), Value::Number(ref b)) => {
number(a, b, |a, b| a != b, |a, b| a != b)
}
(Self::Ne, Value::String(ref a), Value::String(ref b)) => boolean(a != b),
(Self::Ne, _, _) => Err(Error::InvalidType),
(Self::Lt, Value::Null, Value::Null) => boolean(false),
(Self::Lt, Value::Null, _) => boolean(true),
(Self::Lt, _, Value::Null) => boolean(false),
(Self::Lt, Value::Bool(ref a), Value::Bool(ref b)) => boolean(a < b),
(Self::Lt, Value::Number(ref a), Value::Number(ref b)) => {
number(a, b, |a, b| a < b, |a, b| a < b)
}
(Self::Lt, Value::String(ref a), Value::String(ref b)) => boolean(a < b),
(Self::Lt, _, _) => Err(Error::InvalidType),
(Self::Lte, Value::Null, Value::Null) => boolean(true),
(Self::Lte, Value::Null, _) => boolean(true),
(Self::Lte, _, Value::Null) => boolean(false),
(Self::Lte, Value::Bool(ref a), Value::Bool(ref b)) => boolean(a <= b),
(Self::Lte, Value::Number(ref a), Value::Number(ref b)) => {
number(a, b, |a, b| a <= b, |a, b| a <= b)
}
(Self::Lte, Value::String(ref a), Value::String(ref b)) => boolean(a <= b),
(Self::Lte, _, _) => Err(Error::InvalidType),
(Self::Gt, Value::Null, Value::Null) => boolean(false),
(Self::Gt, Value::Null, _) => boolean(false),
(Self::Gt, _, Value::Null) => boolean(true),
(Self::Gt, Value::Bool(ref a), Value::Bool(ref b)) => boolean(a > b),
(Self::Gt, Value::Number(ref a), Value::Number(ref b)) => {
number(a, b, |a, b| a > b, |a, b| a > b)
}
(Self::Gt, Value::String(ref a), Value::String(ref b)) => boolean(a > b),
(Self::Gt, _, _) => Err(Error::InvalidType),
(Self::Gte, Value::Null, Value::Null) => boolean(true),
(Self::Gte, Value::Null, _) => boolean(false),
(Self::Gte, _, Value::Null) => boolean(true),
(Self::Gte, Value::Bool(ref a), Value::Bool(ref b)) => boolean(a >= b),
(Self::Gte, Value::Number(ref a), Value::Number(ref b)) => {
number(a, b, |a, b| a >= b, |a, b| a >= b)
}
(Self::Gte, Value::String(ref a), Value::String(ref b)) => boolean(a >= b),
(Self::Gte, _, _) => Err(Error::InvalidType),
(Self::Add, Value::Number(ref a), Value::Number(ref b)) => {
number(a, b, |a, b| a + b, |a, b| a + b)
}
(Self::Add, Value::String(ref s), Value::Number(ref t)) => add_date_number(s, t),
(Self::Add, Value::Number(ref t), Value::String(ref s)) => add_number_date(t, s),
(Self::Add, _, _) => Err(Error::InvalidType),
(Self::Sub, Value::Number(ref a), Value::Number(ref b)) => {
number(a, b, |a, b| a - b, |a, b| a - b)
}
(Self::Sub, Value::String(ref s), Value::Number(ref t)) => subtract_date_number(s, t),
(Self::Sub, Value::String(ref s), Value::String(ref t)) => subtract_date_date(s, t),
(Self::Sub, _, _) => Err(Error::InvalidType),
(Self::Mul, Value::Number(ref a), Value::Number(ref b)) => {
number(a, b, |a, b| a * b, |a, b| a * b)
}
(Self::Mul, _, _) => Err(Error::InvalidType),
(Self::Div, Value::Number(ref a), Value::Number(ref b)) => number_res(
a,
b,
|a, b| {
if b == 0.0 {
return Err(Error::DivideByZero);
}
Ok(a / b)
},
|a, b| {
if b == 0 {
return Err(Error::DivideByZero);
}
Ok(a / b)
},
),
(Self::Div, _, _) => Err(Error::InvalidType),
(Self::Mod, Value::Number(ref a), Value::Number(ref b)) => {
number(a, b, |a, b| a % b, |a, b| a % b)
}
(Self::Mod, _, _) => Err(Error::InvalidType),
(Self::Concat, Value::String(ref a), Value::String(ref b)) => string(format!("{a}{b}")),
(Self::Concat, _, _) => Err(Error::InvalidType),
(Self::Contains, Value::Array(ref left), right) => {
boolean(left.iter().any(|item| item == right))
}
(Self::Contains, _, _) => Err(Error::InvalidType),
(Self::In, left, Value::Array(ref right)) => {
boolean(right.iter().any(|item| item == left))
}
(Self::In, _, _) => Err(Error::InvalidType),
}
}
}
impl Expression {
/// Run the expression to completion and return the result
pub fn apply<'expr, 'val, T>(
&'expr self,
context: EvaluateContext<'_, 'val, T>,
) -> Result<Cow<'val, Value>, Error>
where
'expr: 'val,
{
self.apply_with_locals(context, &BTreeMap::default())
}
/// Run the expression to completion and return the result
///
/// Locals can be used to augment or override the provided JSON values.
pub fn apply_with_locals<'expr, 'val, T>(
&'expr self,
context: EvaluateContext<'_, 'val, T>,
locals: &BTreeMap<&'expr str, Cow<'val, Value>>,
) -> Result<Cow<'val, Value>, Error>
where
'expr: 'val,
{
let mut context = context;
self.apply_with_locals_inner(&mut context, locals)
}
fn apply_with_locals_inner<'expr, 'val, T>(
&'expr self,
context: &mut EvaluateContext<'_, 'val, T>,
locals: &BTreeMap<&'expr str, Cow<'val, Value>>,
) -> Result<Cow<'val, Value>, Error>
where
'expr: 'val,
{
match self {
Expression::Field(ref node) => {
if let Some(local) = locals.get(node.name()) {
Ok(local.clone())
} else {
Ok(context
.value()
.get(node.name())
.map(Cow::Borrowed)
.unwrap_or_else(|| Cow::Owned(Value::Null)))
}
}
Expression::LastField(ref node) => {
if let Some(previous_value) = context.previous_value() {
Ok(previous_value
.get(node.name())
.map(Cow::Borrowed)
.unwrap_or_else(|| Cow::Owned(Value::Null)))
} else {
Err(Error::LastUsedWithoutPreviousValue)
}
}
Expression::And(exprs) => {
for expr in exprs.iter() {
let result = expr.apply_with_locals_inner(context, locals)?;
match result.as_ref() {
Value::Bool(false) => {
// Early return false
return Ok(Cow::Owned(Value::Bool(false)));
}
Value::Bool(true) => {
// Keep making sure all are true
}
_ => return Err(Error::InvalidType),
}
}
Ok(Cow::Owned(Value::Bool(true)))
}
Expression::Or(exprs) => {
for expr in exprs.iter() {
let result = expr.apply_with_locals_inner(context, locals)?;
match result.as_ref() {
Value::Bool(true) => {
// Early return true
return Ok(Cow::Owned(Value::Bool(true)));
}
Value::Bool(false) => {
// Keep searching for a true
}
_ => return Err(Error::InvalidType),
}
}
Ok(Cow::Owned(Value::Bool(false)))
}
Expression::Iif(ref node) => {
let value = node.test().apply_with_locals_inner(context, locals)?;
match value.as_ref() {
Value::Bool(true) => node.t().apply_with_locals_inner(context, locals),
Value::Bool(false) => node.f().apply_with_locals_inner(context, locals),
_ => Err(Error::InvalidType),
}
}
Expression::Op(node) => {
let value1 = node.left().apply_with_locals_inner(context, locals)?;
let value2 = node.right().apply_with_locals_inner(context, locals)?;
node.op()
.apply(value1.as_ref(), value2.as_ref())
.map(Cow::Owned)
}
Expression::Literal(ref node) => Ok(Cow::Borrowed(node.value())),
Expression::Not(ref node) => {
let value = node.expression().apply_with_locals_inner(context, locals)?;
match value.as_ref() {
Value::Bool(ref b) => Ok(Cow::Owned(Value::Bool(!b))),
_ => Err(Error::InvalidType),
}
}
Expression::Function(ref node) => {
let args = node
.iter()
.map(|expression| expression.apply_with_locals_inner(context, locals))
.collect::<Result<Vec<_>, _>>()?;
let function = context
.engine()
.function(node.name())
.ok_or_else(|| Error::UnknownFunction(node.name().to_string()))?;
function
.evaluate(context.function_context(), args)
.map_err(Error::Function)
}
Expression::List(ref node) => {
let args = node
.iter()
.map(|expression| expression.apply_with_locals_inner(context, locals))
.collect::<Result<Vec<_>, _>>()?;
Ok(Cow::Owned(serde_json::json!(args)))
}
}
}
}
/// A trait that represents a list of expressions that can be used when creating nodes like
/// [`AndNode`] or [`FunctionNode`].
pub trait Expressions {
/// Create a list of expressions
fn to_vec(self) -> Vec<Expression>;
}
impl Expressions for Vec<Expression> {
fn to_vec(self) -> Vec<Expression> {
self
}
}
impl<const N: usize> Expressions for [Expression; N] {
fn to_vec(self) -> Vec<Expression> {
self.into_iter().collect()
}
}
/// An error that occured while evaluating an expression
#[derive(Debug)]
pub enum Error {
/// `LAST FieldName` was used but no previous value was provided
LastUsedWithoutPreviousValue,
/// The expression expected a certain type, but the value was not the expected type
InvalidType,
/// Some aspect of evaluation is not implemented
NotImplemented,
/// The expression did not result in a number that can be used
InvalidNumber,
/// The expression attempted to divide by zero
DivideByZero,
/// A function call was used to a function that does not exist
UnknownFunction(String),
/// A function call failed
Function(function::FunctionError),
}
/// Visit nodes in the Expression
///
/// Use this to transform expressions or to inspect the structure of expressions without recursively
/// evaluating them.
///
/// ## Example
///
/// ```
/// use rets_expression::{Expression, Visitor, FunctionNode, LiteralNode};
/// let mut expression = "5 .IN. (1, 2, Three, LAST Four, Five)"
/// .parse::<Expression>()
/// .unwrap();
///
/// /// A visitor that rewrites native lists into `LIST` function calls.
/// struct RewriteNativeListVisitor;
///
/// impl Visitor for RewriteNativeListVisitor {
/// fn visit_list_expression_in(&mut self, expression: &mut Expression) {
/// let list_expression = std::mem::replace(
/// expression,
/// Expression::Literal(LiteralNode::new(serde_json::Value::Null)),
/// );
/// let Expression::List(list_node) = list_expression else {
/// unreachable!()
/// };
/// let function_node = FunctionNode::new("LIST", list_node.items);
/// let function_expression = Expression::from(function_node);
/// *expression = function_expression;
/// }
/// }
///
/// expression.accept(&mut RewriteNativeListVisitor);
///
/// let serialized = expression.serialize().unwrap();
/// assert_eq!(serialized, "5 .IN. LIST(1, 2, Three, LAST Four, Five)");
/// ```
#[allow(unused_variables)]
pub trait Visitor {
/// Called when the visitor visits an expression before calling any of the other visit methods
fn visit_expression_in(&mut self, expression: &mut Expression) {}
/// Called then the visitor visits an expression after calling all of the other visit methods
fn visit_expression_out(&mut self, expression: &mut Expression) {}
/// Called when the visitor visits a [`FieldNode`]
fn visit_field_node(&mut self, node: &mut FieldNode) {}
/// Called when the visitor visits a [`LastFieldNode`]
fn visit_last_field_node(&mut self, node: &mut LastFieldNode) {}
/// Called when the visitor visits an [`AndNode`] before visiting its children
fn visit_and_node_in(&mut self, node: &mut AndNode) {}
/// Called when the visitor visits an [`AndNode`] after visiting its children
fn visit_and_node_out(&mut self, node: &mut AndNode) {}
/// Called when the visitor visits an [`OrNode`] before visiting its children
fn visit_or_node_in(&mut self, node: &mut OrNode) {}
/// Called when the visitor visits an [`OrNode`] after visiting its children
fn visit_or_node_out(&mut self, node: &mut OrNode) {}
/// Called when the visitor visits a [`NotNode`] before visiting its child
fn visit_not_node_in(&mut self, node: &mut NotNode) {}
/// Called when the visitor visits a [`NotNode`] after visiting its child
fn visit_not_node_out(&mut self, node: &mut NotNode) {}
/// Called when the visitor visits an [`OpNode`] before visiting its children
fn visit_op_node_in(&mut self, node: &mut OpNode) {}
/// Called when the visitor visits an [`OpNode`] after visiting its children
fn visit_op_node_out(&mut self, node: &mut OpNode) {}
/// Called when the visitor visits a [`LiteralNode`]
fn visit_literal_node(&mut self, node: &mut LiteralNode) {}
/// Called when the visitor visits a [`FunctionNode`] before visiting its children
fn visit_function_node_in(&mut self, node: &mut FunctionNode) {}
/// Called when the visitor visits a [`FunctionNode`] after visiting its children
fn visit_function_node_out(&mut self, node: &mut FunctionNode) {}
/// Called when the visitor visits a [`IifNode`] before visiting its children
fn visit_iif_node_in(&mut self, node: &mut IifNode) {}
/// Called when the visitor visits a [`IifNode`] after visiting its children
fn visit_iif_node_out(&mut self, node: &mut IifNode) {}
/// Called when the visitor visits a [`ListNode`] before visiting its children
fn visit_list_node_in(&mut self, node: &mut ListNode) {}
/// Called when the visitor visits a [`ListNode`] after visiting its children
fn visit_list_node_out(&mut self, node: &mut ListNode) {}
/// Called when the visitor visits an expression representing a [`FieldNode`]
fn visit_field_expression(&mut self, expression: &mut Expression) {}
/// Called when the visitor visits an expression representing a [`LastFieldNode`]
fn visit_last_field_expression(&mut self, expression: &mut Expression) {}
/// Called when the visitor visits ann expression representing a [`AndNode`] before visiting its children
fn visit_and_expression_in(&mut self, expression: &mut Expression) {}
/// Called when the visitor visits ann expression representing a [`AndNode`] after visiting its children
fn visit_and_expression_out(&mut self, expression: &mut Expression) {}
/// Called when the visitor visits ann expression representing a [`OrNode`] before visiting its children
fn visit_or_expression_in(&mut self, expression: &mut Expression) {}
/// Called when the visitor visits ann expression representing a [`OrNode`] after visiting its children
fn visit_or_expression_out(&mut self, expression: &mut Expression) {}
/// Called when the visitor visits an expression representing a [`NotNode`] before visiting its child
fn visit_not_expression_in(&mut self, expression: &mut Expression) {}
/// Called when the visitor visits an expression representing a [`NotNode`] after visiting its child
fn visit_not_expression_out(&mut self, expression: &mut Expression) {}
/// Called when the visitor visits ann expression representing a [`OpNode`] before visiting its children
fn visit_op_expression_in(&mut self, expression: &mut Expression) {}
/// Called when the visitor visits ann expression representing a [`OpNode`] after visiting its children
fn visit_op_expression_out(&mut self, expression: &mut Expression) {}
/// Called when the visitor visits an expression representing a [`LiteralNode`]
fn visit_literal_expression(&mut self, expression: &mut Expression) {}
/// Called when the visitor visits an expression representing a [`FunctionNode`] before visiting its children
fn visit_function_expression_in(&mut self, expression: &mut Expression) {}
/// Called when the visitor visits an expression representing a [`FunctionNode`] after visiting its children
fn visit_function_expression_out(&mut self, expression: &mut Expression) {}
/// Called when the visitor visits an expression representing a [`IifNode`] before visiting its children
fn visit_iif_expression_in(&mut self, expression: &mut Expression) {}
/// Called when the visitor visits an expression representing a [`IifNode`] after visiting its children
fn visit_iif_expression_out(&mut self, expression: &mut Expression) {}
/// Called when the visitor visits an expression representing a [`ListNode`] before visiting its children
fn visit_list_expression_in(&mut self, expression: &mut Expression) {}
/// Called when the visitor visits an expression representing a [`ListNode`] after visiting its children
fn visit_list_expression_out(&mut self, expression: &mut Expression) {}
}
#[cfg(all(feature = "std", test))]
mod tests {
use super::*;
use serde_json::json;
#[test]
fn test_basic() {
let value = json!({
"X": 1700,
"Y": 400,
"Z": 1700,
});
let previous_value = json!({
"X": 1700,
"Y": 300,
});
let expression = "X = LAST X .AND. Y = LAST Y .OR. X = Z"
.parse::<Expression>()
.unwrap();
let engine = Engine::default();
let context = EvaluateContext::new(&engine, &value).with_previous(&previous_value);
let value = expression.apply(context).unwrap();
assert_eq!(value.into_owned(), json!(true));
}
#[test]
fn test_visitor() {
let mut expression = "5 .IN. (1, 2, Three, LAST Four, Five)"
.parse::<Expression>()
.unwrap();
struct RewriteNativeListVisitor;
impl Visitor for RewriteNativeListVisitor {
fn visit_list_expression_in(&mut self, expression: &mut Expression) {
let list_expression = std::mem::replace(
expression,
Expression::Literal(LiteralNode::new(serde_json::Value::Null)),
);
let Expression::List(list_node) = list_expression else {
unreachable!()
};
let function_node = FunctionNode::new("LIST", list_node.items);
let function_expression = Expression::from(function_node);
*expression = function_expression;
}
}
expression.accept(&mut RewriteNativeListVisitor);
let serialized = expression.serialize().unwrap();
assert_eq!(serialized, "5 .IN. LIST(1, 2, Three, LAST Four, Five)");
}
}