-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathmod.rs
More file actions
416 lines (356 loc) · 11.9 KB
/
mod.rs
File metadata and controls
416 lines (356 loc) · 11.9 KB
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
/*!
ggsql Parser Module
Handles splitting ggsql queries into SQL and visualization portions, then parsing
the visualization specification into a typed AST.
## Architecture
1. **Query Splitting**: Use tree-sitter with external scanner to reliably split
SQL from VISUALISE portions, handling edge cases like strings and comments.
2. **AST Building**: Convert tree-sitter concrete syntax tree (CST) into a
typed abstract syntax tree (AST) representing the visualization specification.
3. **Validation**: Perform syntactic validation during parsing, with semantic
validation deferred to execution time when data is available.
## Example Usage
```rust
# use ggsql::parser::parse_query;
# use ggsql::Geom;
# fn main() -> Result<(), Box<dyn std::error::Error>> {
let query = r#"
SELECT date, revenue, region FROM sales WHERE year = 2024
VISUALISE date AS x, revenue AS y, region AS color
DRAW line
LABEL
title => 'Sales by Region'
"#;
let specs = parse_query(query)?;
assert_eq!(specs.len(), 1);
assert_eq!(specs[0].layers.len(), 1);
assert_eq!(specs[0].layers[0].geom, Geom::line());
# Ok(())
# }
```
*/
use crate::{Plot, Result};
pub mod builder;
pub mod source_tree;
pub use builder::build_ast;
pub use source_tree::SourceTree;
/// Main entry point for parsing ggsql queries
///
/// Takes a complete ggsql query (SQL + VISUALISE) and returns a vector of
/// parsed specifications (one per VISUALISE statement).
pub fn parse_query(query: &str) -> Result<Vec<Plot>> {
// Parse the full query and create SourceTree
let source_tree = SourceTree::new(query)?;
// Validate the parse tree has no errors
source_tree.validate()?;
// Build AST from the parse tree
let specs = builder::build_ast(&source_tree)?;
Ok(specs)
}
#[cfg(test)]
mod tests {
use super::*;
use crate::plot::ParameterValue;
use crate::{AestheticValue, DataSource, Geom};
#[test]
fn test_simple_query_parsing() {
let query = r#"
SELECT x, y FROM data
VISUALISE x, y
DRAW point
"#;
let result = parse_query(query);
assert!(result.is_ok(), "Failed to parse simple query: {:?}", result);
let specs = result.unwrap();
assert_eq!(specs.len(), 1);
assert_eq!(specs[0].layers.len(), 1);
assert_eq!(specs[0].layers[0].geom, Geom::point());
}
#[test]
fn test_sql_extraction() {
let query = r#"
SELECT date, revenue FROM sales WHERE year = 2024
VISUALISE date AS x, revenue AS y
DRAW line
"#;
let source_tree = SourceTree::new(query).unwrap();
let sql = source_tree.extract_sql().unwrap();
assert!(sql.contains("SELECT date, revenue FROM sales"));
assert!(sql.contains("WHERE year = 2024"));
assert!(!sql.contains("VISUALISE"));
}
#[test]
fn test_multi_layer_query() {
let query = r#"
SELECT x, y, z FROM data
VISUALISE x, y
DRAW line
DRAW point MAPPING z AS y, 'value' AS color
"#;
let specs = parse_query(query).unwrap();
assert_eq!(specs.len(), 1);
assert_eq!(specs[0].layers.len(), 2);
// First layer is line, second layer is point
assert_eq!(specs[0].layers[0].geom, Geom::line());
assert_eq!(specs[0].layers[1].geom, Geom::point());
// Second layer should have y and color
assert_eq!(specs[0].layers[1].mappings.len(), 2);
assert!(matches!(
specs[0].layers[1].mappings.get("color"),
Some(AestheticValue::Literal(ParameterValue::String(s))) if s == "value"
));
}
#[test]
fn test_multiple_visualizations() {
let query = r#"
SELECT x, y FROM data
VISUALISE x, y
DRAW point
VISUALIZE
DRAW bar MAPPING x AS x, y AS y
"#;
let specs = parse_query(query).unwrap();
assert_eq!(specs.len(), 2);
assert_eq!(specs[0].layers.len(), 1);
assert_eq!(specs[1].layers.len(), 1);
}
#[test]
fn test_american_spelling() {
let query = r#"
SELECT x, y FROM data
VISUALIZE x, y
DRAW point
"#;
let specs = parse_query(query).unwrap();
assert_eq!(specs.len(), 1);
assert_eq!(specs[0].layers[0].geom, Geom::point());
}
#[test]
fn test_three_visualizations() {
let query = r#"
SELECT x, y, z FROM data
VISUALISE x, y
DRAW point
VISUALIZE
DRAW bar MAPPING x AS x, y AS y
VISUALISE z AS x, y AS y
DRAW point
"#;
let specs = parse_query(query).unwrap();
assert_eq!(specs.len(), 3);
assert_eq!(specs[0].layers.len(), 1);
assert_eq!(specs[1].layers.len(), 1);
assert_eq!(specs[2].layers.len(), 1);
}
#[test]
fn test_empty_visualise() {
let query = r#"
SELECT x, y FROM data
VISUALISE
DRAW point MAPPING x AS x, y AS y
"#;
let specs = parse_query(query).unwrap();
assert_eq!(specs.len(), 1);
assert!(specs[0].global_mappings.is_empty());
}
#[test]
fn test_multiple_viz_with_different_clauses() {
let query = r#"
SELECT x, y FROM data
VISUALISE x, y
DRAW point
LABEL title => 'Scatter Plot'
THEME minimal
VISUALIZE
DRAW bar MAPPING x AS x, y AS y
"#;
let specs = parse_query(query).unwrap();
assert_eq!(specs.len(), 2);
// First viz should have layers, labels, and theme
assert_eq!(specs[0].layers.len(), 1);
assert!(specs[0].labels.is_some());
assert!(specs[0].theme.is_some());
// Second viz should have layer but no labels/theme
assert_eq!(specs[1].layers.len(), 1);
assert!(specs[1].labels.is_none());
assert!(specs[1].theme.is_none());
}
#[test]
fn test_mixed_spelling_multiple_viz() {
let query = r#"
SELECT x, y FROM data
VISUALISE x, y
DRAW line
VISUALIZE
DRAW point MAPPING x AS x, y AS y
VISUALISE
DRAW bar MAPPING x AS x, y AS y
"#;
let specs = parse_query(query).unwrap();
assert_eq!(specs.len(), 3);
assert_eq!(specs[0].layers[0].geom, Geom::line());
assert_eq!(specs[1].layers[0].geom, Geom::point());
assert_eq!(specs[2].layers[0].geom, Geom::bar());
}
#[test]
fn test_complex_multi_viz_query() {
let query = r#"
SELECT date, revenue, cost FROM sales
WHERE year >= 2023
VISUALISE date AS x, revenue AS y
DRAW line
DRAW line MAPPING cost AS y
SCALE x VIA date
LABEL title => 'Revenue and Cost Trends'
THEME minimal
VISUALIZE
DRAW bar MAPPING date AS x, revenue AS y
VISUALISE
DRAW point MAPPING date AS x, revenue AS y
"#;
let specs = parse_query(query).unwrap();
assert_eq!(specs.len(), 3);
// Plot with 2 layers, scale, labels, theme
assert_eq!(specs[0].layers.len(), 2);
assert_eq!(specs[0].scales.len(), 1);
assert!(specs[0].labels.is_some());
assert!(specs[0].theme.is_some());
// Second viz with 1 layer
assert_eq!(specs[1].layers.len(), 1);
// Third viz with 1 layer
assert_eq!(specs[2].layers.len(), 1);
}
#[test]
fn test_values_subquery() {
let query = "SELECT * FROM (VALUES (1, 2)) AS t(x, y) VISUALISE x, y DRAW point";
// First check if tree-sitter can parse it
let source_tree = SourceTree::new(query);
if let Err(ref e) = source_tree {
eprintln!("Parse error: {}", e);
}
// Print the tree
if let Ok(ref st) = source_tree {
let root = st.root();
eprintln!("Root kind: {}", root.kind());
eprintln!("Has error: {}", root.has_error());
eprintln!("Tree: {}", root.to_sexp());
}
assert!(
source_tree.is_ok(),
"Failed to parse VALUES subquery: {:?}",
source_tree
);
let specs = parse_query(query).unwrap();
assert_eq!(specs.len(), 1);
}
#[test]
fn test_wildcard_global_mapping() {
let query = r#"
SELECT x, y FROM data
VISUALISE *
DRAW point
"#;
let specs = parse_query(query).unwrap();
assert_eq!(specs.len(), 1);
assert!(specs[0].global_mappings.wildcard);
assert!(specs[0].global_mappings.aesthetics.is_empty());
}
#[test]
fn test_explicit_global_mapping() {
let query = r#"
VISUALISE date AS x, revenue AS y
DRAW line
"#;
let specs = parse_query(query).unwrap();
assert_eq!(specs.len(), 1);
let mapping = &specs[0].global_mappings;
assert!(!mapping.wildcard);
assert_eq!(mapping.aesthetics.len(), 2);
// After parsing, aesthetics are transformed to internal names
assert!(mapping.aesthetics.contains_key("pos1")); // x -> pos1
assert!(mapping.aesthetics.contains_key("pos2")); // y -> pos2
// Column names remain unchanged
assert_eq!(
mapping.aesthetics.get("pos1").unwrap().column_name(),
Some("date")
);
assert_eq!(
mapping.aesthetics.get("pos2").unwrap().column_name(),
Some("revenue")
);
}
#[test]
fn test_implicit_global_mapping() {
let query = r#"
VISUALISE x, y
DRAW point
"#;
let specs = parse_query(query).unwrap();
assert_eq!(specs.len(), 1);
let mapping = &specs[0].global_mappings;
assert!(!mapping.wildcard);
assert_eq!(mapping.aesthetics.len(), 2);
// Implicit mappings: x maps to column x, y maps to column y
// Aesthetic keys are transformed to internal names: x -> pos1, y -> pos2
assert_eq!(
mapping.aesthetics.get("pos1").unwrap().column_name(),
Some("x")
);
assert_eq!(
mapping.aesthetics.get("pos2").unwrap().column_name(),
Some("y")
);
}
#[test]
fn test_mixed_global_mapping() {
let query = r#"
VISUALISE x, y, region AS color
DRAW point
"#;
let specs = parse_query(query).unwrap();
assert_eq!(specs.len(), 1);
let mapping = &specs[0].global_mappings;
assert!(!mapping.wildcard);
assert_eq!(mapping.aesthetics.len(), 3);
// Implicit x and y (transformed to pos1, pos2), explicit color
assert_eq!(
mapping.aesthetics.get("pos1").unwrap().column_name(),
Some("x")
);
assert_eq!(
mapping.aesthetics.get("pos2").unwrap().column_name(),
Some("y")
);
assert_eq!(
mapping.aesthetics.get("color").unwrap().column_name(),
Some("region")
);
}
#[test]
fn test_visualise_from_table() {
let query = r#"
VISUALISE x, y FROM sales
DRAW bar
"#;
let specs = parse_query(query).unwrap();
assert_eq!(specs.len(), 1);
assert_eq!(
specs[0].source,
Some(DataSource::Identifier("sales".to_string()))
);
}
#[test]
fn test_visualise_from_cte() {
let query = r#"
WITH cte AS (SELECT * FROM data)
VISUALISE x, y FROM cte
DRAW point
"#;
let specs = parse_query(query).unwrap();
assert_eq!(specs.len(), 1);
assert_eq!(
specs[0].source,
Some(DataSource::Identifier("cte".to_string()))
);
}
}