oca_file/ocafile/
mod.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
pub mod error;

use std::collections::HashMap;

use self::error::ParseError;
use oca_file_semantics::ocafile::{
    parse_from_string as semantics_parse_from_string, OCAAst as SemanticsAst,
};
use oca_file_transformation::ocafile::{
    parse_from_string as transformation_parse_from_string,
    TransformationAST,
};
use pest::Parser;

#[derive(pest_derive::Parser)]
#[grammar = "ocafile.pest"]
pub struct OCAfileParser;

#[derive(Debug)]
pub enum OCAAst {
    TransformationAst(TransformationAST),
    SemanticsAst(SemanticsAst),
}

pub type Pair<'a> = pest::iterators::Pair<'a, Rule>;

pub fn parse_from_string(unparsed_file: String) -> Result<OCAAst, ParseError> {
    let file = OCAfileParser::parse(Rule::file, &unparsed_file)
        .map_err(|e| {
            let (line_number, column_number) = match e.line_col {
                pest::error::LineColLocation::Pos((line, column)) => {
                    (line, column)
                }
                pest::error::LineColLocation::Span((line, column), _) => {
                    (line, column)
                }
            };
            ParseError::GrammarError {
                line_number,
                column_number,
                raw_line: e.line().to_string(),
                message: e.variant.to_string(),
            }
        })?
        .next()
        .unwrap();

    let mut meta = HashMap::new();

    for line in file.into_inner() {
        if let Rule::EOI = line.as_rule() {
            continue;
        }
        if let Rule::comment = line.as_rule() {
            continue;
        }
        if let Rule::meta_comment = line.as_rule() {
            let mut key = "".to_string();
            let mut value = "".to_string();
            for attr in line.into_inner() {
                match attr.as_rule() {
                    Rule::meta_attr_key => {
                        key = attr.as_str().to_string();
                    }
                    Rule::meta_attr_value => {
                        value = attr.as_str().to_string();
                    }
                    _ => {
                        return Err(ParseError::MetaError(
                            attr.as_str().to_string(),
                        ));
                    }
                }
            }
            if key.is_empty() {
                return Err(ParseError::MetaError("key is empty".to_string()));
            }
            if value.is_empty() {
                return Err(ParseError::MetaError(
                    "value is empty".to_string(),
                ));
            }
            meta.insert(key, value);
            continue;
        }
        if let Rule::commands = line.as_rule() {
            continue;
        }
        if let Rule::empty_line = line.as_rule() {
            continue;
        }
    }

    if let Some(value) = meta.get("precompiler") {
        if value == "transformation" {
            return Ok(OCAAst::TransformationAst(
                transformation_parse_from_string(unparsed_file).map_err(
                    ParseError::TransformationError,
                )?
            ));
        } else if value == "semantics" {
            return Ok(OCAAst::SemanticsAst(
                semantics_parse_from_string(unparsed_file).map_err(
                    ParseError::SemanticsError,
                )?
            ));
        } else {
            return Err(ParseError::MetaError("unknown precompiler".to_string()));
        }
    }

    Ok(OCAAst::SemanticsAst(
        semantics_parse_from_string(unparsed_file).map_err(
            ParseError::SemanticsError,
        )?
    ))
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn parse_transformation_from_string_valid() {
        let _ = env_logger::builder().is_test(true).try_init();

        let unparsed_file = r#"
-- precompiler=transformation
-- version=0.0.1
-- name=Objekt
RENAME ATTRIBUTE surname=last_name
"#;
        let oca_ast = parse_from_string(unparsed_file.to_string()).unwrap();
        assert!(matches!(oca_ast, OCAAst::TransformationAst(_)));
    }

    #[test]
    fn parse_semantics_from_string_valid() {
        let _ = env_logger::builder().is_test(true).try_init();

        let unparsed_file = r#"
-- precompiler=semantics
-- version=0.0.1
-- name=Objekt
ADD ATTRIBUTE surname=Text
"#;
        let oca_ast = parse_from_string(unparsed_file.to_string()).unwrap();
        assert!(matches!(oca_ast, OCAAst::SemanticsAst(_)));
    }

    #[test]
    fn parse_semantics_from_string_by_default() {
        let _ = env_logger::builder().is_test(true).try_init();

        let unparsed_file = r#"
-- version=0.0.1
-- name=Objekt
ADD ATTRIBUTE surname=Text
"#;
        let oca_ast = parse_from_string(unparsed_file.to_string()).unwrap();
        assert!(matches!(oca_ast, OCAAst::SemanticsAst(_)));
    }
}