forked from emacs-lsp/lsp-mode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlsp-notifications.el
88 lines (74 loc) · 3.33 KB
/
lsp-notifications.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
;; Copyright (C) 2016 Vibhav Pant <[email protected]> -*- lexical-binding: t -*-
;; 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/>.
;;; Code:
(require 'lsp-common)
(require 'cl-lib)
(require 'subr-x)
(defun lsp--window-show-message (params)
(message "%s" (lsp--propertize (gethash "message" params)
(gethash "type" params))))
(defcustom lsp-after-diagnostics-hook nil
"Hooks to run after diagnostics are received from the language
server and put in `lsp--diagnostics'."
:type 'hook
:group 'lsp-mode)
(defvar lsp--diagnostics (make-hash-table :test 'equal)
"Hash table storing the diagnostics per file.")
(cl-defstruct lsp-diagnostic
(range nil :read-only t) ;; of the form (number . number), both are points
(line nil :read-only t)
(column nil :read-only t)
(severity nil :read-only t) ;; 1 - error, 2 - warning, 3 - information, 4 - hint
(code nil :read-only t) ;; the diagnostic's code
(source nil :read-only t) ;;
(message nil :read-only t) ;; diagnostic's message
(original nil :read-only t) ;; original diagnostic from LSP, kept for when it
;; needs to be sent back in e.g. codeAction
;; context.
)
(defun lsp--make-diag (diag)
"Make a `lsp-diagnostic' from DIAG."
(let* ((range (gethash "range" diag))
(start (gethash "start" range))
(message (gethash "message" diag))
(source (gethash "source" diag)))
(make-lsp-diagnostic
:range `(,(lsp--position-to-point start)
,(lsp--position-to-point (gethash "end" range)))
:line (gethash "line" start)
:column (gethash "character" start)
:severity (gethash "severity" diag)
:code (gethash "code" diag)
:source (gethash "source" diag)
:message (if source (format "%s: %s" source message) message)
:original diag)))
(defun lsp--equal-files (f1 f2)
(string-equal (expand-file-name f1) (expand-file-name f2)))
(defun lsp--on-diagnostics (params workspace)
"Callback for textDocument/publishDiagnostics.
interface PublishDiagnosticsParams {
uri: string;
diagnostics: Diagnostic[];
}"
(let ((file (string-remove-prefix "file://" (gethash "uri" params)))
(diagnostics (gethash "diagnostics" params)) buffer)
(puthash file (mapcar #'lsp--make-diag diagnostics) lsp--diagnostics)
(setq buffer (cl-loop for buffer in (lsp--workspace-buffers workspace)
when (lsp--equal-files (buffer-file-name buffer) file)
return buffer
finally return nil))
(when buffer
(with-current-buffer buffer
(run-hooks 'lsp-after-diagnostics-hook)))))
(declare-function lsp--workspace-buffers "lsp-methods" (workspace))
(provide 'lsp-notifications)
;;; lsp-notifications.el ends here