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 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617
|
{
***************************************************************************
* *
* 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: Mattias Gaertner
Abstract:
Running external programs and parsing their output lines.
}
unit ExtTools;
{$mode objfpc}{$H+}
{off $DEFINE VerboseExtToolErrors}
{off $DEFINE VerboseExtToolAddOutputLines}
{off $DEFINE VerboseExtToolThread}
interface
uses
// RTL + FCL
Classes, SysUtils, math, process, Pipes, Laz_AVL_Tree,
// LazUtils
FileUtil, LazFileUtils, LazUtilities, LazLoggerBase, UTF8Process, LazUTF8,
UITypes, AvgLvlTree,
// IDEIntf
IDEExternToolIntf, BaseIDEIntf, MacroIntf, LazMsgDialogs,
// IDE
IDECmdLine, TransferMacros, LazarusIDEStrConsts;
type
TLMVToolState = (
lmvtsRunning,
lmvtsSuccess,
lmvtsFailed
);
TLMVToolStates = set of TLMVToolState;
{ TLazExtToolView }
TLazExtToolView = class(TExtToolView)
private
FToolState: TLMVToolState;
protected
procedure SetToolState(AValue: TLMVToolState); virtual;
public
property ToolState: TLMVToolState read FToolState write SetToolState;
end;
TExternalTool = class;
{ TExternalToolThread }
TExternalToolThread = class(TThread)
private
fLines: TStringList;
FTool: TExternalTool;
procedure SetTool(AValue: TExternalTool);
public
property Tool: TExternalTool read FTool write SetTool;
procedure Execute; override;
procedure DebuglnThreadLog(const Args: array of const);
destructor Destroy; override;
end;
{ TExternalTool }
TExternalTool = class(TAbstractExternalTool)
private
FThread: TExternalToolThread;
fExecuteAfter: TFPList; // list of TExternalTool
fExecuteBefore: TFPList; // list of TExternalTool
fNeedAfterSync: boolean;
fOutputCountNotified: integer;
procedure ProcessRunning; // (worker thread) after Process.Execute
procedure ProcessStopped; // (worker thread) when process stopped
procedure AddOutputLines(Lines: TStringList); // (worker thread) when new output arrived
procedure NotifyHandlerStopped; // (main thread) called by ProcessStopped
procedure NotifyHandlerNewOutput; // (main thread) called by AddOutputLines
procedure SetThread(AValue: TExternalToolThread); // main or worker thread
procedure SynchronizedImproveMessages; // (main thread) called by AddOutputLines
procedure DoTerminate; // (main thread)
protected
procedure DoExecute; override; // (main thread)
procedure DoStart; // (main thread)
procedure CreateView; virtual; abstract; // (main thread)
function GetExecuteAfter(Index: integer): TAbstractExternalTool; override;
function GetExecuteBefore(Index: integer): TAbstractExternalTool; override;
procedure Notification(AComponent: TComponent; Operation: TOperation); override;
function CanFree: boolean; override;
procedure QueueAsyncAutoFree; virtual; abstract;
public
constructor Create(aOwner: TComponent); override;
destructor Destroy; override;
property Thread: TExternalToolThread read FThread write SetThread;
procedure Execute; override;
procedure Terminate; override;
procedure WaitForExit; override;
function ResolveMacros: boolean; override;
function ExecuteAfterCount: integer; override;
function ExecuteBeforeCount: integer; override;
procedure RemoveExecuteBefore(Tool: TAbstractExternalTool); override;
function IsExecutedBefore(Tool: TAbstractExternalTool): Boolean; override;
procedure AddExecuteBefore(Tool: TAbstractExternalTool); override;
function CanStart: boolean;
function GetLongestEstimatedLoad: int64;
end;
TExternalToolClass = class of TExternalTool;
{ TExternalTools }
TExternalTools = class(TExternalToolsBase)
private
FCritSec: TRTLCriticalSection;
fRunning: TFPList; // list of TExternalTool, needs Enter/LeaveCriticalSection
FMaxProcessCount: integer;
fParsers: TFPList; // list of TExtToolParserClass
function GetRunningTools(Index: integer): TExternalTool;
procedure AddRunningTool(Tool: TExternalTool); // (worker thread)
procedure RemoveRunningTool(Tool: TExternalTool); // (worker thread)
function RunExtToolHandler(ToolOptions: TIDEExternalToolOptions): boolean;
function RunToolAndDetach(ToolOptions: TIDEExternalToolOptions): boolean;
function RunToolWithParsers(ToolOptions: TIDEExternalToolOptions): boolean;
protected
FToolClass: TExternalToolClass;
function GetParsers(Index: integer): TExtToolParserClass; override;
procedure Notification(AComponent: TComponent; Operation: TOperation); override;
public
constructor Create(aOwner: TComponent); override;
destructor Destroy; override;
function Add(Title: string): TAbstractExternalTool; override;
function IndexOf(Tool: TAbstractExternalTool): integer; override;
property MaxProcessCount: integer read FMaxProcessCount write FMaxProcessCount;
procedure Work;
function FindNextToolToStart: TExternalTool;
procedure Terminate(Tool: TExternalTool);
procedure TerminateAll; override;
procedure Clear; override;
function RunningCount: integer;
property RunningTools[Index: integer]: TExternalTool read GetRunningTools;
procedure EnterCriticalSection; override;
procedure LeaveCriticalSection; override;
// parsers
function ParserCount: integer; override;
procedure RegisterParser(Parser: TExtToolParserClass); override;
procedure UnregisterParser(Parser: TExtToolParserClass); override;
function FindParserForTool(const SubTool: string): TExtToolParserClass; override;
function FindParserWithName(const ParserName: string): TExtToolParserClass;
override;
function GetMsgTool(Msg: TMessageLine): TAbstractExternalTool; override;
end;
TExternalToolsClass = class of TExternalTools;
var
ExternalTools: TExternalTools = nil;
implementation
{ TLazExtToolView }
procedure TLazExtToolView.SetToolState(AValue: TLMVToolState);
begin
if FToolState=AValue then Exit;
FToolState:=AValue;
end;
{ TExternalTool }
procedure TExternalTool.ProcessRunning;
var
i: Integer;
begin
EnterCriticalSection;
try
if FStage<>etsStarting then exit;
FStage:=etsRunning;
finally
LeaveCriticalSection;
end;
for i:=0 to ParserCount-1 do
Parsers[i].InitReading;
end;
procedure TExternalTool.ProcessStopped;
var
i: Integer;
begin
{$IFDEF VerboseExtToolErrors}
if ErrorMessage<>'' then
DebuglnThreadLog(['TExternalTool.ThreadStopped ',Title,' ErrorMessage=',ErrorMessage]);
{$ENDIF}
EnterCriticalSection;
try
if (not Terminated) and (ErrorMessage='') then
begin
if ExitCode<>0 then
ErrorMessage:=Format(lisExitCode, [IntToStr(ExitCode)])
else if ExitStatus<>0 then
ErrorMessage:='ExitStatus '+IntToStr(ExitStatus);
end;
if FStage>=etsStopped then exit;
FStage:=etsStopped;
finally
LeaveCriticalSection;
end;
for i:=0 to ParserCount-1 do begin
try
Parsers[i].Done;
except
on E: Exception do begin
{$IFDEF VerboseExtToolErrors}
DebuglnThreadLog(['TExternalTool.ProcessStopped ',Title,' Error in ',DbgSName(Parsers[i]),': ',E.Message]);
{$ENDIF}
end;
end;
end;
try
if Tools<>nil then
TExternalTools(Tools).RemoveRunningTool(Self);
Thread.Synchronize(Thread,@NotifyHandlerStopped);
finally
fThread:=nil;
end;
end;
procedure TExternalTool.AddOutputLines(Lines: TStringList);
var
i: Integer;
Handled: Boolean;
Line: LongInt;
OldOutputCount: LongInt;
OldMsgCount: LongInt;
Parser: TExtToolParser;
NeedSynchronize: Boolean;
MsgLine: TMessageLine;
LineStr: String;
begin
{$IFDEF VerboseExtToolAddOutputLines}
DebuglnThreadLog(['TExternalTool.AddOutputLines ',Title,' Tick=',IntToStr(GetTickCount64),' Lines=',Lines.Count]);
{$ENDIF}
if (Lines=nil) or (Lines.Count=0) then exit;
NeedSynchronize:=false;
EnterCriticalSection;
try
OldOutputCount:=WorkerOutput.Count;
OldMsgCount:=WorkerMessages.Count;
WorkerOutput.AddStrings(Lines);
for i:=0 to ParserCount-1 do
Parsers[i].NeedSynchronize:=false;
// feed new lines into all parsers, converting raw lines into messages
for Line:=OldOutputCount to WorkerOutput.Count-1 do begin
Handled:=false;
LineStr:=WorkerOutput[Line];
for i:=0 to ParserCount-1 do begin
{$IFDEF VerboseExtToolAddOutputLines}
DebuglnThreadLog(['TExternalTool.AddOutputLines ',DbgSName(Parsers[i]),' Line="',WorkerOutput[Line],'" READLINE ...']);
{$ENDIF}
Parsers[i].ReadLine(LineStr,Line,Handled);
if Handled then break;
end;
if (not Handled) then begin
MsgLine:=WorkerMessages.CreateLine(Line);
MsgLine.Msg:=LineStr; // use raw output as default msg
MsgLine.Urgency:=mluDebug;
WorkerMessages.Add(MsgLine);
end;
end;
// let all parsers improve the new messages
if OldMsgCount<WorkerMessages.Count then begin
for i:=0 to ParserCount-1 do begin
Parser:=Parsers[i];
Parser.NeedSynchronize:=false;
Parser.NeedAfterSync:=false;
{$IFDEF VerboseExtToolAddOutputLines}
DebuglnThreadLog(['TExternalTool.AddOutputLines ',DbgSName(Parser),' IMPROVE after ReadLine ...']);
{$ENDIF}
Parser.ImproveMessages(etpspAfterReadLine);
if Parser.NeedSynchronize then
NeedSynchronize:=true;
end;
end;
finally
LeaveCriticalSection;
end;
// let all parsers improve the new messages
if NeedSynchronize then begin
{$IFDEF VerboseExtToolAddOutputLines}
DebuglnThreadLog(['TExternalTool.AddOutputLines SynchronizedImproveMessages ...']);
{$ENDIF}
Thread.Synchronize(Thread,@SynchronizedImproveMessages);
end;
EnterCriticalSection;
try
if fNeedAfterSync then begin
for i:=0 to ParserCount-1 do begin
Parser:=Parsers[i];
if not Parser.NeedAfterSync then continue;
{$IFDEF VerboseExtToolAddOutputLines}
DebuglnThreadLog(['TExternalTool.AddOutputLines ',DbgSName(Parser),' IMPROVE after sync ...']);
{$ENDIF}
Parser.ImproveMessages(etpspAfterSync);
end;
end;
// feed new messages into all viewers
if OldMsgCount<WorkerMessages.Count then begin
for i:=0 to ViewCount-1 do begin
{$IFDEF VerboseExtToolAddOutputLines}
DebuglnThreadLog(['TExternalTool.AddOutputLines ',DbgSName(Views[i]),' "',Views[i].Caption,'" ProcessNewMessages ...']);
{$ENDIF}
Views[i].ProcessNewMessages(Thread);
end;
end;
finally
LeaveCriticalSection;
end;
// notify main thread handlers for new output
// Note: The IDE itself does not set such a handler
if {$IFDEF VerboseExtToolAddOutputLines}true{$ELSE}FHandlers[ethNewOutput].Count>0{$ENDIF}
then begin
{$IFDEF VerboseExtToolAddOutputLines}
DebuglnThreadLog(['TExternalTool.AddOutputLines NotifyHandlerNewOutput ...']);
{$ENDIF}
Thread.Synchronize(Thread,@NotifyHandlerNewOutput);
end;
fOutputCountNotified:=WorkerOutput.Count;
{$IFDEF VerboseExtToolAddOutputLines}
DebuglnThreadLog(['TExternalTool.AddOutputLines END']);
{$ENDIF}
end;
procedure TExternalTool.NotifyHandlerStopped;
var
i: Integer;
View: TExtToolView;
begin
DoCallNotifyHandler(ethStopped);
EnterCriticalSection;
try
for i:=ViewCount-1 downto 0 do begin
if i>=ViewCount then continue;
View:=Views[i];
if ErrorMessage<>'' then
View.SummaryMsg:=ErrorMessage
else
View.SummaryMsg:=lisSuccess;
View.InputClosed; // this might delete the view
end;
finally
LeaveCriticalSection;
end;
if Group<>nil then
Group.ToolExited(Self);
// process stopped => start next
if Tools<>nil then
TExternalTools(Tools).Work;
end;
procedure TExternalTool.NotifyHandlerNewOutput;
var
i: integer;
begin
if fOutputCountNotified>=WorkerOutput.Count then exit;
{$IFDEF VerboseExtToolAddOutputLines}
for i:=fOutputCountNotified to WorkerOutput.Count-1 do
debugln('IDE-DEBUG: ',WorkerOutput[i]);
{$ENDIF}
i:=FHandlers[ethNewOutput].Count;
while FHandlers[ethNewOutput].NextDownIndex(i) do
TExternalToolNewOutputEvent(FHandlers[ethNewOutput][i])(Self,fOutputCountNotified);
end;
procedure TExternalTool.SetThread(AValue: TExternalToolThread);
var
CallAutoFree: Boolean;
begin
// Note: in lazbuild ProcessStopped sets FThread:=nil, so SetThread is not called.
EnterCriticalSection;
try
if FThread=AValue then Exit;
FThread:=AValue;
CallAutoFree:=CanFree;
finally
LeaveCriticalSection;
end;
if CallAutoFree then begin
if MainThreadID=GetCurrentThreadId then
AutoFree
else
QueueAsyncAutoFree;
end;
end;
procedure TExternalTool.SynchronizedImproveMessages;
var
i: Integer;
Parser: TExtToolParser;
begin
EnterCriticalSection;
try
fNeedAfterSync:=false;
for i:=0 to ParserCount-1 do begin
Parser:=Parsers[i];
if not Parser.NeedSynchronize then continue;
{$IFDEF VerboseExtToolAddOutputLines}
//debugln(['TExternalTool.SynchronizedImproveMessages ',DbgSName(Parser),' ...']);
{$ENDIF}
Parser.ImproveMessages(etpspSynchronized);
Parser.NeedSynchronize:=false;
if Parser.NeedAfterSync then
fNeedAfterSync:=true;
end;
finally
LeaveCriticalSection;
end;
end;
constructor TExternalTool.Create(aOwner: TComponent);
begin
inherited Create(aOwner);
FWorkerOutput:=TStringList.Create;
FProcess:=TProcessUTF8.Create(nil);
FProcess.Options:= [poUsePipes{$IFDEF Windows},poStderrToOutPut{$ENDIF}];
FProcess.ShowWindow := swoHide;
fExecuteBefore:=TFPList.Create;
fExecuteAfter:=TFPList.Create;
end;
destructor TExternalTool.Destroy;
begin
//debugln(['TExternalTool.Destroy ',Title]);
EnterCriticalSection;
try
FStage:=etsDestroying;
if Thread is TExternalToolThread then
TExternalToolThread(Thread).Tool:=nil;
FreeAndNil(FProcess);
FreeAndNil(FWorkerOutput);
FreeAndNil(fExecuteBefore);
FreeAndNil(fExecuteAfter);
finally
LeaveCriticalSection;
end;
inherited Destroy;
end;
procedure TExternalTool.DoExecute;
// in main thread
function CheckError: boolean;
begin
if (FStage>=etsStopped) then exit(true);
if (ErrorMessage='') then exit(false);
debugln(['Error: (lazarus) [TExternalTool.DoExecute.CheckError] Error=',ErrorMessage]);
EnterCriticalSection;
try
if FStage>=etsStopped then exit(true);
FStage:=etsStopped;
finally
LeaveCriticalSection;
end;
CreateView;
NotifyHandlerStopped;
Result:=true;
end;
var
ExeFile: String;
i: Integer;
aParser: TExtToolParser;
begin
if Terminated then exit;
// set Stage to etsInitializing
EnterCriticalSection;
try
if Stage<>etsInit then
raise Exception.Create('TExternalTool.Execute: already initialized');
FStage:=etsInitializing;
finally
LeaveCriticalSection;
end;
// resolve macros
if ResolveMacrosOnExecute then
begin
if not ResolveMacros then begin
if ErrorMessage='' then
ErrorMessage:=lisFailedToResolveMacros;
if CheckError then exit;
end;
end;
// init CurrentDirectory
Process.CurrentDirectory:=TrimFilename(Process.CurrentDirectory);
if not FilenameIsAbsolute(Process.CurrentDirectory) then
Process.CurrentDirectory:=AppendPathDelim(GetCurrentDirUTF8)+Process.CurrentDirectory;
// init Executable
Process.Executable:=TrimFilename(Process.Executable);
{$IFDEF VerboseExtToolThread}
debugln(['TExternalTool.DoExecute Exe=',Process.Executable]);
{$ENDIF}
if not FilenameIsAbsolute(Process.Executable) then begin
if ExtractFilePath(Process.Executable)<>'' then
Process.Executable:=AppendPathDelim(GetCurrentDirUTF8)+Process.Executable
else if Process.Executable='' then begin
ErrorMessage:=Format(lisToolHasNoExecutable, [Title]);
CheckError;
exit;
end else begin
ExeFile:=FindDefaultExecutablePath(Process.Executable,GetCurrentDirUTF8);
if ExeFile='' then begin
ErrorMessage:=Format(lisCanNotFindExecutable, [Process.Executable]);
CheckError;
exit;
end;
Process.Executable:=ExeFile;
end;
end;
ExeFile:=Process.Executable;
if not FileExistsUTF8(ExeFile) then begin
ErrorMessage:=Format(lisMissingExecutable, [ExeFile]);
CheckError;
exit;
end;
if DirectoryExistsUTF8(ExeFile) then begin
ErrorMessage:=Format(lisExecutableIsADirectory, [ExeFile]);
CheckError;
exit;
end;
if not FileIsExecutable(ExeFile) then begin
ErrorMessage:=Format(lisExecutableLacksThePermissionToRun, [ExeFile]);
CheckError;
exit;
end;
// init misc
WorkerMessages.BaseDirectory:=Process.CurrentDirectory;
WorkerDirectory:=WorkerMessages.BaseDirectory;
if EnvironmentOverrides.Count>0 then
AssignEnvironmentTo(Process.Environment,EnvironmentOverrides);
// init parsers
for i:=0 to ParserCount-1 do begin
aParser:=Parsers[i];
try
aParser.Init;
except
on E: Exception do begin
ErrorMessage:=Format(lisParser, [DbgSName(aParser), E.Message]);
CheckError;
exit;
end;
end;
end;
// set Stage to etsWaitingForStart
EnterCriticalSection;
try
if Stage<>etsInitializing then
raise Exception.Create('TExternalTool.Execute: bug in initialization');
FStage:=etsWaitingForStart;
finally
LeaveCriticalSection;
end;
end;
procedure TExternalTool.DoStart;
var
i: Integer;
begin
// set Stage to etsStarting
EnterCriticalSection;
try
if Stage<>etsWaitingForStart then
raise Exception.Create('TExternalTool.Execute: already started');
FStage:=etsStarting;
finally
LeaveCriticalSection;
end;
CreateView;
// mark running
if Tools<>nil then
TExternalTools(Tools).AddRunningTool(Self);
// start thread
if Thread=nil then begin
FThread:=TExternalToolThread.Create(true);
Thread.Tool:=Self;
FThread.FreeOnTerminate:=true;
end;
if ConsoleVerbosity>=-1 then begin
debugln(['Info: (lazarus) Execute Title="',Title,'"']);
debugln(['Info: (lazarus) Working Directory="',Process.CurrentDirectory,'"']);
debugln(['Info: (lazarus) Executable="',Process.Executable,'"']);
for i:=0 to Process.Parameters.Count-1 do
debugln(['Info: (lazarus) Param[',i,']="',Process.Parameters[i],'"']);
end;
Thread.Start;
end;
function TExternalTool.ExecuteBeforeCount: integer;
begin
Result:=fExecuteBefore.Count;
end;
function TExternalTool.ExecuteAfterCount: integer;
begin
Result:=fExecuteAfter.Count;
end;
function TExternalTool.GetExecuteAfter(Index: integer): TAbstractExternalTool;
begin
Result:=TAbstractExternalTool(fExecuteAfter[Index]);
end;
function TExternalTool.GetExecuteBefore(Index: integer): TAbstractExternalTool;
begin
Result:=TAbstractExternalTool(fExecuteBefore[Index]);
end;
procedure TExternalTool.DoTerminate;
var
NeedProcTerminate: Boolean;
begin
NeedProcTerminate:=false;
EnterCriticalSection;
try
//debugln(['TExternalTool.DoTerminate ',Title,' Terminated=',Terminated,' Stage=',dbgs(Stage)]);
if Terminated then exit;
if Stage=etsStopped then exit;
if ErrorMessage='' then
ErrorMessage:=lisAborted;
fTerminated:=true;
if Stage=etsRunning then
NeedProcTerminate:=true;
if Stage<etsStarting then
FStage:=etsStopped
else if Stage<=etsRunning then
FStage:=etsWaitingForStop;
finally
LeaveCriticalSection;
end;
if NeedProcTerminate and (Process<>nil) then
Process.Terminate(AbortedExitCode);
end;
procedure TExternalTool.Notification(AComponent: TComponent; Operation: TOperation);
begin
inherited Notification(AComponent, Operation);
if Operation=opRemove then begin
if fExecuteBefore<>nil then
fExecuteBefore.Remove(AComponent);
if fExecuteAfter<>nil then
fExecuteAfter.Remove(AComponent);
end;
end;
function TExternalTool.CanFree: boolean;
begin
Result:=(FThread=nil)
and inherited CanFree;
end;
function TExternalTool.IsExecutedBefore(Tool: TAbstractExternalTool): Boolean;
var
Visited: TFPList;
function Search(CurTool: TAbstractExternalTool): Boolean;
var
i: Integer;
begin
if CurTool=Tool then exit(true);
if Visited.IndexOf(CurTool)>=0 then exit(false);
Visited.Add(CurTool);
for i:=0 to CurTool.ExecuteBeforeCount-1 do
if Search(CurTool.ExecuteBefore[i]) then exit(true);
Result:=false;
end;
begin
Result:=false;
if Tool=Self then exit;
Visited:=TFPList.Create;
try
Result:=Search(Self);
finally
Visited.Free;
end;
end;
procedure TExternalTool.AddExecuteBefore(Tool: TAbstractExternalTool);
begin
//debugln(['TExternalTool.AddExecuteBefore Self=',Title,' Tool=',Tool.Title]);
if (Tool=Self) or (Tool.IsExecutedBefore(Self)) then
raise Exception.Create('TExternalTool.AddExecuteBefore: that would create a circle');
if (fExecuteBefore<>nil) and (fExecuteBefore.IndexOf(Tool)<0) then
fExecuteBefore.Add(Tool);
if (TExternalTool(Tool).fExecuteAfter<>nil)
and (TExternalTool(Tool).fExecuteAfter.IndexOf(Self)<=0) then
TExternalTool(Tool).fExecuteAfter.Add(Self);
end;
function TExternalTool.CanStart: boolean;
var
i: Integer;
ExecBefore: TAbstractExternalTool;
begin
Result:=false;
//debugln(['TExternalTool.CanStart ',Title,' ',dbgs(Stage)]);
if Stage<>etsWaitingForStart then exit;
if Terminated then exit;
for i:=0 to ExecuteBeforeCount-1 do begin
ExecBefore:=ExecuteBefore[i];
if ord(ExecBefore.Stage)<ord(etsStopped) then exit;
if ExecBefore.ErrorMessage<>'' then exit;
end;
Result:=true;
end;
function TExternalTool.GetLongestEstimatedLoad: int64;
type
TInfo = record
Load: int64;
end;
PInfo = ^TInfo;
var
ToolToInfo: TPointerToPointerTree;
function GetLoad(Tool: TExternalTool): int64;
var
Info: PInfo;
i: Integer;
begin
Info:=PInfo(ToolToInfo[Tool]);
if Info<>nil then
Result:=Info^.Load
else begin
New(Info);
Info^.Load:=1;
ToolToInfo[Tool]:=Info;
Result:=0;
for i:=0 to Tool.ExecuteAfterCount-1 do
Result:=Max(Result,GetLoad(TExternalTool(Tool.ExecuteAfter[i])));
inc(Result,Tool.EstimatedLoad);
Info^.Load:=Result;
end;
end;
var
Node: TAvlTreeNode;
Item: PPointerToPointerItem;
Info: PInfo;
begin
ToolToInfo:=TPointerToPointerTree.Create;
try
Result:=GetLoad(Self);
finally
Node:=ToolToInfo.Tree.FindLowest;
while Node<>nil do begin
Item:=PPointerToPointerItem(Node.Data);
Info:=PInfo(Item^.Value);
Dispose(Info);
Node:=ToolToInfo.Tree.FindSuccessor(Node);
end;
ToolToInfo.Free;
end;
end;
procedure TExternalTool.Execute;
begin
if Stage<>etsInit then
raise Exception.Create('TExternalTool.Execute "'+Title+'" already started');
DoExecute;
if Stage<>etsWaitingForStart then
exit;
if Tools<>nil then
TExternalTools(Tools).Work
else
DoStart;
end;
procedure TExternalTool.Terminate;
begin
if Tools<>nil then
TExternalTools(Tools).Terminate(Self)
else
DoTerminate;
end;
procedure TExternalTool.WaitForExit;
var
MyTools: TExternalToolsBase;
begin
MyTools:=Tools;
repeat
EnterCriticalSection;
try
if Stage=etsDestroying then exit;
if (Stage=etsStopped) and (FindUnfinishedView=nil) then exit;
finally
LeaveCriticalSection;
end;
// call synchronized tasks, this might free this tool
if MainThreadID=ThreadID then
begin
Assert(Owner is TExternalToolsBase, 'TExternalTool.WaitForExit: Owner is not TExternalToolsBase.');
TExternalToolsBase(Owner).HandleMesages;
end;
// check if this tool still exists
if MyTools.IndexOf(Self)<0 then exit;
// still running => wait
Sleep(10);
until false;
end;
function TExternalTool.ResolveMacros: boolean;
function Resolve(const aValue: string; out NewValue: string): boolean;
begin
NewValue:=aValue;
Result:=IDEMacros.SubstituteMacros(NewValue);
if Result then exit;
if ErrorMessage='' then
ErrorMessage:=Format(lisInvalidMacrosIn, [aValue]);
LazMessageDialog(lisCCOErrorCaption, Format(lisInvalidMacrosInExternalTool,
[aValue, Title]),
mtError,[mbCancel]);
end;
var
i: Integer;
s: string;
begin
if IDEMacros=nil then exit(true);
Result:=false;
if not Resolve(Process.CurrentDirectory,s) then exit;
Process.CurrentDirectory:=s;
if not Resolve(Process.Executable,s) then exit;
Process.Executable:=s;
for i:=0 to Process.Parameters.Count-1 do begin
if not Resolve(Process.Parameters[i],s) then exit;
Process.Parameters[i]:=s;
end;
for i:=0 to EnvironmentOverrides.Count-1 do begin
if not Resolve(EnvironmentOverrides[i],s) then exit;
EnvironmentOverrides[i]:=s;
end;
Result:=true;
end;
procedure TExternalTool.RemoveExecuteBefore(Tool: TAbstractExternalTool);
begin
if fExecuteBefore<>nil then
fExecuteBefore.Remove(Tool);
if TExternalTool(Tool).fExecuteAfter<>nil then
TExternalTool(Tool).fExecuteAfter.Remove(Self);
end;
{ TExternalTools }
function TExternalTools.RunExtToolHandler(ToolOptions: TIDEExternalToolOptions): boolean;
begin
{$IFDEF VerboseExtToolThread}
debugln(['TExternalTools.RunExtToolHandler ',ToolOptions.Title,
' exe="',ToolOptions.Executable,'" params="',ToolOptions.CmdLineParams,'"']);
{$ENDIF}
if ToolOptions.Parsers.Count=0 then
Result := RunToolAndDetach(ToolOptions)
else
Result := RunToolWithParsers(ToolOptions)
end;
function TExternalTools.RunToolAndDetach(ToolOptions: TIDEExternalToolOptions): boolean;
// simply run and detach
var
i: Integer;
Proc: TProcessUTF8;
sl: TStringList;
s, Path: String;
begin
Result:=false;
Proc:=TProcessUTF8.Create(nil);
try
Proc.InheritHandles:=false;
// working directory
s:=ToolOptions.WorkingDirectory;
if ToolOptions.ResolveMacros then begin
if not GlobalMacroList.SubstituteStr(s) then begin
debugln(['Error: (lazarus) [TExternalTools.RunToolAndDetach] ',ToolOptions.Title,' failed: macros of WorkerDirectory: "',ToolOptions.WorkingDirectory,'"']);
exit;
end;
end;
s:=ChompPathDelim(CleanAndExpandDirectory(s));
if not DirectoryExistsUTF8(s) then begin
debugln(['Error: (lazarus) [TExternalTools.RunToolAndDetach] ',ToolOptions.Title,' failed: missing directory "',s,'"']);
exit;
end;
Proc.CurrentDirectory:=s;
// environment
if ToolOptions.EnvironmentOverrides.Count>0 then
AssignEnvironmentTo(Proc.Environment,ToolOptions.EnvironmentOverrides);
if ToolOptions.ResolveMacros then begin
for i:=0 to Proc.Environment.Count-1 do begin
s:=Proc.Environment[i];
if not GlobalMacroList.SubstituteStr(s) then begin
debugln(['Error: (lazarus) [TExternalTools.RunToolAndDetach] ',ToolOptions.Title,' failed: environment override "',Proc.Environment,'"']);
exit;
end;
Proc.Environment[i]:=s;
end;
end;
// executable
s:=ToolOptions.Executable;
if ToolOptions.ResolveMacros then begin
if not GlobalMacroList.SubstituteStr(s) then begin
debugln(['Error: (lazarus) [TExternalTools.RunToolAndDetach] ',ToolOptions.Title,' failed: macros of Executable: "',ToolOptions.Executable,'"']);
exit;
end;
end;
if not FilenameIsAbsolute(s) then begin
// search in PATH
if Proc.Environment.Count>0 then
Path:=Proc.Environment.Values['PATH']
else
Path:=GetEnvironmentVariableUTF8('PATH');
s:=SearchFileInPath(s,Proc.CurrentDirectory,
Path, PathSeparator,
[]);
{$IFDEF Windows}
if (s='') and (ExtractFileExt(s)='') then begin
s:=SearchFileInPath(s+'.exe',Proc.CurrentDirectory,
Path, PathSeparator,
[]);
end;
{$ENDIF}
if s='' then begin
debugln(['Error: (lazarus) [TExternalTools.RunToolAndDetach] ',ToolOptions.Title,' failed: missing executable "',ToolOptions.Executable,'"']);
exit;
end;
end;
if not ( FilenameIsAbsolute(s) and FileExistsUTF8(s) ) then begin
debugln(['Error: (lazarus) [TExternalTools.RunToolAndDetach] ',ToolOptions.Title,' failed: missing executable: "',s,'"']);
exit;
end;
if DirectoryExistsUTF8(s) then begin
debugln(['Error: (lazarus) [TExternalTools.RunToolAndDetach] ',ToolOptions.Title,' failed: executable is a directory: "',s,'"']);
exit;
end;
if not FileIsExecutable(s) then begin
debugln(['Error: (lazarus) [TExternalTools.RunToolAndDetach] ',ToolOptions.Title,' failed: executable lacks permission to run: "',s,'"']);
exit;
end;
Proc.Executable:=s;
// params
s:=ToolOptions.CmdLineParams;
if ToolOptions.ResolveMacros then begin
if not GlobalMacroList.SubstituteStr(s) then begin
debugln(['Error: (lazarus) [TExternalTools.RunToolAndDetach] ',ToolOptions.Title,' failed: macros in cmd line params "',ToolOptions.CmdLineParams,'"']);
exit;
end;
end;
sl:=TStringList.Create;
try
SplitCmdLineParams(s,sl);
Proc.Parameters:=sl;
finally
sl.Free;
end;
// run and detach
if ToolOptions.ShowConsole then
Proc.Options:=Proc.Options+[poNewConsole]-[poNoConsole]
else
Proc.Options:=Proc.Options-[poNewConsole]+[poNoConsole];
if ToolOptions.HideWindow then
Proc.ShowWindow:=swoHide
else
Proc.ShowWindow:=swoShow;
try
Proc.Execute;
Result:=true;
except
end;
finally
Proc.Free;
end;
end;
function TExternalTools.RunToolWithParsers(ToolOptions: TIDEExternalToolOptions): boolean;
// run with parsers and messages
var
Tool: TAbstractExternalTool;
i: Integer;
begin
{$IFDEF VerboseExtToolThread}
debugln(['TExternalTools.RunToolWithParsers run with scanners ...']);
{$ENDIF}
Result:=false;
Tool:=Add(ToolOptions.Title);
Tool.Reference(Self,ClassName);
try
Tool.Hint:=ToolOptions.Hint;
Tool.Process.CurrentDirectory:=ToolOptions.WorkingDirectory;
Tool.Process.Executable:=ToolOptions.Executable;
Tool.CmdLineParams:=ToolOptions.CmdLineParams;
Tool.EnvironmentOverrides:=ToolOptions.EnvironmentOverrides;
Assert(Assigned(ToolOptions.Parsers), 'TExternalTools.RunToolWithParsers: Parsers=Nil.');
for i:=0 to ToolOptions.Parsers.Count-1 do
Tool.AddParsers(ToolOptions.Parsers[i]);
if ToolOptions.ShowConsole then
Tool.Process.Options:=Tool.Process.Options+[poNewConsole]-[poNoConsole]
else
Tool.Process.Options:=Tool.Process.Options-[poNewConsole]+[poNoConsole];
if ToolOptions.HideWindow then
Tool.Process.ShowWindow:=swoHide
else
Tool.Process.ShowWindow:=swoShow;
if ToolOptions.ResolveMacros and not Tool.ResolveMacros then begin
debugln(['Error: (lazarus) [TExternalTools.RunToolWithParsers] failed to resolve macros']);
exit;
end;
{$IFDEF VerboseExtToolThread}
debugln(['TExternalTools.RunToolWithParsers Execute ',Tool.Title,' WD="',Tool.Process.CurrentDirectory,'" Exe="',Tool.Process.Executable,'" Params="',Tool.CmdLineParams,'" ...']);
{$ENDIF}
Tool.Execute;
{$IFDEF VerboseExtToolThread}
debugln(['TExternalTools.RunToolWithParsers WaitForExit ',Tool.Title,' ...']);
{$ENDIF}
Tool.WaitForExit;
{$IFDEF VerboseExtToolThread}
debugln(['TExternalTools.RunToolWithParsers Done ',Tool.Title]);
{$ENDIF}
Result:=(Tool.ErrorMessage='') and (not Tool.Terminated) and (Tool.ExitStatus=0);
finally
Tool.Release(Self);
end;
end;
function TExternalTools.GetRunningTools(Index: integer): TExternalTool;
begin
EnterCriticalSection;
try
Result:=TExternalTool(fRunning[Index]);
finally
LeaveCriticalSection;
end;
end;
procedure TExternalTools.AddRunningTool(Tool: TExternalTool);
begin
EnterCriticalSection;
try
if fRunning.IndexOf(Tool)<0 then
fRunning.Add(Tool);
finally
LeaveCriticalSection;
end;
end;
procedure TExternalTools.RemoveRunningTool(Tool: TExternalTool);
begin
EnterCriticalSection;
try
fRunning.Remove(Tool);
finally
LeaveCriticalSection;
end;
end;
function TExternalTools.GetParsers(Index: integer): TExtToolParserClass;
begin
Result:=TExtToolParserClass(fParsers[Index]);
end;
procedure TExternalTools.Notification(AComponent: TComponent; Operation: TOperation);
begin
inherited Notification(AComponent, Operation);
if Operation=opRemove then begin
EnterCriticalSection;
try
if fItems<>nil then
fItems.Remove(AComponent);
if fRunning<>nil then
fRunning.Remove(AComponent);
finally
LeaveCriticalSection;
end;
end;
end;
constructor TExternalTools.Create(aOwner: TComponent);
begin
inherited Create(aOwner);
InitCriticalSection(FCritSec);
fRunning:=TFPList.Create;
fParsers:=TFPList.Create;
MaxProcessCount:=DefaultMaxProcessCount;
if ExternalToolList=nil then
ExternalToolList:=Self;
if ExternalTools=nil then
ExternalTools:=Self;
RunExternalTool := @RunExtToolHandler;
end;
destructor TExternalTools.Destroy;
begin
RunExternalTool:=nil;
TerminateAll;
EnterCriticalSection;
try
if fRunning.Count>0 then
raise Exception.Create('TExternalTools.Destroy some tools still running');
if ExternalToolList=Self then
ExternalToolList:=nil;
if ExternalTools=Self then
ExternalTools:=nil;
inherited Destroy;
FreeAndNil(fRunning);
FreeAndNil(fParsers);
finally
LeaveCriticalSection;
end;
DoneCriticalsection(FCritSec);
end;
function TExternalTools.Add(Title: string): TAbstractExternalTool;
begin
Result:=FToolClass.Create(Self);
Result.Title:=Title;
fItems.Add(Result);
end;
function TExternalTools.IndexOf(Tool: TAbstractExternalTool): integer;
begin
Result:=fItems.IndexOf(Tool);
end;
function TExternalTools.ParserCount: integer;
begin
Result:=fParsers.Count;
end;
procedure TExternalTools.Work;
var
Tool: TExternalTool;
begin
while RunningCount<MaxProcessCount do begin
Tool:=FindNextToolToStart;
if Tool=nil then exit;
Tool.DoStart;
end;
end;
function TExternalTools.FindNextToolToStart: TExternalTool;
var
Tool: TExternalTool;
CurLoad: Int64;
Load: Int64;
i: Integer;
begin
Result:=nil;
Load:=0;
for i:=0 to Count-1 do begin
Tool:=TExternalTool(Items[i]);
//debugln(['TExternalTools.FindNextToolToExec ',Tool.Title,' ',Tool.CanStart]);
if not Tool.CanStart then continue;
CurLoad:=Tool.GetLongestEstimatedLoad;
if (Result<>nil) and (Load>=CurLoad) then Continue;
Result:=Tool;
Load:=CurLoad;
end;
end;
procedure TExternalTools.Terminate(Tool: TExternalTool);
begin
if Tool=nil then exit;
Tool.DoTerminate;
end;
procedure TExternalTools.TerminateAll;
// terminate all current tools
var
i: Integer;
begin
for i:=Count-1 downto 0 do
begin
Assert(i<Count, 'TExternalTools.TerminateAll: xxx'); // if i>=Count then continue; <- why was this?
Terminate(Items[i] as TExternalTool);
end;
end;
procedure TExternalTools.Clear;
begin
TerminateAll;
while Count>0 do
Items[0].Free;
end;
function TExternalTools.RunningCount: integer;
begin
Result:=fRunning.Count;
end;
procedure TExternalTools.EnterCriticalSection;
begin
System.EnterCriticalsection(FCritSec);
end;
procedure TExternalTools.LeaveCriticalSection;
begin
System.LeaveCriticalsection(FCritSec);
end;
procedure TExternalTools.RegisterParser(Parser: TExtToolParserClass);
begin
if fParsers.IndexOf(Parser)>=0 then exit;
fParsers.Add(Parser);
end;
procedure TExternalTools.UnregisterParser(Parser: TExtToolParserClass);
begin
if fParsers=nil then exit;
fParsers.Remove(Parser);
end;
function TExternalTools.FindParserForTool(const SubTool: string): TExtToolParserClass;
var
i: Integer;
begin
for i:=0 to fParsers.Count-1 do begin
Result:=TExtToolParserClass(fParsers[i]);
if Result.CanParseSubTool(SubTool) then exit;
end;
Result:=nil;
end;
function TExternalTools.FindParserWithName(const ParserName: string): TExtToolParserClass;
var
i: Integer;
begin
for i:=0 to fParsers.Count-1 do begin
Result:=TExtToolParserClass(fParsers[i]);
if SameText(Result.GetParserName,ParserName) then exit;
end;
Result:=nil;
end;
function TExternalTools.GetMsgTool(Msg: TMessageLine): TAbstractExternalTool;
var
CurOwner: TObject;
View: TExtToolView;
begin
Result:=nil;
if (Msg=nil) or (Msg.Lines=nil) then exit;
CurOwner:=Msg.Lines.Owner;
if CurOwner=nil then exit;
if CurOwner is TAbstractExternalTool then
Result:=TAbstractExternalTool(CurOwner)
else if CurOwner is TExtToolView then begin
View:=TExtToolView(CurOwner);
Result:=View.Tool;
end;
end;
{ TExternalToolThread }
procedure TExternalToolThread.SetTool(AValue: TExternalTool);
begin
if FTool=AValue then Exit;
if FTool<>nil then
FTool.Thread:=nil;
FTool:=AValue;
if FTool<>nil then
FTool.Thread:=Self;
end;
procedure TExternalToolThread.Execute;
type
TErrorFrame = record
Addr: Pointer;
Line: shortstring;
end;
PErrorFrame = ^TErrorFrame;
var
ErrorFrames: array[0..30] of TErrorFrame;
ErrorFrameCount: integer;
function GetExceptionStackTrace: string;
var
FrameCount: LongInt;
Frames: PPointer;
Cnt: LongInt;
f: PErrorFrame;
i: Integer;
begin
Result:='';
FrameCount:=ExceptFrameCount;
Frames:=ExceptFrames;
ErrorFrames[0].Addr:=ExceptAddr;
ErrorFrames[0].Line:='';
ErrorFrameCount:=1;
Cnt:=FrameCount;
for i:=1 to Cnt do begin
ErrorFrames[i].Addr:=Frames[i-1];
ErrorFrames[i].Line:='';
ErrorFrameCount:=i+1;
end;
for i:=0 to ErrorFrameCount-1 do begin
f:=@ErrorFrames[i];
try
f^.Line:=copy(BackTraceStrFunc(f^.Addr),1,255);
except
f^.Line:=copy(SysBackTraceStr(f^.Addr),1,255);
end;
end;
for i:=0 to ErrorFrameCount-1 do begin
Result+=ErrorFrames[i].Line+LineEnding;
end;
end;
var
Buf: string;
function ReadInputPipe(aStream: TInputPipeStream; var LineBuf: string): boolean;
// true if some bytes have been read
var
Count: DWord;
StartPos: Integer;
i: DWord;
begin
Result:=false;
if aStream=nil then exit;
Count:=aStream.NumBytesAvailable;
if Count=0 then exit;
Count:=aStream.Read(Buf[1],Min(length(Buf),Count));
if Count=0 then exit;
Result:=true;
StartPos:=1;
i:=1;
while i<=Count do begin
if Buf[i] in [#10,#13] then begin
LineBuf:=LineBuf+copy(Buf,StartPos,i-StartPos);
fLines.Add(LineBuf);
LineBuf:='';
if (i<Count) and (Buf[i+1] in [#10,#13]) and (Buf[i]<>Buf[i+1])
then
inc(i);
StartPos:=i+1;
end;
inc(i);
end;
LineBuf:=LineBuf+copy(Buf,StartPos,Count-StartPos+1);
end;
const
UpdateTimeDiff = 1000 div 5; // update five times a second, even if there is still work
var
{$IFDEF VerboseExtToolThread}
Title: String;
{$ENDIF}
OutputLine, StdErrLine: String;
LastUpdate: QWord;
ErrMsg: String;
ok: Boolean;
HasOutput: Boolean;
begin
{$IFDEF VerboseExtToolThread}
Title:=Tool.Title;
{$ENDIF}
SetLength(Buf,4096);
ErrorFrameCount:=0;
fLines:=TStringList.Create;
try
try
if Tool.Stage<>etsStarting then begin
{$IFDEF VerboseExtToolThread}
DebuglnThreadLog(['TExternalToolThread.Execute ',Title,' Tool.Stage=',dbgs(Tool.Stage),' aborting']);
{$ENDIF}
exit;
end;
{$IFDEF VerboseExtToolThread}
DebuglnThreadLog(['TExternalToolThread.Execute ',Title,' check executing "',Tool.Process.Executable,'" ...']);
{$ENDIF}
if not FileIsExecutable(Tool.Process.Executable) then begin
Tool.ErrorMessage:=Format(lisCanNotExecute, [Tool.Process.Executable]);
Tool.ProcessStopped;
exit;
end;
if not DirectoryExistsUTF8(ChompPathDelim(Tool.Process.CurrentDirectory))
then begin
Tool.ErrorMessage:=Format(lisMissingDirectory, [Tool.Process.
CurrentDirectory]);
Tool.ProcessStopped;
exit;
end;
// Under Unix TProcess uses fpFork, which means the current thread is
// duplicated. One is the old thread and one runs fpExecve.
// If fpExecve runs, then it will not return.
// If fpExecve fails it returns via an exception and this thread runs twice.
ok:=false;
try
{$IFDEF VerboseExtToolThread}
DebuglnThreadLog(['TExternalToolThread.Execute ',Title,' execute ...']);
{$ENDIF}
// now execute
Tool.Process.PipeBufferSize:=Max(Tool.Process.PipeBufferSize,64*1024);
Tool.Process.Execute;
{$IFDEF VerboseExtToolThread}
DebuglnThreadLog(['TExternalToolThread.Execute ',Title,' executing ...']);
{$ENDIF}
ok:=true;
except
on E: Exception do begin
// BEWARE: we are now either in the normal thread or in the failed forked thread
{$IFDEF VerboseExtToolThread}
DebuglnThreadLog(['TExternalToolThread.Execute ',Title,' execute failed: ',E.Message]);
{$ENDIF}
if Tool.ErrorMessage='' then
Tool.ErrorMessage:=Format(lisUnableToExecute, [E.Message]);
end;
end;
// BEWARE: we are now either in the normal thread or in the failed forked thread
if not ok then begin
Tool.ProcessStopped;
exit;
end;
// we are now in the normal thread
if Tool.Stage>=etsStopped then
exit;
{$IFDEF VerboseExtToolThread}
DebuglnThreadLog(['TExternalToolThread.Execute ',Title,' ProcessRunning ...']);
{$ENDIF}
Tool.ProcessRunning;
if Tool.Stage>=etsStopped then
exit;
{$IFDEF VerboseExtToolThread}
DebuglnThreadLog(['TExternalToolThread.Execute ',Title,' reading ...']);
{$ENDIF}
OutputLine:='';
StdErrLine:='';
LastUpdate:=GetTickCount64;
while (Tool<>nil) and (Tool.Stage=etsRunning) do begin
if Tool.ReadStdOutBeforeErr then begin
HasOutput:=ReadInputPipe(Tool.Process.Output,OutputLine)
or ReadInputPipe(Tool.Process.Stderr,StdErrLine);
end else begin
HasOutput:=ReadInputPipe(Tool.Process.Stderr,StdErrLine)
or ReadInputPipe(Tool.Process.Output,OutputLine);
end;
if (not HasOutput) then begin
// no more pending output
if not Tool.Process.Running then break;
end;
if (fLines.Count>0)
and (Abs(int64(GetTickCount64)-LastUpdate)>UpdateTimeDiff) then begin
{$IFDEF VerboseExtToolThread}
DebuglnThreadLog(['TExternalToolThread.Execute ',Title,' ',TimeToStr(Now),' ',IntToStr(GetTickCount64),' AddOutputLines ...']);
{$ENDIF}
Tool.AddOutputLines(fLines);
{$IFDEF VerboseExtToolThread}
DebuglnThreadLog(['TExternalToolThread.Execute ',Title,' AddOutputLines ok']);
{$ENDIF}
fLines.Clear;
LastUpdate:=GetTickCount64;
end;
if (not HasOutput) then begin
// no more pending output and process is still running
// => tool needs some time
Sleep(10);
end;
end;
{$IFDEF VerboseExtToolThread}
DebuglnThreadLog(['TExternalToolThread.Execute ',Title,' end reading']);
{$ENDIF}
// add rest of output
if (OutputLine<>'') then
fLines.Add(OutputLine);
if (StdErrLine<>'') then
fLines.Add(StdErrLine);
if (Tool<>nil) and (fLines.Count>0) then begin
{$IFDEF VerboseExtToolThread}
DebuglnThreadLog(['TExternalToolThread.Execute ',Title,' final AddOutputLines ...']);
{$ENDIF}
Tool.AddOutputLines(fLines);
{$IFDEF VerboseExtToolThread}
DebuglnThreadLog(['TExternalToolThread.Execute ',Title,' final AddOutputLines ok']);
{$ENDIF}
fLines.Clear;
end;
try
if Tool.Stage>=etsStopped then begin
{$IFDEF VerboseExtToolThread}
DebuglnThreadLog(['TExternalToolThread.Execute ',Title,' not reading exit status, because already stopped']);
{$ENDIF}
exit;
end;
{$IFDEF VerboseExtToolThread}
DebuglnThreadLog(['TExternalToolThread.Execute ',Title,' reading exit status ...']);
{$ENDIF}
Tool.ExitStatus:=Tool.Process.ExitStatus;
Tool.ExitCode:=Tool.Process.ExitCode;
{$IFDEF VerboseExtToolThread}
if Tool.ExitStatus<>0 then
DebuglnThreadLog(['TExternalToolThread.Execute ',Title,' exit status=',Tool.ExitStatus,' ExitCode=',Tool.ExitCode]);
{$ENDIF}
except
Tool.ErrorMessage:=lisUnableToReadProcessExitStatus;
end;
except
on E: Exception do begin
{$IFDEF VerboseExtToolThread}
DebuglnThreadLog(['TExternalToolThread.Execute ',Title,' run: ',E.Message]);
{$ENDIF}
if (Tool<>nil) and (Tool.ErrorMessage='') then begin
Tool.ErrorMessage:=E.Message;
ErrMsg:=GetExceptionStackTrace;
{$IFDEF VerboseExtToolErrors}
DebuglnThreadLog(ErrMsg);
{$ENDIF}
Tool.ErrorMessage:=E.Message+LineEnding+ErrMsg;
end;
end;
end;
finally
{$IFDEF VerboseExtToolThread}
if fLines<>nil then
DebuglnThreadLog(['TExternalToolThread.Execute ',Title,' cleaning up']);
{$ENDIF}
// clean up
try
FreeAndNil(fLines);
except
on E: Exception do begin
{$IFDEF VerboseExtToolThread}
DebuglnThreadLog(['TExternalToolThread.Execute adding pending messages: ',E.Message]);
{$ENDIF}
if Tool<>nil then
Tool.ErrorMessage:=Format(lisFreeingBufferLines, [E.Message]);
end;
end;
end;
if Tool.Stage>=etsStopped then begin
{$IFDEF VerboseExtToolThread}
DebuglnThreadLog(['TExternalToolThread.Execute ',Title,' not cleaning up']);
{$ENDIF}
exit;
end;
{$IFDEF VerboseExtToolThread}
DebuglnThreadLog(['TExternalToolThread.Execute ',Title,' ProcessStopped ...']);
{$ENDIF}
if Tool<>nil then
Tool.ProcessStopped;
{$IFDEF VerboseExtToolThread}
DebuglnThreadLog(['TExternalToolThread.Execute ',Title,' Thread END']);
{$ENDIF}
end;
procedure TExternalToolThread.DebuglnThreadLog(const Args: array of const);
begin
debugln(Args);
end;
destructor TExternalToolThread.Destroy;
begin
Tool:=nil;
inherited Destroy;
end;
end.
|