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
|
unit FPDServerDebugger;
{$mode objfpc}{$H+}
interface
uses
Classes,
ssockets,
fgl,
forms,
DbgIntfDebuggerBase,
DbgIntfBaseTypes,
maps,
fpjson,
// jsonparser,
{$IFDEF UNIX}
BaseUnix,
{$ENDIF}
LazLoggerBase,
process,
dialogs,
syncobjs,
lazCollections,
LazSysUtils,
strutils,
SysUtils, UTF8Process;
type
TThreadedQueueString = specialize TLazThreadedQueue<string>;
TFPDServerDebugger = class;
{ TFPDSendCommand }
TFPDSendCommand = class
protected
FCommandUID: integer;
FServerDebugger: TFPDServerDebugger;
FAutomaticFree: boolean;
function GetAsString: string; virtual;
procedure ComposeJSon(AJsonObject: TJSONObject); virtual;
public
constructor create(AnAutomaticFree: boolean=true); virtual;
procedure DoOnCommandSuccesfull(ACommandResponse: TJSonObject); virtual;
procedure DoOnCommandReceived(ACommandResponse: TJSonObject); virtual;
procedure DoOnCommandFailed(ACommandResponse: TJSonObject); virtual;
property CommandUID: integer read FCommandUID;
property AsString: string read GetAsString;
property AutomaticFree: boolean read FAutomaticFree;
end;
{ TFPDSendCommandList }
TFPDCustomSendCommandList = specialize TFPGObjectList<TFPDSendCommand>;
TFPDSendCommandList = class(TFPDCustomSendCommandList)
public
function SearchByUID(const ACommandUID: integer): TFPDSendCommand;
end;
{ TFPDSendQuitDebugServerCommand }
TFPDSendQuitDebugServerCommand = class(TFPDSendCommand)
protected
procedure ComposeJSon(AJsonObject: TJSONObject); override;
end;
{ TFPDSendRunCommand }
TFPDSendRunCommand = class(TFPDSendCommand)
protected
procedure ComposeJSon(AJsonObject: TJSONObject); override;
public
procedure DoOnCommandFailed(ACommandResponse: TJSonObject); override;
end;
{ TFPDSendContinueCommand }
TFPDSendContinueCommand = class(TFPDSendCommand)
protected
procedure ComposeJSon(AJsonObject: TJSONObject); override;
public
procedure DoOnCommandSuccesfull(ACommandResponse: TJSonObject); override;
end;
{ TFPDSendNextCommand }
TFPDSendNextCommand = class(TFPDSendCommand)
protected
procedure ComposeJSon(AJsonObject: TJSONObject); override;
end;
{ TFPDSendStepCommand }
TFPDSendStepCommand = class(TFPDSendCommand)
protected
procedure ComposeJSon(AJsonObject: TJSONObject); override;
end;
{ TFPDSendStepIntoInstrCommand }
TFPDSendStepIntoInstrCommand = class(TFPDSendCommand)
protected
procedure ComposeJSon(AJsonObject: TJSONObject); override;
end;
{ TFPDSendStepOverInstrCommand }
TFPDSendStepOverInstrCommand = class(TFPDSendCommand)
protected
procedure ComposeJSon(AJsonObject: TJSONObject); override;
end;
{ TFPDSendStopCommand }
TFPDSendStopCommand = class(TFPDSendCommand)
protected
procedure ComposeJSon(AJsonObject: TJSONObject); override;
end;
{ TFPDSendStepOutCommand }
TFPDSendStepOutCommand = class(TFPDSendCommand)
protected
procedure ComposeJSon(AJsonObject: TJSONObject); override;
end;
{ TFPDSendFilenameCommand }
TFPDSendFilenameCommand = class(TFPDSendCommand)
private
FFileName: string;
protected
procedure ComposeJSon(AJsonObject: TJSONObject); override;
public
constructor create(AFileName: string); virtual;
end;
{ TFPDSendAddBreakpointCommand }
TFPDSendAddBreakpointCommand = class(TFPDSendCommand)
private
FFileName: string;
FLineNr: integer;
FLocation: TDBGPtr;
protected
procedure ComposeJSon(AJsonObject: TJSONObject); override;
public
procedure DoOnCommandFailed(ACommandResponse: TJSonObject); override;
procedure DoOnCommandSuccesfull(ACommandResponse: TJSonObject); override;
constructor create(AFileName: string; ALineNr: integer); virtual;
constructor create(ALocation: TDBGPtr); virtual;
end;
{ TFPDSendRemoveBreakpointCommand }
TFPDSendRemoveBreakpointCommand = class(TFPDSendCommand)
private
FId: Integer;
protected
procedure ComposeJSon(AJsonObject: TJSONObject); override;
public
constructor create(AnId: Integer); virtual;
end;
{ TFPDSendDoCurrentCommand }
TFPDSendDoCurrentCommand = class(TFPDSendCommand)
protected
procedure ComposeJSon(AJsonObject: TJSONObject); override;
public
procedure DoOnCommandSuccesfull(ACommandResponse: TJSonObject); override;
end;
{ TFPDSendEvaluateCommand }
TFPDSendEvaluateCommand = class(TFPDSendCommand)
private
FExpression: string;
FValidity: TDebuggerDataState;
FMessage: string;
protected
procedure ComposeJSon(AJsonObject: TJSONObject); override;
public
constructor create(AnAutomaticFree: boolean; AnExpression: string);
procedure DoOnCommandSuccesfull(ACommandResponse: TJSonObject); override;
procedure DoOnCommandFailed(ACommandResponse: TJSonObject); override;
property Validity: TDebuggerDataState read FValidity;
property Message: string read FMessage;
end;
{ TFPDSendWatchEvaluateCommand }
TFPDSendWatchEvaluateCommand = class(TFPDSendCommand)
private
FWatchValue: TWatchValue;
procedure DoWatchFreed(Sender: TObject);
protected
procedure ComposeJSon(AJsonObject: TJSONObject); override;
public
constructor create(AWatchValue: TWatchValue);
destructor Destroy; override;
procedure DoOnCommandSuccesfull(ACommandResponse: TJSonObject); override;
procedure DoOnCommandFailed(ACommandResponse: TJSonObject); override;
end;
{ TFPDSendCallStackCommand }
TFPDSendCallStackCommand = class(TFPDSendCommand)
private
FCallStack: TCallStackBase;
FCallStackSupplier: TCallStackSupplier;
procedure DoCallStackFreed(Sender: TObject);
protected
procedure ComposeJSon(AJsonObject: TJSONObject); override;
public
constructor create(ACallStack: TCallStackBase; ACallStackSupplier: TCallStackSupplier);
destructor Destroy; override;
procedure DoOnCommandSuccesfull(ACommandResponse: TJSonObject); override;
procedure DoOnCommandFailed(ACommandResponse: TJSonObject); override;
end;
{ TFPDSendLocalsCommand }
TFPDSendLocalsCommand = class(TFPDSendCommand)
private
FLocals: TLocals;
procedure DoLocalsFreed(Sender: TObject);
protected
procedure ComposeJSon(AJsonObject: TJSONObject); override;
public
constructor create(ALocals: TLocals);
destructor Destroy; override;
procedure DoOnCommandSuccesfull(ACommandResponse: TJSonObject); override;
procedure DoOnCommandFailed(ACommandResponse: TJSonObject); override;
end;
{ TFPDSendRegistersCommand }
TFPDSendRegistersCommand = class(TFPDSendCommand)
private
FRegisters: TRegisters;
procedure DoRegistersFreed(Sender: TObject);
protected
procedure ComposeJSon(AJsonObject: TJSONObject); override;
public
constructor create(ARegisters: TRegisters);
destructor Destroy; override;
procedure DoOnCommandSuccesfull(ACommandResponse: TJSonObject); override;
procedure DoOnCommandFailed(ACommandResponse: TJSonObject); override;
end;
{ TFPDSendDisassembleCommand }
TFPDSendDisassembleCommand = class(TFPDSendCommand)
private
FDisassembler: TDBGDisassembler;
FStartAddr: TDBGPtr;
FLinesAfter: integer;
FLinesBefore: integer;
protected
procedure ComposeJSon(AJsonObject: TJSONObject); override;
public
constructor create(ADisassembler: TDBGDisassembler; AStartAddr: TDBGPtr; ALinesBefore, ALinesAfter: integer);
procedure DoOnCommandSuccesfull(ACommandResponse: TJSonObject); override;
end;
{ TFPDSocketThread }
TFPDSocketThread = class(TThread)
private
FPort: integer;
FHostName: string;
FConnectionIdentifier: integer;
FDebugger: TFPDServerDebugger;
FSendQueue: TThreadedQueueString;
FErrMessage: string;
protected
procedure ReceivedCommand(Data: PtrInt);
procedure ConnectionProblem(Data: PtrInt);
procedure Execute; override;
public
constructor Create(ADebugger: TFPDServerDebugger; AHostName: string; APort: integer);
procedure SendString(AString: string);
destructor Destroy; override;
property ConnectionIdentifier: integer read FConnectionIdentifier;
end;
{ TFPDServerDebugger }
TFPDServerDebugger = class(TDebuggerIntf)
private
FSocketThread: TFPDSocketThread;
FDebugServerStartedAsChild: boolean;
FIsConnected: boolean;
FDebugProcess: TProcessUTF8;
// This is a list of all commands send to the fpdebug-server, to handle the (asynchrounous)
// callback when a command is a succes or failure.
FCommandList: TFPDSendCommandList;
function ConnectToFPDServer: boolean;
procedure DisconnectFromFPDServer;
protected
// Overrides of TDebuggerIntf methods.
function GetSupportedCommands: TDBGCommands; override;
// Handle Notifications received from the FPDebug-server
procedure HandleNotification(ANotification: TJSONObject);
// Handle log-messages received from the FPDebug-server
procedure HandleLog(ALog: TJSONObject);
// Handle Events received from the FPDebug-server
procedure HandleEvent(ANotification: TJSONObject);
// Event-handlers for events received from the FPDebug-server
procedure DoHandleCreateProcessEvent(AnEvent: TJSONObject);
procedure DoHandleExitProcessEvent(AnEvent: TJSONObject);
procedure DoHandleBreakpointEvent(AnEvent: TJSONObject);
procedure DoHandleConsoleOutputEvent(AnEvent: TJSONObject);
public
constructor Create(const AExternalDebugger: String); override;
destructor Destroy; override;
// This function is called (in the main thread) by the TFPDSocketThread on each JSon-object received
// from the FPD-Server.
procedure ReceivedCommand(ACommand: TJSONObject);
// Queue a command for sending to the FPDebug-server.
procedure QueueCommand(ACommand: TFPDSendCommand);
// Overrides of TDebuggerIntf methods.
class function Caption: String; override;
function CreateBreakPoints: TDBGBreakPoints; override;
function CreateWatches: TWatchesSupplier; override;
function CreateLocals: TLocalsSupplier; override;
function CreateRegisters: TRegisterSupplier; override;
function CreateCallStack: TCallStackSupplier; override;
function CreateDisassembler: TDBGDisassembler; override;
function RequestCommand(const ACommand: TDBGCommand;
const AParams: array of const;
const ACallback: TMethod): Boolean; override;
// These methods are called by several TFPDSendCommands after success or failure of a command. (Most common
// because the TFPDSendCommands do not have access to TFPDServerDebugger's protected methods theirself)
procedure DoOnRunFailed;
procedure DoOnContinueSuccessfull;
procedure DoOnDoCurrentSuccessfull(ALocRec: TDBGLocationRec);
// This procedure is called when the socket-thread is shut-down.
procedure DoOnConnectionProblem(AMessage: string);
end;
procedure Register;
implementation
type
{ TFPBreakpoint }
TFPBreakpoint = class(TDBGBreakPoint)
private
FSetBreakFlag: boolean;
FResetBreakFlag: boolean;
FIsSet: boolean;
FUID: integer;
FServerId: integer;
procedure SetBreak;
procedure ResetBreak;
protected
procedure DoStateChange(const AOldState: TDBGState); override;
procedure DoEnableChange; override;
procedure DoChanged; override;
// Used in the succes or failure callbacks of the TFPDSendAddBreakpointCommand command to set the
// validity of the underlying breakpoint.
procedure SetValid;
procedure SetInvalid;
public
destructor Destroy; override;
property UID: integer read FUID;
property ServerId: Integer read FServerId write FServerId;
end;
{ TFPBreakpoints }
TFPBreakpoints = class(TDBGBreakPoints)
public
function FindByUID(AnUID: integer): TFPBreakpoint;
function FindByServerID(AnServerID: integer): TFPBreakpoint;
end;
{ TFPDBGDisassembler }
TFPDBGDisassembler = class(TDBGDisassembler)
protected
function PrepareEntries(AnAddr: TDbgPtr; ALinesBefore, ALinesAfter: Integer): boolean; override;
public
// Used in the succes callback of the TFPDSendDisassembleCommand command to add
// the retrieved range of assembly instructions.
procedure AddRange(ARange: TDBGDisassemblerEntryRange);
end;
{ TFPLocals }
TFPLocals = class(TLocalsSupplier)
public
procedure RequestData(ALocals: TLocals); override;
end;
{ TFPRegisters }
TFPRegisters = class(TRegisterSupplier)
public
procedure RequestData(ARegisters: TRegisters); override;
end;
{ TFPWatches }
TFPWatches = class(TWatchesSupplier)
protected
procedure InternalRequestData(AWatchValue: TWatchValue); override;
end;
{ TFPCallStackSupplier }
TFPCallStackSupplier = class(TCallStackSupplier)
public
procedure RequestCount(ACallstack: TCallStackBase); override;
procedure RequestEntries(ACallstack: TCallStackBase); override;
procedure RequestCurrent(ACallstack: TCallStackBase); override;
// Used in the succes callback of the TFPDSendCallStackCommand command to trigger
// an update og the GUI after the callstack has been read.
procedure DoUpdate;
end;
procedure Register;
begin
RegisterDebugger(TFPDServerDebugger);
end;
{ TFPDSendCommand }
var GCommandUID: integer = 0;
{ TFPRegisters }
procedure TFPRegisters.RequestData(ARegisters: TRegisters);
begin
if (Debugger = nil) or not(Debugger.State = dsPause)
then begin
ARegisters.DataValidity:=ddsInvalid;
exit;
end;
TFPDServerDebugger(Debugger).QueueCommand(TFPDSendRegistersCommand.create(ARegisters));
ARegisters.DataValidity := ddsRequested;
end;
{ TFPDSendRegistersCommand }
procedure TFPDSendRegistersCommand.DoRegistersFreed(Sender: TObject);
begin
FRegisters := nil;
end;
procedure TFPDSendRegistersCommand.ComposeJSon(AJsonObject: TJSONObject);
begin
inherited ComposeJSon(AJsonObject);
AJsonObject.Add('command','registers');
end;
constructor TFPDSendRegistersCommand.create(ARegisters: TRegisters);
begin
inherited create(true);
ARegisters.AddFreeNotification(@DoRegistersFreed);
FRegisters := ARegisters;
end;
destructor TFPDSendRegistersCommand.Destroy;
begin
if assigned(FRegisters) then
FRegisters.RemoveFreeNotification(@DoRegistersFreed);
inherited Destroy;
end;
procedure TFPDSendRegistersCommand.DoOnCommandSuccesfull(ACommandResponse: TJSonObject);
var
JSonRegisterArr: TJSONArray;
JSonRegisterEntryObj: TJSONObject;
i: Integer;
RegisterValue: TRegisterValue;
begin
inherited DoOnCommandSuccesfull(ACommandResponse);
if assigned(FRegisters) then
begin
FRegisters.Clear;
JSonRegisterArr := ACommandResponse.Get('registers', TJSONArray(nil));
if assigned(JSonRegisterArr) and (JSonRegisterArr.Count>0) then
begin
for i := 0 to JSonRegisterArr.Count - 1 do
begin
JSonRegisterEntryObj := JSonRegisterArr.Items[i] as TJSONObject;
RegisterValue := FRegisters.EntriesByName[JSonRegisterEntryObj.Get('name', '')];
RegisterValue.ValueObj.SetAsNum(JSonRegisterEntryObj.Get('numvalue', 0), JSonRegisterEntryObj.Get('size', 4));
RegisterValue.ValueObj.SetAsText(JSonRegisterEntryObj.Get('value', ''));
RegisterValue.DataValidity:=ddsValid;
end;
FRegisters.DataValidity := ddsValid;
end
else
FRegisters.DataValidity := ddsInvalid;
end;
end;
procedure TFPDSendRegistersCommand.DoOnCommandFailed(ACommandResponse: TJSonObject);
begin
FRegisters.DataValidity := ddsInvalid;
end;
{ TFPDSendLocalsCommand }
procedure TFPDSendLocalsCommand.DoLocalsFreed(Sender: TObject);
begin
FLocals:=nil;
end;
procedure TFPDSendLocalsCommand.ComposeJSon(AJsonObject: TJSONObject);
begin
inherited ComposeJSon(AJsonObject);
AJsonObject.Add('command','locals');
end;
constructor TFPDSendLocalsCommand.create(ALocals: TLocals);
begin
inherited create(True);
ALocals.AddFreeNotification(@DoLocalsFreed);
FLocals := ALocals;
end;
destructor TFPDSendLocalsCommand.Destroy;
begin
if assigned(FLocals) then
FLocals.RemoveFreeNotification(@DoLocalsFreed);
inherited Destroy;
end;
procedure TFPDSendLocalsCommand.DoOnCommandSuccesfull(ACommandResponse: TJSonObject);
var
JSonLocalsArr: TJSONArray;
JSonLocalsEntryObj: TJSONObject;
i: Integer;
begin
inherited DoOnCommandSuccesfull(ACommandResponse);
if assigned(FLocals) then
begin
FLocals.Clear;
JSonLocalsArr := ACommandResponse.Get('locals', TJSONArray(nil));
if assigned(JSonLocalsArr) and (JSonLocalsArr.Count>0) then
begin
for i := 0 to JSonLocalsArr.Count - 1 do
begin
JSonLocalsEntryObj := JSonLocalsArr.Items[i] as TJSONObject;
FLocals.Add(JSonLocalsEntryObj.Get('name', ''), JSonLocalsEntryObj.Get('value', ''));
end;
end;
FLocals.SetDataValidity(ddsValid);
end;
end;
procedure TFPDSendLocalsCommand.DoOnCommandFailed(ACommandResponse: TJSonObject);
begin
FLocals.SetDataValidity(ddsInvalid);
end;
procedure TFPLocals.RequestData(ALocals: TLocals);
begin
if (Debugger = nil) or not(Debugger.State = dsPause)
then begin
ALocals.SetDataValidity(ddsInvalid);
exit;
end;
TFPDServerDebugger(Debugger).QueueCommand(TFPDSendLocalsCommand.create(ALocals));
ALocals.SetDataValidity(ddsRequested);
end;
{ TFPDBGDisassembler }
function TFPDBGDisassembler.PrepareEntries(AnAddr: TDbgPtr; ALinesBefore, ALinesAfter: Integer): boolean;
begin
TFPDServerDebugger(Debugger).QueueCommand(TFPDSendDisassembleCommand.create(self, AnAddr, ALinesBefore, ALinesAfter));
result := false;
end;
procedure TFPDBGDisassembler.AddRange(ARange: TDBGDisassemblerEntryRange);
begin
EntryRanges.AddRange(ARange);
Changed;
end;
{ TFPCallStackSupplier }
procedure TFPCallStackSupplier.RequestCount(ACallstack: TCallStackBase);
begin
if (Debugger = nil) or not(Debugger.State = dsPause)
then begin
ACallstack.SetCountValidity(ddsInvalid);
exit;
end;
TFPDServerDebugger(Debugger).QueueCommand(TFPDSendCallStackCommand.create(ACallstack, Self));
ACallstack.SetCountValidity(ddsRequested);
end;
procedure TFPCallStackSupplier.RequestEntries(ACallstack: TCallStackBase);
begin
if (Debugger = nil) or not(Debugger.State = dsPause)
then begin
ACallstack.SetCountValidity(ddsInvalid);
exit;
end;
end;
procedure TFPCallStackSupplier.RequestCurrent(ACallstack: TCallStackBase);
begin
ACallstack.CurrentIndex := 0;
ACallstack.SetCurrentValidity(ddsValid);
end;
procedure TFPCallStackSupplier.DoUpdate;
begin
Changed;
end;
{ TFPDSendWatchEvaluateCommand }
procedure TFPDSendWatchEvaluateCommand.DoWatchFreed(Sender: TObject);
begin
FWatchValue:=nil;
end;
procedure TFPDSendWatchEvaluateCommand.ComposeJSon(AJsonObject: TJSONObject);
begin
inherited ComposeJSon(AJsonObject);
AJsonObject.Add('command','evaluate');
AJsonObject.Add('expression',FWatchValue.Expression);
end;
constructor TFPDSendWatchEvaluateCommand.create(AWatchValue: TWatchValue);
begin
inherited create(true);
AWatchValue.AddFreeNotification(@DoWatchFreed);
FWatchValue := AWatchValue;
end;
destructor TFPDSendWatchEvaluateCommand.Destroy;
begin
FWatchValue.RemoveFreeNotification(@DoWatchFreed);
inherited Destroy;
end;
procedure TFPDSendWatchEvaluateCommand.DoOnCommandSuccesfull(ACommandResponse: TJSonObject);
var
s: string;
i: TDebuggerDataState;
begin
inherited DoOnCommandSuccesfull(ACommandResponse);
if assigned(FWatchValue) then
begin
FWatchValue.Value:=ACommandResponse.Get('message','');
s := ACommandResponse.Get('validity','');
FWatchValue.Validity:=ddsError;
for i := low(TDebuggerDataState) to high(TDebuggerDataState) do
if DebuggerDataStateStr[i]=s then
begin
FWatchValue.Validity:=i;
break;
end;
end;
end;
procedure TFPDSendWatchEvaluateCommand.DoOnCommandFailed(ACommandResponse: TJSonObject);
begin
inherited DoOnCommandFailed(ACommandResponse);
FWatchValue.Validity:=ddsInvalid;
end;
{ TFPWatches }
procedure TFPWatches.InternalRequestData(AWatchValue: TWatchValue);
begin
TFPDServerDebugger(Debugger).QueueCommand(TFPDSendWatchEvaluateCommand.create(AWatchValue));
inherited InternalRequestData(AWatchValue);
end;
{ TFPDSendEvaluateCommand }
procedure TFPDSendEvaluateCommand.ComposeJSon(AJsonObject: TJSONObject);
begin
inherited ComposeJSon(AJsonObject);
AJsonObject.Add('command','evaluate');
AJsonObject.Add('expression',FExpression);
end;
constructor TFPDSendEvaluateCommand.create(AnAutomaticFree: boolean; AnExpression: string);
begin
FExpression:=AnExpression;
FValidity:=ddsRequested;
inherited create(AnAutomaticFree);
end;
procedure TFPDSendEvaluateCommand.DoOnCommandSuccesfull(ACommandResponse: TJSonObject);
var
s: string;
i: TDebuggerDataState;
begin
inherited DoOnCommandSuccesfull(ACommandResponse);
FMessage:=ACommandResponse.Get('message','');
s := ACommandResponse.Get('validity','');
FValidity:=ddsError;
for i := low(TDebuggerDataState) to high(TDebuggerDataState) do
if DebuggerDataStateStr[i]=s then
begin
FValidity:=i;
break;
end;
end;
procedure TFPDSendEvaluateCommand.DoOnCommandFailed(ACommandResponse: TJSonObject);
begin
inherited DoOnCommandFailed(ACommandResponse);
FValidity:=ddsInvalid;
end;
{ TFPDSendQuitDebugServerCommand }
procedure TFPDSendQuitDebugServerCommand.ComposeJSon(AJsonObject: TJSONObject);
begin
inherited ComposeJSon(AJsonObject);
AJsonObject.Add('command','quitdebugserver');
end;
{ TFPDSendRemoveBreakpointCommand }
procedure TFPDSendRemoveBreakpointCommand.ComposeJSon(AJsonObject: TJSONObject);
begin
inherited ComposeJSon(AJsonObject);
AJsonObject.Add('command','removebreakpoint');
AJsonObject.Add('BreakpointServerIdr', Dec2Numb(FId, 8, 16));
end;
constructor TFPDSendRemoveBreakpointCommand.create(AnId: Integer);
begin
inherited create;
FId:=AnId;
end;
{ TFPDSendResetBreakpointCommand }
function TFPDSendCommand.GetAsString: string;
var
AJsonObject: TJSONObject;
begin
AJsonObject := TJSONObject.Create;
try
ComposeJSon(AJsonObject);
result := AJsonObject.AsJSON;
finally
AJsonObject.Free;
end;
end;
procedure TFPDSendCommand.ComposeJSon(AJsonObject: TJSONObject);
begin
AJsonObject.Add('uid', FCommandUID);
end;
constructor TFPDSendCommand.create(AnAutomaticFree: boolean);
begin
inc(GCommandUID);
FCommandUID := GCommandUID;
FAutomaticFree:=AnAutomaticFree;
end;
procedure TFPDSendCommand.DoOnCommandSuccesfull(ACommandResponse: TJSonObject);
begin
// Do nothing
end;
procedure TFPDSendCommand.DoOnCommandReceived(ACommandResponse: TJSonObject);
begin
// Do nothing
end;
procedure TFPDSendCommand.DoOnCommandFailed(ACommandResponse: TJSonObject);
begin
// Do nothing;
end;
{ TFPDSendCommandList }
function TFPDSendCommandList.SearchByUID(const ACommandUID: integer): TFPDSendCommand;
var
i: Integer;
begin
for i := 0 to count -1 do
begin
if Items[i].CommandUID = ACommandUID then
begin
result := items[i];
exit;
end;
end;
result := nil;
end;
{$I fpdserverdebuggercommands.inc}
{ TFPBreakpoint }
procedure TFPBreakpoint.SetBreak;
var
ASendCommand: TFPDSendCommand;
begin
ASendCommand := nil;
case Kind of
bpkAddress: ASendCommand := TFPDSendAddBreakpointCommand.create(Address);
bpkSource: ASendCommand := TFPDSendAddBreakpointCommand.create(Source, Line);
else
Raise Exception.Create('Breakpoints of this kind are not suported.');
end;
if assigned(ASendCommand) then
begin
FUID:=ASendCommand.CommandUID;
TFPDServerDebugger(Debugger).QueueCommand(ASendCommand);
end;
FIsSet:=true;
end;
procedure TFPBreakpoint.ResetBreak;
begin
if assigned(Debugger) then
TFPDServerDebugger(Debugger).QueueCommand(TFPDSendRemoveBreakpointCommand.create(Address));
FIsSet:=false;
end;
procedure TFPBreakpoint.DoStateChange(const AOldState: TDBGState);
begin
if (Debugger.State in [dsPause, dsInternalPause]) then
begin
if Enabled and not FIsSet then
begin
FSetBreakFlag:=true;
Changed;
end
else if not enabled and FIsSet then
begin
FResetBreakFlag:=true;
Changed;
end;
end
else if Debugger.State = dsStop then
begin
FIsSet:=false;
end;
inherited DoStateChange(AOldState);
end;
procedure TFPBreakpoint.DoEnableChange;
begin
if (Debugger.State in [dsPause, dsInit, dsRun]) then
begin
if Enabled and not FIsSet then
FSetBreakFlag := True
else if not Enabled and FIsSet then
FResetBreakFlag := True;
end;
inherited;
end;
procedure TFPBreakpoint.DoChanged;
begin
if FResetBreakFlag and not FSetBreakFlag then
ResetBreak
else if FSetBreakFlag then
SetBreak;
FSetBreakFlag := false;
FResetBreakFlag := false;
inherited DoChanged;
end;
procedure TFPBreakpoint.SetValid;
begin
FValid:=vsValid;
end;
procedure TFPBreakpoint.SetInvalid;
begin
FValid:=vsInvalid;
end;
destructor TFPBreakpoint.Destroy;
begin
if FIsSet then
ResetBreak;
inherited Destroy;
end;
function TFPBreakpoints.FindByUID(AnUID: integer): TFPBreakpoint;
var
i: integer;
begin
for i := 0 to Count-1 do
if TFPBreakpoint(Items[i]).UID=AnUID then
begin
result := TFPBreakpoint(Items[i]);
exit;
end;
result := nil;
end;
function TFPBreakpoints.FindByServerID(AnServerID: integer): TFPBreakpoint;
var
i: integer;
begin
for i := 0 to Count-1 do
if TFPBreakpoint(Items[i]).ServerId=AnServerID then
begin
result := TFPBreakpoint(Items[i]);
exit;
end;
result := nil;
end;
{ TFPDSocketThread }
procedure TFPDSocketThread.ReceivedCommand(Data: PtrInt);
var
ACommand: TJSONObject;
begin
ACommand := TObject(data) as TJSONObject;
FDebugger.ReceivedCommand(ACommand);
ACommand.Free;
end;
procedure TFPDSocketThread.ConnectionProblem(Data: PtrInt);
begin
FDebugger.DoOnConnectionProblem(FErrMessage);
end;
procedure TFPDSocketThread.Execute;
const
InputBufferSize = 1024;
var
SendStr: string;
s: string;
i: integer;
InputStr: string;
JSonData: TJSONData;
ASocket: TInetSocket;
function ReadString: string;
var
InputBuffer: array[0..InputBufferSize-1] of char;
s: string;
begin
// First see if there is a string left in the input-buffer.
i := pos(#10, InputStr);
if i > 0 then
begin
s := copy(InputStr, 1, i-1);
delete(InputStr,1,i);
result := s;
exit;
end;
result := '';
i := ASocket.Read(InputBuffer[0], InputBufferSize-1);
if i=0 then
begin
// Connection closed
FErrMessage := 'Connection with FPDebug-server closed.';
Terminate;
end
else if i<0 then
begin
if ASocket.LastError<>35 {EAGAIN} then
begin
FErrMessage := 'Error during write to FPDebug-server. Socket-error: '+inttostr(ASocket.LastError);
Terminate;
end;
end
else if i > 0 then
begin
setlength(s,i);
move(InputBuffer[0],s[1],i);
InputStr:=InputStr+s;
i := pos(#10, InputStr);
if i > 0 then
begin
s := copy(InputStr, 1, i-1);
delete(InputStr,1,i);
result := s;
end;
end;
end;
function ReadSTringTimeout(ATimeout: integer): string;
var
tc: int64;
begin
tc := GetTickCount64;
result := ReadString;
while not terminated and (result='') and ((GetTickCount64-tc)<ATimeout) do
begin
sleep(1);
result := ReadString;
end;
end;
var
IsConnected: boolean;
begin
IsConnected:=false;
FErrMessage:='';
try
ASocket := TInetSocket.Create(FHostName, FPort);
try
if not assigned(ASocket) then
begin
FErrMessage:='Failed to connect to fpdebug-server at '+FHostName+':'+IntToStr(FPort);
Terminate;
end
else
begin
// Set non-blocking
{$IFDEF UNIX}
fpfcntl(ASocket.Handle,F_SETFL,O_NONBLOCK);
{$ENDIF}
// Read and check FPDebug Server greeting
s := ReadSTringTimeout(100);
if s='Welcome to FPDebug-server.' then
begin
// Read connection-identifier
s := ReadSTringTimeout(100);
delete(s,length(s),1);
s := copy(s, rpos(' ',s)+1, 5);
FConnectionIdentifier:=StrToIntDef(s,-1);
if FConnectionIdentifier>-1 then
begin
// Skip help-message
s := ReadSTringTimeout(100);
IsConnected:=True;
end;
end;
if not IsConnected then
begin
FErrMessage:='Connected to '+FHostName+':'+inttostr(FPort)+', but failed to negotiate handshake.';
Terminate;
end;
end;
while not terminated do
begin
repeat
s:=ReadString;
if s<>'' then
begin
JSonData := GetJSON(s);
if JSonData is TJSONObject then
Application.QueueAsyncCall(@ReceivedCommand, ptrint(JSonData))
else
raise exception.CreateFmt('JSon-command %s is not a JSON-Object.',[s]);
end;
// When one string has been received, there is a large chance that there is more
// input waiting. Keep checking for input until the input-buffer is empty, before
// the thread starts waiting for new commands using FSendQueue.PopItem.
until s='';
if not terminated and (FSendQueue.PopItem(SendStr) = wrSignaled) then
begin
SendStr := SendStr + #10;
i := ASocket.Write(SendStr[1], length(SendStr));
if i < 0 then
begin
if ASocket.LastError=32 then
begin
// Lost connection
end
else
DebugLn(Format('Error during write. Socket-error: %d',[ASocket.LastError]));
Terminate;
end
else if i < length(SendStr) then
raise exception.create('Message has not been send to client entirely');
end;
end;
finally
ASocket.Free;
end;
except
on E: Exception do
begin
FErrMessage:='Exception on connection with FPDebug-server: ' + E.Message;
end;
end;
// There are two different ways in which the thread can terminate:
// 1: The thread terminates itself, due to a lost connection or similar problem. In that case the
// thread is freed in the TFPDServerDebugger.DoConnectionProblem method.
// 2: TFPDServerDebugger.Destroy terminates the thread. In that case it will also free the thread, and
// the asynchrounous call to ConnectionProblem is removed from the async-queue.
Application.QueueAsyncCall(@ConnectionProblem, 0);
end;
constructor TFPDSocketThread.Create(ADebugger: TFPDServerDebugger;
AHostName: string; APort: integer);
begin
FHostName:=AHostName;
FPort:=APort;
FDebugger := ADebugger;
FSendQueue:=TThreadedQueueString.create(100, INFINITE, 100);
inherited create(false);
end;
procedure TFPDSocketThread.SendString(AString: string);
begin
if Assigned(FDebugger.OnDbgOutput) then
FDebugger.OnDbgOutput(Self, 'send: '+AString);
FSendQueue.PushItem(AString);
end;
destructor TFPDSocketThread.Destroy;
begin
FSendQueue.Free;
Application.RemoveAsyncCalls(Self);
inherited destroy;
end;
{ TFPDServerDebugger }
function TFPDServerDebugger.ConnectToFPDServer: boolean;
var
buff,s: string;
dw: dword;
tc: Int64;
js: TJSONData;
port: integer;
begin
if not FIsConnected then
begin
result := false;
port := -1;
if pos('gdb', LowerCase(ExtractFileName(ExternalDebugger)))>0 then
ShowMessage('The name of the external debugger contains ''gdb''. The currently selected FPDebug-debugger can not work in combination with gdb. The debugger will most likely fail to start.');
FDebugProcess := TProcessUTF8.Create(nil);
try
try
FDebugProcess.Executable:=ExternalDebugger;
FDebugProcess.Options:=[poUsePipes, poNoConsole, poNewProcessGroup];
FDebugProcess.Parameters.Add('--tcp');
FDebugProcess.Parameters.Add('--daemon');
FDebugProcess.Parameters.Add('--autoport');
FDebugProcess.Parameters.Add('--interactive');
FDebugProcess.ShowWindow:=swoNone;
DoDbgOutput('Start debugger: '+FDebugProcess.Executable + ' ' + StringReplace(FDebugProcess.Parameters.Text,LineEnding,' ',[rfReplaceAll]));
FDebugProcess.Execute;
// Wait and scan output for tcp/ip port number
s := '';
buff := '';
dw := 0;
tc := GetTickCount64;
while FDebugProcess.Running and ((GetTickCount64-tc)<5000) and (dw<1) do
begin
dw := FDebugProcess.Output.NumBytesAvailable;
if dw > 0 then
begin
setlength(buff, dw);
FDebugProcess.Output.ReadBuffer(buff[1], dw);
s := s + buff;
dw := pos(#10,s);
end;
sleep(5);
end;
if dw>0 then
begin
s := copy(s,1,dw);
DoDbgOutput('recv stdin: '+S);
js := GetJSON(s);
try
if js.JSONType=jtObject then
port := TJSONObject(js).Get('port',-1);
finally
js.Free;
end;
if port<1 then
ShowMessage('No valid TCP/IP port to bind to FPDebug Server');
end
else
ShowMessage('Invalid response from FPDebug Server');
except
on E: Exception do
ShowMessage('Failed to run FPDebug Server: '+E.Message);
end;
finally
if port<1 then
FDebugProcess.Free;
end;
if port>-1 then
begin
FSocketThread := TFPDSocketThread.Create(Self, '127.0.0.1', port);
FDebugServerStartedAsChild:=true;
FIsConnected:=true;
result := true;
end;
end
else
result := true;
end;
procedure TFPDServerDebugger.DisconnectFromFPDServer;
begin
if FDebugServerStartedAsChild then
begin
// Try to send the FPDebug server the command to terminate. It could be that
// the server is already gone, but try anyway and give it some time to terminate
// by itself.
QueueCommand(TFPDSendQuitDebugServerCommand.create);
WaitForThreadTerminate(FSocketThread.Handle, 1000);
end;
FSocketThread.Terminate;
FSocketThread.WaitFor;
FSocketThread.Free;
if FDebugServerStartedAsChild then
begin
if FDebugProcess.Running then
FDebugProcess.Terminate(1);
FDebugProcess.Free;
end;
end;
function TFPDServerDebugger.GetSupportedCommands: TDBGCommands;
begin
Result:=[dcRun, dcStepOver, dcStepInto, dcStepOut, dcStepOverInstr, dcStepIntoInstr, dcStop, dcEvaluate];
end;
procedure TFPDServerDebugger.DoHandleCreateProcessEvent(AnEvent: TJSONObject);
begin
SetState(dsInternalPause);
QueueCommand(TFPDSendContinueCommand.create);
end;
procedure TFPDServerDebugger.DoHandleExitProcessEvent(AnEvent: TJSONObject);
begin
SetState(dsStop);
end;
procedure TFPDServerDebugger.DoHandleBreakpointEvent(AnEvent: TJSONObject);
var
BrkId: Integer;
Brk: TDBGBreakPoint;
Continue: boolean;
begin
BrkId:=AnEvent.Get('BreakpointServerIdr',0);
if BrkId<>0 then
begin
Brk := TFPBreakPoints(BreakPoints).FindByServerID(BrkId);
if not assigned(brk) then
debugln('Break on unknown breakpoint')
else
begin
brk.Hit(Continue);
if Continue then
begin
QueueCommand(TFPDSendContinueCommand.create);
Exit;
end;
end;
end;
SetState(dsPause);
QueueCommand(TFPDSendDoCurrentCommand.create);
end;
procedure TFPDServerDebugger.DoHandleConsoleOutputEvent(AnEvent: TJSONObject);
var
AMessage: string;
begin
AMessage:=AnEvent.Get('message','');
OnConsoleOutput(Self, AMessage);
end;
procedure TFPDServerDebugger.HandleNotification(ANotification: TJSONObject);
var
NotificationType: string;
UID: integer;
SendCommand: TFPDSendCommand;
begin
// Ignore notifications from other connections
if ANotification.get('connIdentifier',-1)=FSocketThread.ConnectionIdentifier then
begin
NotificationType:=ANotification.Get('notificationType','');
case NotificationType of
'InvalidCommand':
raise exception.CreateFmt('The FPD-Server complains about an invalid command: %s',[ANotification.get('message', '-')]);
'ExecutedCommand', 'FailedCommand', 'ReceivedCommand':
begin
uid := ANotification.get('uid',-1);
if uid > -1 then
begin
SendCommand := FCommandList.SearchByUID(uid);
if assigned(SendCommand) then
begin
case NotificationType of
'ExecutedCommand':
begin
SendCommand.DoOnCommandSuccesfull(ANotification);
if SendCommand.AutomaticFree then
FCommandList.Remove(SendCommand)
else
FCommandList.Extract(SendCommand);
end;
'FailedCommand' :
begin
SendCommand.DoOnCommandFailed(ANotification);
if SendCommand.AutomaticFree then
FCommandList.Remove(SendCommand)
else
FCommandList.Extract(SendCommand);
end;
'ReceivedCommand':
SendCommand.DoOnCommandReceived(ANotification);
end; {case}
end
else
debugln('Received command-notification for unknown command-uid '+inttostr(UID));
end
else
debugln('Received command notification without UID');
end;
end; {case}
end;
end;
procedure TFPDServerDebugger.HandleLog(ALog: TJSONObject);
var
LogType: string;
Message: string;
begin
LogType:=ALog.get('logType','');
Message:=ALog.Get('message','');
case LogType of
'debug' : DebugLn(Message);
'info' : ShowMessage(Message);
'error' : raise Exception.Create(Message);
else
raise Exception.CreateFmt('Received unknown log-type from FPDebug-server. (%s)', [LogType]);
end; {case}
end;
procedure TFPDServerDebugger.HandleEvent(ANotification: TJSONObject);
var
EventName: string;
begin
EventName:=ANotification.get('eventName','');
case EventName of
'CreateProcess' : DoHandleCreateProcessEvent(ANotification);
'ExitProcess' : DoHandleExitProcessEvent(ANotification);
'BreakPoint' : DoHandleBreakPointEvent(ANotification);
'ConsoleOutput' : DoHandleConsoleOutputEvent(ANotification);
else
debugln('Received unknown event: '+EventName);
end;
end;
procedure TFPDServerDebugger.QueueCommand(ACommand: TFPDSendCommand);
begin
ACommand.FServerDebugger := self;
FCommandList.Add(ACommand);
FSocketThread.SendString(ACommand.AsString);
end;
constructor TFPDServerDebugger.Create(const AExternalDebugger: String);
begin
inherited Create(AExternalDebugger);
FCommandList := TFPDSendCommandList.Create(true);
end;
destructor TFPDServerDebugger.Destroy;
begin
if FIsConnected then
DisconnectFromFPDServer;
FCommandList.Free;
inherited Destroy;
end;
procedure TFPDServerDebugger.ReceivedCommand(ACommand: TJSONObject);
var
TypeStr: string;
begin
DoDbgOutput('recv: '+ACommand.AsJSON);
TypeStr := ACommand.Get('type','');
case TypeStr of
'event' : HandleEvent(ACommand);
'log' : HandleLog(ACommand);
'notification' : HandleNotification(ACommand);
else
raise Exception.CreateFmt('Received unknown event-type. (%s)',[TypeStr]);
end;
end;
class function TFPDServerDebugger.Caption: String;
begin
Result:='FpDebug external Dwarf-debugger (fpdserver, alpha)';
end;
function TFPDServerDebugger.CreateBreakPoints: TDBGBreakPoints;
begin
Result := TFPBreakPoints.Create(Self, TFPBreakpoint);
end;
function TFPDServerDebugger.CreateWatches: TWatchesSupplier;
begin
Result := TFPWatches.Create(Self);
end;
function TFPDServerDebugger.CreateLocals: TLocalsSupplier;
begin
Result := TFPLocals.Create(Self);
end;
function TFPDServerDebugger.CreateRegisters: TRegisterSupplier;
begin
Result:=TFPRegisters.Create(Self);
end;
function TFPDServerDebugger.CreateCallStack: TCallStackSupplier;
begin
Result:=TFPCallStackSupplier.Create(Self);
end;
function TFPDServerDebugger.CreateDisassembler: TDBGDisassembler;
begin
Result:=TFPDBGDisassembler.Create(Self);
end;
function TFPDServerDebugger.RequestCommand(const ACommand: TDBGCommand;
const AParams: array of const; const ACallback: TMethod): Boolean;
var
ASendCommand: TFPDSendEvaluateCommand;
tc: qword;
begin
result := true;
case ACommand of
dcRun:
begin
if State in [dsPause, dsInternalPause] then
begin
QueueCommand(TFPDSendContinueCommand.create);
end
else
begin
result := ConnectToFPDServer;
if result then
begin
QueueCommand(TFPDSendFilenameCommand.create(FileName));
QueueCommand(TFPDSendRunCommand.create);
SetState(dsInit);
end
else
SetState(dsStop);
end;
end;
dcStepOver:
begin
QueueCommand(TFPDSendNextCommand.create);
SetState(dsRun);
end;
dcStepInto:
begin
QueueCommand(TFPDSendStepCommand.create);
SetState(dsRun);
end;
dcStepIntoInstr:
begin
QueueCommand(TFPDSendStepIntoInstrCommand.create);
SetState(dsRun);
end;
dcStepOverInstr:
begin
QueueCommand(TFPDSendStepOverInstrCommand.create);
SetState(dsRun);
end;
dcStepOut:
begin
QueueCommand(TFPDSendStepOutCommand.create);
SetState(dsRun);
end;
dcStop:
begin
QueueCommand(TFPDSendStopCommand.create);
if state=dsPause then
SetState(dsRun);
end;
dcEvaluate:
begin
ASendCommand := TFPDSendEvaluateCommand.create(False, String(AParams[0].VAnsiString));
QueueCommand(ASendCommand);
tc := GetTickCount64;
repeat
sleep(5);
Application.ProcessMessages;
until (ASendCommand.Validity<>ddsRequested) or ((GetTickCount64-tc)>2000);
TDBGEvaluateResultCallback(ACallback)(Self, True, ASendCommand.Message, nil);
Result := True;
ASendCommand.Free;
end
else
result := false;
end;
end;
procedure TFPDServerDebugger.DoOnRunFailed;
begin
// TDebuggerIntf.SetFileName has set the state to dsStop, to make sure
// that dcRun could be requested. Reset the filename so that the state
// is set to dsIdle again and is set to dsStop on the next try
// to run.
FileName := ''
end;
procedure TFPDServerDebugger.DoOnContinueSuccessfull;
begin
SetState(dsRun);
end;
procedure TFPDServerDebugger.DoOnDoCurrentSuccessfull(ALocRec: TDBGLocationRec);
begin
DoCurrent(ALocRec);
end;
procedure TFPDServerDebugger.DoOnConnectionProblem(AMessage: string);
begin
if AMessage<>'' then
ShowMessage(AMessage);
FIsConnected:=false;
DisconnectFromFPDServer;
SetState(dsStop);
end;
end.
|