-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathPasLS.References.pas
More file actions
175 lines (146 loc) · 5.55 KB
/
PasLS.References.pas
File metadata and controls
175 lines (146 loc) · 5.55 KB
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
// 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 PasLS.References;
{$mode objfpc}{$H+}
interface
uses
{ RTL }
SysUtils, Classes,
{ Code Tools }
CodeToolManager, CodeCache, CTUnitGraph,
{ LazUtils }
LazFileUtils, AVL_Tree,
{ Protocol }
LSP.BaseTypes, LSP.Base, LSP.Basic, LSP.General, LSP.Messages, LSP.References;
Type
{ TReferencesRequest }
{ The references request is sent from the client to the server to resolve
project-wide references for the symbol denoted by the given text document position. }
TReferencesRequest = class(specialize TLSPRequest<TReferenceParams, TLocationItems>)
procedure FindReferences(Filename, MainFilename: String; X, Y: Integer; Items: TLocationItems);
function Process(var Params: TReferenceParams): TLocationItems; override;
end;
implementation
uses
PasLS.Settings, PasLS.Diagnostics, PasLS.CodeUtils;
procedure TReferencesRequest.FindReferences(Filename, MainFilename: String; X, Y: Integer; Items: TLocationItems);
var
DeclCode, StartSrcCode, Code: TCodeBuffer;
ListOfPCodeXYPosition: TFPList;
DeclX, DeclY, DeclTopLine, i: Integer;
Identifier: string;
Graph: TUsesGraph;
Cache: TFindIdentifierReferenceCache;
TreeOfPCodeXYPosition: AVL_Tree.TAVLTree;
ANode, Node: AVL_Tree.TAVLTreeNode;
CodePos: PCodeXYPosition;
Files: TStringList;
Completed: boolean;
UGUnit: TUGUnit;
Loc: TLocationItem;
begin
// Step 1: load the file
StartSrcCode:=CodeToolBoss.LoadFile(Filename,false,false);
// Step 2: find the main declaration
if not CodeToolBoss.FindMainDeclaration(StartSrcCode,
X,Y,
DeclCode,DeclX,DeclY,DeclTopLine) then
begin
PublishCodeToolsError(Transport,'FindMainDeclaration failed in '+StartSrcCode.FileName+' at '+IntToStr(Y)+':'+IntToStr(X));
ExitCode:=-1;
exit;
end;
// Step 3: get identifier
CodeToolBoss.GetIdentifierAt(DeclCode,DeclX,DeclY,Identifier);
DoLog('Found identifier: %s',[Identifier]);
// Step 4: collect all modules of program
Files:=TStringList.Create;
ListOfPCodeXYPosition:=nil;
TreeOfPCodeXYPosition:=nil;
Cache:=nil;
try
Files.Add(DeclCode.Filename);
if CompareFilenames(DeclCode.Filename,StartSrcCode.Filename)<>0 then
Files.Add(DeclCode.Filename);
// Collect project units and pre-load them to ensure the uses graph has all nodes
GetProjectUnits(MainFilename, Files, False, Transport);
// Step 5: find references in all files
for i:=0 to Files.Count-1 do begin
DoLog('Searching "%s"...',[Files[i]]);
Code:=CodeToolBoss.LoadFile(Files[i],true,false);
if Code=nil then begin
DoLog('unable to load "%s"',[Files[i]]);
continue;
end;
// search references
CodeToolBoss.FreeListOfPCodeXYPosition(ListOfPCodeXYPosition);
if not CodeToolBoss.FindReferences(
DeclCode,DeclX,DeclY,
Code, true, ListOfPCodeXYPosition, Cache) then
begin
PublishCodeToolsError(Transport,'FindReferences failed in "'+Code.Filename+'"');
continue;
end;
if ListOfPCodeXYPosition=nil then continue;
// In order to show all references after any parser error, they are
// collected in a tree
if TreeOfPCodeXYPosition=nil then
TreeOfPCodeXYPosition:=AVL_Tree.TAVLTree(CodeToolBoss.CreateTreeOfPCodeXYPosition);
CodeToolBoss.AddListToTreeOfPCodeXYPosition(ListOfPCodeXYPosition,
TreeOfPCodeXYPosition,true,false);
end;
// Step 6: show references
if TreeOfPCodeXYPosition=nil then begin
// No references found
exit;
end;
ANode:=AVL_Tree.TAVLTreeNode(TreeOfPCodeXYPosition.FindHighest);
while ANode<>nil do begin
CodePos:=PCodeXYPosition(ANode.Data);
Loc := Items.Add;
Loc.URI := PathToURI(CodePos^.Code.Filename);
Loc.Range.SetRange(CodePos^.Y - 1, CodePos^.X - 1);
{ With CodePos^ do
DoLog('Found: %s @ %d,%d', [Code.Filename, Y,X]);}
ANode:=AVL_Tree.TAVLTreeNode(TreeOfPCodeXYPosition.FindPrecessor(ANode));
end;
finally
Files.Free;
CodeToolBoss.FreeListOfPCodeXYPosition(ListOfPCodeXYPosition);
CodeToolBoss.FreeTreeOfPCodeXYPosition(TreeOfPCodeXYPosition);
Cache.Free;
end;
end;
{ TReferencesRequest }
function TReferencesRequest.Process(var Params: TReferenceParams): TLocationItems;
var
Path: String;
X, Y: Integer;
begin with Params do
begin
Path := textDocument.LocalPath;
X := position.character;
Y := position.line;
Result := TLocationItems.Create;
// if the main program file was provided via initializationOptions -> program
// then use this unit as the root for searching, otherwise default to the
// current text document
if ServerSettings.&program <> '' then
FindReferences(Path, ServerSettings.&program, X + 1, Y + 1, Result)
else
FindReferences(Path, Path, X + 1, Y + 1, Result);
end;
end;
end.