1 | {$IFDEF INTERFACE}
|
---|
2 |
|
---|
3 | // TGList implemented using templates
|
---|
4 | // - item operations (Add, Insert, ReplaceArray, Get, Set, IndexOf,
|
---|
5 | // Extract, Delete, Exchange)
|
---|
6 | // - item range operations (DeleteItems, InsertItems, ReplaceItems,
|
---|
7 | // Move, Fill)
|
---|
8 | // - other TGList operations (AddList, InsertList,
|
---|
9 | // ReplaceList, GetList, IndexOfList)
|
---|
10 | // - dynamic array operations (AddArray, InsertArray,
|
---|
11 | // ReplaceArray, GetArray, IndexOfArray)
|
---|
12 | // - all items operations (Clear, Reverse, Sort)
|
---|
13 |
|
---|
14 | //TGAbstractList = class
|
---|
15 |
|
---|
16 | //end;
|
---|
17 |
|
---|
18 | // TGList<TGListIndex, TGListItem> = class
|
---|
19 | TGList = class//(TGAbstractList)
|
---|
20 | public
|
---|
21 | type
|
---|
22 | PItem = ^TGListItem;
|
---|
23 | TSortCompare = function(Item1, Item2: TGListItem): Integer of object;
|
---|
24 | TToStringConverter = function(Item: TGListItem): string;
|
---|
25 | TFromStringConverter = function(Text: string): TGListItem;
|
---|
26 | TItemArray = array of TGListItem;
|
---|
27 | private
|
---|
28 | FItems: array of TGListItem;
|
---|
29 | FCount: TGListIndex;
|
---|
30 | FUpdateCount: Integer;
|
---|
31 | FOnUpdate: TNotifyEvent;
|
---|
32 | function Get(Index: TGListIndex): TGListItem;
|
---|
33 | function GetCapacity: TGListIndex;
|
---|
34 | function GetLast: TGListItem;
|
---|
35 | function GetFirst: TGListItem;
|
---|
36 | procedure SetCapacity(const AValue: TGListIndex);
|
---|
37 | procedure SetCapacityOptimized(const NewCapacity: TGListIndex);
|
---|
38 | procedure SetLast(AValue: TGListItem);
|
---|
39 | procedure SetFirst(AValue: TGListItem);
|
---|
40 | procedure QuickSort(L, R : TGListIndex; Compare: TSortCompare);
|
---|
41 | procedure DoUpdate;
|
---|
42 | protected
|
---|
43 | procedure Put(Index: TGListIndex; const AValue: TGListItem); virtual;
|
---|
44 | procedure SetCount(const AValue: TGListIndex); virtual;
|
---|
45 | public
|
---|
46 | function CompareMem(P1, P2: Pointer; Length: cardinal): Boolean; inline;
|
---|
47 | function Add(Item: TGListItem): TGListIndex;
|
---|
48 | procedure AddArray(Values: array of TGListItem);
|
---|
49 | procedure AddList(List: TGList);
|
---|
50 | procedure AddListPart(List: TGList; ItemIndex, ItemCount: TGListIndex);
|
---|
51 | procedure Assign(Source: TGList); virtual;
|
---|
52 | constructor Create; virtual;
|
---|
53 | procedure Clear; virtual;
|
---|
54 | procedure Delete(Index: TGListIndex); virtual;
|
---|
55 | procedure DeleteItems(Index, Count: TGListIndex);
|
---|
56 | function EqualTo(List: TGList): Boolean;
|
---|
57 | procedure Exchange(Index1, Index2: TGListIndex);
|
---|
58 | procedure Explode(Text, Separator: string; Converter: TFromStringConverter; SlicesCount: Integer = -1);
|
---|
59 | function Extract(Item: TGListItem): TGListItem;
|
---|
60 | property First: TGListItem read GetFirst write SetFirst;
|
---|
61 | procedure Fill(Start, Count: TGListIndex; Value: TGListItem);
|
---|
62 | function GetArray(Index, ACount: TGListIndex): TItemArray;
|
---|
63 | procedure GetList(List: TGList; Index, ACount: TGListIndex);
|
---|
64 | procedure GetBuffer(Index: TGListIndex; var Buffer; Count: TGListIndex);
|
---|
65 | function Implode(Separator: string; Converter: TToStringConverter): string;
|
---|
66 | function IndexOf(Item: TGListItem; Start: TGListIndex = 0): TGListIndex; virtual;
|
---|
67 | function IndexOfList(List: TGList; Start: TGListIndex = 0): TGListIndex;
|
---|
68 | function IndexOfArray(Values: array of TGListItem; Start: TGListIndex = 0): TGListIndex;
|
---|
69 | procedure Insert(Index: TGListIndex; Item: TGListItem);
|
---|
70 | procedure InsertList(Index: TGListIndex; List: TGList);
|
---|
71 | procedure InsertArray(Index: TGListIndex; Values: array of TGListItem);
|
---|
72 | procedure InsertCount(Index: TGListIndex; ACount: TGListIndex);
|
---|
73 | procedure Move(CurIndex, NewIndex: TGListIndex);
|
---|
74 | procedure MoveItems(CurIndex, NewIndex, Count: TGListIndex);
|
---|
75 | function Remove(Item: TGListItem): TGListIndex;
|
---|
76 | procedure Reverse;
|
---|
77 | procedure ReplaceArray(Index: TGListIndex; Values: array of TGListItem);
|
---|
78 | procedure ReplaceList(Index: TGListIndex; Source: TGList);
|
---|
79 | procedure ReplaceListPart(Index: TGListIndex; Source: TGList;
|
---|
80 | SourceIndex, SourceCount: TGListIndex);
|
---|
81 | procedure ReplaceBuffer(Index: TGListIndex; var Buffer; Count: TGListIndex);
|
---|
82 | procedure Sort(Compare: TSortCompare);
|
---|
83 | procedure SetArray(Values: array of TGListItem);
|
---|
84 | procedure BeginUpdate;
|
---|
85 | procedure EndUpdate;
|
---|
86 | procedure Update;
|
---|
87 | property Count: TGListIndex read FCount write SetCount;
|
---|
88 | property Capacity: TGListIndex read GetCapacity write SetCapacity;
|
---|
89 | property Items[Index: TGListIndex]: TGListItem read Get write Put; default;
|
---|
90 | property Last: TGListItem read GetLast write SetLast;
|
---|
91 | property OnUpdate: TNotifyEvent read FOnUpdate write FOnUpdate;
|
---|
92 | end;
|
---|
93 |
|
---|
94 | {$UNDEF INTERFACE}
|
---|
95 | {$ENDIF}
|
---|
96 |
|
---|
97 | {$IFDEF IMPLEMENTATION_USES}
|
---|
98 |
|
---|
99 | uses
|
---|
100 | RtlConsts;
|
---|
101 |
|
---|
102 | {$UNDEF IMPLEMENTATION_USES}
|
---|
103 | {$ENDIF}
|
---|
104 |
|
---|
105 | {$IFDEF IMPLEMENTATION}
|
---|
106 |
|
---|
107 | { TGList }
|
---|
108 |
|
---|
109 | constructor TGList.Create;
|
---|
110 | begin
|
---|
111 | FCount := 0;
|
---|
112 | FUpdateCount := 0;
|
---|
113 | end;
|
---|
114 |
|
---|
115 | procedure TGList.GetBuffer(Index: TGListIndex; var Buffer; Count: TGListIndex);
|
---|
116 | var
|
---|
117 | P: PItem;
|
---|
118 | I: TGListIndex;
|
---|
119 | begin
|
---|
120 | if (Index + Count) > FCount then
|
---|
121 | raise EListError.CreateFmt(SListIndexError, [Index + Count]);
|
---|
122 | P := PItem(@Buffer);
|
---|
123 | I := 0;
|
---|
124 | while I < Count do begin
|
---|
125 | P^ := Items[Index + I];
|
---|
126 | Inc(P, 1);
|
---|
127 | I := I + 1;
|
---|
128 | end;
|
---|
129 | end;
|
---|
130 |
|
---|
131 | procedure TGList.ReplaceBuffer(Index: TGListIndex; var Buffer; Count: TGListIndex);
|
---|
132 | var
|
---|
133 | P: PItem;
|
---|
134 | I: TGListIndex;
|
---|
135 | begin
|
---|
136 | if (Index + Count) > FCount then
|
---|
137 | raise EListError.CreateFmt(SListIndexError, [Index + Count]);
|
---|
138 | P := PItem(@Buffer);
|
---|
139 | I := 0;
|
---|
140 | while I < Count do begin
|
---|
141 | Items[Index + I] := P^;
|
---|
142 | Inc(P, 1);
|
---|
143 | I := I + 1;
|
---|
144 | end;
|
---|
145 | end;
|
---|
146 |
|
---|
147 | procedure TGList.ReplaceArray(Index: TGListIndex; Values: array of TGListItem);
|
---|
148 | var
|
---|
149 | I: TGListIndex;
|
---|
150 | begin
|
---|
151 | I := 0;
|
---|
152 | while I < Length(Values) do begin
|
---|
153 | Items[Index + I] := Values[I];
|
---|
154 | I := I + 1;
|
---|
155 | end;
|
---|
156 | Update;
|
---|
157 | end;
|
---|
158 |
|
---|
159 | procedure TGList.ReplaceList(Index: TGListIndex; Source: TGList);
|
---|
160 | var
|
---|
161 | I: TGListIndex;
|
---|
162 | begin
|
---|
163 | I := 0;
|
---|
164 | while I < Source.Count do begin
|
---|
165 | Items[Index + I] := Source[I];
|
---|
166 | I := I + 1;
|
---|
167 | end;
|
---|
168 | Update;
|
---|
169 | end;
|
---|
170 |
|
---|
171 | procedure TGList.ReplaceListPart(Index: TGListIndex; Source: TGList;
|
---|
172 | SourceIndex, SourceCount: TGListIndex);
|
---|
173 | var
|
---|
174 | I: TGListIndex;
|
---|
175 | begin
|
---|
176 | I := 0;
|
---|
177 | while I < SourceCount do begin
|
---|
178 | Items[Index + I] := Source[SourceIndex + I];
|
---|
179 | I := I + 1;
|
---|
180 | end;
|
---|
181 | Update;
|
---|
182 | end;
|
---|
183 |
|
---|
184 | function TGList.GetCapacity: TGListIndex;
|
---|
185 | begin
|
---|
186 | Result := Length(FItems);
|
---|
187 | end;
|
---|
188 |
|
---|
189 | procedure TGList.SetCapacity(const AValue: TGListIndex);
|
---|
190 | begin
|
---|
191 | if (AValue < FCount) then
|
---|
192 | raise EListError.CreateFmt(SListCapacityError, [AValue]);
|
---|
193 | SetLength(FItems, AValue);
|
---|
194 | end;
|
---|
195 |
|
---|
196 | procedure TGList.SetCapacityOptimized(const NewCapacity: TGListIndex);
|
---|
197 | var
|
---|
198 | IncSize: TGListIndex;
|
---|
199 | begin
|
---|
200 | if NewCapacity > Capacity then begin
|
---|
201 | IncSize := NewCapacity - Capacity;
|
---|
202 | // Expand
|
---|
203 | if IncSize = 1 then begin
|
---|
204 | IncSize := 4;
|
---|
205 | if Capacity > 3 then IncSize := IncSize + 4;
|
---|
206 | if Capacity > 8 then IncSize := IncSize + 8;
|
---|
207 | if Capacity > 63 then IncSize := IncSize + Capacity shr 2; // Grow by one quarter
|
---|
208 | end;
|
---|
209 | Capacity := Capacity + IncSize;
|
---|
210 | end else
|
---|
211 | if NewCapacity < Capacity then begin
|
---|
212 | // Contract
|
---|
213 | if (Capacity > 256) and (FCount < Capacity shr 2) then
|
---|
214 | begin
|
---|
215 | Capacity := Capacity shr 1;
|
---|
216 | end;
|
---|
217 | end;
|
---|
218 | end;
|
---|
219 |
|
---|
220 | function TGList.Get(Index: TGListIndex): TGListItem;
|
---|
221 | begin
|
---|
222 | if (Index < 0) or (Index >= Count) then
|
---|
223 | raise EListError.CreateFmt(SListIndexError, [Index]);
|
---|
224 | Result := FItems[Index];
|
---|
225 | end;
|
---|
226 |
|
---|
227 | procedure TGList.Put(Index: TGListIndex; const AValue: TGListItem);
|
---|
228 | begin
|
---|
229 | if (Index < 0) or (Index >= Count) then
|
---|
230 | raise EListError.CreateFmt(SListIndexError, [Index]);
|
---|
231 | FItems[Index] := AValue;
|
---|
232 | end;
|
---|
233 |
|
---|
234 | procedure TGList.SetCount(const AValue: TGListIndex);
|
---|
235 | begin
|
---|
236 | if (AValue < 0) then
|
---|
237 | raise EListError.CreateFmt(SListCountError, [AValue]);
|
---|
238 | if AValue > Capacity then SetCapacityOptimized(AValue); // Before FCount change
|
---|
239 | FCount := AValue;
|
---|
240 | if AValue < Capacity then SetCapacityOptimized(AValue); // After FCount change
|
---|
241 | end;
|
---|
242 |
|
---|
243 | function TGList.GetArray(Index, ACount: TGListIndex): TItemArray;
|
---|
244 | var
|
---|
245 | I: Integer;
|
---|
246 | begin
|
---|
247 | SetLength(Result, ACount);
|
---|
248 | I := 0;
|
---|
249 | while I < Count do begin
|
---|
250 | Result[I] := FItems[Index + I];
|
---|
251 | I := I + 1;
|
---|
252 | end;
|
---|
253 | end;
|
---|
254 |
|
---|
255 | procedure TGList.GetList(List: TGList; Index, ACount: TGListIndex);
|
---|
256 | begin
|
---|
257 | List.Clear;
|
---|
258 | List.AddListPart(Self, Index, ACount);
|
---|
259 | end;
|
---|
260 |
|
---|
261 | procedure TGList.QuickSort(L, R: TGListIndex; Compare: TSortCompare);
|
---|
262 | var
|
---|
263 | I, J: TGListIndex;
|
---|
264 | P, Q: TGListItem;
|
---|
265 | begin
|
---|
266 | repeat
|
---|
267 | I := L;
|
---|
268 | J := R;
|
---|
269 | P := FItems[(L + R) div 2];
|
---|
270 | repeat
|
---|
271 | while Compare(P, FItems[I]) > 0 do
|
---|
272 | I := I + 1;
|
---|
273 | while Compare(P, FItems[J]) < 0 do
|
---|
274 | J := J - 1;
|
---|
275 | if I <= J then
|
---|
276 | begin
|
---|
277 | Q := FItems[I];
|
---|
278 | FItems[I] := FItems[J];
|
---|
279 | FItems[J] := Q;
|
---|
280 | I := I + 1;
|
---|
281 | J := J - 1;
|
---|
282 | end;
|
---|
283 | until I > J;
|
---|
284 | if L < J then
|
---|
285 | QuickSort(L, J, Compare);
|
---|
286 | L := I;
|
---|
287 | until I >= R;
|
---|
288 | end;
|
---|
289 |
|
---|
290 | procedure TGList.Assign(Source: TGList);
|
---|
291 | var
|
---|
292 | I: TGListIndex;
|
---|
293 | begin
|
---|
294 | Count := Source.Count;
|
---|
295 | I := 0;
|
---|
296 | while I < Count do begin
|
---|
297 | FItems[I] := Source[I];
|
---|
298 | I := I + 1;
|
---|
299 | end;
|
---|
300 | Update;
|
---|
301 | end;
|
---|
302 |
|
---|
303 | function TGList.Extract(Item: TGListItem): TGListItem;
|
---|
304 | var
|
---|
305 | I: TGListIndex;
|
---|
306 | begin
|
---|
307 | I := IndexOf(Item);
|
---|
308 | if I >= 0 then begin
|
---|
309 | Result := Item;
|
---|
310 | Delete(I);
|
---|
311 | end else
|
---|
312 | raise EListError.CreateFmt(SListIndexError, [0]);
|
---|
313 | end;
|
---|
314 |
|
---|
315 | function TGList.CompareMem(P1, P2: Pointer; Length: cardinal): Boolean;
|
---|
316 | var
|
---|
317 | I: Cardinal;
|
---|
318 | begin
|
---|
319 | Result := True;
|
---|
320 | I := 0;
|
---|
321 | if (P1) <> (P2) then
|
---|
322 | while Result and (I < Length) do
|
---|
323 | begin
|
---|
324 | Result := PByte(P1)^ = PByte(P2)^;
|
---|
325 | Inc(I);
|
---|
326 | Inc(pchar(P1));
|
---|
327 | Inc(pchar(P2));
|
---|
328 | end;
|
---|
329 | end;
|
---|
330 |
|
---|
331 | function TGList.IndexOf(Item: TGListItem; Start: TGListIndex): TGListIndex;
|
---|
332 | begin
|
---|
333 | Result := Start;
|
---|
334 | while (Result < FCount) and
|
---|
335 | // not CompareMem(@FItems[Result], @Item, SizeOf(TGListItem)) do
|
---|
336 | not (CompareByte(FItems[Result], Item, SizeOf(TGListItem)) = 0) do
|
---|
337 | Result := Result + 1;
|
---|
338 | if Result = FCount then Result := -1;
|
---|
339 | end;
|
---|
340 |
|
---|
341 | procedure TGList.Insert(Index: TGListIndex; Item: TGListItem);
|
---|
342 | begin
|
---|
343 | if (Index < 0) or (Index > FCount) then
|
---|
344 | raise EListError.CreateFmt(SListIndexError, [Index]);
|
---|
345 | try
|
---|
346 | BeginUpdate;
|
---|
347 | InsertCount(Index, 1);
|
---|
348 | FItems[Index] := Item;
|
---|
349 | finally
|
---|
350 | EndUpdate;
|
---|
351 | end;
|
---|
352 | end;
|
---|
353 |
|
---|
354 | procedure TGList.InsertList(Index: TGListIndex; List: TGList);
|
---|
355 | begin
|
---|
356 | if (Index < 0) or (Index > FCount) then
|
---|
357 | raise EListError.CreateFmt(SListIndexError, [Index]);
|
---|
358 | InsertCount(Index, List.Count);
|
---|
359 | ReplaceList(Index, List);
|
---|
360 | end;
|
---|
361 |
|
---|
362 | procedure TGList.InsertArray(Index: TGListIndex; Values: array of TGListItem);
|
---|
363 | begin
|
---|
364 | if (Index < 0) or (Index > FCount) then
|
---|
365 | raise EListError.CreateFmt(SListIndexError, [Index]);
|
---|
366 | InsertCount(Index, Length(Values));
|
---|
367 | ReplaceArray(Index, Values);
|
---|
368 | end;
|
---|
369 |
|
---|
370 | procedure TGList.InsertCount(Index: TGListIndex; ACount: TGListIndex);
|
---|
371 | begin
|
---|
372 | if (Index < 0) or (Index > FCount) then
|
---|
373 | raise EListError.CreateFmt(SListIndexError, [Index]);
|
---|
374 | Count := Count + ACount;
|
---|
375 | if Index < FCount then
|
---|
376 | System.Move(FItems[Index], FItems[Index + ACount], (FCount - ACount - Index) * SizeOf(TGListItem));
|
---|
377 | Update;
|
---|
378 | end;
|
---|
379 |
|
---|
380 | function TGList.IndexOfList(List: TGList; Start: TGListIndex): TGListIndex;
|
---|
381 | var
|
---|
382 | I: TGListIndex;
|
---|
383 | begin
|
---|
384 | if List.Count > 0 then begin
|
---|
385 | Result := IndexOf(List[0], Start);
|
---|
386 | if Result <> -1 then begin
|
---|
387 | I := 1;
|
---|
388 | while I < List.Count do begin
|
---|
389 | if not CompareMem(Addr(FItems[Result + I]), Addr(List.FItems[I]), SizeOf(TGListItem)) then begin
|
---|
390 | Result := -1;
|
---|
391 | Break;
|
---|
392 | end;
|
---|
393 | I := I + 1;
|
---|
394 | end;
|
---|
395 | end;
|
---|
396 | end else Result := -1;
|
---|
397 | end;
|
---|
398 |
|
---|
399 | function TGList.IndexOfArray(Values: array of TGListItem; Start: TGListIndex): TGListIndex;
|
---|
400 | var
|
---|
401 | I: TGListIndex;
|
---|
402 | begin
|
---|
403 | if Length(Values) > 0 then begin
|
---|
404 | Result := IndexOf(Values[0], Start);
|
---|
405 | if Result <> -1 then begin
|
---|
406 | I := 1;
|
---|
407 | while I < Length(Values) do begin
|
---|
408 | if not CompareMem(Addr(FItems[Result + I]), Addr(Values[I]), SizeOf(TGListItem)) then begin
|
---|
409 | Result := -1;
|
---|
410 | Break;
|
---|
411 | end;
|
---|
412 | I := I + 1;
|
---|
413 | end;
|
---|
414 | end;
|
---|
415 | end else Result := -1;
|
---|
416 | end;
|
---|
417 |
|
---|
418 | function TGList.GetLast: TGListItem;
|
---|
419 | begin
|
---|
420 | if FCount = 0 then
|
---|
421 | raise EListError.CreateFmt(SListIndexError, [0])
|
---|
422 | else
|
---|
423 | Result := FItems[FCount - 1];
|
---|
424 | end;
|
---|
425 |
|
---|
426 | procedure TGList.SetLast(AValue: TGListItem);
|
---|
427 | begin
|
---|
428 | if FCount = 0 then
|
---|
429 | raise EListError.CreateFmt(SListIndexError, [0])
|
---|
430 | else
|
---|
431 | FItems[FCount - 1] := AValue;
|
---|
432 | end;
|
---|
433 |
|
---|
434 | function TGList.GetFirst: TGListItem;
|
---|
435 | begin
|
---|
436 | if FCount = 0 then
|
---|
437 | raise EListError.CreateFmt(SListIndexError, [0])
|
---|
438 | else
|
---|
439 | Result := FItems[0];
|
---|
440 | end;
|
---|
441 |
|
---|
442 | procedure TGList.SetFirst(AValue: TGListItem);
|
---|
443 | begin
|
---|
444 | if FCount = 0 then
|
---|
445 | raise EListError.CreateFmt(SListIndexError, [0])
|
---|
446 | else
|
---|
447 | FItems[0] := AValue;
|
---|
448 | end;
|
---|
449 |
|
---|
450 | procedure TGList.Move(CurIndex, NewIndex: TGListIndex);
|
---|
451 | var
|
---|
452 | Temp: TGListItem;
|
---|
453 | begin
|
---|
454 | if ((CurIndex < 0) or (CurIndex > Count - 1)) then
|
---|
455 | raise EListError.CreateFmt(SListIndexError, [CurIndex]);
|
---|
456 | if ((NewIndex < 0) or (NewIndex > Count -1)) then
|
---|
457 | raise EListError.CreateFmt(SlistIndexError, [NewIndex]);
|
---|
458 | Temp := FItems[CurIndex];
|
---|
459 | if NewIndex > CurIndex then begin
|
---|
460 | System.Move(FItems[CurIndex + 1], FItems[CurIndex], (NewIndex - CurIndex) * SizeOf(TGListItem));
|
---|
461 | end else
|
---|
462 | if NewIndex < CurIndex then begin
|
---|
463 | System.Move(FItems[NewIndex], FItems[NewIndex + 1], (CurIndex - NewIndex) * SizeOf(TGListItem));
|
---|
464 | end;
|
---|
465 | FItems[NewIndex] := Temp;
|
---|
466 | //Delete(CurIndex);
|
---|
467 | //Insert(NewIndex, Temp);
|
---|
468 | Update;
|
---|
469 | end;
|
---|
470 |
|
---|
471 | procedure TGList.MoveItems(CurIndex, NewIndex, Count: TGListIndex);
|
---|
472 | var
|
---|
473 | S: Integer;
|
---|
474 | D: Integer;
|
---|
475 | begin
|
---|
476 | if CurIndex < NewIndex then begin
|
---|
477 | S := CurIndex + Count - 1;
|
---|
478 | D := NewIndex + Count - 1;
|
---|
479 | while S >= CurIndex do begin
|
---|
480 | Move(S, D);
|
---|
481 | S := S - 1;
|
---|
482 | D := D - 1;
|
---|
483 | end;
|
---|
484 | end else
|
---|
485 | if CurIndex > NewIndex then begin
|
---|
486 | S := CurIndex;
|
---|
487 | D := NewIndex;
|
---|
488 | while S < (CurIndex + Count) do begin
|
---|
489 | Move(S, D);
|
---|
490 | S := S + 1;
|
---|
491 | D := D + 1;
|
---|
492 | end;
|
---|
493 | end;
|
---|
494 | Update;
|
---|
495 | end;
|
---|
496 |
|
---|
497 | function TGList.Remove(Item: TGListItem): TGListIndex;
|
---|
498 | begin
|
---|
499 | Result := IndexOf(Item);
|
---|
500 | if Result <> -1 then
|
---|
501 | Delete(Result)
|
---|
502 | else raise Exception.CreateFmt(SItemNotFound, [0]);
|
---|
503 | end;
|
---|
504 |
|
---|
505 | function TGList.EqualTo(List: TGList): Boolean;
|
---|
506 | var
|
---|
507 | I: TGListIndex;
|
---|
508 | begin
|
---|
509 | Result := Count = List.Count;
|
---|
510 | if Result then begin
|
---|
511 | I := 0;
|
---|
512 | while I < Count do begin
|
---|
513 | if not CompareMem(Addr(FItems[I]), Addr(List.FItems[I]), SizeOf(TGListItem)) then begin
|
---|
514 | Result := False;
|
---|
515 | Break;
|
---|
516 | end;
|
---|
517 | I := I + 1;
|
---|
518 | end;
|
---|
519 | end;
|
---|
520 | end;
|
---|
521 |
|
---|
522 | procedure TGList.Reverse;
|
---|
523 | var
|
---|
524 | I: TGListIndex;
|
---|
525 | begin
|
---|
526 | I := 0;
|
---|
527 | while I < (Count div 2) do begin
|
---|
528 | Exchange(I, Count - 1 - I);
|
---|
529 | I := I + 1;
|
---|
530 | end;
|
---|
531 | Update;
|
---|
532 | end;
|
---|
533 |
|
---|
534 | procedure TGList.Sort(Compare: TSortCompare);
|
---|
535 | begin
|
---|
536 | if FCount > 1 then
|
---|
537 | QuickSort(0, FCount - 1, Compare);
|
---|
538 | Update;
|
---|
539 | end;
|
---|
540 |
|
---|
541 | procedure TGList.AddArray(Values: array of TGListItem);
|
---|
542 | var
|
---|
543 | I: TGListIndex;
|
---|
544 | begin
|
---|
545 | I := 0;
|
---|
546 | while I <= High(Values) do begin
|
---|
547 | Add(Values[I]);
|
---|
548 | I := I + 1;
|
---|
549 | end;
|
---|
550 | Update;
|
---|
551 | end;
|
---|
552 |
|
---|
553 | procedure TGList.SetArray(Values: array of TGListItem);
|
---|
554 | var
|
---|
555 | I: TGListIndex;
|
---|
556 | begin
|
---|
557 | Clear;
|
---|
558 | I := 0;
|
---|
559 | while I <= High(Values) do begin
|
---|
560 | Add(Values[I]);
|
---|
561 | I := I + 1;
|
---|
562 | end;
|
---|
563 | end;
|
---|
564 |
|
---|
565 | procedure TGList.BeginUpdate;
|
---|
566 | begin
|
---|
567 | Inc(FUpdateCount);
|
---|
568 | end;
|
---|
569 |
|
---|
570 | procedure TGList.EndUpdate;
|
---|
571 | begin
|
---|
572 | if FUpdateCount > 0 then Dec(FUpdateCount);
|
---|
573 | if FUpdateCount = 0 then DoUpdate;
|
---|
574 | end;
|
---|
575 |
|
---|
576 | procedure TGList.DoUpdate;
|
---|
577 | begin
|
---|
578 | if Assigned(FOnUpdate) then FOnUpdate(Self);
|
---|
579 | end;
|
---|
580 |
|
---|
581 | procedure TGList.Update;
|
---|
582 | begin
|
---|
583 | if FUpdateCount = 0 then DoUpdate;
|
---|
584 | end;
|
---|
585 |
|
---|
586 | function TGList.Implode(Separator: string; Converter: TToStringConverter): string;
|
---|
587 | var
|
---|
588 | I: TGListIndex;
|
---|
589 | begin
|
---|
590 | Result := '';
|
---|
591 | I := 0;
|
---|
592 | while I < Count do begin
|
---|
593 | Result := Result + Converter(FItems[I]);
|
---|
594 | if I < (Count - 1) then
|
---|
595 | Result := Result + Separator;
|
---|
596 | I := I + 1;
|
---|
597 | end;
|
---|
598 | end;
|
---|
599 |
|
---|
600 | procedure TGList.Explode(Text, Separator: string; Converter: TFromStringConverter; SlicesCount: Integer = -1);
|
---|
601 | begin
|
---|
602 | Clear;
|
---|
603 | while (Pos(Separator, Text) > 0) and
|
---|
604 | ((Count < (SlicesCount - 1)) or (SlicesCount = -1)) do begin
|
---|
605 | Add(Converter(Copy(Text, 1, Pos(Separator, Text) - 1)));
|
---|
606 | System.Delete(Text, 1, Pos(Separator, Text) + Length(Separator) - 1);
|
---|
607 | end;
|
---|
608 | Add(Converter(Text));
|
---|
609 | end;
|
---|
610 |
|
---|
611 | function TGList.Add(Item: TGListItem): TGListIndex;
|
---|
612 | begin
|
---|
613 | Count := Count + 1;
|
---|
614 | Result := FCount - 1;
|
---|
615 | FItems[Result] := Item;
|
---|
616 | Update;
|
---|
617 | end;
|
---|
618 |
|
---|
619 | procedure TGList.AddList(List: TGList);
|
---|
620 | var
|
---|
621 | I: TGListIndex;
|
---|
622 | J: TGListIndex;
|
---|
623 | begin
|
---|
624 | I := Count;
|
---|
625 | J := 0;
|
---|
626 | Count := Count + List.Count;
|
---|
627 | while I < Count do begin
|
---|
628 | Items[I] := List[J];
|
---|
629 | I := I + 1;
|
---|
630 | J := J + 1;
|
---|
631 | end;
|
---|
632 | Update;
|
---|
633 | end;
|
---|
634 |
|
---|
635 | procedure TGList.AddListPart(List: TGList; ItemIndex, ItemCount: TGListIndex);
|
---|
636 | var
|
---|
637 | I: TGListIndex;
|
---|
638 | J: TGListIndex;
|
---|
639 | begin
|
---|
640 | I := Count;
|
---|
641 | J := ItemIndex;
|
---|
642 | Count := Count + ItemCount;
|
---|
643 | while I < Count do begin
|
---|
644 | Items[I] := List[J];
|
---|
645 | I := I + 1;
|
---|
646 | J := J + 1;
|
---|
647 | end;
|
---|
648 | Update;
|
---|
649 | end;
|
---|
650 |
|
---|
651 | procedure TGList.Clear;
|
---|
652 | begin
|
---|
653 | Count := 0;
|
---|
654 | Capacity := 0;
|
---|
655 | end;
|
---|
656 |
|
---|
657 | procedure TGList.Delete(Index: TGListIndex);
|
---|
658 | begin
|
---|
659 | if (Index < 0) or (Index >= FCount) then
|
---|
660 | raise EListError.CreateFmt(SListIndexError, [Index]);
|
---|
661 | FCount := FCount - 1;
|
---|
662 | System.Move(FItems[Index + 1], FItems[Index], (FCount - Index) * SizeOf(TGListItem));
|
---|
663 | SetCapacityOptimized(Capacity - 1);
|
---|
664 | Update;
|
---|
665 | end;
|
---|
666 |
|
---|
667 | procedure TGList.DeleteItems(Index, Count: TGListIndex);
|
---|
668 | var
|
---|
669 | I: TGListIndex;
|
---|
670 | begin
|
---|
671 | I := Index;
|
---|
672 | while I < (Index + Count) do begin
|
---|
673 | Delete(Index);
|
---|
674 | I := I + 1;
|
---|
675 | end;
|
---|
676 | Update;
|
---|
677 | end;
|
---|
678 |
|
---|
679 | procedure TGList.Fill(Start, Count: TGListIndex; Value: TGListItem);
|
---|
680 | var
|
---|
681 | I: TGListIndex;
|
---|
682 | begin
|
---|
683 | I := Start;
|
---|
684 | while I < Count do begin
|
---|
685 | FItems[I] := Value;
|
---|
686 | I := I + 1;
|
---|
687 | end;
|
---|
688 | Update;
|
---|
689 | end;
|
---|
690 |
|
---|
691 | procedure TGList.Exchange(Index1, Index2: TGListIndex);
|
---|
692 | var
|
---|
693 | Temp: TGListItem;
|
---|
694 | begin
|
---|
695 | if ((Index1 >= FCount) or (Index1 < 0)) then
|
---|
696 | raise EListError.CreateFmt(SListIndexError, [Index1]);
|
---|
697 | if ((Index2 >= FCount) or (Index2 < 0)) then
|
---|
698 | raise EListError.CreateFmt(SListIndexError, [Index2]);
|
---|
699 | Temp := FItems[Index1];
|
---|
700 | FItems[Index1] := FItems[Index2];
|
---|
701 | FItems[Index2] := Temp;
|
---|
702 | Update;
|
---|
703 | end;
|
---|
704 |
|
---|
705 | {$UNDEF IMPLEMENTATION}
|
---|
706 | {$ENDIF}
|
---|