-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAPLSTR.PAS
238 lines (212 loc) · 5.66 KB
/
APLSTR.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
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
{$I COMPILER.INC}
unit AplStr;
interface
uses
Strings,
Dos;
type
TStringCompareOption = (scIgnoreCase);
TStringCompareOptions = set of TStringCompareOption;
TStringUtil = object
private
public
constructor Create;
function Alloc(ALength: word): PChar;
function New(ASource: string): PChar;
function CompareLength(AStr1, AStr2: PChar; AMaxLength: word; ACompareOptions: TStringCompareOptions): integer;
function Compare(AStr1, AStr2: PChar; ACompareOptions: TStringCompareOptions): integer;
function CompareString(AStr1: string; AStr2: PChar; ACompareOptions: TStringCompareOptions): integer;
function AppendString(AStr1: PChar; const AStr2: string): PChar;
function Append(var AStr1: PChar; AStr2: PChar): PChar;
function Copy(ASource: PChar): PChar;
function CopyLength(ASource: PChar; AMaxLength: word): PChar;
function EndString(AString: PChar): PChar;
function EndCopy(ASource: PChar): PChar;
function GetString(ASource: PChar): string;
function IndexOf(ASource: PChar; AChar: char): integer;
function Length(AString: PChar): word;
function GetLineCount(AString: PChar): integer;
procedure Free(var AString: PChar);
procedure AssignString(var ADest: PChar; ASource: string);
procedure Assign(var ADest: PChar; ASource: PChar);
end;
var
TString: TStringUtil;
implementation
constructor TStringUtil.Create;
begin
end;
function TStringUtil.Alloc(ALength: word): PChar;
var
result: PChar;
begin
GetMem(result, ALength + 1);
if Assigned(result) then
FillChar(result^, ALength + 1, 0);
Alloc := result;
end;
function TStringUtil.New(ASource: string): PChar;
var
dest: PChar;
begin
New := nil;
GetMem(dest, System.Length(ASource) + 1);
if not Assigned(dest) then
exit;
StrPCopy(dest, ASource);
New := dest;
end;
function TStringUtil.AppendString(AStr1: PChar; const AStr2: string): PChar;
var
str: PChar;
short: string;
begin
AppendString := nil;
if not Assigned(AStr1) or (System.Length(AStr2) = 0) then
exit;
GetMem(str, StrLen(AStr1) + System.Length(AStr2) + 1);
if not Assigned(str) then
exit;
short := AStr2 + #0;
str := StrCat(AStr1, @short[1]);
AppendString := str;
end;
function TStringUtil.Append(var AStr1: PChar; AStr2: PChar): PChar;
var
str: PChar;
str1Len, str2Len: word;
len: word;
begin
str1Len := StrLen(AStr1);
str2Len := StrLen(AStr2);
len := str1Len + str2Len + 1;
GetMem(str, len);
if not Assigned(str) then
exit;
FillChar(str^, len, 0);
if Assigned(AStr1) then
str := StrCat(AStr1, AStr2);
Append := str;
end;
procedure TStringUtil.Free(var AString: PChar);
begin
if not Assigned(AString) then
exit;
FreeMem(AString, StrLen(AString) + 1);
AString := nil;
end;
function TStringUtil.CopyLength(ASource: PChar; AMaxLength: word): PChar;
var
dest, start: PChar;
begin
dest := nil;
CopyLength := nil;
if not Assigned(ASource) then
exit;
GetMem(dest, AMaxLength + 1);
if not Assigned(dest) then
exit;
StrLCopy(dest, ASource, AMaxLength);
start := dest;
Inc(dest, AMaxLength);
dest^ := #0;
CopyLength := start;
end;
function TStringUtil.EndString(AString: PChar): PChar;
begin
EndString := StrEnd(AString);
end;
function TStringUtil.EndCopy(ASource: PChar): PChar;
begin
EndCopy := EndString(Copy(ASource));
end;
function TStringUtil.Copy(ASource: PChar): PChar;
var
dest: PChar;
begin
dest := nil;
Copy := nil;
if not Assigned(ASource) then
exit;
GetMem(dest, StrLen(ASource) + 1);
if not Assigned(dest) then
exit;
StrCopy(dest, ASource);
Copy := dest;
end;
procedure TStringUtil.Assign(var ADest: PChar; ASource: PChar);
begin
Free(ADest);
ADest := Copy(ASource);
end;
function TStringUtil.CompareLength(AStr1, AStr2: PChar; AMaxLength: word; ACompareOptions: TStringCompareOptions): integer;
begin
if scIgnoreCase in ACompareOptions then
CompareLength := StrLIComp(AStr1, AStr2, AMaxLength)
else
CompareLength := StrLComp(AStr1, AStr2, AMaxLength);
end;
function TStringUtil.Compare(AStr1, AStr2: PChar; ACompareOptions: TStringCompareOptions): integer;
begin
if scIgnoreCase in ACompareOptions then
Compare := StrIComp(AStr1, AStr2)
else
Compare := StrComp(AStr1, AStr2);
end;
function TStringUtil.CompareString(AStr1: string; AStr2: PChar;
ACompareOptions: TStringCompareOptions): integer;
var
str: PChar;
begin
AStr1 := AStr1 + #0;
str := @AStr1[1];
CompareString := Compare(str, AStr2, ACompareOptions);
end;
procedure TStringUtil.AssignString(var ADest: PChar; ASource: string);
begin
Free(ADest);
ADest := New(ASource);
end;
function TStringUtil.GetString(ASource: PChar): string;
begin
GetString := '';
if Assigned(ASource) then
GetString := StrPas(ASource);
end;
function TStringUtil.Length(AString: PChar): word;
begin
Length := 0;
if Assigned(AString) then
Length := StrLen(AString);
end;
function TStringUtil.IndexOf(ASource: PChar; AChar: char): integer;
var
index: integer;
begin
IndexOf := -1;
if not Assigned(ASource) then
exit;
for index := 0 to StrLen(ASource) - 1 do
if ASource[index] = AChar then begin
IndexOf := index;
break;
end;
end;
function TStringUtil.GetLineCount(AString: PChar): integer;
var
count: integer;
begin
GetLineCount := 0;
if (not Assigned(AString)) then
exit;
count := 0;
while AString^ <> #0 do begin
if AString^ = #10 then
Inc(count);
Inc(AString);
end;
GetLineCount := count;
end;
begin
TString.Create;
end.