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 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140
|
{ $Id$ }
{
---------------------------------------------------------------------------
fpdbgutil.pp - Native freepascal debugger - Utilities
---------------------------------------------------------------------------
This unit contains utility functions
---------------------------------------------------------------------------
@created(Mon Apr 10th WET 2006)
@lastmod($Date$)
@author(Marc Weustink <marc@@dommelstein.nl>)
***************************************************************************
* *
* 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. *
* *
***************************************************************************
}
unit FpDbgUtil;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, fgl, math, LazUTF8, lazCollections,
UTF8Process, {$ifdef FORCE_LAZLOGGER_DUMMY} LazLoggerDummy {$else} LazLoggerBase {$endif}, syncobjs;
type
TFPDMode = (dm32, dm64);
THexValueFormatFlag = (hvfSigned, hvfPrefixPositive, hvfIncludeHexchar);
THexValueFormatFlags = set of THexValueFormatFlag;
TFpThreadWorkerQueue = class;
TFpWorkerThread = class;
{ TFpThreadWorkerItem }
TFpThreadWorkerItem = class
private const
TWSTATE_NEW = cardinal(0);
TWSTATE_RUNNING = cardinal(1);
TWSTATE_WAITING = cardinal(2);
TWSTATE_WAIT_WORKER = cardinal(3);
TWSTATE_DONE = cardinal(4);
TWSTATE_CANCEL = cardinal(5);
EVENT_DONE_INDICATOR = Pointer(1);
private
FWorkerItemEventPtr: PPRTLEvent;
FState: Cardinal;
FError: Exception;
FRefCnt: LongInt;
FStopRequested: Boolean;
FLogGroup: PLazLoggerLogGroup;
function GetIsCancelled: Boolean;
function GetIsDone: Boolean;
function MaybeWaitForPreviousWait(AQueue: TFpThreadWorkerQueue; AnEvntPtr: PPRTLEvent): boolean;
function MaybeWaitForEvent(AnEvnt: PRTLEvent): Boolean; inline;
protected
procedure DoExecute; virtual;
procedure DoFinished; virtual;
procedure DoUnQueued; virtual; // When queue shuts down / Not called when Item is Cancelled
procedure ExecuteInThread(MyWorkerThread: TFpWorkerThread); // called by worker thread
procedure WaitForFinish(AQueue: TFpThreadWorkerQueue; AWaitForExecInThread: Boolean); // called by main thread => calls DoExecute, if needed
procedure WaitForCancel(AQueue: TFpThreadWorkerQueue); // called by main thread => calls DoExecute, if needed
public
procedure Execute; // Exec in main thread / Only if NOT queued
procedure AddRef;
procedure DecRef;
function RefCount: Integer;
procedure RequestStop;
function DebugText: String; virtual;
property Error: Exception read FError;
property IsDone: Boolean read GetIsDone;
property IsCancelled: Boolean read GetIsCancelled;
property StopRequested: Boolean read FStopRequested; // Can be checeked by the worker / optional
end;
{ TFpWorkerThread }
TFpWorkerThread = class(TThread)
private
FQueue: TFpThreadWorkerQueue;
public
constructor Create(AQueue: TFpThreadWorkerQueue);
procedure Execute; override;
property Queue: TFpThreadWorkerQueue read FQueue;
end;
{ TFpThreadWorkerQueue }
TFpThreadWorkerQueue = class(specialize TLazThreadedQueue<TFpThreadWorkerItem>)
private type
TFpWorkerThreadList = specialize TFPGObjectList<TFpWorkerThread>;
protected type
TFpDbgTypedFifoQueue = class(TLazTypedFifoQueue)
function PushItem(const AItem: TFpThreadWorkerItem): Boolean; override;
end;
strict private
FWantedCount, FCurrentCount: Integer;
FThreadMonitor: TLazMonitor;
FWorkerThreadList: TFpWorkerThreadList;
FMainWaitEvent: PRTLEvent;
function GetCurrentCount: Integer;
function GetIdleThreadCount: integer;
function GetThreadCount: integer;
function GetThreads(AnIndex: Integer): TThread;
function GetWantedCount: Integer;
procedure SetThreadCount(AValue: integer);
protected
FLogGroup: PLazLoggerLogGroup;
FIdleThreadCount: integer;
function GetRtlEvent: PRTLEvent;
procedure FreeRtrEvent(AnEvent: PRTLEvent);
procedure RemoveThread(Item: TFpWorkerThread);
property WantedCount: Integer read GetWantedCount;
property CurrentCount: Integer read GetCurrentCount;
property ThreadMonitor: TLazMonitor read FThreadMonitor;
function CreateFifoQueue(AQueueDepth: Integer): TLazTypedFifoQueue; override;
public
constructor Create(AQueueDepth: Integer = 10; PushTimeout: cardinal = INFINITE; PopTimeout: cardinal = INFINITE);
destructor Destroy; override; // Will not wait for the threads.
procedure Clear; // Not thread safe // remove all none running items
procedure TerminateAllThreads(AWait: Boolean = False);
procedure DoProcessMessages; virtual;
procedure PushItem(const AItem: TFpThreadWorkerItem);
procedure PushItemIdleOrRun(const AItem: TFpThreadWorkerItem);
procedure WaitForItem(const AItem: TFpThreadWorkerItem; AWaitForExecInThread: Boolean = False); // called by main thread => calls DoExecute, if needed
procedure RemoveItem(const AItem: TFpThreadWorkerItem); // wait if already running
property ThreadCount: integer read GetThreadCount write SetThreadCount; // Not thread safe
property Threads[AnIndex: Integer]: TThread read GetThreads;
property IdleThreadCount: integer read GetIdleThreadCount;
property MainWaitEvent: PRTLEvent read FMainWaitEvent;
end;
{ TFpGlobalThreadWorkerQueue }
TFpGlobalThreadWorkerQueue = class(TFpThreadWorkerQueue)
private
FRefCnt: LongInt;
public
destructor Destroy; override;
procedure AddRef;
procedure DecRef;
end;
{ TFpDbgLockList }
TFpDbgLockList = class
private type
TEventList = specialize TFPGList<PRTLEvent>;
private
FMonitor: TLazMonitor;
FCachedEvent: PRTLEvent;
FWaitList: TEventList;
FList: TFPList;
public
constructor Create;
destructor Destroy; override;
procedure Lock;
procedure UnLock;
procedure GetLockFor(AnId: Pointer);
procedure GetLockFor(AnId: TObject);
procedure FreeLockFor(AnId: Pointer);
procedure FreeLockFor(AnId: TObject);
end;
const
DBGPTRSIZE: array[TFPDMode] of Integer = (4, 8);
var
{$ifdef cpui386}
GMode: TFPDMode = dm32 deprecated;
{$else}
GMode: TFPDMode = dm64; // deprecated;
{$endif}
function CompareUtf8BothCase(AnUpper, AnLower, AnUnknown: PChar): Boolean;
// Optimistic upper/lower case. Attempt Ansi only, but if none ansi is found, do utf8
function QuickUtf8UpperCase(const AText: String): String;
function QuickUtf8LowerCase(const AText: String): String;
function AlignPtr(Src: Pointer; Alignment: Byte): Pointer;
function HexValue(const AValue; ASize: Byte; AFlags: THexValueFormatFlags): String;
function FormatAddress(const AAddress): String;
function GetFpDbgGlobalWorkerQueue: TFpGlobalThreadWorkerQueue;
property FpDbgGlobalWorkerQueue: TFpGlobalThreadWorkerQueue read GetFpDbgGlobalWorkerQueue;
function dbgsThread: String;
function dbgsWorkItemState(AState: Integer): String;
var
ProcessMessagesProc: procedure of object; // Application.ProcessMessages, if needed. To be called while waiting.
implementation
var
FPDBG_THREADS, DBG_VERBOSE, DBG_ERRORS: PLazLoggerLogGroup;
TheFpDbgGlobalWorkerQueue: TFpGlobalThreadWorkerQueue = nil;
function GetFpDbgGlobalWorkerQueue: TFpGlobalThreadWorkerQueue;
begin
if TheFpDbgGlobalWorkerQueue = nil then
TheFpDbgGlobalWorkerQueue := TFpGlobalThreadWorkerQueue.Create(50);
Result := TheFpDbgGlobalWorkerQueue;
end;
function dbgsThread: String;
begin
if system.ThreadID = Classes.MainThreadID then
Result := '<MAIN>'
else
Result := DbgS(system.ThreadID);
end;
function dbgsWorkItemState(AState: Integer): String;
begin
case AState of
TFpThreadWorkerItem.TWSTATE_NEW : Result := 'TWSTATE_NEW';
TFpThreadWorkerItem.TWSTATE_RUNNING : Result := 'TWSTATE_RUNNING';
TFpThreadWorkerItem.TWSTATE_WAITING : Result := 'TWSTATE_WAITING';
TFpThreadWorkerItem.TWSTATE_WAIT_WORKER : Result := 'TWSTATE_WAIT_WORKER';
TFpThreadWorkerItem.TWSTATE_DONE : Result := 'TWSTATE_DONE';
TFpThreadWorkerItem.TWSTATE_CANCEL : Result := 'TWSTATE_CANCEL';
else RESULT := dbgs(AState)+'???';
end;
end;
function CompareUtf8BothCase(AnUpper, AnLower, AnUnknown: PChar): Boolean;
var
p: PChar;
begin
Result := False;
while (AnUpper^ <> #0) and (AnUnknown^ <> #0) do begin
p := AnUnknown;
if (AnUpper^ = AnUnknown^) then begin
// maybe uppercase
inc(AnUpper);
inc(AnUnknown);
while ((byte(AnUpper^) and $C0) = $C0) and (AnUpper^ = AnUnknown^) do begin
inc(AnUpper);
inc(AnUnknown);
end;
if ((byte(AnUpper^) and $C0) <> $C0) then begin // equal to upper
inc(AnLower);
while ((byte(AnLower^) and $C0) = $C0) do
inc(AnLower);
Continue;
end;
end
else begin
// skip the first byte / continuation bytes are skipped if lower matches
inc(AnUpper);
inc(AnUnknown);
end;
// Not upper, try lower
if (AnLower^ = p^) then begin
inc(AnLower);
inc(p);
while ((byte(AnLower^) and $C0) = $C0) and (AnLower^ = p^) do begin
inc(AnLower);
inc(p);
end;
if ((byte(AnLower^) and $C0) <> $C0) then begin // equal to lower
// adjust upper and unknown to codepoint
while ((byte(AnUpper^) and $C0) = $C0) do
inc(AnUnknown);
while ((byte(AnUnknown^) and $C0) = $C0) do
inc(AnUnknown);
Continue;
end;
end;
Result := False;
exit;
end;
Result := AnUpper^ = AnUnknown^; // both #0
end;
function QuickUtf8UpperCase(const AText: String): String;
var
src, dst: PChar;
c: Integer;
t: Char;
begin
SetLength(Result, Length(AText));
if Result = '' then
exit;
src := @AText[1];
dst := @Result[1];
c := Length(Result);
while c > 0 do begin
t := src^;
if (ord(t) and 128) <> 0 then
exit(UTF8UpperCase(AText));
if (t in ['a'..'z']) then
t := chr(ord(t) - 32);
dst^ := t;
dec(c);
inc(src);
inc(dst);
end;
end;
function QuickUtf8LowerCase(const AText: String): String;
var
src, dst: PChar;
c: Integer;
t: Char;
begin
SetLength(Result, Length(AText));
if Result = '' then
exit;
src := @AText[1];
dst := @Result[1];
c := Length(Result);
while c > 0 do begin
t := src^;
if (ord(t) and 128) <> 0 then
exit(UTF8UpperCase(AText));
if (t in ['A'..'Z']) then
t := chr(ord(t) + 32);
dst^ := t;
dec(c);
inc(src);
inc(dst);
end;
end;
function AlignPtr(Src: Pointer; Alignment: Byte): Pointer;
begin
Result := Pointer(((PtrUInt(Src) + Alignment - 1) and not PtrUInt(Alignment - 1)));
end;
function FormatAddress(const AAddress): String;
begin
Result := HexValue(AAddress, DBGPTRSIZE[GMode], [hvfIncludeHexchar]);
end;
function HexValue(const AValue; ASize: Byte; AFlags: THexValueFormatFlags): String;
var
i: Int64;
p: PByte;
begin
Result := '';
if ASize > 8
then begin
Result := 'HexValue: size to large';
Exit;
end;
if ASize = 0
then begin
Exit;
end;
p := @AValue;
if p[ASize - 1] < $80
then Exclude(AFlags, hvfSigned);
if hvfSigned in AFlags
then i := -1
else i := 0;
Move(AValue, i, ASize);
if hvfSigned in AFlags
then begin
i := not i + 1;
Result := '-';
end
else begin
if hvfPrefixPositive in AFlags
then Result := '+';
end;
if hvfIncludeHexchar in AFlags
then Result := Result + '$';
Result := Result + HexStr(i, ASize * 2);
end;
type
{ TFpThreadWorkerTerminateItem }
TFpThreadWorkerTerminateItem = class(TFpThreadWorkerItem)
end;
{ TFpDbgLockList }
constructor TFpDbgLockList.Create;
begin
FMonitor := TLazMonitor.create;
FCachedEvent := RTLEventCreate;
FWaitList := TEventList.Create;
FList := TFPList.Create;
end;
destructor TFpDbgLockList.Destroy;
begin
FMonitor.Free;
if FCachedEvent <> nil then
RTLeventdestroy(FCachedEvent);
FWaitList.Free;
FList.Free;
inherited Destroy;
end;
procedure TFpDbgLockList.Lock;
begin
FMonitor.Enter;
end;
procedure TFpDbgLockList.UnLock;
begin
FMonitor.Leave;
end;
procedure TFpDbgLockList.GetLockFor(AnId: Pointer);
var
WaitEvent: PRTLEvent;
begin
WaitEvent := nil;
while true do begin
FMonitor.Enter;
try
if FList.IndexOf(AnId) < 0 then begin
FList.Add(AnId);
if WaitEvent <> nil then begin
FWaitList.Remove(WaitEvent);
if FCachedEvent = nil then begin
RTLeventResetEvent(WaitEvent);
FCachedEvent := WaitEvent;
end
else
RTLeventdestroy(WaitEvent);
end;
break;
end;
if WaitEvent = nil then begin
WaitEvent := FCachedEvent;
FCachedEvent := nil;
if WaitEvent = nil then
WaitEvent := RTLEventCreate;
FWaitList.Add(WaitEvent);
end
else
RTLeventdestroy(WaitEvent);
finally
FMonitor.Leave;
end;
RTLeventWaitFor(WaitEvent);
end;
end;
procedure TFpDbgLockList.GetLockFor(AnId: TObject);
begin
GetLockFor(Pointer(AnId));
end;
procedure TFpDbgLockList.FreeLockFor(AnId: Pointer);
var
i: Integer;
begin
FMonitor.Enter;
try
FList.Remove(AnId);
for i := 0 to FWaitList.Count - 1 do
RTLeventSetEvent(FWaitList[i]);
finally
FMonitor.Leave;
end;
end;
procedure TFpDbgLockList.FreeLockFor(AnId: TObject);
begin
FreeLockFor(Pointer(AnId));
end;
{ TFpGlobalThreadWorkerQueue }
destructor TFpGlobalThreadWorkerQueue.Destroy;
begin
Assert(InterLockedExchangeAdd(FRefCnt, 0) = 0);
inherited Destroy;
end;
procedure TFpGlobalThreadWorkerQueue.AddRef;
begin
(* There are
- The current/fpdebug-main thread
- Maybe the IDE/main thread (if used LazDebuggerFp)
(however, fpdebug and IDE will rarely run both at high load => they can be counted as one)
- At least one, maybe more threads in the debugged target app
So no more than half the cpu-core count will be allocated for workers
*)
if InterLockedIncrement(FRefCnt) = 1 then
ThreadCount := Min(Max(1, GetSystemThreadCount div 2), 10);
end;
procedure TFpGlobalThreadWorkerQueue.DecRef;
begin
if InterLockedDecrement(FRefCnt) = 0 then
ThreadCount := 0;
end;
{ TFpThreadWorkerItem }
function TFpThreadWorkerItem.GetIsDone: Boolean;
begin
Result := InterLockedExchangeAdd(FState, 0) = TWSTATE_DONE;
end;
function TFpThreadWorkerItem.GetIsCancelled: Boolean;
begin
Result := InterLockedExchangeAdd(FState, 0) = TWSTATE_CANCEL;
end;
procedure TFpThreadWorkerItem.DoExecute;
begin
//
end;
procedure TFpThreadWorkerItem.DoFinished;
begin
if InterLockedExchangeAdd(FRefCnt, 0) <= 0 then
Destroy;
end;
procedure TFpThreadWorkerItem.DoUnQueued;
begin
//
end;
procedure TFpThreadWorkerItem.ExecuteInThread(MyWorkerThread: TFpWorkerThread);
var
OldState: Cardinal;
Evnt: PPRTLEvent;
begin
OldState := InterlockedCompareExchange(FState, TWSTATE_RUNNING, TWSTATE_NEW);
DebugLn(FLogGroup, '%s!%s Executing WorkItem: %s "%s" StopRequested=%s', [dbgsThread, DbgSTime, dbgsWorkItemState(OldState), DebugText, dbgs(StopRequested)]);
if (OldState in [TWSTATE_NEW, TWSTATE_WAIT_WORKER]) then begin
(* State is now either TWSTATE_RUNNING or TWSTATE_WAIT_WORKER *)
try
DebugLnEnter(FLogGroup);
if not StopRequested then
DoExecute;
finally
DebugLnExit(FLogGroup);
OldState := InterLockedExchange(FState, TWSTATE_DONE);
if (OldState in [TWSTATE_WAITING, TWSTATE_WAIT_WORKER, TWSTATE_CANCEL]) then begin
// The FState is in TWSTATE_WAIT___ or TWSTATE_CANCEL
// => so the event will exist, until it returned from RTLEventWaitFor
// It is save to access
Evnt := InterlockedExchange(FWorkerItemEventPtr, EVENT_DONE_INDICATOR);
if Evnt <> nil then
RTLEventSetEvent(Evnt^);
end
else
// If other threads have a ref, they may call WaitForFinish and read data from this.
if (InterLockedExchangeAdd(FRefCnt, 0) > 1) then
WriteBarrier;
DebugLn(FLogGroup, '%s!%s Finished WorkItem: %s "%s" StopRequested=%s', [dbgsThread, DbgSTime, dbgsWorkItemState(OldState), DebugText, dbgs(StopRequested)]);
end;
end;
end;
function TFpThreadWorkerItem.MaybeWaitForPreviousWait(
AQueue: TFpThreadWorkerQueue; AnEvntPtr: PPRTLEvent): boolean;
var
ExistingEvnt: Pointer;
begin
Result := False;
(* - Set FWorkerItemEventPtr before changing the state.
- Once the NewStateForWait is set to TWSTATE_WAIT___ or TWSTATE_CANCEL the event
belongs to the thread, until it has been waited for
- If there is an ExistingEvnt, it must be SET once our event was waited for.
*)
ExistingEvnt := InterlockedExchange(FWorkerItemEventPtr, AnEvntPtr);
if ExistingEvnt <> nil then begin
// Someone is already waiting for this Item
Result := True;
(* EVENT_DONE_INDICATOR
If we get EVENT_DONE_INDICATOR, then the WorkItem is done too => no need to wait
Return our item. The WorkThread is not going to use it anymore.
*)
if ExistingEvnt <> EVENT_DONE_INDICATOR then begin
(* - WorkItem may have advanced the FState to TWSTATE_DONE.
But in that case, it will have set our Evnt.
- If somebody else is waiting, their decission of "AWaitForExecInThread"
will be honored
*)
DebugLnEnter(FLogGroup);
RTLEventWaitFor(AnEvntPtr^);
RTLEventSetEvent(ExistingEvnt); // Signal the other waiting thread
DebugLnExit(FLogGroup, '%s!%s DONE WaitForFinish (with existing waiting): "%s" StopRequested=%s', [dbgsThread, DbgSTime, DebugText, dbgs(StopRequested)]);
end;
assert(FState = TWSTATE_DONE, 'TFpThreadWorkerItem.WaitForFinish: FState = TWSTATE_DONE');
end;
end;
function TFpThreadWorkerItem.MaybeWaitForEvent(AnEvnt: PRTLEvent): Boolean;
var
ExistingEvntPtr: PPRTLEvent;
begin
Result := False;
ExistingEvntPtr := InterlockedExchange(FWorkerItemEventPtr, EVENT_DONE_INDICATOR);
if (ExistingEvntPtr <> nil) and (ExistingEvntPtr^ <> nil) and (ExistingEvntPtr^ <> AnEvnt) then begin // Some one else is waiting
RTLEventSetEvent(ExistingEvntPtr^);
RTLEventWaitFor(AnEvnt);
Result := True;
end;
end;
procedure TFpThreadWorkerItem.WaitForFinish(AQueue: TFpThreadWorkerQueue;
AWaitForExecInThread: Boolean);
var
OldState: Cardinal;
Evnt: PRTLEvent;
begin
(* | True (wait for run in work thread) | False (run in caller thread)
TWSTATE_NEW : mark TWSTATE_WAIT_WORKER => wait : ~
TWSTATE_RUNNING : mark TWSTATE_WAIT_WORKER => wait : mark TWSTATE_WAITING => wait
TWSTATE_WAITING : 2ndary wait call, leave to primary : ~
TWSTATE_WAIT_WORKER : 2ndary wait call, leave to primary : ~
TWSTATE_DONE : KEEP (will be restored at exit) : ~
TWSTATE_CANCEL : not allowed : ~
*)
if FState = TWSTATE_DONE then
exit;
Evnt := AQueue.GetRtlEvent;
if MaybeWaitForPreviousWait(AQueue, @Evnt) then begin
AQueue.FreeRtrEvent(Evnt);
exit;
end;
(* - There was no other thread waiting
- MaybeWaitForPreviousWait has set FWorkerItemEventPtr, therefore:
=> *** NO OTHER THREAD WILL ENTER THE CODE BELOW ***
- We must set FState to TWSTATE_WAIT___ or TWSTATE_CANCEL
=> in order for the WorkerThread to trigger the event
=> if the WorkerThread has gone TWSTATE_DONE the event will NOT be triggered
*)
if AWaitForExecInThread then begin
OldState := InterlockedExchange(FState, TWSTATE_WAIT_WORKER);
DebugLn(FLogGroup, '%s!%s WaitForFinish (WITH exe): %s "%s" StopRequested=%s', [dbgsThread, DbgSTime, dbgsWorkItemState(OldState), DebugText, dbgs(StopRequested)]);
assert(not (OldState in [TWSTATE_WAITING, TWSTATE_WAIT_WORKER, TWSTATE_CANCEL]), 'TFpThreadWorkerItem.WaitForFinish: not (OldState in [TWSTATE_WAITING, TWSTATE_WAIT_WORKER, TWSTATE_CANCEL])');
if (OldState in [TWSTATE_NEW, TWSTATE_RUNNING]) then begin
DebugLnEnter(FLogGroup);
RTLEventWaitFor(Evnt);
DebugLnExit(FLogGroup, '%s!%s DONE WaitForFinish (WITH exe): "%s" StopRequested=%s', [dbgsThread, DbgSTime, DebugText, dbgs(StopRequested)]);
end
else begin
assert(OldState = TWSTATE_DONE, 'TFpThreadWorkerItem.WaitForFinish: OldState = TWSTATE_DONE');
FState := TWSTATE_DONE;
if not MaybeWaitForEvent(Evnt) then
ReadBarrier; // State must have advanced to TWSTATE_DONE;
end;
end
else
begin
OldState := InterlockedExchange(FState, TWSTATE_WAITING);
DebugLn(FLogGroup, '%s!%s WaitForFinish (NO exe): %s "%s" StopRequested=%s', [dbgsThread, DbgSTime, dbgsWorkItemState(OldState), DebugText, dbgs(StopRequested)]);
assert(not (OldState in [TWSTATE_WAITING, TWSTATE_WAIT_WORKER, TWSTATE_CANCEL]), 'TFpThreadWorkerItem.WaitForFinish: not (OldState in [TWSTATE_WAITING, TWSTATE_WAIT_WORKER, TWSTATE_CANCEL])');
if OldState = TWSTATE_NEW then begin
DoExecute;
InterLockedExchange(FState, TWSTATE_DONE);
MaybeWaitForEvent(Evnt);
end
else
if OldState = TWSTATE_RUNNING then begin
DebugLnEnter(FLogGroup);
RTLEventWaitFor(Evnt);
DebugLnExit(FLogGroup, '%s!%s DONE WaitForFinish (NO exe): "%s" StopRequested=%s', [dbgsThread, DbgSTime, DebugText, dbgs(StopRequested)]);
end
else begin
assert(OldState = TWSTATE_DONE, 'TFpThreadWorkerItem.WaitForFinish: OldState = TWSTATE_DONE');
FState := TWSTATE_DONE;
if not MaybeWaitForEvent(Evnt) then
ReadBarrier;
end;
end;
AQueue.FreeRtrEvent(Evnt);
assert(FState = TWSTATE_DONE, 'TFpThreadWorkerItem.WaitForFinish: FState = TWSTATE_DONE');
end;
procedure TFpThreadWorkerItem.WaitForCancel(AQueue: TFpThreadWorkerQueue);
var
OldState: Cardinal;
Evnt: PRTLEvent;
begin
// TWSTATE_NEW : mark TWSTATE_CANCEL
// TWSTATE_RUNNING : mark TWSTATE_CANCEL, wait
// TWSTATE_WAITING : impossible
// TWSTATE_WAIT_WORKER : impossible
// TWSTATE_DONE : KEEP (will be restored at exit)
// TWSTATE_CANCEL : KEEP
FStopRequested := True;
//RequestStop; // Can not call RequestStop / might change the state => must first call MaybeWaitForPreviousWait
if FState = TWSTATE_DONE then
exit;
Evnt := AQueue.GetRtlEvent;
if MaybeWaitForPreviousWait(AQueue, @Evnt) then begin
AQueue.FreeRtrEvent(Evnt);
exit;
end;
(* - There was no other thread waiting
- MaybeWaitForPreviousWait has set FWorkerItemEventPtr, therefore:
=> *** NO OTHER THREAD WILL ENTER THE CODE BELOW ***
*)
OldState := InterLockedExchange(FState, TWSTATE_CANCEL); // Prevent thread form executing this
Debugln(FLogGroup, '%s!%s WaitForCancel: %s "%s"', [dbgsThread, DbgSTime, dbgsWorkItemState(OldState), DebugText]);
assert(not (OldState in [TWSTATE_WAITING, TWSTATE_WAIT_WORKER]), 'TFpThreadWorkerItem.WaitForCancel: not (OldState in [TWSTATE_WAITING, TWSTATE_WAIT_WORKER])');
if OldState = TWSTATE_RUNNING then begin
DebugLnEnter(FLogGroup);
RTLEventWaitFor(Evnt);
DebugLnExit(FLogGroup, '%s!%s DONE WaitForCancel: "%s"', [dbgsThread, DbgSTime, DebugText]);
end
else begin
if OldState = TWSTATE_DONE then begin
FState := TWSTATE_DONE;
end;
MaybeWaitForEvent(Evnt);
end;
AQueue.FreeRtrEvent(Evnt);
end;
procedure TFpThreadWorkerItem.Execute;
begin
DoExecute;
FState := TWSTATE_DONE;
end;
procedure TFpThreadWorkerItem.AddRef;
begin
InterLockedIncrement(FRefCnt);
end;
procedure TFpThreadWorkerItem.DecRef;
begin
if Self = nil then
exit;
if InterLockedDecrement(FRefCnt) <= 0 then
DoFinished;
end;
function TFpThreadWorkerItem.RefCount: Integer;
begin
Result := InterLockedExchangeAdd(FRefCnt, 0);
end;
procedure TFpThreadWorkerItem.RequestStop;
begin
FStopRequested := True;
InterlockedCompareExchange(FState, TWSTATE_CANCEL, TWSTATE_NEW); // if not running, then WaitForcancel
end;
function TFpThreadWorkerItem.DebugText: String;
begin
Result := DbgSName(Self);
end;
{ TFpWorkerThread }
constructor TFpWorkerThread.Create(AQueue: TFpThreadWorkerQueue);
begin
FQueue := AQueue;
FreeOnTerminate := True;
inherited Create(False);
end;
procedure TFpWorkerThread.Execute;
var
WorkItem: TFpThreadWorkerItem;
IsMarkedIdle: Boolean;
begin
IsMarkedIdle := False;
while not (Terminated or FQueue.ShutDown) do begin
if (FQueue.PopItemTimeout(WorkItem, 0) <> wrSignaled) or
(WorkItem = nil)
then begin
if not IsMarkedIdle then begin
InterLockedIncrement(FQueue.FIdleThreadCount);
IsMarkedIdle := True;
end;
if (FQueue.PopItem(WorkItem) <> wrSignaled) or
(WorkItem = nil)
then
Continue;
end;
if WorkItem is TFpThreadWorkerTerminateItem then begin
WorkItem.DecRef;
if Terminated then // no need to check
break;
if FQueue.CurrentCount > FQueue.WantedCount then begin
FQueue.ThreadMonitor.Enter;
try
if FQueue.ThreadCount > FQueue.WantedCount then
break;
finally
FQueue.ThreadMonitor.Leave;
end;
end;
Continue;
end;
if IsMarkedIdle then begin
InterLockedDecrement(FQueue.FIdleThreadCount);
IsMarkedIdle := False;
end;
try
WorkItem.ExecuteInThread(Self);
except
on E: Exception do begin
WorkItem.FError := E;
DebugLn(FQueue.FLogGroup or DBG_ERRORS, '%s!%s Thread-Workitem raised exception: "%s" => %s: "%s"', [dbgsThread, DbgSTime, WorkItem.DebugText, E.Classname, E.Message]);
end;
end;
try
WorkItem.DecRef;
except
on E: Exception do
debugln(FQueue.FLogGroup or DBG_ERRORS, '%s!%s Exception in WorkItem.DecRef: %s', [dbgsThread, DbgSTime, E.Message]);
end;
end;
if IsMarkedIdle then
InterLockedDecrement(FQueue.FIdleThreadCount);
debugln(FQueue.FLogGroup, '%s!%s WorkerThread-Exit', [dbgsThread, DbgSTime]);
FQueue.RemoveThread(Self);
end;
{ TFpThreadWorkerQueue.TFpDbgTypedFifoQueue }
function TFpThreadWorkerQueue.TFpDbgTypedFifoQueue.PushItem(
const AItem: TFpThreadWorkerItem): Boolean;
begin
if IsFull then
Grow(Min(QueueSize, 100));
Result := inherited PushItem(AItem);
assert(Result, 'TFpThreadWorkerQueue.TFpDbgTypedFifoQueue.PushItem: Result');
end;
{ TFpThreadWorkerQueue }
function TFpThreadWorkerQueue.GetThreadCount: integer;
begin
FThreadMonitor.Enter;
try
Result := FWorkerThreadList.Count;
finally
FThreadMonitor.Leave;
end;
end;
function TFpThreadWorkerQueue.GetThreads(AnIndex: Integer): TThread;
begin
if AnIndex >= FWorkerThreadList.Count then
Result := nil
else
Result := FWorkerThreadList[AnIndex];
end;
function TFpThreadWorkerQueue.GetCurrentCount: Integer;
begin
Result := InterLockedExchangeAdd(FCurrentCount, 0);
end;
function TFpThreadWorkerQueue.GetIdleThreadCount: integer;
begin
Result := InterLockedExchangeAdd(FIdleThreadCount, 0);
end;
function TFpThreadWorkerQueue.GetWantedCount: Integer;
begin
Result := InterLockedExchangeAdd(FWantedCount, 0);
end;
procedure TFpThreadWorkerQueue.SetThreadCount(AValue: integer);
var
c: Integer;
begin
FThreadMonitor.Enter;
try
InterLockedExchange(FWantedCount, AValue);
FWantedCount := AValue;
c := FWorkerThreadList.Count;
if c > AValue then begin
while c > AValue do begin
dec(c);
PushItem(TFpThreadWorkerTerminateItem.Create); // will terminate one thread, if no more work is to be done
end;
InterLockedExchange(FCurrentCount, FWorkerThreadList.Count);
end
else
begin
// increase
FWorkerThreadList.Count := AValue;
InterLockedExchange(FCurrentCount, AValue);
while c < AValue do begin
FWorkerThreadList[c] := TFpWorkerThread.Create(Self);
inc(c);
end;
end;
finally
FThreadMonitor.Leave;
end;
end;
function TFpThreadWorkerQueue.GetRtlEvent: PRTLEvent;
begin
Result := InterlockedExchange(FMainWaitEvent, nil);
if Result = nil then
Result := RTLEventCreate;
end;
procedure TFpThreadWorkerQueue.FreeRtrEvent(AnEvent: PRTLEvent);
begin
assert(AnEvent <> nil, 'TFpThreadWorkerQueue.FreeRtrEvent: AnEvent <> nil');
RTLEventResetEvent(AnEvent);
AnEvent := InterlockedExchange(FMainWaitEvent, AnEvent);
if AnEvent <> nil then
RTLEventDestroy(AnEvent);
end;
procedure TFpThreadWorkerQueue.RemoveThread(Item: TFpWorkerThread);
begin
FThreadMonitor.Enter;
try
FWorkerThreadList.Remove(Item);
InterLockedExchange(FCurrentCount, FWorkerThreadList.Count);
finally
FThreadMonitor.Leave;
end;
end;
function TFpThreadWorkerQueue.CreateFifoQueue(AQueueDepth: Integer
): TLazTypedFifoQueue;
begin
Result := TFpDbgTypedFifoQueue.create(AQueueDepth);
end;
constructor TFpThreadWorkerQueue.Create(AQueueDepth: Integer;
PushTimeout: cardinal; PopTimeout: cardinal);
begin
FLogGroup := FPDBG_THREADS;
FThreadMonitor:=TLazMonitor.create;
inherited create(AQueueDepth, PushTimeout, PopTimeout);
FMainWaitEvent := RTLEventCreate;
FWorkerThreadList := TFpWorkerThreadList.Create(False);
end;
destructor TFpThreadWorkerQueue.Destroy;
begin
DoShutDown;
TerminateAllThreads(True);
inherited Destroy;
FWorkerThreadList.Free;
RTLeventdestroy(FMainWaitEvent);
FThreadMonitor.Free;
end;
procedure TFpThreadWorkerQueue.Clear;
var
WorkItem: TFpThreadWorkerItem;
begin
Lock;
try
while TryPopItemUnprotected(WorkItem) do begin
WorkItem.DoUnQueued;
WorkItem.DecRef;
end;
finally
Unlock;
end;
end;
procedure TFpThreadWorkerQueue.TerminateAllThreads(AWait: Boolean);
var
WorkItem: TFpThreadWorkerItem;
i: Integer;
mt: Boolean;
begin
FThreadMonitor.Enter;
Lock;
try
ThreadCount := 0;
for i := 0 to FWorkerThreadList.Count - 1 do
FWorkerThreadList[i].Terminate; // also signals that the queue is no longer valid
while TryPopItemUnprotected(WorkItem) do begin
WorkItem.RequestStop;
WorkItem.DoUnQueued;
WorkItem.DecRef;
end;
finally
Unlock;
FThreadMonitor.Leave;
end;
ThreadCount := 0;
if AWait then begin
// Wait for threads.
i := 0;
mt := MainThreadID = ThreadID;
while CurrentCount > 0 do begin
sleep(1);
if mt then begin
CheckSynchronize(1);
if (i and 15) = 0 then
DoProcessMessages;
end;
if (not ShutDown) and (TotalItemsPushed = TotalItemsPopped) then
ThreadCount := 0; // Add more TFpThreadWorkerTerminateItem inc(i);
inc(i);
end;
// Free any TFpThreadWorkerTerminateItem items that were not picked up
Clear;
end;
end;
procedure TFpThreadWorkerQueue.DoProcessMessages;
begin
if ProcessMessagesProc <> nil then
ProcessMessagesProc();
end;
procedure TFpThreadWorkerQueue.PushItem(const AItem: TFpThreadWorkerItem);
begin
DebugLn(FLogGroup and DBG_VERBOSE, '%s!%s PUSH WorkItem: "%s"', [dbgsThread, DbgSTime, AItem.DebugText]);
AItem.FLogGroup := FLogGroup;
AItem.AddRef;
if ShutDown or (ThreadCount = 0) then begin
AItem.DoUnQueued;
AItem.DecRef;
exit;
end;
inherited PushItem(AItem);
end;
procedure TFpThreadWorkerQueue.PushItemIdleOrRun(
const AItem: TFpThreadWorkerItem);
var
q: Boolean;
begin
DebugLn(FLogGroup and DBG_VERBOSE, '%s!%s PUSHorRUN WorkItem: "%s"', [dbgsThread, DbgSTime, AItem.DebugText]);
AItem.FLogGroup := FLogGroup;
AItem.AddRef;
if ShutDown or (ThreadCount = 0) then begin
AItem.DoUnQueued;
AItem.DecRef;
exit;
end;
Lock;
try
q := IdleThreadCount > 0;
if q then
inherited TryPushItemUnprotected(AItem);
finally
Unlock;
end;
if not q then begin
AItem.DoExecute;
AItem.DecRef;
end;
end;
procedure TFpThreadWorkerQueue.RemoveItem(const AItem: TFpThreadWorkerItem);
begin
if AItem <> nil then
AItem.WaitForCancel(Self);
end;
procedure TFpThreadWorkerQueue.WaitForItem(const AItem: TFpThreadWorkerItem;
AWaitForExecInThread: Boolean);
begin
AItem.WaitForFinish(Self, AWaitForExecInThread);
end;
initialization
FPDBG_THREADS := DebugLogger.FindOrRegisterLogGroup('FPDBG_THREADS' {$IFDEF FPDBG_THREADS} , True {$ENDIF} );
DBG_VERBOSE := DebugLogger.FindOrRegisterLogGroup('DBG_VERBOSE' {$IFDEF DBG_VERBOSE} , True {$ENDIF} );
DBG_ERRORS := DebugLogger.FindOrRegisterLogGroup('DBG_ERRORS' {$IFDEF DBG_ERRORS} , True {$ENDIF} );
finalization
TheFpDbgGlobalWorkerQueue.Free;
end.
|