1#![allow(clippy::type_complexity)]
7#![allow(deprecated)]
8
9use crate::engine::rule::{Condition, ConditionGroup, Rule};
10use crate::errors::{Result, RuleEngineError};
11use crate::parser::GRLParser;
12use crate::rete::facts::{FactValue, TypedFacts};
13use crate::rete::propagation::IncrementalEngine;
14use crate::rete::{AlphaNode, ReteUlNode, TypedReteUlRule};
15use crate::types::{Operator, Value};
16use log::info;
17use std::fs;
18use std::path::Path;
19
20#[cfg(feature = "streaming")]
21use crate::rete::network::{StreamWindowSpec, StreamWindowTypeRete};
22
23pub struct GrlReteLoader;
26
27impl GrlReteLoader {
28 pub fn load_from_file<P: AsRef<Path>>(
30 path: P,
31 engine: &mut IncrementalEngine,
32 ) -> Result<usize> {
33 let grl_text =
34 fs::read_to_string(path.as_ref()).map_err(|e| RuleEngineError::ParseError {
35 message: format!("Failed to read GRL file: {}", e),
36 })?;
37
38 Self::load_from_string(&grl_text, engine)
39 }
40
41 pub fn load_from_string(grl_text: &str, engine: &mut IncrementalEngine) -> Result<usize> {
43 let rules = GRLParser::parse_rules(grl_text)?;
45
46 let mut loaded_count = 0;
47
48 for rule in rules {
49 let rete_rule = Self::convert_rule_to_rete(rule)?;
51
52 let dependencies = Self::extract_dependencies(&rete_rule);
54
55 engine.add_rule(rete_rule, dependencies);
57 loaded_count += 1;
58 }
59
60 Ok(loaded_count)
61 }
62
63 fn convert_rule_to_rete(rule: Rule) -> Result<TypedReteUlRule> {
65 let node = Self::convert_condition_group(&rule.conditions)?;
67
68 let rete_rule = TypedReteUlRule {
70 name: rule.name.clone(),
71 node,
72 priority: rule.salience,
73 no_loop: rule.no_loop,
74 action: Self::create_action_closure(rule.actions),
75 };
76
77 Ok(rete_rule)
78 }
79
80 fn convert_condition_group(group: &ConditionGroup) -> Result<ReteUlNode> {
82 match group {
83 ConditionGroup::Single(condition) => Self::convert_condition(condition),
84 ConditionGroup::Compound {
85 left,
86 operator,
87 right,
88 } => {
89 let left_node = Self::convert_condition_group(left)?;
90 let right_node = Self::convert_condition_group(right)?;
91
92 match operator {
93 crate::types::LogicalOperator::And => {
94 Ok(ReteUlNode::UlAnd(Box::new(left_node), Box::new(right_node)))
95 }
96 crate::types::LogicalOperator::Or => {
97 Ok(ReteUlNode::UlOr(Box::new(left_node), Box::new(right_node)))
98 }
99 crate::types::LogicalOperator::Not => {
100 Ok(ReteUlNode::UlNot(Box::new(left_node)))
102 }
103 }
104 }
105 ConditionGroup::Not(inner) => {
106 let inner_node = Self::convert_condition_group(inner)?;
107 Ok(ReteUlNode::UlNot(Box::new(inner_node)))
108 }
109 ConditionGroup::Exists(inner) => {
110 let inner_node = Self::convert_condition_group(inner)?;
111 Ok(ReteUlNode::UlExists(Box::new(inner_node)))
112 }
113 ConditionGroup::Forall(inner) => {
114 let inner_node = Self::convert_condition_group(inner)?;
115 Ok(ReteUlNode::UlForall(Box::new(inner_node)))
116 }
117 ConditionGroup::Accumulate {
118 result_var,
119 source_pattern,
120 extract_field,
121 source_conditions,
122 function,
123 function_arg,
124 } => Ok(ReteUlNode::UlAccumulate {
125 result_var: result_var.clone(),
126 source_pattern: source_pattern.clone(),
127 extract_field: extract_field.clone(),
128 source_conditions: source_conditions.clone(),
129 function: function.clone(),
130 function_arg: function_arg.clone(),
131 }),
132 #[cfg(feature = "streaming")]
133 ConditionGroup::StreamPattern {
134 var_name,
135 event_type,
136 stream_name,
137 window,
138 } => {
139 Ok(ReteUlNode::UlStream {
141 var_name: var_name.clone(),
142 event_type: event_type.clone(),
143 stream_name: stream_name.clone(),
144 window: window.as_ref().map(|w| StreamWindowSpec {
145 duration: w.duration,
146 window_type: match &w.window_type {
147 crate::engine::rule::StreamWindowType::Sliding => {
148 StreamWindowTypeRete::Sliding
149 }
150 crate::engine::rule::StreamWindowType::Tumbling => {
151 StreamWindowTypeRete::Tumbling
152 }
153 crate::engine::rule::StreamWindowType::Session { timeout } => {
154 StreamWindowTypeRete::Session { timeout: *timeout }
155 }
156 },
157 }),
158 })
159 }
160 }
161 }
162
163 fn convert_condition(condition: &Condition) -> Result<ReteUlNode> {
165 use crate::engine::rule::ConditionExpression;
166
167 match &condition.expression {
169 ConditionExpression::MultiField {
170 field,
171 operation,
172 variable: _,
173 } => {
174 let operator_str = Self::operator_to_string(&condition.operator);
176 let value_str = if !matches!(condition.value, Value::Boolean(_)) {
177 Some(Self::value_to_string(&condition.value))
178 } else {
179 None
180 };
181
182 let (op, cmp_val) = if operation == "count" && operator_str != "==" {
184 (Some(operator_str), value_str)
186 } else {
187 (None, value_str)
189 };
190
191 Ok(ReteUlNode::UlMultiField {
192 field: field.clone(),
193 operation: operation.clone(),
194 value: if operation == "contains" {
195 cmp_val.clone()
196 } else {
197 None
198 },
199 operator: op,
200 compare_value: if operation == "count" { cmp_val } else { None },
201 })
202 }
203 _ => {
204 let operator_str = Self::operator_to_string(&condition.operator);
206 let value_str = Self::value_to_string(&condition.value);
207
208 let alpha = AlphaNode {
209 field: condition.field.clone(),
210 operator: operator_str,
211 value: value_str,
212 };
213
214 Ok(ReteUlNode::UlAlpha(alpha))
215 }
216 }
217 }
218
219 fn operator_to_string(op: &Operator) -> String {
221 match op {
222 Operator::Equal => "==".to_string(),
223 Operator::NotEqual => "!=".to_string(),
224 Operator::GreaterThan => ">".to_string(),
225 Operator::GreaterThanOrEqual => ">=".to_string(),
226 Operator::LessThan => "<".to_string(),
227 Operator::LessThanOrEqual => "<=".to_string(),
228 Operator::Contains => "contains".to_string(),
229 Operator::NotContains => "!contains".to_string(),
230 Operator::StartsWith => "startsWith".to_string(),
231 Operator::EndsWith => "endsWith".to_string(),
232 Operator::Matches => "matches".to_string(),
233 }
234 }
235
236 fn value_to_string(value: &Value) -> String {
238 match value {
239 Value::Number(n) => n.to_string(),
240 Value::Integer(i) => i.to_string(),
241 Value::String(s) => s.clone(),
242 Value::Boolean(b) => b.to_string(),
243 Value::Null => "null".to_string(),
244 Value::Array(arr) => {
245 let items: Vec<String> = arr.iter().map(Self::value_to_string).collect();
247 format!("[{}]", items.join(","))
248 }
249 Value::Object(_) => {
250 "object".to_string()
252 }
253 Value::Expression(expr) => {
254 expr.clone()
256 }
257 }
258 }
259
260 fn create_action_closure(
262 actions: Vec<crate::types::ActionType>,
263 ) -> std::sync::Arc<dyn Fn(&mut TypedFacts, &mut super::ActionResults) + Send + Sync> {
264 std::sync::Arc::new(
265 move |facts: &mut TypedFacts, results: &mut super::ActionResults| {
266 for action in &actions {
268 Self::execute_action(action, facts, results);
269 }
270 },
271 )
272 }
273
274 fn execute_action(
276 action: &crate::types::ActionType,
277 facts: &mut TypedFacts,
278 results: &mut super::ActionResults,
279 ) {
280 use crate::types::ActionType;
281
282 match action {
283 ActionType::Set { field, value } => {
284 let evaluated_value = match value {
290 Value::Expression(expr) => {
291 Self::evaluate_expression_for_rete(expr, facts)
293 }
294 _ => value.clone(),
295 };
296
297 let fact_value = Self::value_to_fact_value(&evaluated_value);
299 facts.set(field, fact_value);
300 }
301 ActionType::Log { message } => {
302 info!("📝 {}", message);
303 }
304 ActionType::MethodCall {
305 object,
306 method,
307 args,
308 } => {
309 let mut all_args = vec![object.clone()];
311 all_args.extend(args.iter().map(Self::value_to_string));
312
313 results.add(super::ActionResult::CallFunction {
314 function_name: format!("{}.{}", object, method),
315 args: all_args,
316 });
317 println!("� METHOD: {}.{}", object, method);
318 }
319 ActionType::Retract { object } => {
320 let object_name = object.trim_matches('"');
322
323 if let Some(handle) = facts.get_fact_handle(object_name) {
325 results.add(super::ActionResult::Retract(handle));
327 println!("🗑️ RETRACT: {} (handle: {:?})", object_name, handle);
328 } else {
329 results.add(super::ActionResult::RetractByType(object_name.to_string()));
331 println!("🗑️ RETRACT: {} (by type, no handle found)", object_name);
332 }
333 }
334 ActionType::Custom {
335 action_type,
336 params,
337 } => {
338 let args: Vec<String> = params.values().map(Self::value_to_string).collect();
340
341 results.add(super::ActionResult::CallFunction {
342 function_name: action_type.clone(),
343 args,
344 });
345 println!("🔧 CUSTOM CALL: {}", action_type);
346 }
347 ActionType::ActivateAgendaGroup { group } => {
348 results.add(super::ActionResult::ActivateAgendaGroup(group.clone()));
350 println!("📋 ACTIVATE GROUP: {}", group);
351 }
352 ActionType::ScheduleRule {
353 rule_name,
354 delay_ms,
355 } => {
356 results.add(super::ActionResult::ScheduleRule {
358 rule_name: rule_name.clone(),
359 delay_ms: *delay_ms,
360 });
361 println!("⏰ SCHEDULE: {} (delay: {}ms)", rule_name, delay_ms);
362 }
363 ActionType::CompleteWorkflow { workflow_name } => {
364 let completion_key = format!("workflow.{}.completed", workflow_name);
366 facts.set(&completion_key, FactValue::Boolean(true));
367
368 let timestamp_key = format!("workflow.{}.completed_at", workflow_name);
369 facts.set(
370 ×tamp_key,
371 FactValue::Integer(chrono::Utc::now().timestamp()),
372 );
373
374 println!("✔️ WORKFLOW COMPLETED: {}", workflow_name);
375 }
376 ActionType::SetWorkflowData { key, value } => {
377 let data_key = format!("workflow.data.{}", key);
379 let fact_value = Self::value_to_fact_value(value);
380 facts.set(&data_key, fact_value);
381
382 println!("📊 WORKFLOW DATA SET: {} = {:?}", key, value);
383 }
384 }
385 }
386
387 fn value_to_fact_value(value: &Value) -> FactValue {
389 match value {
390 Value::Number(n) => {
391 if n.fract() == 0.0 {
393 FactValue::Integer(*n as i64)
394 } else {
395 FactValue::Float(*n)
396 }
397 }
398 Value::Integer(i) => FactValue::Integer(*i),
399 Value::String(s) => FactValue::String(s.clone()),
400 Value::Boolean(b) => FactValue::Boolean(*b),
401 Value::Null => FactValue::Null,
402 Value::Array(arr) => {
403 let fact_arr: Vec<FactValue> = arr.iter().map(Self::value_to_fact_value).collect();
404 FactValue::Array(fact_arr)
405 }
406 Value::Object(_) => {
407 FactValue::String("object".to_string())
409 }
410 Value::Expression(expr) => {
411 FactValue::String(format!("[EXPR: {}]", expr))
413 }
414 }
415 }
416
417 fn extract_dependencies(rule: &TypedReteUlRule) -> Vec<String> {
419 let mut deps = Vec::new();
420 Self::extract_deps_from_node(&rule.node, &mut deps);
421
422 deps.sort();
424 deps.dedup();
425
426 deps
427 }
428
429 fn extract_deps_from_node(node: &ReteUlNode, deps: &mut Vec<String>) {
431 match node {
432 ReteUlNode::UlAlpha(alpha) => {
433 if let Some(dot_pos) = alpha.field.find('.') {
435 let fact_type = alpha.field[..dot_pos].to_string();
436 deps.push(fact_type);
437 }
438 }
439 ReteUlNode::UlMultiField { field, .. } => {
440 if let Some(dot_pos) = field.find('.') {
442 let fact_type = field[..dot_pos].to_string();
443 deps.push(fact_type);
444 }
445 }
446 ReteUlNode::UlAnd(left, right) | ReteUlNode::UlOr(left, right) => {
447 Self::extract_deps_from_node(left, deps);
448 Self::extract_deps_from_node(right, deps);
449 }
450 ReteUlNode::UlNot(inner)
451 | ReteUlNode::UlExists(inner)
452 | ReteUlNode::UlForall(inner) => {
453 Self::extract_deps_from_node(inner, deps);
454 }
455 ReteUlNode::UlAccumulate { source_pattern, .. } => {
456 deps.push(source_pattern.clone());
458 }
459 #[cfg(feature = "streaming")]
460 ReteUlNode::UlStream { stream_name, .. } => {
461 deps.push(stream_name.clone());
463 }
464 ReteUlNode::UlTerminal(_) => {
465 }
467 }
468 }
469
470 fn evaluate_expression_for_rete(expr: &str, typed_facts: &TypedFacts) -> Value {
472 use crate::engine::facts::Facts;
474
475 let facts = Facts::new();
476
477 for (key, value) in typed_facts.get_all() {
481 let converted_value = Self::fact_value_to_value(value);
482
483 facts.set(key, converted_value.clone());
486
487 if !key.contains('.') {
489 facts.set(&format!("Order.{}", key), converted_value);
490 }
491 }
492
493 match crate::expression::evaluate_expression(expr, &facts) {
495 Ok(result) => result,
496 Err(_e) => {
497 Value::String(expr.to_string())
500 }
501 }
502 }
503
504 fn fact_value_to_value(fact_value: &FactValue) -> Value {
506 match fact_value {
507 FactValue::String(s) => {
508 if let Ok(i) = s.parse::<i64>() {
510 Value::Integer(i)
511 } else if let Ok(f) = s.parse::<f64>() {
512 Value::Number(f)
513 } else if s == "true" {
514 Value::Boolean(true)
515 } else if s == "false" {
516 Value::Boolean(false)
517 } else {
518 Value::String(s.clone())
519 }
520 }
521 FactValue::Integer(i) => Value::Integer(*i),
522 FactValue::Float(f) => Value::Number(*f),
523 FactValue::Boolean(b) => Value::Boolean(*b),
524 FactValue::Array(arr) => {
525 Value::Array(arr.iter().map(Self::fact_value_to_value).collect())
526 }
527 FactValue::Null => Value::Null,
528 }
529 }
530}
531
532#[cfg(test)]
533mod tests {
534 use super::*;
535
536 #[test]
537 fn test_convert_simple_rule() {
538 let grl = r#"
539 rule "TestRule" salience 10 no-loop {
540 when
541 Person.age > 18
542 then
543 Person.is_adult = true;
544 }
545 "#;
546
547 let rules = GRLParser::parse_rules(grl).unwrap();
548 assert_eq!(rules.len(), 1);
549
550 let rete_rule = GrlReteLoader::convert_rule_to_rete(rules[0].clone()).unwrap();
551 assert_eq!(rete_rule.name, "TestRule");
552 assert_eq!(rete_rule.priority, 10);
553 assert!(rete_rule.no_loop);
554 }
555
556 #[test]
557 fn test_extract_dependencies() {
558 let grl = r#"
559 rule "MultiTypeRule" {
560 when
561 Person.age > 18 && Order.amount > 1000
562 then
563 Person.premium = true;
564 }
565 "#;
566
567 let rules = GRLParser::parse_rules(grl).unwrap();
568 let rete_rule = GrlReteLoader::convert_rule_to_rete(rules[0].clone()).unwrap();
569 let deps = GrlReteLoader::extract_dependencies(&rete_rule);
570
571 assert_eq!(deps.len(), 2);
572 assert!(deps.contains(&"Person".to_string()));
573 assert!(deps.contains(&"Order".to_string()));
574 }
575
576 #[test]
577 fn test_load_from_string() {
578 let grl = r#"
579 rule "Rule1" {
580 when
581 Person.age > 18
582 then
583 Person.is_adult = true;
584 }
585
586 rule "Rule2" {
587 when
588 Order.amount > 1000
589 then
590 Order.high_value = true;
591 }
592 "#;
593
594 let mut engine = IncrementalEngine::new();
595 let count = GrlReteLoader::load_from_string(grl, &mut engine).unwrap();
596
597 assert_eq!(count, 2);
598 }
599}