-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathPasLS.InvertAssign.pas
More file actions
266 lines (232 loc) · 7.73 KB
/
PasLS.InvertAssign.pas
File metadata and controls
266 lines (232 loc) · 7.73 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
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
{
***************************************************************************
* *
* This source 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 2 of the License, or *
* (at your option) any later version. *
* *
* This code 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. *
* *
* A copy of the GNU General Public License is available on the World *
* Wide Web at <http://www.gnu.org/copyleft/gpl.html>. You can also *
* obtain it by writing to the Free Software Foundation, *
* Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1335, USA. *
* *
***************************************************************************
Author: Sérgio Marcelo S. Gomes <smace at smace.com.br>
Modified by Andrew Haines and Juha Manninen
Adapted for LSP by Michael Van Canneyt <michael at freepascal.org>
Abstract: Invert Assignment Code.
Example: AValue := BValue -> BValue := AValue;
AValue := True -> AValue := False;
}
unit PasLS.InvertAssign;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils;
type
{ TInvertAssignment }
TInvertAssignOption = (iaoSpaceBefore,iaoSpaceAfter,iaoAlign);
TInvertAssignOptions = set of TInvertAssignOption;
TInvertAssignment = Class
private
FOptions: TInvertAssignOptions;
class procedure DivideLines(Lines: TStrings; var PreList, AList, BList, PostList: TStrings); virtual;
class function GetIndent(ALine: String): Integer; virtual;
class function IsAWholeLine(const ALine: String): Boolean; virtual;
function InvertLine(PreVar, VarA, VarB, PostVar: String; LineStart, EqualPosition: Integer): String; virtual;
Public
function InvertAssignment(InText: string): string;
procedure InvertAssignment(Lines: TStrings);
Property Options : TInvertAssignOptions Read FOptions Write FOptions;
end;
implementation
class function TInvertAssignment.GetIndent(ALine: String):Integer;
begin
Result := Length(Aline) - Length(TrimLeft(ALine));
end;
class procedure TInvertAssignment.DivideLines(Lines: TStrings; var PreList, AList, BList, PostList: TStrings);
var
ALine, TrueFalse: String;
t, f: Boolean;
X, I, EqPos, SemiPos, WordEndPos, BracketCount: Integer;
begin
for X := 0 to Lines.Count-1 do begin
ALine := Trim(Lines[X]);
EqPos := Pos(':=', ALine);
if EqPos > 0 then begin
SemiPos := Pos(';', ALine);
if SemiPos = 0 then
SemiPos:=Length(ALine)+1;
I := EqPos-1;
while (I > 0) and (ALine[I] = ' ') do // Skip initial spaces
Dec(I);
WordEndPos := I+1;
BracketCount := 0;
// Get the word before :=
while I > 0 do begin
if ALine[I] = ']' then
Inc(BracketCount)
else if ALine[I] = '[' then
Dec(BracketCount);
if (BracketCount = 0) and (ALine[I] = ' ') then
Break;
Dec(I);
end;
// I points now at beginning of word - 1
Alist.Add(Copy(ALine, I+1, WordEndPos-(I+1)));
BList.Add(Trim(Copy(ALine, EqPos+2, SemiPos-EqPos-2)));
PreList.Add(Trim(Copy(ALine,1, I)));
PostList.Add(Trim(Copy(ALine, SemiPos, Length(ALine)-(SemiPos-1))));
if Length(PreList[X]) > 0 then
PreList[X] := PreList[X] + ' ';
end
else begin // not a valid line
PreList.Add('');
AList.Add(ALine);
Blist.Add('');
PostList.Add('');
end;
// Check if is being assigned true or false
t := CompareText(BList[X], 'True') = 0;
f := CompareText(BList[X], 'False') = 0;
if t or f then begin
TrueFalse := AList[X];
AList[X] := BoolToStr(not t, 'True', 'False');
BList[X] := TrueFalse;
end;
end;
end;
function TInvertAssignment.InvertLine(PreVar, VarA, VarB, PostVar: String;
LineStart, EqualPosition: Integer): String;
var
fLength: Integer;
op : string;
begin
Result := StringOfChar(' ',LineStart);
if Length(Trim(VarB)) = 0 then // is not a line with a ':='
Result := Result + VarA
else
begin
Result := Result + PreVar + VarB;
fLength := Length(Trim(Result));
if (iaoAlign in Options) and (fLength < EqualPosition) then
Result := Result + StringOfChar(' ', EqualPosition-fLength) ;
Op:=':=';
if iaoSpaceBefore in Options then
op:=' '+op;
if iaoSpaceAfter in Options then
op:=op+' ';
Result := Result + Op + VarA + PostVar;
end;
end;
class function TInvertAssignment.IsAWholeLine(const ALine: String): Boolean;
var
S : String;
begin
// This function is useful for when the text is put back
// in the synedit, things like this don't happen:
// begin
// if CallSomeFunction > 0
// then
// DoThis
// else
// Exit;
// end;
//
// Would otherwise become this
//
// begin if CallSomeFunction > 0 then DoThis else exit;
// end;
Result := False;
S:=LowerCase(aLine);
if (Pos(';', ALine) > 0)
or (Pos('if ', S) > 0)
or (Pos('begin', S) > 0)
or (Pos('end', S) > 0)
or (Pos('then', S) > 0)
or (Pos('else', ALine) > 0)
or (Pos('and', ALine) > 0)
or (Pos('or', ALine) > 0)
or (Pos('//', ALine) > 0)
then Result := True;
end;
// This function inverts all Assignments operation.
// like valuea := valueb; to valueb := valuea;
// or valuea := False; to valuea := True;
function TInvertAssignment.InvertAssignment(InText: string): string;
var
InLines : TStringList;
HasLinefeed: Boolean;
begin
if InText = '' then
Exit('');
HasLinefeed := InText[Length(InText)] in [#10,#13];
InLines := TStringList.Create;
InLines.SkipLastLineBreak:=True;
InLines.Text := InText;
InvertAssignment(InLines);
Result := InLines.Text;
InLines.Free;
if not HasLinefeed then begin
while Result[Length(Result)] in [#10,#13] do
SetLength(Result, Length(Result)-1);
end;
end;
procedure TInvertAssignment.InvertAssignment(Lines: TStrings);
var
TempLines: TStringList;
PreList, AList, BList, PostList: TStrings;
ALine: String;
Indents: array of integer;
X, Y, EqPos: Integer;
begin
PreList:=Nil;
AList:=Nil;
BList:=Nil;
PostList:=Nil;
TempLines:=nil;
Indents:=Nil;
try
SetLength(Indents, Lines.Count);
TempLines := TStringList.Create;
// Join many lines to one
ALine := '';
for X := 0 to Lines.Count-1 do begin
ALine := ALine + Lines[X];
if IsAWholeLine(ALine) then begin
Indents[TempLines.Add(ALine)] := GetIndent(ALine);
ALine := '';
end;
end;
if Length(ALine) > 0 then
Indents[TempLines.Add(ALine)] := GetIndent(ALine);
Lines.Clear;
PreList := TStringList.Create;
AList := TStringList.Create;
BList := TStringList.Create;
PostList := TStringList.Create;
DivideLines(TempLines, PreList, AList, BList, PostList);
// Find where the ':=' should be
EqPos := 0;
for X := 0 to BList.Count-1 do begin
Y := Length(BList[X]);
if Y > EqPos then
EqPos := Y;
end;
for X := 0 to AList.Count-1 do
Lines.Add(InvertLine(PreList[X],Alist[X],BList[X],PostList[X],Indents[X],EqPos));
finally
PreList.Free;
AList.Free;
BList.Free;
PostList.Free;
TempLines.Free;
end;
end;
end.