aboutsummaryrefslogtreecommitdiffstats
path: root/tree-sitter-yts/grammar.js
blob: cf76d788c3e3b4e6d646b4f00866231e3585fbe9 (plain) (blame)
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
/**
 * @file Parser for yt's selection language
 * @author Benedikt Peetz <benedikt.peetz@b-peetz.de>
 * @license GPL-3-or-later
 */

/// <reference types="tree-sitter-cli/dsl" />
// @ts-check

export default grammar({
  name: "yts",

  rules: {
    source_file: ($) => repeat(choice($.line, $.comment)),
    line: ($) =>
      seq(
        $.command,
        repeat($.flag),
        $.id,
        $.title,
        $.date,
        $.author,
        $.duration,
        $.url,
        "\n",
      ),

    command: ($) =>
      choice(
        "pick",
        "p",
        "watch",
        "w",
        "watched",
        "wd",
        "add",
        "a",
        "drop",
        "d",
        "url",
        "u",
      ),
    flag: ($) =>
      choice(
        /-\w [^\s]+/,
        /-\w '[^']*'/,
        /-\w "[^"]*"/,
        /-\w=[^\s]+/,
        /-\w='[^']*'/,
        /-\w="[^"]*"/,

        /--\w[\w-]+ [^\s]+/,
        /--\w[\w-]+ '[^']*'/,
        /--\w[\w-]+ "[^"]*"/,
        /--\w[\w-]+=[^\s]+/,
        /--\w[\w-]+='[^']*'/,
        /--\w[\w-]+="[^"]*"/,
      ),
    id: ($) => /[a-z0-9]+/,
    title: ($) => seq($._q, /[^"]+/, $._q),
    date: ($) =>
      seq($._q, choice("[No release date]", /\d{4}-\d{2}-\d{2}/), $._q),
    author: ($) => seq($._q, choice("[No author]", /[^"]+/), $._q),
    duration: ($) =>
      seq($._q, seq(choice("[No duration]", /\d+m \d+s/, /\d+h \d+m/)), $._q),
    url: ($) => seq($._q, /[^"]+/, $._q),
    comment: ($) => /#.*/,
    _q: ($) => $.quote,
    quote: ($) => /"/,
  },
  extras: ($) => [/\s/],
});