generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 5
/
elisp-check.el
428 lines (370 loc) · 16 KB
/
elisp-check.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
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
417
418
419
420
421
422
423
424
425
426
427
428
;;; elisp-check.el --- Run Emacs Lisp checks for CI -*- lexical-binding: t; -*-
;; Copyright (C) 2019-2024 Leo Gaskin
;; Author: Leo Gaskin <leo.gaskin@le0.gs>
;; Created: 26 May 2019
;; Homepage: https://github.com/leotaku/elisp-check
;; Keywords: elisp, lint, lisp, test, tools
;; Package-Version: 1.4.0
;; Package-Requires: ((emacs "24.1"))
;; 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 of the License, 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. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; This package is intended to be used in conjuction with the
;; elisp-check GitHub Action. However, it is also possible to run
;; checks locally using the `elisp-check-run' function.
;;
;; Refer to the repository README.md for documentation.
;;; Code:
;;;; Variables
(defconst elisp-check-alist
'(("melpa"
:collection ("load-file" "byte-compile" "package-lint" "checkdoc"))
("load-file"
:function elisp-check-load-file)
("byte-compile"
:function elisp-check-byte-compile
:require bytecomp)
("checkdoc"
:function elisp-check-checkdoc
:require checkdoc)
("package-lint"
:function elisp-check-package-lint
:require package-lint
:package package-lint)
("ert"
:function elisp-check-ert
:require ert))
"Alist from check names to definitions.")
(defvar elisp-check-ignore-warnings nil
"Variable indicating whether warnings should be ignored.")
(defvar elisp-check-warnings-as-errors nil
"Variable indicating whether to treat warnings as errors.")
(defvar elisp-check-has-failed nil
"Variable indicating whether any checks have failed.")
;;;; Implementation
(defun elisp-check-run (name file-or-glob &optional install)
"Run the check named NAME on entry file FILE-OR-GLOB.
When INSTALL is non-nil, also install all check and file
dependencies using the package.el package manager.
See `elisp-check-alist' for a list of valid check names."
;; Reset state
(setq elisp-check-has-failed nil)
;; Install packages
(when install
(elisp-check--install-setup name))
;; Add repository to load-path
(add-to-list 'load-path default-directory)
;; Require all explicit dependencies
(mapc #'require (elisp-check--get-props name :require))
;; Run checker functions
(let ((buffers (elisp-check--get-buffers file-or-glob))
(check-funs (elisp-check--get-props name :function)))
(unless buffers
(elisp-check-error "File `%s' does not exist" file-or-glob))
(unless check-funs
(elisp-check-error "Check `%s' does not exist" name))
(if install
(elisp-check--apply
buffers
(cons #'elisp-check--install-package-requires check-funs))
(elisp-check--apply buffers check-funs))
;; Exit
(when elisp-check-has-failed
(error "Some checks have failed"))))
(defun elisp-check--apply (buffers check-funs)
"Apply the given CHECK-FUNS to the given BUFFERS."
(dolist (buffer buffers)
(with-current-buffer buffer
(elisp-check-log "Checking file: %s" (buffer-file-name))
(let ((other (elisp-check--get-requires)))
(dolist (check check-funs)
(elisp-check-log "Running check: %s" check)
(apply check other))))))
(defun elisp-check--get-buffers (file-or-files)
"Get a list of buffers for the given existing FILE-OR-FILES.
File globbing is supported."
(let* ((files (elisp-check-listify file-or-files))
(file-sets (mapcar #'file-expand-wildcards files))
(files (apply #'append file-sets)))
(mapcar #'find-file-noselect files)))
(defun elisp-check--get-checks (check)
"Get a list of check plists for the given CHECK."
(let* ((check (cons :name (assoc check elisp-check-alist)))
(deps (plist-get check :collection))
(dep-values (apply #'append (mapcar #'elisp-check--get-checks deps))))
(cons check dep-values)))
(defun elisp-check--get-props (check prop)
"Get a list of PROP properties for the given check CHECK."
(let* ((checks (elisp-check--get-checks check))
(fun (lambda (it)
(elisp-check-listify
(plist-get it prop)))))
(apply #'append (mapcar fun checks))))
(defun elisp-check--get-requires (&optional prefix known-buffers)
"Return file buffers for local `require' statements in the current buffer.
Only return files in the same directory with the same PREFIX.
Then walk the resulting buffers for more `require' statements.
If PREFIX is not given, extract it from the current file name,
or the value of `package-lint-main-file' if that is set.
When a buffer is a member of KNOWN-BUFFERS, do not return or
search it for further `require' statements."
(let* ((file (or (bound-and-true-p package-lint-main-file) (buffer-file-name)))
(prefix (or prefix (file-name-sans-extension (file-name-nondirectory file))))
(requires (elisp-check-parse "^[ ]*(require '\\(.*?\\))"))
(fun (lambda (required)
(elisp-check--get-require
required prefix
(cons (current-buffer) known-buffers)))))
(delete-dups (apply #'append (mapcar fun requires)))))
;; Ensure `package-lint-main-file' is always respected as a file-local
;; variable, even if has not been loaded. This is necessary because
;; Emacs will only apply safe local variables in batch mode.
(put 'package-lint-main-file 'safe-local-variable #'stringp)
(defun elisp-check--get-require (name prefix &optional known-buffers)
"Return required buffers for file with package NAME.
See documentation of `elisp-check--get-requires' for
documentation on the usage of PREFIX and KNOWN-BUFFERS."
(let ((file (concat name ".el")))
(when (file-exists-p file)
(if (string-prefix-p prefix name)
(with-current-buffer (find-file-noselect file)
(unless (member (current-buffer) known-buffers)
(cons (current-buffer)
(elisp-check--get-requires prefix known-buffers))))
(prog1 nil
(elisp-check-emit
'warning
(format
"Possibly using local file with different prefix `%s'"
file)
(buffer-file-name)))))))
(defun elisp-check--install-setup (check)
"Setup package.el and install packages for the given CHECK."
(package-initialize)
(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/"))
(add-to-list 'package-archives '("nongnu" . "https://elpa.nongnu.org/nongnu/"))
(package-refresh-contents)
(elisp-check--install-packages (elisp-check--get-props check :package)))
(defun elisp-check--install-package-requires (&rest _other)
"Install packages for `package-lint-main-file' or current buffer."
(let ((file (or (bound-and-true-p package-lint-main-file) (buffer-file-name))))
(with-current-buffer (find-file-noselect file)
(let ((pkgs (elisp-check--get-package-requires)))
(elisp-check--install-packages pkgs)))))
(defun elisp-check--get-package-requires ()
"Get list of packages for Package-Requires for current buffer."
(condition-case _error
(let* ((parsed (elisp-check-parse "^;; Package-Requires: \\(.*\\)"))
(conses (apply #'append (mapcar #'read parsed))))
(delq 'emacs (mapcar #'car conses)))
(error (elisp-check-error
"The `Package-Requires' section for buffer `%s' is malformed"
(current-buffer)))))
(defun elisp-check--install-packages (packages)
"Install PACKAGES using the package.el package manager."
(let ((package-check-signature
(if (version< emacs-version "27") nil package-check-signature))
(errors '()))
(dolist (package packages)
(elisp-check-log "Installing: %s" package)
(elisp-check-condition-case error
(package-install package)
(error
(push (elisp-check-format-error error) errors))))
(when errors
(elisp-check-error
"Packages could not be installed:\n %s"
(mapconcat #'identity errors "\n ")))))
;;;; Standard library
(defun elisp-check-emit (level message &optional file line column)
"Emit a CI message for the given arguments.
MESSAGE is the message text, while LEVEL is a symbol corresponding to
a urgency level supported by the CI environment, such as warning
or error. FILE, LINE and COLUMN may be given to associate the
message with a file.
When LEVEL is error, also set `elisp-check-has-failed'."
(let* ((message (replace-regexp-in-string "\n" "\\\\n" message))
(is-error (eq level 'error))
(is-warning (eq level 'warning))
(is-debug (eq level 'debug))
(template (concat
"::%s "
(when file (format "file=%s," file))
(when line (format "line=%s," line))
(when column (format "col=%s," column))
"::%s")))
(cond
((and is-warning elisp-check-ignore-warnings)
(message template 'debug (concat "Ignored warning: " message)))
((or is-error (and is-warning elisp-check-warnings-as-errors))
(setq elisp-check-has-failed t)
(message template 'error message))
((or is-warning is-debug)
(message template level message))
(t (elisp-check-error "Unsupported urgency level `%s'" level)))))
(defun elisp-check-log (message &rest objects)
"Emit a debug MESSAGE formatted with OBJECTS."
(let ((format (apply #'format message objects)))
(message "[ELISP-CHECK] %s" format)))
(defun elisp-check-error (message &rest objects)
"Emit a CI error MESSAGE formatted with OBJECTS, then raise it."
(let ((format (apply #'format message objects)))
(elisp-check-emit 'error format)
(error format)))
(defun elisp-check-format-error (error)
"Format the error ERROR in a visually pleasing manner."
(let* ((symbol (car error))
(data (cdr error))
(message (get symbol 'error-message))
(data-string (mapconcat #'prin1-to-string data ", ")))
(if (eq symbol 'error)
data-string
(format "%s: %s" message data-string))))
(defun elisp-check-parse (regexp &optional handler)
"Parse the current buffer for REGEXP.
HANDLER is then called for every match with the all captures as
its arguments. The default value for HANDLER is `concat'."
(let ((handler (or handler #'concat))
(result '()))
(save-excursion
(save-match-data
(goto-char 0)
(while (re-search-forward regexp nil t)
(let* ((len (1- (/ (length (match-data)) 2)))
(seq (number-sequence 1 len))
(captures (mapcar #'match-string-no-properties seq)))
(push (apply handler captures) result)))
result))))
(defmacro elisp-check-condition-case (var bodyform &rest handlers)
"Run BODYFORM binding raised errors to VAR in HANDLERS.
This form will also return control from errors that were thrown
in nested blocks of `condition-case-unless-debug' and similar
constructs, which is not the case with normal `condition-case'.
It should be used whenever the BODYFORM may contain or load
arbitrary code not controlled by the library author."
(declare (debug condition-case) (indent 2))
`(condition-case ,var
(let ((debug-on-error nil))
,bodyform)
,@handlers))
(defun elisp-check-listify (value)
"Return VALUE if list, (list VALUE) otherwise."
(if (listp value)
value
(list value)))
;;;; Checkers
(defun elisp-check-load-file (&rest _other)
"Run a `load-file' check on the current buffer."
(elisp-check-condition-case error
(load-file (buffer-file-name))
(error (elisp-check-emit
'error
(elisp-check-format-error error)))))
(defun elisp-check-byte-compile (&rest other)
"Run a `byte-compile-file' check on the current and OTHER buffers."
(let ((byte-compile-dest-file-function
(lambda (_file)
(file-name-directory (make-temp-file "bytecomp-")))))
(elisp-check--with-wrapped-byte-compile-log
(byte-compile-file (buffer-file-name))
(dolist (buffer other)
(byte-compile-file (buffer-file-name buffer))))))
(defun elisp-check--byte-compile-emit (message &optional pos _fill level)
"Emit a CI message for MESSAGE, POS and LEVEL.
This should be bound to `byte-compile-log-warning-function' in
order to hook `byte-compile-file' into the CI message mechanism."
(save-excursion
(goto-char pos)
(elisp-check-emit
(if (eq level :error) 'error 'warning)
message
byte-compile-current-file
(line-number-at-pos)
(current-column))))
;; Advise `byte-compile-log-warning' instead of using the proper
;; variable `byte-compile-log-warning-function' as it does not exist
;; for older versions of Emacs.
(defadvice byte-compile-log-warning
(around elisp-check--advice-byte-compile-log disable)
"Emit byte compile errors and warnings as CI messages."
(elisp-check--byte-compile-emit
string
(or byte-compile-last-position 0)
fill
level))
(defmacro elisp-check--with-wrapped-byte-compile-log (&rest body)
(if (version<= "26.1" emacs-version)
`(let ((byte-compile-log-warning-function #'elisp-check--byte-compile-emit))
,@body)
`(unwind-protect
(progn
(ad-enable-advice 'byte-compile-log-warning 'around 'elisp-check--advice-byte-compile-log)
(ad-activate 'byte-compile-log-warning)
,@body)
(ad-disable-advice 'byte-compile-log-warning 'around 'elisp-check--advice-byte-compile-log)
(ad-activate 'byte-compile-log-warning))))
(defun elisp-check-package-lint (&rest other)
"Run a `package-lint-buffer' check on the current and OTHER buffers."
(let ((parent-main-file (or package-lint-main-file (buffer-file-name))))
(elisp-check--package-lint-buffer)
(dolist (buffer other)
(with-current-buffer buffer
(let ((package-lint-main-file
(or package-lint-main-file parent-main-file)))
(elisp-check--package-lint-buffer))))))
(defun elisp-check--package-lint-buffer ()
"Run a `package-lint-buffer' check on the current buffer."
(dolist (lint (package-lint-buffer))
(let ((level (nth 2 lint))
(message (nth 3 lint))
(file (buffer-file-name))
(line (nth 0 lint))
(column (nth 1 lint)))
(elisp-check-emit level message file line column))))
(defun elisp-check-checkdoc (&rest other)
"Run a `checkdoc' check on the current and OTHER buffers."
(let ((checkdoc-autofix-flag 'never)
(checkdoc-diagnostic-buffer
(format "*%s doc errors*" (current-buffer))))
(checkdoc-current-buffer t)
(dolist (buffer other)
(with-current-buffer buffer
(checkdoc-current-buffer t)))
;; NOTE: If we expect directories to work, this will not!
(with-current-buffer checkdoc-diagnostic-buffer
(elisp-check-parse
"\\(.*\\):\\(.*\\): \\(.*\\)"
(lambda (file line message)
(elisp-check-emit 'warning message file line)))
(unless noninteractive
(kill-buffer-and-window)))))
(defun elisp-check-ert (&rest _other)
"Run a `ert' check on tests defined in the current buffer."
(ert-delete-all-tests)
(elisp-check-load-file)
(let* ((stats (ert-run-tests-batch))
(unexpected (ert-stats-completed-unexpected stats))
(total (ert-stats-total stats)))
(cond
((zerop total)
(elisp-check-emit
'error "No tests were defined"))
((not (zerop unexpected))
(dolist (test (append (ert--stats-tests stats) nil))
(let* ((name (ert-test-name test))
(result (ert-test-most-recent-result test))
(expected (ert-test-result-expected-p test result)))
(when (not expected)
(elisp-check-emit
'error (format "Test `%s' failed" name)))))))))
(provide 'elisp-check)
;;; elisp-check.el ends here