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
use core::borrow::Borrow;
use std::collections::HashMap;
use std::collections::linked_list::LinkedList;
use std::ops::Deref;

use crate::engine::node::Node;
use crate::engine::node::NodeType::{NBinary, NOpt};
use crate::engine::runtime::{is_number, OptMap, parser_tokens};

pub fn parse(express: &str, opt_map: &OptMap) -> Result<Node, rbatis_core::Error> {
    let express = express.replace("none", "null").replace("None", "null");
    let tokens = parser_tokens(&express, opt_map);
    let mut nodes = vec![];
    for item in tokens {
        let node = Node::parser(item.as_str(), opt_map);
        if node.node_type == NOpt {
            let is_allow_opt = opt_map.is_allow_opt(item.as_str());
            if !is_allow_opt {
                panic!("[rbatis] find not support opt:".to_owned() + item.as_str());
            }
        }
        nodes.push(Box::new(node));
    }
    //TODO check nodes
    for item in opt_map.priority_array() {
        find_replace_opt(opt_map, &express, &item, &mut nodes);
    }
    if nodes.len() > 0 {
        return Result::Ok(nodes[0].deref().clone());
    } else {
        return Result::Err(rbatis_core::Error::from("[rbatis] parser express fail".to_string()));
    }
}

fn find_replace_opt(opt_map: &OptMap, express: &String, operator: &str, node_arg: &mut Vec<Box<Node>>) {
    //let nodes=vec![];
    let mut index = 0 as i32;
    let node_arg_len = node_arg.len();
    for item in node_arg.clone() {
        let item_type = item.node_type();
        if item_type as i32 == NOpt as i32 && operator == item.opt().unwrap() {
            let left_index = (index - 1) as usize;
            let right_index = (index + 1) as usize;
            let left = node_arg[left_index].clone();
            let right = node_arg[right_index].clone();
            let binary_node = Node::new_binary(left, right, item.opt().unwrap());

            node_arg.remove(right_index);
            node_arg.remove(index as usize);
            node_arg.remove(left_index);

            node_arg.insert(left_index, Box::new(binary_node));
            if have_opt(node_arg) {
                find_replace_opt(opt_map, express, operator, node_arg);
            }
            break;
        }
        index = index + 1;
    }
}

fn have_opt(node_arg: &mut Vec<Box<Node>>) -> bool {
    for item in node_arg {
        if item.node_type() as i32 == NOpt as i32 {
            return true;
        }
    }
    return false;
}