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
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2014 Eran Ifrah
// file name : CodeLiteLLDBApp.cpp
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// This program 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.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#include "CodeLiteLLDBApp.h"
#include "LLDBProtocol/LLDBEnums.h"
#include "LLDBProtocol/LLDBRemoteHandshakePacket.h"
#include "LLDBProtocol/LLDBReply.h"
#include "LLDBProtocol/LLDBVariable.h"
#include "SocketAPI/clSocketServer.h"
#include "clcommandlineparser.h"
#include "wxStringHash.h"
#include <iostream>
#include <lldb/API/SBBreakpointLocation.h>
#include <lldb/API/SBCommandInterpreter.h>
#include <lldb/API/SBCommandReturnObject.h>
#include <lldb/API/SBError.h>
#include <lldb/API/SBExpressionOptions.h>
#include <lldb/API/SBFileSpec.h>
#include <lldb/API/SBFrame.h>
#include <lldb/API/SBThread.h>
#include <lldb/API/SBTypeCategory.h>
#include <lldb/API/SBTypeNameSpecifier.h>
#include <lldb/API/SBTypeSummary.h>
#include <wx/filename.h>
#include <wx/msgqueue.h>
#include <wx/sckaddr.h>
#include <wx/socket.h>
#include <wx/tokenzr.h>
#include <wx/wxcrtvararg.h>
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
static std::unordered_map<int, int> FormatTable = {
{ (int)eLLDBFormat::kFormatDefault, (int)lldb::eFormatDefault },
{ (int)eLLDBFormat::kFormatDecimal, (int)lldb::eFormatDecimal },
{ (int)eLLDBFormat::kFormatHex, (int)lldb::eFormatHex },
{ (int)eLLDBFormat::kFormatOctal, (int)lldb::eFormatOctal },
{ (int)eLLDBFormat::kFormatBinary, (int)lldb::eFormatBinary },
{ (int)eLLDBFormat::kFormatFloat, (int)lldb::eFormatFloat },
{ (int)eLLDBFormat::kFormatComplex, (int)lldb::eFormatComplex },
{ (int)eLLDBFormat::kFormatBoolean, (int)lldb::eFormatBoolean },
{ (int)eLLDBFormat::kFormatBytes, (int)lldb::eFormatBytes },
{ (int)eLLDBFormat::kFormatBytesWithASCII, (int)lldb::eFormatBytesWithASCII },
{ (int)eLLDBFormat::kFormatCString, (int)lldb::eFormatCString },
{ (int)eLLDBFormat::kFormatPointer, (int)lldb::eFormatPointer },
};
// Convert CodeLite's format into LLDB format
static lldb::Format LLDBFormat_To_LLDB(const eLLDBFormat& format)
{
if(FormatTable.count((int)format) == 0) { return lldb::eFormatDefault; }
return static_cast<lldb::Format>(FormatTable[(int)format]);
};
namespace
{
/**
* @brief print c-array to the stdout
*/
void print_c_array(const char** arr)
{
if(arr) {
size_t index(0);
while(arr[index]) {
wxPrintf("%s\n", arr[index]);
++index;
}
}
}
char** _wxArrayStringToCharPtrPtr(const wxArrayString& arr)
{
char** argv = new char*[arr.size() + 1]; // for the NULL
for(size_t i = 0; i < arr.size(); ++i) {
argv[i] = strdup(arr.Item(i).mb_str(wxConvUTF8).data());
}
argv[arr.size()] = NULL;
return argv;
}
void DELETE_CHAR_PTR_PTR(char** argv)
{
size_t i = 0;
while(argv[i]) {
delete[] argv[i];
++i;
}
delete[] argv;
}
int StopReasonToPriority(const lldb::StopReason stopReason)
{
switch(stopReason) {
case lldb::eStopReasonInvalid:
case lldb::eStopReasonNone:
break;
// Single instruction step, apparently.
case lldb::eStopReasonTrace:
return 400;
case lldb::eStopReasonBreakpoint:
return 900;
case lldb::eStopReasonWatchpoint:
return 800;
case lldb::eStopReasonSignal:
return 600;
case lldb::eStopReasonException:
return 700;
case lldb::eStopReasonExec:
return 100;
// Step complete.
case lldb::eStopReasonPlanComplete:
return 1000;
case lldb::eStopReasonThreadExiting:
break;
#ifndef __WXOSX__
case lldb::eStopReasonInstrumentation:
return 300;
#endif
default:
// Why didn't they put an eStopReasonCount in the lldb::StopReason enum, could at least
// static_assert() then if it's greater than expected and add the new value(s).
wxPrintf("codelite-lldb: unknown lldb::StopReason %d\n", stopReason);
assert(false);
break;
}
return -1;
}
} // namespace
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#define CHECK_DEBUG_SESSION_RUNNING() \
if(!IsDebugSessionInProgress()) return
CodeLiteLLDBApp::CodeLiteLLDBApp(const wxString& socketPath)
: m_debuggerSocketPath(socketPath)
, m_port(wxNOT_FOUND)
{
DoInitializeApp();
}
CodeLiteLLDBApp::CodeLiteLLDBApp(const wxString& ip, int port)
: m_ip(ip)
, m_port(port)
{
DoInitializeApp();
}
void CodeLiteLLDBApp::DoInitializeApp()
{
m_networkThread = NULL;
m_lldbProcessEventThread = NULL;
m_debuggeePid = wxNOT_FOUND;
m_interruptReason = kInterruptReasonNone;
m_exitMainLoop = false;
m_sessionType = kDebugSessionTypeNormal;
wxSocketBase::Initialize();
wxPrintf("codelite-lldb: starting\n");
// lldbinit file to source
m_debugger = lldb::SBDebugger::Create(false); // source init file
wxPrintf("codelite-lldb: lldb initialized successfully\n");
// register our summary
OnInit();
}
CodeLiteLLDBApp::~CodeLiteLLDBApp()
{
wxDELETE(m_networkThread);
wxDELETE(m_lldbProcessEventThread);
m_replySocket.reset(NULL);
OnExit();
}
int CodeLiteLLDBApp::OnExit()
{
if(m_target.IsValid() && m_debugger.IsValid()) { m_debugger.DeleteTarget(m_target); }
if(m_debugger.IsValid()) { lldb::SBDebugger::Destroy(m_debugger); }
lldb::SBDebugger::Terminate();
return TRUE;
}
bool CodeLiteLLDBApp::OnInit()
{
try {
wxString connectionString;
if(m_port == wxNOT_FOUND) {
connectionString << "unix://" << m_debuggerSocketPath;
} else {
connectionString << "tcp://" << m_ip << ":" << m_port;
}
m_acceptSocket.Start(connectionString);
} catch(clSocketException& e) {
if(m_port == wxNOT_FOUND) {
wxPrintf("codelite-lldb: caught exception: %s\n", e.what());
wxPrintf("codelite-lldb: failed to create server on %s. %s\n", m_debuggerSocketPath, strerror(errno));
} else {
wxPrintf("codelite-lldb: caught exception: %s\n", e.what());
wxPrintf("codelite-lldb: failed to create server on %s. %s\n", (wxString() << m_ip << ":" << m_port),
strerror(errno));
}
return false;
}
return true;
}
bool CodeLiteLLDBApp::InitializeLLDB(const LLDBCommand& command)
{
if(IsDebugSessionInProgress()) {
wxPrintf("codelite-lldb: another session is already in progress\n");
return false;
}
if(!command.GetWorkingDirectory().IsEmpty()) { ::wxSetWorkingDirectory(command.GetWorkingDirectory()); }
wxPrintf("codelite-lldb: working directory is set to %s\n", ::wxGetCwd());
#if defined(__WXOSX__) || defined(__WXGTK__)
// On OSX, debugserver executable must exists otherwise lldb will not work properly
// we ensure that it exists by checking the environment variable LLDB_DEBUGSERVER_PATH
wxString lldbDebugServer;
if(!::wxGetEnv("LLDB_DEBUGSERVER_PATH", &lldbDebugServer) || !wxFileName::Exists(lldbDebugServer)) {
wxPrintf("codelite-lldb: LLDB_DEBUGSERVER_PATH environment does not exist or contains a path to a non existent "
"file\n");
NotifyExited();
return false;
}
#endif
m_debuggeePid = wxNOT_FOUND;
wxPrintf("codelite-lldb: creating target for file '%s'\n", command.GetExecutable());
m_debugger = lldb::SBDebugger::Create();
lldb::SBError lldbError;
m_target = m_debugger.CreateTarget(command.GetExecutable().mb_str().data(), NULL, NULL, true, lldbError);
if(!m_target.IsValid()) {
wxPrintf("codelite-lldb: could not create target for file %s. %s\n", command.GetExecutable(),
lldbError.GetCString());
NotifyExited();
return false;
}
// Print the content of the summaries (for debugging purposes)
wxPrintf("codelite-lldb: created target for %s\n", command.GetExecutable());
m_debugger.SetAsync(true);
// Keep the settings
m_settings = command.GetSettings();
// First, source the .lldbinit file
wxString source_command;
source_command << "command source '" << ::wxGetHomeDir() << "/.lldbinit"
<< "'";
DoExecutueShellCommand(source_command);
// Apply the types
lldb::SBCommandReturnObject ret;
wxArrayString commands = ::wxStringTokenize(m_settings.GetTypes(), "\n", wxTOKEN_STRTOK);
for(size_t i = 0; i < commands.GetCount(); ++i) {
DoExecutueShellCommand(commands.Item(i));
}
// DoExecutueShellCommand("type summary list");
return true;
}
void CodeLiteLLDBApp::StartDebugger(const LLDBCommand& command)
{
wxPrintf("codelite-lldb: StartDebugger Called\n");
if(!InitializeLLDB(command)) { return; }
// Launch the thread that will handle the LLDB process events
m_lldbProcessEventThread =
new LLDBProcessEventHandlerThread(this, m_debugger, m_target.GetProcess(), kDebugSessionTypeNormal);
m_lldbProcessEventThread->Start();
// In any case, reset the interrupt reason
m_interruptReason = kInterruptReasonNone;
// Notify codelite that the debugger started successfully
NotifyStarted(kDebugSessionTypeNormal);
}
void CodeLiteLLDBApp::NotifyAllBreakpointsDeleted()
{
LLDBReply reply;
reply.SetReplyType(kReplyTypeAllBreakpointsDeleted);
SendReply(reply);
}
void CodeLiteLLDBApp::NotifyBreakpointsUpdated()
{
LLDBBreakpoint::Vec_t breakpoints;
int num = m_target.GetNumBreakpoints();
wxPrintf("codelite-lldb: Calling NotifyBreakpointsUpdated(). Got %d breakpoints\n", num);
for(int i = 0; i < num; ++i) {
lldb::SBBreakpoint bp = m_target.GetBreakpointAtIndex(i);
if(bp.IsValid() && bp.GetNumResolvedLocations()) {
// Add the parent breakpoint
LLDBBreakpoint::Ptr_t mainBreakpoint(new LLDBBreakpoint());
mainBreakpoint->SetId(bp.GetID());
lldb::SBBreakpointLocation loc = bp.GetLocationAtIndex(0);
lldb::SBFileSpec fileLoc = loc.GetAddress().GetLineEntry().GetFileSpec();
wxFileName bpFile(fileLoc.GetDirectory(), fileLoc.GetFilename());
mainBreakpoint->SetType(LLDBBreakpoint::kFileLine);
mainBreakpoint->SetFilename(bpFile.GetFullPath());
mainBreakpoint->SetLineNumber(loc.GetAddress().GetLineEntry().GetLine());
if(bp.GetNumLocations() > 1) {
// add all the children locations to the main breakpoint
for(size_t i = 0; i < bp.GetNumLocations(); ++i) {
lldb::SBBreakpointLocation loc = bp.GetLocationAtIndex(i);
lldb::SBFileSpec fileLoc = loc.GetAddress().GetLineEntry().GetFileSpec();
wxFileName bpFile(fileLoc.GetDirectory(), fileLoc.GetFilename());
// Create a breakpoint for this location
LLDBBreakpoint::Ptr_t new_bp(new LLDBBreakpoint());
new_bp->SetType(LLDBBreakpoint::kLocation);
new_bp->SetFilename(bpFile.GetFullPath());
new_bp->SetLineNumber(loc.GetAddress().GetLineEntry().GetLine());
new_bp->SetName(loc.GetAddress().GetFunction().GetName());
mainBreakpoint->GetChildren().push_back(new_bp);
}
} else {
mainBreakpoint->SetName(loc.GetAddress().GetFunction().GetName());
}
breakpoints.push_back(mainBreakpoint);
}
}
LLDBReply reply;
reply.SetReplyType(kReplyTypeBreakpointsUpdated);
reply.SetBreakpoints(breakpoints);
SendReply(reply);
}
void CodeLiteLLDBApp::NotifyExited()
{
wxPrintf("codelite-lldb: NotifyExited called\n");
LLDBReply reply;
reply.SetReplyType(kReplyTypeDebuggerExited);
SendReply(reply);
// Let codelite 200 ms head start before starting the cleanup process
// by doing this, codelite can mark the debugger in "normal" shutdown
wxThread::Sleep(200);
Cleanup();
m_exitMainLoop = true;
}
void CodeLiteLLDBApp::NotifyAborted()
{
wxPrintf("codelite-lldb: Connection Aborted\n");
// Let codelite 200 ms head start before starting the cleanup process
// by doing this, codelite can mark the debugger in "normal" shutdown
wxThread::Sleep(200);
Cleanup();
m_exitMainLoop = true;
}
void CodeLiteLLDBApp::NotifyRunning()
{
wxPrintf("codelite-lldb: NotifyRunning. Target Process ID %d\n", m_debuggeePid);
m_variables.clear();
LLDBReply reply;
reply.SetReplyType(kReplyTypeDebuggerRunning);
SendReply(reply);
}
void CodeLiteLLDBApp::NotifyLaunchSuccess()
{
wxPrintf("codelite-lldb: NotifyLaunchSuccess. Target Process ID %d\n", m_debuggeePid);
m_variables.clear();
LLDBReply reply;
reply.SetReplyType(kReplyTypeLaunchSuccess);
SendReply(reply);
}
void CodeLiteLLDBApp::NotifyStarted(eLLDBDebugSessionType sessionType)
{
switch(sessionType) {
case kDebugSessionTypeAttach:
wxPrintf("codelite-lldb: NotifyStarted called (kDebugSessionTypeAttach)\n");
break;
case kDebugSessionTypeCore:
wxPrintf("codelite-lldb: NotifyStarted called (kDebugSessionTypeCore)\n");
break;
case kDebugSessionTypeNormal:
wxPrintf("codelite-lldb: NotifyStarted called (kDebugSessionTypeNormal)\n");
break;
}
m_sessionType = sessionType;
m_variables.clear();
LLDBReply reply;
reply.SetDebugSessionType(sessionType);
reply.SetReplyType(kReplyTypeDebuggerStartedSuccessfully);
SendReply(reply);
}
void CodeLiteLLDBApp::NotifyStopped()
{
const auto initialThreadID = m_target.GetProcess().GetSelectedThread().GetThreadID();
int bestStopReasonPriority = -1;
NotifyStopped(initialThreadID, [&](lldb::tid_t threadID, lldb::StopReason stopReason) {
const auto stopReasonPriority = StopReasonToPriority(stopReason);
if(stopReasonPriority > bestStopReasonPriority) {
bestStopReasonPriority = stopReasonPriority;
return true;
} else if((-1 == bestStopReasonPriority) && (initialThreadID == threadID)) {
// No better thread found so far but we've found the current selected thread.
return true;
} else {
return false;
}
});
}
template <typename T> void CodeLiteLLDBApp::NotifyStopped(const lldb::tid_t initialThreadID, T&& threadSelector)
{
m_variables.clear();
LLDBReply reply;
wxPrintf("codelite-lldb: NotifyStopped() called. m_interruptReason=%d\n", (int)m_interruptReason);
reply.SetReplyType(kReplyTypeDebuggerStopped);
reply.SetInterruptResaon(m_interruptReason);
// Prepare list of threads
LLDBThread::Vect_t threads;
lldb::SBThread thread;
int selectedThreadIndex = -1;
for(uint32_t i = 0; i < m_target.GetProcess().GetNumThreads(); ++i) {
// Find the "best" thread that caused the stop event.
auto thr = m_target.GetProcess().GetThreadAtIndex(i);
const auto threadID = thr.GetThreadID();
const auto stopReason = thr.GetStopReason();
if(threadSelector(threadID, stopReason)) {
thread = thr;
selectedThreadIndex = static_cast<int>(i);
}
// Thread info to pass back to codelite.
LLDBThread t;
t.SetStopReason(stopReason);
t.SetId(threadID);
t.SetSuspended(thr.IsSuspended());
t.SetName(thr.GetName());
auto frame = thr.GetSelectedFrame();
if(frame.IsValid()) {
t.SetFunc(frame.GetFunctionName() ? frame.GetFunctionName() : "");
lldb::SBLineEntry lineEntry = frame.GetLineEntry();
if(lineEntry.IsValid()) {
t.SetLine(lineEntry.GetLine());
lldb::SBFileSpec fileSpec = frame.GetLineEntry().GetFileSpec();
t.SetFile(wxFileName(fileSpec.GetDirectory(), fileSpec.GetFilename()).GetFullPath());
}
}
// get the stop reason string
char buffer[1024];
const auto stopReasonLength = thr.GetStopDescription(buffer, sizeof(buffer));
t.SetStopReasonString(wxString(buffer, stopReasonLength));
wxPrintf("codelite-lldb: thread %d stop reason is %s\n", t.GetId(), t.GetStopReasonString());
threads.push_back(std::move(t));
}
if(-1 == selectedThreadIndex) {
// No suitable thread found (probably SelectThread() and the thread exited).
return;
}
if(thread.GetThreadID() != initialThreadID) {
// Selecting the currently selected thread seems to cause the backtrace to occasionally be
// reported incorrectly, so only SetSelectedThread() if we really want to change.
m_target.GetProcess().SetSelectedThread(thread);
}
auto& selectedThread = threads[selectedThreadIndex];
selectedThread.SetActive(true);
LLDBBacktrace bt(thread, m_settings);
reply.SetBacktrace(bt);
reply.SetLine(selectedThread.GetLine());
reply.SetFilename(selectedThread.GetFile());
reply.SetThreads(threads);
SendReply(reply);
// reset the interrupt reason
m_interruptReason = kInterruptReasonNone;
}
void CodeLiteLLDBApp::NotifyStoppedOnFirstEntry()
{
wxPrintf("codelite-lldb: NotifyStoppedOnFirstEntry()\n");
m_variables.clear();
m_watches.clear();
LLDBReply reply;
reply.SetReplyType(kReplyTypeDebuggerStoppedOnFirstEntry);
SendReply(reply);
}
void CodeLiteLLDBApp::SendReply(const LLDBReply& reply)
{
try {
m_replySocket->WriteMessage(reply.ToJSON().format());
} catch(clSocketException& e) {
wxPrintf("codelite-lldb: failed to send reply. %s. %s.\n", e.what().c_str(), strerror(errno));
}
}
void CodeLiteLLDBApp::RunDebugger(const LLDBCommand& command)
{
if(m_debuggeePid != wxNOT_FOUND) {
wxPrintf("codelite-lldb: another session is already in progress\n");
return;
}
if(m_debugger.IsValid()) {
m_variables.clear();
m_watches.clear();
// Construct char** arrays
clCommandLineParser parser(command.GetCommandArguments());
const char** argv = (const char**)_wxArrayStringToCharPtrPtr(parser.ToArray());
char** penv = command.GetEnvArray();
std::string tty_c;
std::string workingDirectory;
if(!command.GetRedirectTTY().IsEmpty()) { tty_c = command.GetRedirectTTY().mb_str(wxConvUTF8).data(); }
if(!command.GetWorkingDirectory().IsEmpty()) {
workingDirectory = command.GetWorkingDirectory().mb_str(wxConvUTF8).data();
}
const char* ptty = tty_c.empty() ? NULL : tty_c.c_str();
wxPrintf("codelite-lldb: running debugger. tty=%s\n", ptty);
const char* pwd = workingDirectory.empty() ? NULL : workingDirectory.c_str();
wxPrintf("codelite-lldb: target working directory is set to: %s\n", pwd ? pwd : "NULL");
// wxPrintf("codelite-lldb: Environment is set to:\n");
// print_c_array( (const char**)penv );
wxPrintf("codelite-lldb: Arguments are set to:\n");
print_c_array(argv);
// Execute startup commands
wxArrayString startupCommands = ::wxStringTokenize(command.GetStartupCommands(), "\n", wxTOKEN_STRTOK);
for(size_t i = 0; i < startupCommands.GetCount(); ++i) {
lldb::SBCommandReturnObject ret;
std::string c_command = startupCommands.Item(i).Trim().mb_str(wxConvUTF8).data();
wxPrintf("codelite-lldb: executing: '%s'\n", c_command.c_str());
m_debugger.GetCommandInterpreter().HandleCommand(c_command.c_str(), ret);
}
lldb::SBError lldbError;
lldb::SBListener listener = m_debugger.GetListener();
size_t launchFlags = lldb::eLaunchFlagStopAtEntry;
#ifdef LLDB_ON_WINDOWS
lldb::SBLaunchInfo li(argv);
li.SetShell("C:\\Windows\\system32\\cmd.exe");
li.SetEnvironmentEntries((const char**)penv, true);
launchFlags |= lldb::eLaunchFlagLaunchInShell;
launchFlags |= lldb::eLaunchFlagDisableASLR;
launchFlags |= lldb::eLaunchFlagDebug;
li.SetLaunchFlags(launchFlags);
lldb::SBProcess process = m_target.Launch(li, lldbError);
#else
launchFlags |= lldb::eLaunchFlagLaunchInSeparateProcessGroup;
lldb::SBProcess process =
m_target.Launch(listener, argv, (const char**)penv, ptty, ptty, ptty, pwd, launchFlags, true, lldbError);
#endif
// bool isOk = m_target.LaunchSimple(argv, envp, wd).IsValid();
DELETE_CHAR_PTR_PTR(const_cast<char**>(argv));
DELETE_CHAR_PTR_PTR(penv);
if(!process.IsValid() || !lldbError.Success()) {
wxPrintf("codelite-lldb: error while launching process. %s\n", lldbError.GetCString());
NotifyExited();
} else {
m_debuggeePid = process.GetProcessID();
#ifdef __WXGTK__
NotifyLaunchSuccess();
#else
NotifyRunning();
#endif
}
}
}
void CodeLiteLLDBApp::Cleanup()
{
wxPrintf("codelite-lldb: Cleanup() called...\n");
m_variables.clear();
m_watches.clear();
wxDELETE(m_networkThread);
wxDELETE(m_lldbProcessEventThread);
m_interruptReason = kInterruptReasonNone;
m_debuggeePid = wxNOT_FOUND;
if(m_target.IsValid()) {
m_target.DeleteAllBreakpoints();
m_target.DeleteAllWatchpoints();
// detach from the process
if(m_sessionType == kDebugSessionTypeAttach) {
wxPrintf("codelite-lldb: detaching from process ID %d\n", (int)m_target.GetProcess().GetProcessID());
m_target.GetProcess().Detach();
}
m_debugger.DeleteTarget(m_target);
}
m_sessionType = kDebugSessionTypeNormal;
wxPrintf("codelite-lldb: Cleanup() called... done\n");
}
void CodeLiteLLDBApp::ApplyBreakpoints(const LLDBCommand& command)
{
wxPrintf("codelite-lldb: ApplyBreakpoints called\n");
if(m_target.GetProcess().GetState() == lldb::eStateStopped) {
wxPrintf("codelite-lldb: ApplyBreakpoints: process state is stopped - will apply them now\n");
// we can apply the breakpoints
// Apply all breakpoints with an-invalid breakpoint ID
LLDBBreakpoint::Vec_t breakpoints = command.GetBreakpoints();
while(!breakpoints.empty()) {
LLDBBreakpoint::Ptr_t breakPoint = breakpoints.at(0);
if(!breakPoint->IsApplied()) {
switch(breakPoint->GetType()) {
case LLDBBreakpoint::kFunction: {
wxPrintf("codelite-lldb: creating breakpoint by name: %s\n", breakPoint->GetName());
m_target.BreakpointCreateByName(breakPoint->GetName().mb_str().data(), NULL);
break;
}
case LLDBBreakpoint::kFileLine: {
wxPrintf("codelite-lldb: creating breakpoint by location: %s,%d\n", breakPoint->GetFilename(),
breakPoint->GetLineNumber());
m_target.BreakpointCreateByLocation(breakPoint->GetFilename().mb_str().data(),
breakPoint->GetLineNumber());
break;
}
}
}
breakpoints.erase(breakpoints.begin());
}
NotifyBreakpointsUpdated();
} else {
wxPrintf("codelite-lldb: ApplyBreakpoints: process state is _NOT_ Stopped - interrupting process\n");
// interrupt the process
m_interruptReason = kInterruptReasonApplyBreakpoints;
m_target.GetProcess().SendAsyncInterrupt();
}
}
void CodeLiteLLDBApp::Continue(const LLDBCommand& command)
{
CHECK_DEBUG_SESSION_RUNNING();
if(m_target.GetProcess().IsValid() && m_target.GetProcess().GetState() == lldb::eStateStopped) {
m_target.GetProcess().Continue();
}
}
void CodeLiteLLDBApp::RunTo(const LLDBCommand& command)
{
wxPrintf("codelite-lldb: RunTo called\n");
if(m_target.GetProcess().GetState() != lldb::eStateStopped) { return; }
if(1 != command.GetBreakpoints().size()) { return; }
const auto& breakpoint = command.GetBreakpoints().at(0);
wxPrintf("codelite-lldb: creating one-shot breakpoint by location: %s,%d\n", breakpoint->GetFilename(),
breakpoint->GetLineNumber());
// The second parameter to SBFileSpec ctor is called "resolve" and it looks like it does ~ expansion, etc.
const lldb::SBFileSpec fileSpec(breakpoint->GetFilename().mb_str(), true);
auto sbBreakPoint = m_target.BreakpointCreateByLocation(fileSpec, breakpoint->GetLineNumber());
if(sbBreakPoint.IsValid()) {
// Set as one-shot and continue.
sbBreakPoint.SetOneShot(true);
m_target.GetProcess().Continue();
}
}
void CodeLiteLLDBApp::JumpTo(const LLDBCommand& command)
{
wxPrintf("codelite-lldb: JumpTo called\n");
if(m_target.GetProcess().GetState() != lldb::eStateStopped) { return; }
if(1 != command.GetBreakpoints().size()) { return; }
const auto& breakpoint = command.GetBreakpoints().at(0);
wxPrintf("codelite-lldb: jumping to: %s,%d\n", breakpoint->GetFilename(), breakpoint->GetLineNumber());
// The second parameter is called "resolve" and it looks like it does ~ expansion, etc.
lldb::SBFileSpec fileSpec(breakpoint->GetFilename().mb_str(), true);
auto thread = m_target.GetProcess().GetSelectedThread();
auto error = thread.JumpToLine(fileSpec, breakpoint->GetLineNumber());
if(error.Success()) {
NotifyStopped();
} else {
wxPrintf("codelite-lldb: jumping failed: %s\n", error.GetCString());
}
}
void CodeLiteLLDBApp::StopDebugger(const LLDBCommand& command)
{
CHECK_DEBUG_SESSION_RUNNING();
NotifyExited();
}
void CodeLiteLLDBApp::DeleteAllBreakpoints(const LLDBCommand& command)
{
CHECK_DEBUG_SESSION_RUNNING();
wxUnusedVar(command);
if(m_target.GetProcess().GetState() == lldb::eStateStopped) {
m_target.DeleteAllBreakpoints();
NotifyAllBreakpointsDeleted();
} else {
m_interruptReason = kInterruptReasonDeleteAllBreakpoints;
m_target.GetProcess().SendAsyncInterrupt();
}
}
void CodeLiteLLDBApp::DeleteBreakpoints(const LLDBCommand& command)
{
CHECK_DEBUG_SESSION_RUNNING();
const LLDBBreakpoint::Vec_t& bps = command.GetBreakpoints();
if(bps.empty()) { return; }
wxPrintf("codelite-lldb: DeleteBreakpoints called\n");
if(m_target.GetProcess().GetState() == lldb::eStateStopped) {
wxPrintf("codelite-lldb: DeleteBreakpoints: process state is Stopped - will apply them now\n");
for(size_t i = 0; i < bps.size(); ++i) {
LLDBBreakpoint::Ptr_t breakpoint = bps.at(i);
wxPrintf("codelite-lldb: deleting breakpoint: %s\n", breakpoint->ToString());
if(breakpoint->IsApplied()) {
lldb::SBBreakpoint lldbBreakpoint = m_target.FindBreakpointByID(breakpoint->GetId());
if(lldbBreakpoint.IsValid()) {
lldbBreakpoint.ClearAllBreakpointSites();
m_target.BreakpointDelete(lldbBreakpoint.GetID());
}
}
}
NotifyBreakpointsUpdated();
} else {
wxPrintf("codelite-lldb: DeleteBreakpoints: process is Busy - will interrupt it\n");
m_interruptReason = kInterruptReasonDeleteBreakpoint;
m_target.GetProcess().SendAsyncInterrupt();
}
}
void CodeLiteLLDBApp::Next(const LLDBCommand& command)
{
CHECK_DEBUG_SESSION_RUNNING();
if(m_target.GetProcess().IsValid() && m_target.GetProcess().GetState() == lldb::eStateStopped) {
m_target.GetProcess().GetSelectedThread().StepOver();
}
}
void CodeLiteLLDBApp::StepIn(const LLDBCommand& command)
{
CHECK_DEBUG_SESSION_RUNNING();
if(m_target.GetProcess().IsValid() && m_target.GetProcess().GetState() == lldb::eStateStopped) {
m_target.GetProcess().GetSelectedThread().StepInto();
}
}
void CodeLiteLLDBApp::StepOut(const LLDBCommand& command)
{
CHECK_DEBUG_SESSION_RUNNING();
if(m_target.GetProcess().IsValid() && m_target.GetProcess().GetState() == lldb::eStateStopped) {
m_target.GetProcess().GetSelectedThread().StepOut();
}
}
bool CodeLiteLLDBApp::CanInteract()
{
return IsDebugSessionInProgress() && (m_target.GetProcess().GetState() == lldb::eStateStopped);
}
bool CodeLiteLLDBApp::IsDebugSessionInProgress() { return m_debugger.IsValid() && m_target.IsValid(); }
void CodeLiteLLDBApp::Interrupt(const LLDBCommand& command)
{
wxPrintf("codelite-lldb: interrupting debugee process\n");
m_interruptReason = (eInterruptReason)command.GetInterruptReason();
m_target.GetProcess().SendAsyncInterrupt();
}
void CodeLiteLLDBApp::AcceptNewConnection()
{
m_replySocket.reset(NULL);
wxPrintf("codelite-lldb: waiting for new connection\n");
try {
while(true) {
m_replySocket = m_acceptSocket.WaitForNewConnection(1);
if(m_replySocket) { break; }
}
// Remote connection, send the 'handshake' packet
if(m_port != wxNOT_FOUND) {
wxPrintf("codelite-lldb: sending handshake packet\n");
LLDBRemoteHandshakePacket handshake;
handshake.SetHost(::wxGetHostName());
m_replySocket->WriteMessage(handshake.ToJSON().format());
}
// handle the connection to the thread
m_networkThread = new LLDBNetworkServerThread(this, m_replySocket->GetSocket());
m_networkThread->Start();
} catch(clSocketException& e) {
wxPrintf("codelite-lldb: an error occurred while waiting for connection. %s\n", e.what().c_str());
Cleanup();
// exit
throw clSocketException("Failed to accept new connection");
}
}
void CodeLiteLLDBApp::LocalVariables(const LLDBCommand& command)
{
wxUnusedVar(command);
LLDBVariable::Vect_t locals;
m_variables.clear();
wxPrintf("codelite-lldb: fetching local variables for selected frame\n");
lldb::SBFrame frame = m_target.GetProcess().GetSelectedThread().GetSelectedFrame();
if(!frame.IsValid()) {
NotifyLocals(locals);
return;
}
// get list of locals
lldb::SBValueList args = frame.GetVariables(true, true, false, true);
for(size_t i = 0; i < args.GetSize(); ++i) {
lldb::SBValue value = args.GetValueAtIndex(i);
if(value.IsValid()) {
LLDBVariable::Ptr_t var(new LLDBVariable(value));
VariableWrapper wrapper;
wrapper.value = value;
m_variables.insert(std::make_pair(value.GetID(), wrapper));
locals.push_back(var);
}
}
// next, add the watches
for(size_t i = 0; i < m_watches.GetCount(); ++i) {
lldb::SBValue value = frame.GetValueForVariablePath(m_watches.Item(i).mb_str(wxConvUTF8).data());
if(value.IsValid()) {
LLDBVariable::Ptr_t var(new LLDBVariable(value));
var->SetIsWatch(true);
// override the name with the actual expression that we want to watch
var->SetName(m_watches.Item(i));
// Keep the info about this watch
VariableWrapper wrapper;
wrapper.value = value;
wrapper.isWatch = true;
wrapper.expression = m_watches.Item(i);
// Always update as a watch may match a local in this frame
m_variables[value.GetID()] = wrapper;
locals.push_back(var);
}
}
NotifyLocals(locals);
}
void CodeLiteLLDBApp::NotifyLocals(const LLDBVariable::Vect_t& locals)
{
wxPrintf("codelite-lldb: NotifyLocals called with %d locals\n", (int)locals.size());
LLDBReply reply;
reply.SetReplyType(kReplyTypeLocalsUpdated);
reply.SetVariables(locals);
SendReply(reply);
}
// we need to return list of children for a variable
// we stashed the variables we got so far inside a map
void CodeLiteLLDBApp::ExpandVariable(const LLDBCommand& command)
{
int variableId = command.GetLldbId();
if(variableId == wxNOT_FOUND) { return; }
LLDBVariable::Vect_t children;
std::map<int, VariableWrapper>::iterator iter = m_variables.find(variableId);
if(iter != m_variables.end()) {
lldb::SBValue* pvalue = &(iter->second.value);
lldb::SBValue deReferencedValue;
int size = pvalue->GetNumChildren();
lldb::TypeClass typeClass = pvalue->GetType().GetTypeClass();
if(typeClass & lldb::eTypeClassArray) {
size > (int)m_settings.GetMaxArrayElements() ? size = m_settings.GetMaxArrayElements() : size = size;
wxPrintf("codelite-lldb: value %s is an array. Limiting its size\n", pvalue->GetName());
} /*else if ( typeClass & lldb::eTypeClassPointer ) {
// dereference is needed
wxPrintf("codelite-lldb: value '%s' is a class pointer, dereferecning it\n", pvalue->GetName());
deReferencedValue = pvalue->Dereference();
// and update the number of children
pvalue = &deReferencedValue;
wxPrintf("codelite-lldb: new number of children is set to %d\n", size);
size = pvalue->GetNumChildren();
}*/
for(int i = 0; i < size; ++i) {
lldb::SBValue child = pvalue->GetChildAtIndex(i);
if(child.IsValid()) {
LLDBVariable::Ptr_t var(new LLDBVariable(child));
children.push_back(var);
VariableWrapper wrapper;
wrapper.value = child;
m_variables.insert(std::make_pair(child.GetID(), wrapper));
}
}
LLDBReply reply;
reply.SetReplyType(kReplyTypeVariableExpanded);
reply.SetVariables(children);
reply.SetLldbId(variableId);
SendReply(reply);
}
}
void CodeLiteLLDBApp::CallAfter(CodeLiteLLDBApp::CommandFunc_t func, const LLDBCommand& command)
{
m_commands_queue.Post(std::make_pair(func, command));
}
void CodeLiteLLDBApp::MainLoop()
{
try {
AcceptNewConnection();
// We got both ends connected
wxPrintf("codelite-lldb: successfully established connection to codelite\n");
while(!m_exitMainLoop) {
CodeLiteLLDBApp::QueueItem_t msg;
CodeLiteLLDBApp::NotifyFunc_t notify_func = NULL;
bool got_something = false;
if(m_commands_queue.ReceiveTimeout(1, msg) == wxMSGQUEUE_NO_ERROR) {
// Process the command
CodeLiteLLDBApp::CommandFunc_t pFunc = msg.first;
LLDBCommand command = msg.second;
(this->*pFunc)(command);
got_something = true;
}
if(m_notify_queue.ReceiveTimeout(1, notify_func) == wxMSGQUEUE_NO_ERROR) {
(this->*notify_func)();
got_something = true;
}
if(!got_something) { wxThread::Sleep(10); }
}
wxPrintf("codelite-lldb: terminating\n");
} catch(clSocketException& e) {
wxPrintf("codelite-lldb: an error occurred during MainLoop(). %s. strerror=%s\n", e.what().c_str(),
strerror(errno));
// exit now
exit(0);
}
}
void CodeLiteLLDBApp::SelectFrame(const LLDBCommand& command)
{
wxPrintf("codelite-lldb: selecting frame %d\n", command.GetFrameId());
if(CanInteract() && command.GetFrameId() != wxNOT_FOUND) {
m_target.GetProcess().GetSelectedThread().SetSelectedFrame(command.GetFrameId());
m_interruptReason = kInterruptReasonNone;
NotifyStopped();
}
}
void CodeLiteLLDBApp::SelectThread(const LLDBCommand& command)
{
assert(1 == command.GetThreadIds().size());
if(1 != command.GetThreadIds().size()) { return; }
const auto selectThreadID = command.GetThreadIds().front();
wxPrintf("codelite-lldb: selecting thread %d\n", selectThreadID);
if(CanInteract() && selectThreadID != wxNOT_FOUND) {
m_interruptReason = kInterruptReasonNone;
NotifyStopped(m_target.GetProcess().GetSelectedThread().GetThreadID(),
[&selectThreadID](const lldb::tid_t threadID, const lldb::StopReason stopReason) {
return selectThreadID == threadID;
});
}
}
void CodeLiteLLDBApp::EvalExpression(const LLDBCommand& command)
{
wxPrintf("codelite-lldb: evaluating expression '%s'\n", command.GetExpression());
if(CanInteract()) {
// Evaluate the expression based on the current frame
wxString expression = command.GetExpression();
expression.Trim().Trim(false);
lldb::SBValue value = m_target.GetProcess().GetSelectedThread().GetSelectedFrame().GetValueForVariablePath(
expression.mb_str(wxConvUTF8).data());
if(value.IsValid()) {
LLDBReply reply;
reply.SetReplyType(kReplyTypeExprEvaluated);
reply.SetExpression(command.GetExpression());
LLDBVariable::Vect_t vars;
LLDBVariable::Ptr_t var(new LLDBVariable(value));
vars.push_back(var);
reply.SetVariables(vars);
VariableWrapper wrapper;
wrapper.value = value;
// Cache the expanded variable (we will need it later for tooltip expansion
m_variables.insert(std::make_pair(value.GetID(), wrapper));
SendReply(reply);
}
}
}
void CodeLiteLLDBApp::OpenCoreFile(const LLDBCommand& command)
{
wxPrintf("codeite-lldb: debugging core file '%s'\n", command.GetCorefile());
wxPrintf("codeite-lldb: executable file '%s'\n", command.GetExecutable());
if(!InitializeLLDB(command)) { return; }
lldb::SBProcess process = m_target.LoadCore(command.GetCorefile().mb_str(wxConvUTF8).data());
if(!process.IsValid()) {
wxPrintf("codeite-lldb: error loading core file '%s'\n", command.GetCorefile());
NotifyExited();
return;
}
// Launch the thread that will handle the LLDB process events
m_lldbProcessEventThread =
new LLDBProcessEventHandlerThread(this, m_debugger, m_target.GetProcess(), kDebugSessionTypeCore);
m_lldbProcessEventThread->Start();
// Notify codelite that the debugger started successfully
NotifyStarted(kDebugSessionTypeCore);
// In any case, reset the interrupt reason
m_interruptReason = kInterruptReasonNone;
// Since we are in 'core' session
// immediately notify about 'stop'
NotifyStopped();
}
void CodeLiteLLDBApp::AttachProcess(const LLDBCommand& command)
{
wxPrintf("codeite-lldb: attaching to process with PID %d\n", command.GetProcessID());
if(!InitializeLLDB(command)) { return; }
lldb::SBError errorCode;
lldb::SBListener listener;
lldb::SBProcess process = m_target.AttachToProcessWithID(listener, (lldb::pid_t)command.GetProcessID(), errorCode);
if(!errorCode.Success()) {
wxPrintf("codeite-lldb: error attaching process %d. '%s'\n", command.GetProcessID(), errorCode.GetCString());
NotifyExited();
return;
}
wxPrintf("codeite-lldb: process attached successfully\n");
// Launch the thread that will handle the LLDB process events
m_lldbProcessEventThread =
new LLDBProcessEventHandlerThread(this, m_debugger, m_target.GetProcess(), kDebugSessionTypeAttach);
m_lldbProcessEventThread->Start();
// In any case, reset the interrupt reason
m_interruptReason = kInterruptReasonNone;
// Notify codelite that the debugger started successfully
NotifyStarted(kDebugSessionTypeAttach);
}
void CodeLiteLLDBApp::DetachDebugger(const LLDBCommand& command)
{
// detach from the process
wxPrintf("codelite-lldb: detaching from process\n");
m_target.DeleteAllBreakpoints();
m_target.DeleteAllWatchpoints();
if(m_target.GetProcess().IsValid()) {
// detch and 'continue'
m_target.GetProcess().Detach(false);
}
NotifyExited();
}
void CodeLiteLLDBApp::NextInstruction(const LLDBCommand& command)
{
wxPrintf("codelite-lldb: NextInstruction called\n");
if(m_target.GetProcess().IsValid() && m_target.GetProcess().GetState() == lldb::eStateStopped) {
m_target.GetProcess().GetSelectedThread().StepInstruction(true);
}
}
void CodeLiteLLDBApp::ShowCurrentFileLine(const LLDBCommand& command)
{
wxPrintf("codelite-lldb: ShowCurrentFileLine called\n");
if(m_target.GetProcess().IsValid() && m_target.GetProcess().GetState() == lldb::eStateStopped) { NotifyStopped(); }
}
void CodeLiteLLDBApp::DoExecutueShellCommand(const wxString& command, bool printOutput)
{
wxString cmd = command;
cmd.Trim().Trim(false);
if(cmd.IsEmpty()) return;
lldb::SBCommandReturnObject ret;
m_debugger.GetCommandInterpreter().HandleCommand(command.mb_str(wxConvUTF8).data(), ret);
if(printOutput && ret.GetOutput()) {
wxString cmdOutput = ret.GetOutput();
cmdOutput.Trim().Trim(false);
if(!cmdOutput.IsEmpty()) { wxPrintf("codelite-lldb: output of command '%s':\n%s\n", command, cmdOutput); }
}
}
void CodeLiteLLDBApp::AddWatch(const LLDBCommand& command)
{
wxString expr = command.GetExpression();
wxPrintf("codelite-lldb: adding watch '%s'\n", expr);
m_watches.Add(expr);
}
void CodeLiteLLDBApp::DeleteWatch(const LLDBCommand& command)
{
// Remove it from the m_variables table
int lldbID = command.GetLldbId();
wxString expression;
std::map<int, VariableWrapper>::iterator iter = m_variables.find(lldbID);
if(iter != m_variables.end()) {
expression = iter->second.expression;
wxPrintf("codelite-lldb: deleting watch '%s'\n", expression);
m_variables.erase(iter);
}
// remove it from the watch list
int where = m_watches.Index(expression);
if(where != wxNOT_FOUND) { m_watches.RemoveAt(where); }
}
void CodeLiteLLDBApp::ExecuteInterperterCommand(const LLDBCommand& command)
{
lldb::SBCommandReturnObject ret;
std::string c_command = command.GetExpression().mb_str(wxConvUTF8).data();
wxPrintf("codelite-lldb: ExecuteInterperterCommand: '%s'\n", c_command.c_str());
m_debugger.GetCommandInterpreter().HandleCommand(c_command.c_str(), ret);
if(ret.GetOutput()) {
LLDBReply reply;
reply.SetText(ret.GetOutput());
reply.SetReplyType(kReplyTypeInterperterReply);
SendReply(reply);
} else if(ret.GetError()) {
LLDBReply reply;
reply.SetText(ret.GetError());
reply.SetReplyType(kReplyTypeInterperterReply);
SendReply(reply);
}
}
template <typename T>
void CodeLiteLLDBApp::SuspendOrResumeThreads(const char* const type, const std::vector<int>& threadIds, T&& function)
{
if(!CanInteract() || threadIds.empty()) { return; }
for(const auto threadId : threadIds) {
auto thr = m_target.GetProcess().GetThreadByID(threadId);
if(!thr.IsValid()) { continue; }
wxPrintf("codelite-lldb: %s thread %d\n", type, threadId);
function(thr);
}
m_interruptReason = kInterruptReasonNone;
NotifyStopped();
}
template <typename T>
void CodeLiteLLDBApp::SuspendOrResumeOtherThreads(const char* const type, const std::vector<int>& threadIds,
T&& function)
{
if(!CanInteract()) { return; }
const std::set<int> excludeThreadIds(threadIds.begin(), threadIds.end());
for(size_t i = 0; i < m_target.GetProcess().GetNumThreads(); ++i) {
auto thr = m_target.GetProcess().GetThreadAtIndex(i);
if(!thr.IsValid()) { continue; }
if(0 != excludeThreadIds.count(thr.GetThreadID())) { continue; }
wxPrintf("codelite-lldb: %s thread %d\n", type, thr.GetThreadID());
function(thr);
}
m_interruptReason = kInterruptReasonNone;
NotifyStopped();
}
void CodeLiteLLDBApp::SuspendThreads(const LLDBCommand& command)
{
SuspendOrResumeThreads("suspending", command.GetThreadIds(), [](lldb::SBThread& thr) { thr.Suspend(); });
}
void CodeLiteLLDBApp::SuspendOtherThreads(const LLDBCommand& command)
{
SuspendOrResumeOtherThreads("suspending", command.GetThreadIds(), [](lldb::SBThread& thr) { thr.Suspend(); });
}
void CodeLiteLLDBApp::ResumeThreads(const LLDBCommand& command)
{
SuspendOrResumeThreads("resuming", command.GetThreadIds(), [](lldb::SBThread& thr) { thr.Resume(); });
}
void CodeLiteLLDBApp::ResumeOtherThreads(const LLDBCommand& command)
{
SuspendOrResumeOtherThreads("resuming", command.GetThreadIds(), [](lldb::SBThread& thr) { thr.Resume(); });
}
void CodeLiteLLDBApp::ResumeAllThreads(const LLDBCommand& command)
{
wxUnusedVar(command);
SuspendOrResumeOtherThreads("resuming", std::vector<int>(), [](lldb::SBThread& thr) { thr.Resume(); });
}
void CodeLiteLLDBApp::SetVariableValue(const LLDBCommand& command)
{
DoVariableAction(command.GetLldbId(), [&command](lldb::SBValue& sbValue) {
(void)sbValue.SetValueFromCString(command.GetExpression().c_str());
});
// NB: refreshing even if failed to set value in order to get UI back in sync.
LocalVariables(command);
}
void CodeLiteLLDBApp::SetVariableDisplayFormat(const LLDBCommand& command)
{
DoVariableAction(command.GetLldbId(), [&command](lldb::SBValue& sbValue) {
sbValue.SetFormat(LLDBFormat_To_LLDB(command.GetDisplayFormat()));
});
// NB: not refreshing; might be a multi-select so LLDBLocalsView will ask for a refresh
// once it's sent all commands.
}
template <typename T> void CodeLiteLLDBApp::DoVariableAction(const int variableId, T&& action)
{
if(!CanInteract()) { return; }
const auto iter = m_variables.find(variableId);
if(iter == m_variables.end()) { return; }
auto& sbValue = iter->second.value;
action(sbValue);
}
|