-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
elsa-error.el
247 lines (194 loc) · 8.25 KB
/
elsa-error.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
;;; elsa-error.el --- elsa-error -*- lexical-binding: t -*-
;; Copyright (C) 2017 Matúš Goljer
;; Author: Matúš Goljer <[email protected]>
;; Maintainer: Matúš Goljer <[email protected]>
;; Created: 26th March 2017
;; Keywords: languages, lisp
;; 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 <http://www.gnu.org/licenses/>.
;;; Commentary:
;;; Code:
(require 'eieio)
(eval-and-compile (setq eieio-backward-compatibility nil))
(require 'map)
(require 'ansi)
(require 'lsp-protocol)
(require 'elsa-explainer)
(require 'elsa-form)
(defclass elsa-message ()
((message
:type string
:initarg :message)
(line
:type (or integer null)
:initarg :line
:initform nil)
(column
:type (or integer null)
:initarg :column
:initform nil)
(expression
:type elsa-form
:initarg :expression)
(code
:type (or string null)
:initarg :code
:initform nil))
:abstract t
:documentation "Base class representing a message: result of the analysis.
In general, we recognize three states: error, warning, notice
- error = Error is something that is 100% sure to break the
logic of the program.
- warning = Potential error, we don't know for sure but it's worth
looking into.
- notice = Maybe you can improve something here, but it does not
matter for correctness.")
(defclass elsa-error (elsa-message) ())
(defclass elsa-warning (elsa-message) ())
(defclass elsa-notice (elsa-message) ())
(cl-defgeneric elsa-message-type ((this elsa-message))
"Retrieve human readable description of THIS message type.")
(cl-defmethod elsa-message-type ((_this elsa-message))
"message")
(cl-defmethod elsa-message-type ((_this elsa-error))
"error")
(cl-defmethod elsa-message-type ((_this elsa-warning))
"warning")
(cl-defmethod elsa-message-type ((_this elsa-notice))
"notice")
(cl-defgeneric elsa-message-type-ansi ((this elsa-message))
"Retrieve human readable description of THIS message type with ANSI color.")
(cl-defmethod elsa-message-type-ansi ((_this elsa-error))
(ansi-bright-red "error"))
(cl-defmethod elsa-message-type-ansi ((_this elsa-warning))
(ansi-bright-yellow "warning"))
(cl-defmethod elsa-message-type-ansi ((_this elsa-notice))
(ansi-bright-blue "notice"))
(cl-defgeneric elsa-message-to-lsp-severity ((this elsa-message))
"Retrieve LSP severity code FOR this message.")
(cl-defmethod elsa-message-to-lsp-severity ((_this elsa-error))
lsp/diagnostic-severity-error)
(cl-defmethod elsa-message-to-lsp-severity ((_this elsa-warning))
lsp/diagnostic-severity-warning)
(cl-defmethod elsa-message-to-lsp-severity ((_this elsa-notice))
lsp/diagnostic-severity-information)
(defun elsa--message-resolve (expression)
(or (when-let ((of (elsa-form-find-parent expression
(lambda (x)
(oref x original-form)))))
(oref of original-form))
expression))
(cl-defmethod elsa-message-format ((this elsa-message))
"Format an `elsa-message'."
(let ((expr (elsa--message-resolve (oref this expression))))
(with-ansi
(bright-green "%s" (oref expr line))
":"
(green "%s" (or (oref expr column) "?"))
":"
(elsa-message-type-ansi this)
":"
(format "%s" (replace-regexp-in-string "%" "%%" (oref this message))))))
(cl-defmethod elsa-message-to-lsp ((this elsa-message))
(let ((expression (elsa--message-resolve (oref this expression))))
(lsp-make-diagnostic
:code (oref this code)
:range (lsp-make-range
:start (lsp-make-position
:line (1- (oref expression line))
:character (oref expression column))
:end (lsp-make-position
:line (1- (oref expression line))
:character (let ((expr expression))
(if (and (elsa-form-sequence-p expr)
(elsa-car expr))
(oref (elsa-car expr) end-column)
(+ (oref expression column)
(if (or (elsa-form-symbol-p expr)
(elsa-get-name expr))
(length (symbol-name (elsa-get-name expr)))
1))))))
:severity (elsa-message-to-lsp-severity this)
:message (oref this message))))
(defun elsa--make-message (constructor expression format args)
(let (code)
(when (plist-member args :code)
(setq code (plist-get args :code))
(setq args (map-delete args :code)))
(funcall constructor
:expression expression
:message (apply 'format format args)
:line (oref expression line)
:column (oref expression column)
:code code)))
(defun elsa--make-message-from-explainer (constructor expression explainer args)
(let (compact)
(when (plist-member args :compact)
(setq compact (plist-get args :compact))
(setq args (map-delete args :compact)))
(when (and compact (= 2 (length (elsa-get-messages explainer))))
(setf (elsa-get-messages explainer)
(list (car (elsa-get-messages explainer)))))
(elsa--make-message
constructor
expression
(replace-regexp-in-string "%" "%%" (elsa-tostring explainer))
args)))
(cl-defgeneric elsa-make-error (thing format &rest args)
(declare (indent 1)))
(cl-defmethod elsa-make-error ((expression elsa-form) (format string) &rest args)
(declare (indent 1))
(elsa--make-message 'elsa-error expression format args))
(cl-defmethod elsa-make-error ((expression elsa-form) (explainer elsa-explainer) &rest args)
"Create `elsa-error' object.
EXPRESSION is a form to which the error will be attached.
EXPLAINER is an instance of `elsa-explainer'.
If ARGS contains :compact t, if the explanation only has one
additional line, this line will be dropped, because most likely
it only reformulates the first line."
(declare (indent 1))
(elsa--make-message-from-explainer 'elsa-error expression explainer args))
(cl-defgeneric elsa-make-warning (thing format &rest args)
(declare (indent 1)))
(cl-defmethod elsa-make-warning ((expression elsa-form) (format string) &rest args)
(declare (indent 1))
(elsa--make-message 'elsa-warning expression format args))
(cl-defmethod elsa-make-warning ((expression elsa-form)
(explainer elsa-explainer)
&rest args)
"Create `elsa-warning' object.
EXPRESSION is a form to which the error will be attached.
EXPLAINER is an instance of `elsa-explainer'.
If ARGS contains :compact t, if the explanation only has one
additional line, this line will be dropped, because most likely
it only reformulates the first line."
(declare (indent 1))
(elsa--make-message-from-explainer 'elsa-warning expression explainer args))
(cl-defgeneric elsa-make-notice (thing format &rest args)
(declare (indent 1)))
(cl-defmethod elsa-make-notice ((expression elsa-form)
(format string)
&rest args)
(declare (indent 1))
(elsa--make-message 'elsa-notice expression format args))
(cl-defmethod elsa-make-notice ((expression elsa-form)
(explainer elsa-explainer)
&rest args)
"Create `elsa-notice' object.
EXPRESSION is a form to which the error will be attached.
EXPLAINER is an instance of `elsa-explainer'.
If ARGS contains :compact t, if the explanation only has one
additional line, this line will be dropped, because most likely
it only reformulates the first line."
(declare (indent 1))
(elsa--make-message-from-explainer 'elsa-notice expression explainer args))
(provide 'elsa-error)
;;; elsa-error.el ends here