1use rowan::{Direction, NodeOrToken, TextRange, TextSize};
31use squawk_syntax::{
32 SyntaxKind, SyntaxNode, SyntaxToken,
33 ast::{self, AstToken},
34};
35
36use crate::tokens::is_string_or_comment;
37
38const DELIMITED_LIST_KINDS: &[SyntaxKind] = &[
39 SyntaxKind::ALTER_OPTION_LIST,
40 SyntaxKind::ARG_LIST,
41 SyntaxKind::ATTRIBUTE_LIST,
42 SyntaxKind::BEGIN_FUNC_OPTION_LIST,
43 SyntaxKind::COLUMN_LIST,
44 SyntaxKind::CONFLICT_INDEX_ITEM_LIST,
45 SyntaxKind::CONSTRAINT_EXCLUSION_LIST,
46 SyntaxKind::COPY_OPTION_LIST,
47 SyntaxKind::DROP_OP_CLASS_OPTION_LIST,
48 SyntaxKind::FDW_OPTION_LIST,
49 SyntaxKind::FUNCTION_SIG_LIST,
50 SyntaxKind::GROUP_BY_LIST,
51 SyntaxKind::JSON_TABLE_COLUMN_LIST,
52 SyntaxKind::OPERATOR_CLASS_OPTION_LIST,
53 SyntaxKind::OPTION_ITEM_LIST,
54 SyntaxKind::OP_SIG_LIST,
55 SyntaxKind::PARAM_LIST,
56 SyntaxKind::PARTITION_ITEM_LIST,
57 SyntaxKind::PARTITION_LIST,
58 SyntaxKind::RETURNING_OPTION_LIST,
59 SyntaxKind::REVOKE_COMMAND_LIST,
60 SyntaxKind::ROLE_REF_LIST,
61 SyntaxKind::ROW_LIST,
62 SyntaxKind::EXPR_AS_NAME_LIST,
63 SyntaxKind::XML_NAMESPACE_LIST,
64 SyntaxKind::SET_COLUMN_LIST,
65 SyntaxKind::SET_EXPR_LIST,
66 SyntaxKind::SET_OPTIONS_LIST,
67 SyntaxKind::SORT_BY_LIST,
68 SyntaxKind::TABLE_AND_COLUMNS_LIST,
69 SyntaxKind::TABLE_ARG_LIST,
70 SyntaxKind::TABLE_LIST,
71 SyntaxKind::TARGET_LIST,
72 SyntaxKind::TRANSACTION_MODE_LIST,
73 SyntaxKind::VACUUM_OPTION_LIST,
74 SyntaxKind::VARIANT_LIST,
75 SyntaxKind::XML_TABLE_COLUMN_LIST,
76 SyntaxKind::PATH_PATTERN_LIST,
77 SyntaxKind::PROPERTIES_LIST,
78];
79
80pub fn extend_selection(root: &SyntaxNode, range: TextRange) -> TextRange {
81 try_extend_selection(root, range).unwrap_or(range)
82}
83
84fn try_extend_selection(root: &SyntaxNode, range: TextRange) -> Option<TextRange> {
85 if range.is_empty() {
86 let offset = range.start();
87 let mut leaves = root.token_at_offset(offset);
88 if leaves.clone().all(|it| it.kind() == SyntaxKind::WHITESPACE) {
91 return Some(extend_ws(root, leaves.next()?, offset));
92 }
93 let leaf_range = match root.token_at_offset(offset) {
94 rowan::TokenAtOffset::None => return None,
95 rowan::TokenAtOffset::Single(l) => {
96 if is_string_or_comment(l.kind()) {
97 extend_single_word_in_comment_or_string(&l, offset)
98 .unwrap_or_else(|| l.text_range())
99 } else {
100 l.text_range()
101 }
102 }
103 rowan::TokenAtOffset::Between(l, r) => pick_best(l, r).text_range(),
104 };
105 return Some(leaf_range);
106 }
107
108 let node = match root.covering_element(range) {
109 NodeOrToken::Token(token) => {
110 if token.text_range() != range {
111 return Some(token.text_range());
112 }
113 if let Some(comment) = ast::Comment::cast(token.clone())
114 && let Some(range) = extend_comments(comment)
115 {
116 return Some(range);
117 }
118 token.parent()?
119 }
120 NodeOrToken::Node(node) => node,
121 };
122
123 if node.text_range() != range {
124 return Some(node.text_range());
125 }
126
127 let node = shallowest_node(&node);
128
129 if node
130 .parent()
131 .is_some_and(|n| DELIMITED_LIST_KINDS.contains(&n.kind()))
132 {
133 if let Some(range) = extend_list_item(&node) {
134 return Some(range);
135 }
136 }
137
138 node.parent().map(|it| it.text_range())
139}
140
141fn shallowest_node(node: &SyntaxNode) -> SyntaxNode {
143 node.ancestors()
144 .take_while(|n| n.text_range() == node.text_range())
145 .last()
146 .unwrap()
147}
148
149fn extend_single_word_in_comment_or_string(
151 leaf: &SyntaxToken,
152 offset: TextSize,
153) -> Option<TextRange> {
154 let text: &str = leaf.text();
155 let cursor_position: u32 = (offset - leaf.text_range().start()).into();
156
157 let (before, after) = text.split_at(cursor_position as usize);
158
159 fn non_word_char(c: char) -> bool {
160 !(c.is_alphanumeric() || c == '_')
161 }
162
163 let start_idx = before.rfind(non_word_char)? as u32;
164 let end_idx = after.find(non_word_char).unwrap_or(after.len()) as u32;
165
166 fn ceil_char_boundary(text: &str, index: u32) -> u32 {
169 (index..)
170 .find(|&index| text.is_char_boundary(index as usize))
171 .unwrap_or(text.len() as u32)
172 }
173
174 let from: TextSize = ceil_char_boundary(text, start_idx + 1).into();
175 let to: TextSize = (cursor_position + end_idx).into();
176
177 let range = TextRange::new(from, to);
178 if range.is_empty() {
179 None
180 } else {
181 Some(range + leaf.text_range().start())
182 }
183}
184
185fn extend_comments(comment: ast::Comment) -> Option<TextRange> {
186 let prev = adj_comments(&comment, Direction::Prev);
187 let next = adj_comments(&comment, Direction::Next);
188 if prev != next {
189 Some(TextRange::new(
190 prev.syntax().text_range().start(),
191 next.syntax().text_range().end(),
192 ))
193 } else {
194 None
195 }
196}
197
198fn adj_comments(comment: &ast::Comment, dir: Direction) -> ast::Comment {
199 let mut res = comment.clone();
200 for element in comment.syntax().siblings_with_tokens(dir) {
201 let Some(token) = element.as_token() else {
202 break;
203 };
204 if let Some(c) = ast::Comment::cast(token.clone()) {
205 res = c
206 } else if token.kind() != SyntaxKind::WHITESPACE || token.text().contains("\n\n") {
207 break;
208 }
209 }
210 res
211}
212
213fn extend_ws(root: &SyntaxNode, ws: SyntaxToken, offset: TextSize) -> TextRange {
214 let ws_text = ws.text();
215 let suffix = TextRange::new(offset, ws.text_range().end()) - ws.text_range().start();
216 let prefix = TextRange::new(ws.text_range().start(), offset) - ws.text_range().start();
217 let ws_suffix = &ws_text[suffix];
218 let ws_prefix = &ws_text[prefix];
219 if ws_text.contains('\n')
220 && !ws_suffix.contains('\n')
221 && let Some(node) = ws.next_sibling_or_token()
222 {
223 let start = match ws_prefix.rfind('\n') {
224 Some(idx) => ws.text_range().start() + TextSize::from((idx + 1) as u32),
225 None => node.text_range().start(),
226 };
227 let end = if root.text().char_at(node.text_range().end()) == Some('\n') {
228 node.text_range().end() + TextSize::of('\n')
229 } else {
230 node.text_range().end()
231 };
232 return TextRange::new(start, end);
233 }
234 ws.text_range()
235}
236
237fn pick_best(l: SyntaxToken, r: SyntaxToken) -> SyntaxToken {
238 return if priority(&r) > priority(&l) { r } else { l };
239 fn priority(n: &SyntaxToken) -> usize {
240 match n.kind() {
241 SyntaxKind::WHITESPACE => 0,
242 SyntaxKind::IDENT => 2,
245 _ => 1,
246 }
247 }
248}
249
250fn extend_list_item(node: &SyntaxNode) -> Option<TextRange> {
252 fn is_single_line_ws(node: &SyntaxToken) -> bool {
253 node.kind() == SyntaxKind::WHITESPACE && !node.text().contains('\n')
254 }
255
256 fn nearby_comma(node: &SyntaxNode, dir: Direction) -> Option<SyntaxToken> {
257 node.siblings_with_tokens(dir)
258 .skip(1)
259 .find(|node| match node {
260 NodeOrToken::Node(_) => true,
261 NodeOrToken::Token(it) => !is_single_line_ws(it),
262 })
263 .and_then(|it| it.into_token())
264 .filter(|node| node.kind() == SyntaxKind::COMMA)
265 }
266
267 if let Some(comma) = nearby_comma(node, Direction::Next) {
268 let final_node = comma
270 .next_sibling_or_token()
271 .and_then(|n| n.into_token())
272 .filter(is_single_line_ws)
273 .unwrap_or(comma);
274
275 return Some(TextRange::new(
276 node.text_range().start(),
277 final_node.text_range().end(),
278 ));
279 }
280
281 if let Some(comma) = nearby_comma(node, Direction::Prev) {
282 return Some(TextRange::new(
283 comma.text_range().start(),
284 node.text_range().end(),
285 ));
286 }
287
288 None
289}
290
291#[cfg(test)]
292mod tests {
293 use super::*;
294 use crate::test_utils::fixture;
295 use insta::assert_debug_snapshot;
296 use squawk_syntax::{SourceFile, ast::AstNode};
297
298 fn expand(sql: &str) -> Vec<String> {
299 let (offset, sql) = fixture(sql);
300 let parse = SourceFile::parse(&sql);
301 let file = parse.tree();
302 let root = file.syntax();
303
304 let mut range = TextRange::empty(offset);
305 let mut results = vec![];
306
307 for _ in 0..20 {
308 let new_range = extend_selection(root, range);
309 if new_range == range {
310 break;
311 }
312 range = new_range;
313 results.push(sql[range].to_string());
314 }
315
316 results
317 }
318
319 #[test]
320 fn simple() {
321 assert_debug_snapshot!(expand(r#"select $01 + 1"#), @r#"
322 [
323 "1",
324 "1 + 1",
325 "select 1 + 1",
326 ]
327 "#);
328 }
329
330 #[test]
331 fn word_in_string_string() {
332 assert_debug_snapshot!(expand(r"
333select 'some stret$0ched out words in a string'
334"), @r#"
335 [
336 "stretched",
337 "'some stretched out words in a string'",
338 "select 'some stretched out words in a string'",
339 "\nselect 'some stretched out words in a string'\n",
340 ]
341 "#);
342 }
343
344 #[test]
345 fn string() {
346 assert_debug_snapshot!(expand(r"
347select b'foo$0 bar'
348'buzz';
349"), @r#"
350 [
351 "foo",
352 "b'foo bar'",
353 "b'foo bar'\n'buzz'",
354 "select b'foo bar'\n'buzz'",
355 "\nselect b'foo bar'\n'buzz';\n",
356 ]
357 "#);
358 }
359
360 #[test]
361 fn dollar_string() {
362 assert_debug_snapshot!(expand(r"
363select $$foo$0 bar$$;
364"), @r#"
365 [
366 "foo",
367 "$$foo bar$$",
368 "select $$foo bar$$",
369 "\nselect $$foo bar$$;\n",
370 ]
371 "#);
372 }
373
374 #[test]
375 fn comment_muli_line() {
376 assert_debug_snapshot!(expand(r"
377-- foo bar
378-- buzz$0
379-- boo
380select 1
381"), @r#"
382 [
383 "-- buzz",
384 "-- foo bar\n-- buzz\n-- boo",
385 "\n-- foo bar\n-- buzz\n-- boo\nselect 1\n",
386 ]
387 "#);
388 }
389
390 #[test]
391 fn comment() {
392 assert_debug_snapshot!(expand(r"
393-- foo bar$0
394select 1
395"), @r#"
396 [
397 "-- foo bar",
398 "\n-- foo bar\nselect 1\n",
399 ]
400 "#);
401
402 assert_debug_snapshot!(expand(r"
403/* foo bar$0 */
404select 1
405"), @r#"
406 [
407 "bar",
408 "/* foo bar */",
409 "\n/* foo bar */\nselect 1\n",
410 ]
411 "#);
412 }
413
414 #[test]
415 fn create_table_with_comment() {
416 assert_debug_snapshot!(expand(r"
417-- foo bar buzz
418create table t(
419 x int$0,
420 y text
421);
422"), @r#"
423 [
424 "int",
425 "x int",
426 "x int,",
427 "(\n x int,\n y text\n)",
428 "-- foo bar buzz\ncreate table t(\n x int,\n y text\n)",
429 "\n-- foo bar buzz\ncreate table t(\n x int,\n y text\n);\n",
430 ]
431 "#);
432 }
433
434 #[test]
435 fn column_list() {
436 assert_debug_snapshot!(expand(r#"create table t($0x int)"#), @r#"
437 [
438 "x",
439 "x int",
440 "(x int)",
441 "create table t(x int)",
442 ]
443 "#);
444
445 assert_debug_snapshot!(expand(r#"create table t($0x int, y int)"#), @r#"
446 [
447 "x",
448 "x int",
449 "x int, ",
450 "(x int, y int)",
451 "create table t(x int, y int)",
452 ]
453 "#);
454
455 assert_debug_snapshot!(expand(r#"create table t(x int, $0y int)"#), @r#"
456 [
457 "y",
458 "y int",
459 ", y int",
460 "(x int, y int)",
461 "create table t(x int, y int)",
462 ]
463 "#);
464 }
465
466 #[test]
467 fn start_of_line_whitespace_select() {
468 assert_debug_snapshot!(expand(r#"
469select 1;
470
471$0 select 2;"#), @r#"
472 [
473 " select 2",
474 " \nselect 1;\n\n select 2;",
475 ]
476 "#);
477 }
478
479 #[test]
480 fn select_list() {
481 assert_debug_snapshot!(expand(r#"select x$0, y from t"#), @r#"
482 [
483 "x",
484 "x, ",
485 "x, y",
486 "select x, y",
487 "select x, y from t",
488 ]
489 "#);
490
491 assert_debug_snapshot!(expand(r#"select x, y$0 from t"#), @r#"
492 [
493 "y",
494 ", y",
495 "x, y",
496 "select x, y",
497 "select x, y from t",
498 ]
499 "#);
500 }
501
502 #[test]
503 fn expand_whitespace() {
504 assert_debug_snapshot!(expand(r#"select 1 +
505$0
5061;"#), @r#"
507 [
508 " \n\n",
509 "1 + \n\n1",
510 "select 1 + \n\n1",
511 "select 1 + \n\n1;",
512 ]
513 "#);
514 }
515
516 #[test]
517 fn function_args() {
518 assert_debug_snapshot!(expand(r#"select f(1$0, 2)"#), @r#"
519 [
520 "1",
521 "1, ",
522 "(1, 2)",
523 "f(1, 2)",
524 "select f(1, 2)",
525 ]
526 "#);
527 }
528
529 #[test]
530 fn prefer_idents() {
531 assert_debug_snapshot!(expand(r#"select foo$0+bar"#), @r#"
532 [
533 "foo",
534 "foo+bar",
535 "select foo+bar",
536 ]
537 "#);
538
539 assert_debug_snapshot!(expand(r#"select foo+$0bar"#), @r#"
540 [
541 "bar",
542 "foo+bar",
543 "select foo+bar",
544 ]
545 "#);
546 }
547
548 #[test]
549 fn list_variants() {
550 let delimited_ws_list_kinds = &[
551 SyntaxKind::CREATE_DATABASE_OPTION_LIST,
552 SyntaxKind::FUNC_OPTION_LIST,
553 SyntaxKind::ROLE_OPTION_LIST,
554 SyntaxKind::SEQUENCE_OPTION_LIST,
555 SyntaxKind::TRIGGER_EVENT_LIST,
556 SyntaxKind::XML_COLUMN_OPTION_LIST,
557 SyntaxKind::WHEN_CLAUSE_LIST,
558 SyntaxKind::LABEL_AND_PROPERTIES_LIST,
559 ];
560
561 let unhandled_list_kinds = (0..SyntaxKind::__LAST as u16)
562 .map(SyntaxKind::from)
563 .filter(|kind| {
564 format!("{:?}", kind).ends_with("_LIST") && !delimited_ws_list_kinds.contains(kind)
565 })
566 .filter(|kind| !DELIMITED_LIST_KINDS.contains(kind))
567 .collect::<Vec<_>>();
568
569 assert_eq!(
570 unhandled_list_kinds,
571 vec![],
572 "We shouldn't have any unhandled list kinds"
573 )
574 }
575}