forked from genericptr/pascal-language-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLSP.Diagnostics.pas
152 lines (117 loc) · 4.58 KB
/
LSP.Diagnostics.pas
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
// Pascal Language Server
// Copyright 2020 Ryan Joseph
// This file is part of Pascal Language Server.
// Pascal Language Server 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.
// Pascal Language Server 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 Pascal Language Server. If not, see
// <https://www.gnu.org/licenses/>.
unit LSP.Diagnostics;
{$mode objfpc}{$H+}
interface
uses
{ RTL }
Classes,
{ Protocol }
LSP.BaseTypes, LSP.Base, LSP.Basic, LSP.Messages;
type
{ TPublishDiagnosticsParams }
TPublishDiagnosticsParams = class(TLSPStreamable)
private
fUri: TDocumentUri;
fDiagnostics: TDiagnosticItems;
procedure SetDiagnostics(AValue: TDiagnosticItems);
published
// The URI for which diagnostic information is reported.
property uri: TDocumentUri read fUri write fUri;
// The version number of the document the diagnostics are published for.
// todo: this must be optional
//property version: integer read fVersion write fVersion;
// An array of diagnostic information items.
property diagnostics: TDiagnosticItems read fDiagnostics write SetDiagnostics;
public
Constructor Create; override;
Destructor Destroy; override;
end;
{ TPublishDiagnostics }
{ Diagnostics notification are sent from the server to the client to signal results of validation runs.
Diagnostics are “owned” by the server so it is the server’s responsibility to clear them if necessary.
The following rule is used for VS Code servers that generate diagnostics:
if a language is single file only (for example HTML) then diagnostics are cleared by the server when the file is closed.
if a language has a project system (for example C#) diagnostics are not cleared when a file closes. When a project is
opened all diagnostics for all files are recomputed (or read from a cache).
When a file changes it is the server’s responsibility to re-compute diagnostics and push them to the client. If the
computed set is empty it has to push the empty array to clear former diagnostics. Newly pushed diagnostics always replace
previously pushed diagnostics. There is no merging that happens on the client side. }
TPublishDiagnostics = class(TNotificationMessage)
private
function GetDiagnosticParams: TPublishDiagnosticsParams;
public
constructor Create; override;
destructor Destroy; override;
function HaveDiagnostics : Boolean;
Property DiagnosticParams : TPublishDiagnosticsParams Read GetDiagnosticParams;
procedure Add(fileName, message: string; line, column, code: integer; severity: TDiagnosticSeverity);
procedure Clear(fileName: string);
end;
implementation
uses SysUtils;
{ TPublishDiagnostics }
procedure TPublishDiagnostics.Clear(fileName: string);
begin
DiagnosticParams.uri := PathToURI(fileName);
DiagnosticParams.diagnostics.Clear;
end;
procedure TPublishDiagnostics.Add(fileName, message: string; line, column, code: integer; severity: TDiagnosticSeverity);
var
Diagnostic: TDiagnostic;
begin
DiagnosticParams.uri := PathToURI(fileName);
Diagnostic := DiagnosticParams.diagnostics.Add;
Diagnostic.range.SetRange(line, column);
Diagnostic.severity := severity;
Diagnostic.code := code;
Diagnostic.source := 'Free Pascal Compiler';
Diagnostic.message := message;
end;
function TPublishDiagnostics.GetDiagnosticParams: TPublishDiagnosticsParams;
begin
Result:=Params as TPublishDiagnosticsParams;
end;
constructor TPublishDiagnostics.Create;
begin
params := TPublishDiagnosticsParams.Create;
method := 'textDocument/publishDiagnostics';
end;
destructor TPublishDiagnostics.Destroy;
begin
params.Free;
inherited;
end;
function TPublishDiagnostics.HaveDiagnostics: Boolean;
begin
Result:=DiagnosticParams.diagnostics.Count>0;
end;
{ TPublishDiagnosticsParams }
procedure TPublishDiagnosticsParams.SetDiagnostics(AValue: TDiagnosticItems);
begin
if fDiagnostics=AValue then Exit;
fDiagnostics.Assign(AValue);
end;
constructor TPublishDiagnosticsParams.Create;
begin
inherited;
fdiagnostics := TDiagnosticItems.Create;
end;
destructor TPublishDiagnosticsParams.Destroy;
begin
FreeAndNil(fDiagnostics);
inherited Destroy;
end;
end.