-
Notifications
You must be signed in to change notification settings - Fork 1
/
awk-ts-mode.el
379 lines (327 loc) · 12.5 KB
/
awk-ts-mode.el
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
;;; awk-ts-mode.el --- Major mode for awk using tree-sitter -*- lexical-binding: t; -*-
;; Author: Noah Peart <[email protected]>
;; URL: https://github.com/nverno/awk-ts-mode
;; Version: 1.0.0
;; Package-Requires: ((emacs "29.1"))
;; Created: 27 September 2023
;; Keywords: awk languages tree-sitter
;; This file is not part of GNU Emacs.
;;
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation; either version 3, or
;; (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;; General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program; see the file COPYING. If not, write to
;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth
;; Floor, Boston, MA 02110-1301, USA.
;;; Commentary:
;;
;; This package defines a tree-sitter enabled major modes awk that provides
;; support for indentation, font-locking, imenu, and structural navigation.
;;
;; The tree-sitter grammar compatible with this package can be found at
;; https://github.com/Beaglefoot/tree-sitter-awk.
;;
;;; Installation:
;;
;; For a simple way to install the tree-sitter grammar libraries,
;; add the following entry to `treesit-language-source-alist':
;;
;; (add-to-list
;; 'treesit-language-source-alist
;; '(awk "https://github.com/Beaglefoot/tree-sitter-awk")
;;
;; and call `treesit-install-language-grammar' to do the installation.
;;
;;; Code:
(eval-when-compile (require 'cl-lib))
(require 'treesit)
(defcustom awk-ts-mode-indent-level 2
"Number of spaces for each indententation step."
:group 'awk
:type 'integer
:safe 'integerp)
(defface awk-ts-mode-builtin-variable-face
'((t (:inherit font-lock-variable-name-face :slant italic)))
"Face for awk builtin variables."
:group 'awk)
;;; Syntax
;; cc-awk.el syntax table
(defvar awk-ts-mode--syntax-table
(let ((st (make-syntax-table)))
(modify-syntax-entry ?\\ "\\" st)
(modify-syntax-entry ?\n "> " st)
(modify-syntax-entry ?\r "> " st)
(modify-syntax-entry ?\f "> " st)
(modify-syntax-entry ?\# "< " st)
(modify-syntax-entry ?/ "." st)
(modify-syntax-entry ?* "." st)
(modify-syntax-entry ?+ "." st)
(modify-syntax-entry ?- "." st)
(modify-syntax-entry ?= "." st)
(modify-syntax-entry ?% "." st)
(modify-syntax-entry ?< "." st)
(modify-syntax-entry ?> "." st)
(modify-syntax-entry ?& "." st)
(modify-syntax-entry ?| "." st)
(modify-syntax-entry ?_ "_" st)
(modify-syntax-entry ?\' "." st)
(modify-syntax-entry ?$ "'" st)
(modify-syntax-entry ?@ "'" st)
st)
"Syntax table in use in AWK Mode buffers.")
;;; Indentation
(defvar awk-ts-mode--indent-rules
`((awk
((parent-is "program") parent 0)
((node-is ")") parent-bol 0)
((node-is "}") parent-bol 0)
((node-is "]") parent-bol 0)
((node-is "block") parent-bol 0)
((node-is "args") parent-bol awk-ts-mode-indent-level)
((parent-is "args") standalone-parent awk-ts-mode-indent-level)
;; XXX: setting to align arguments to first-sibling?
((parent-is "param_list") parent-bol awk-ts-mode-indent-level)
((parent-is "block") parent-bol awk-ts-mode-indent-level)
((node-is "else") parent-bol 0)
((and no-node
(parent-is ,(rx (or "func_call"
"grouping"
"if_statement"
"else_clause"
"while_statement"
"for_statement"
"for_in_statement"
"array_ref"))))
parent-bol awk-ts-mode-indent-level)
((parent-is "string") no-indent)
(no-node parent-bol 0)
(catch-all parent-bol awk-ts-mode-indent-level)))
"Tree-sitter indentation rules for awk.")
;;; Font-Lock
(defvar awk-ts-mode--feature-list
'(( comment definition)
( keyword string builtin)
( assignment namespace constant literal escape-sequence function variable)
( bracket delimiter operator error misc-punctuation))
"`treesit-font-lock-feature-list' for `awk-ts-mode'.")
(defvar awk-ts-mode--keywords
;; Others that are nodes in grammar: "break" "continue" "nextfile" "next"
'("BEGIN" "BEGINFILE" "END" "ENDFILE"
"case" "default" "delete"
"do" "else" "exit" "for" "func" "function" "getline" "if" "in"
"return" "switch" "while")
"Awk keywords for tree-sitter font-locking.")
(defvar awk-ts-mode--builtin-functions
'("adump" "and" "asort" "asorti" "atan2" "bindtextdomain" "close" "compl"
"cos" "dcgettext" "dcngettext" "exp" "extension" "fflush" "gensub" "gsub"
"index" "int" "isarray" "length" "log" "lshift" "match" "mktime" "or"
"patsplit" "print" "printf" "rand" "rshift" "sin" "split" "sprintf" "sqrt"
"srand" "stopme" "strftime" "strtonum" "sub" "substr" "system" "systime"
"tolower" "toupper" "typeof" "xor")
"Awk builtin functions for tree-sitter font-locking.")
(defvar awk-ts-mode--builtin-variables
'("ARGC" "ARGIND" "ARGV" "BINMODE" "CONVFMT" "ENVIRON"
"ERRNO" "FIELDWIDTHS" "FILENAME" "FNR" "FPAT" "FS" "FUNCTAB"
"IGNORECASE" "LINT" "NF" "NR" "OFMT" "OFS" "ORS" "PREC"
"PROCINFO" "RLENGTH" "ROUNDMODE" "RS" "RSTART" "RT" "SUBSEP"
"SYNTAB" "TEXTDOMAIN")
"Awk builtin variables for tree-sitter font-lock.")
(defvar awk-ts-mode--operators
'("=" "+=" "-=" "*=" "/=" "%=" "^="
"<" "<=" ">" ">=" "==" "!=" "~" "!~" "!"
"+" "-" "*" "/" "%" "^" "**"
"&&" "||"
"|" "|&" ">>"
"--" "++")
"Awk operators for tree-sitter font-lock.")
(defvar awk-ts-mode--assignment-query
(when (treesit-available-p)
(treesit-query-compile 'awk '((identifier) @id)))
"Query to capture identifiers in assignment_exp.")
(defun awk-ts-mode--fontify-assignment-lhs (node override start end &rest _)
"Fontify the lhs NODE of an assignment_exp.
For OVERRIDE, START, END, see `treesit-font-lock-rules'."
(dolist (node (treesit-query-capture
node awk-ts-mode--assignment-query nil nil t))
(treesit-fontify-with-override
(treesit-node-start node) (treesit-node-end node)
(pcase (treesit-node-type node)
("identifier" 'font-lock-variable-name-face))
override start end)))
;; from `c-ts-mode--fontify-variable'
(defun awk-ts-mode--fontify-variable (node override start end &rest _)
"Fontify an identifier node if it is a variable.
Don't fontify if it is a function identifier. For NODE,
OVERRIDE, START, END, and ARGS, see `treesit-font-lock-rules'."
(let ((parent (treesit-node-parent node)))
(when (pcase (treesit-node-type parent)
("func_call" nil)
("ns_qualified_name"
(not (equal "func_call"
(treesit-node-type (treesit-node-parent parent)))))
(_ t))
(treesit-fontify-with-override
(treesit-node-start node) (treesit-node-end node)
'font-lock-variable-use-face override start end))))
(defvar awk-ts-mode--font-lock-settings
(treesit-font-lock-rules
:language 'awk
:feature 'comment
'((comment) @font-lock-comment-face)
:language 'awk
:feature 'string
'((regex_constant) @font-lock-regexp-face
(regex
["/" (regex_pattern)] @font-lock-regexp-face
(regex_flags) @font-lock-constant-face :?)
(string) @font-lock-string-face)
:language 'awk
:feature 'keyword
`([,@awk-ts-mode--keywords] @font-lock-keyword-face
[(break_statement) (continue_statement) (next_statement) (nextfile_statement)]
@font-lock-keyword-face
(directive _ @font-lock-preprocessor-face))
:language 'awk
:feature 'builtin
`(((identifier) @var
(:match ,(rx-to-string
`(seq bos (or ,@awk-ts-mode--builtin-functions) eos))
@var))
@font-lock-builtin-face
["print" "printf"] @font-lock-builtin-face
((identifier) @var
(:match ,(rx-to-string
`(seq bos (or ,@awk-ts-mode--builtin-variables) eos))
@var))
@awk-ts-mode-builtin-variable-face)
:language 'awk
:feature 'definition
'((func_def
name: (_) @font-lock-function-name-face
(param_list (identifier) @font-lock-variable-name-face) :?))
:language 'awk
:feature 'function
'((func_call
name: (_) @font-lock-function-call-face
(args (identifier) @font-lock-variable-use-face) :?))
:language 'awk
:feature 'assignment
'((assignment_exp
left: (_) @awk-ts-mode--fontify-assignment-lhs)
(update_exp
argument: (_) @awk-ts-mode--fontify-assignment-lhs))
:language 'awk
:feature 'literal
'((number) @font-lock-number-face @font-lock-constant-face)
:language 'awk
:feature 'variable
'((identifier) @awk-ts-mode--fontify-variable)
:language 'awk
:feature 'bracket
'(["(" ")" "{" "}" "[" "]"] @font-lock-bracket-face)
:language 'awk
:feature 'operator
`(["!"] @font-lock-negation-char-face
[,@awk-ts-mode--operators] @font-lock-operator-face
(ternary_exp ["?" ":"] @font-lock-operator-face))
;; after 'operator for ":" in ternary
:language 'awk
:feature 'delimiter
'(["," ";" ":"] @font-lock-delimiter-face)
:language 'awk
:feature 'escape-sequence
:override t
'((escape_sequence) @font-lock-escape-face)
:language 'awk
:feature 'misc-punctuation
:override 'append
'((field_ref "$" @font-lock-misc-punctuation-face)
(indirect_func_call "@" @font-lock-misc-punctuation-face)
(regex_constant "@" @font-lock-misc-punctuation-face))
:language 'awk
:feature 'namespace
:override t
'((ns_qualified_name
(namespace) @font-lock-type-face
"::" @font-lock-punctuation-face))
:language 'awk
:feature 'error
'((ERROR) @font-lock-warning-face))
"Tree-sitter font-lock settings for awk.")
;;; Navigation
(defun awk-ts-mode--defun-name (node)
"Find name of NODE."
(treesit-node-text
(or (treesit-node-child-by-field-name node "name")
node)))
(defvar awk-ts-mode--sentence-nodes
(rx (or
"directive"
"switch"
"getline"
"rule"
"func_def"
(seq (or "if" "while" "do_while" "for" "for_in" "switch"
"print" "printf"
"redirected_io" "piped_io")
"_statement")))
"See `treesit-sentence-type-regexp' for more information.")
(defvar awk-ts-mode--sexp-nodes nil ;; '(not "[](),[{}]")
"See `treesit-sexp-type-regexp' for more information.")
(defvar awk-ts-mode--text-nodes (rx (or "comment" "regex"))
"See `treesit-text-type-regexp' for more information.")
;;;###autoload
(define-derived-mode awk-ts-mode prog-mode "Awk"
"Major mode for editing awk source code."
:group 'awk
:syntax-table awk-ts-mode--syntax-table
(when (treesit-ready-p 'awk)
(treesit-parser-create 'awk)
;; Comments
(setq-local comment-start "#")
(setq-local comment-end "")
(setq-local comment-start-skip "#+[ \t]*")
(setq-local parse-sexp-ignore-comments t)
;; Indentation
(setq-local treesit-simple-indent-rules awk-ts-mode--indent-rules)
;; Electric-indent.
(setq-local electric-indent-chars
(append "{}():;,<>/" electric-indent-chars))
(setq-local electric-layout-rules
'((?\; . after) (?\{ . after) (?\} . before)))
;; Font-Locking
(setq-local treesit-font-lock-settings awk-ts-mode--font-lock-settings)
(setq-local treesit-font-lock-feature-list awk-ts-mode--feature-list)
;; Navigation
(setq-local treesit-defun-prefer-top-level t)
(setq-local treesit-defun-name-function #'awk-ts-mode--defun-name)
(setq-local treesit-defun-type-regexp (rx (or "rule" "func_def")))
;; navigation objects
(setq-local treesit-thing-settings
`((awk
(sexp ,awk-ts-mode--sexp-nodes)
(sentence ,awk-ts-mode--sentence-nodes)
(text ,awk-ts-mode--text-nodes))))
;; Imenu
(setq-local treesit-simple-imenu-settings
`(("Function" "\\`func_def\\'")
("Rule" ,(rx bos (or "BEGIN" "BEGINFILE" "END" "ENDFILE") eos))))
;; Info
(setq-local info-lookup-mode 'awk-mode)
(treesit-major-mode-setup)))
(if (treesit-ready-p 'awk)
(add-to-list 'auto-mode-alist '("\\.[mg]?awk\\'" . awk-ts-mode)))
(provide 'awk-ts-mode)
;; Local Variables:
;; coding: utf-8
;; indent-tabs-mode: nil
;; End:
;;; awk-ts-mode.el ends here