aboutsummaryrefslogtreecommitdiff
path: root/src/parse/parsetree.rs
blob: 6d59cf10ce031c8d581f30ba02845c045338967f (plain)
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

use nom::{
    IResult,
    Parser,
    branch::alt,
    multi::many0,
    bytes::complete::{tag, take_while1},
    character::complete::multispace1,
};

use crate::sexp::{SExp, SExp::*, SLeaf::*, util::*};


#[derive(Debug,PartialEq)]
pub enum Token {
    ParOpen,
    ParClose,
    Num(i32),
    Sym(String),
    Whitespace(String),
}

use Token::*;
use crate::parse::util::*;

fn parse_token(s: &str) -> IResult<&str, Token> {
    alt((
            tag("(").map(|_| ParOpen),
            tag(")").map(|_| ParClose),
            multispace1.map(whitespace),
            nom::character::complete::i32.map(Num),
            take_while1(|c| !(" \n\t()".contains(c))).map(sym),
    )).parse(s)
}

fn tokenize(s: &str) -> Result<Vec<Token>, String> {
    match many0(parse_token).parse(s) {
        Ok(("", res)) => Ok(res),
        Ok((rest, _)) => Err(format!("all data should be tokenizable, '{rest}' was not")),
        Err(e) => Err(e.to_string()),
    }
}


fn tokens_to_ast(tokens: Vec<Token>) -> Result<SExp, String> {
    todo!()
}


#[cfg(test)]
mod private_parsing_tests {
    use super::{*, parse_token};

    #[test]
    fn test_parse_token() {
        assert_eq!(parse_token("()"), Ok((")", ParOpen)));
        assert_eq!(parse_token(")"), Ok(("", ParClose)));

        assert_eq!(parse_token(" \t\n"), Ok(("", whitespace(" \t\n"))));

        assert_eq!(parse_token("1 23"), Ok((" 23", Num(1))));
        assert_eq!(parse_token("23"), Ok(("", Num(23))));

        assert_eq!(parse_token("Nil a"), Ok((" a", sym("Nil"))));
        assert_eq!(parse_token("a"), Ok(("", sym("a"))));

        assert!(parse_token("").is_err())
    }

    #[test]
    fn test_tokenize() {
        assert_eq!(
            tokenize("(+ 1 2 (\t\n a)").unwrap(),
            vec![
                ParOpen,
                sym("+"), whitespace(" "),
                Num(1), whitespace(" "),
                Num(2), whitespace(" "),
                ParOpen, whitespace("\t\n "),
                sym("a"),
                ParClose
            ]
        );
    }

    #[test]
    fn test_tokens_to_ast() {
	// Syms are parsed to vars,
	// and everything is wrapped in an extra layer of scons
	// so that multi-expression programs can be returned
	// as one single SExp.
	assert_eq!(
	    tokens_to_ast(vec![sym("a")]),
	    Ok(scons(var("a"), Nil))
	);

	// Lists are pased to scons linked lists
        assert_eq!(
            tokens_to_ast(vec![
		ParOpen,
		sym("a"), whitespace(" "),
		sym("b"), whitespace(" "),
		sym("c"), whitespace(" "),
		ParClose,
	    ]),
	    Ok(scons(scons(var("a"), scons(var("b"), scons(var("c"), Nil))), Nil))
        );

	// Nesting should work.
	assert_eq!(
	    tokens_to_ast(vec![
		ParOpen,
		sym("a"), whitespace(" "),
		ParOpen,
		sym("b"), whitespace(" "),
		sym("c"), whitespace(" "),
		ParClose, whitespace(" "),
		sym("d"),
		ParClose
	    ]),
	    Ok(
		scons(scons(var("a"), scons(
		    scons(var("b"), scons(var("c"), Nil))
		, scons(var("d"), Nil))), Nil)
	    )
	);

	// Multiple expressions should be parseable
	assert_eq!(
	    tokens_to_ast(vec![
		ParOpen,
		sym("a"),
		ParClose,
		sym("b"),
		ParOpen,
		sym("c"),
		ParClose,
	    ]),
	    Ok(scons(
		scons(var("a"), Nil),
		scons(var("b"),
		scons(scons(var("c"), Nil), Nil))))
	);

	// Operators are parsed correctly
	assert_eq!(
	    tokens_to_ast(vec![
		ParOpen,
		sym("+"), whitespace(" "),
		sym("-"), whitespace(" "),
		sym("*"), whitespace(" "),
		sym("/"),
		ParClose
	    ]),
	    Ok(scons(
		scons(Add,
		      scons(Sub,
			    scons(Mul,
				  scons(Div,
					Nil)))), Nil))
	);

	// Integers are parsed correctly
	assert_eq!(
	    tokens_to_ast(vec![Num(5)]),
	    Ok(scons(Int(5), Nil))
	);

	// Nil can be parsed
	assert_eq!(
	    tokens_to_ast(vec![ParOpen,ParClose]),
	    Ok(scons(Nil, Nil))
	);

	// Quote can be parsed
	assert_eq!(
	    tokens_to_ast(vec![
		ParOpen,
		sym("quote"), whitespace(" "),
		sym("a"), whitespace(" "),
		sym("b"), whitespace(" ")
	    ]),
	    Ok(scons(Quote, scons(var("a"), scons(var("b"), Nil))))
	);
    }

    #[test]
    fn test_tokens_to_ast_failing() {
	assert!(
	    tokens_to_ast(vec![ParClose]).is_err(),
	    "Invalid parentheses should fail"
	);
	assert!(
	    tokens_to_ast(vec![ParOpen]).is_err(),
	    "Invalid parentheses should fail"
	);
	assert!(
	    tokens_to_ast(vec![ParClose, ParOpen]).is_err(),
	    "Invalid parentheses should fail"
	);
	assert!(
	    tokens_to_ast(vec![ParOpen, ParOpen, ParClose]).is_err(),
	    "Invalid parentheses should fail"
	);

	assert!(
	    tokens_to_ast(vec![Num(1), sym("a")]).is_err(),
	    "Having a symbol starting with a number should fail."
	);

	assert!(
	    tokens_to_ast(vec![sym("quote"), sym("a")]).is_err(),
	    "There should be whitespace between quote and other symbols"
	);
    }

}