1 //===-- CommandInterpreter.h ------------------------------------*- C++ -*-===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #ifndef LLDB_INTERPRETER_COMMANDINTERPRETER_H 10 #define LLDB_INTERPRETER_COMMANDINTERPRETER_H 11 12 #include "lldb/Core/Debugger.h" 13 #include "lldb/Core/IOHandler.h" 14 #include "lldb/Interpreter/CommandAlias.h" 15 #include "lldb/Interpreter/CommandHistory.h" 16 #include "lldb/Interpreter/CommandObject.h" 17 #include "lldb/Interpreter/ScriptInterpreter.h" 18 #include "lldb/Utility/Args.h" 19 #include "lldb/Utility/Broadcaster.h" 20 #include "lldb/Utility/CompletionRequest.h" 21 #include "lldb/Utility/Event.h" 22 #include "lldb/Utility/Log.h" 23 #include "lldb/Utility/StreamString.h" 24 #include "lldb/Utility/StringList.h" 25 #include "lldb/Utility/StructuredData.h" 26 #include "lldb/lldb-forward.h" 27 #include "lldb/lldb-private.h" 28 29 #include <mutex> 30 #include <optional> 31 #include <stack> 32 #include <unordered_map> 33 34 namespace lldb_private { 35 class CommandInterpreter; 36 37 class CommandInterpreterRunResult { 38 public: 39 CommandInterpreterRunResult() = default; 40 41 uint32_t GetNumErrors() const { return m_num_errors; } 42 43 lldb::CommandInterpreterResult GetResult() const { return m_result; } 44 45 bool IsResult(lldb::CommandInterpreterResult result) { 46 return m_result == result; 47 } 48 49 protected: 50 friend CommandInterpreter; 51 52 void IncrementNumberOfErrors() { m_num_errors++; } 53 54 void SetResult(lldb::CommandInterpreterResult result) { m_result = result; } 55 56 private: 57 int m_num_errors = 0; 58 lldb::CommandInterpreterResult m_result = 59 lldb::eCommandInterpreterResultSuccess; 60 }; 61 62 class CommandInterpreterRunOptions { 63 public: 64 /// Construct a CommandInterpreterRunOptions object. This class is used to 65 /// control all the instances where we run multiple commands, e.g. 66 /// HandleCommands, HandleCommandsFromFile, RunCommandInterpreter. 67 /// 68 /// The meanings of the options in this object are: 69 /// 70 /// \param[in] stop_on_continue 71 /// If \b true, execution will end on the first command that causes the 72 /// process in the execution context to continue. If \b false, we won't 73 /// check the execution status. 74 /// \param[in] stop_on_error 75 /// If \b true, execution will end on the first command that causes an 76 /// error. 77 /// \param[in] stop_on_crash 78 /// If \b true, when a command causes the target to run, and the end of the 79 /// run is a signal or exception, stop executing the commands. 80 /// \param[in] echo_commands 81 /// If \b true, echo the command before executing it. If \b false, execute 82 /// silently. 83 /// \param[in] echo_comments 84 /// If \b true, echo command even if it is a pure comment line. If 85 /// \b false, print no ouput in this case. This setting has an effect only 86 /// if echo_commands is \b true. 87 /// \param[in] print_results 88 /// If \b true and the command succeeds, print the results of the command 89 /// after executing it. If \b false, execute silently. 90 /// \param[in] print_errors 91 /// If \b true and the command fails, print the results of the command 92 /// after executing it. If \b false, execute silently. 93 /// \param[in] add_to_history 94 /// If \b true add the commands to the command history. If \b false, don't 95 /// add them. 96 /// \param[in] handle_repeats 97 /// If \b true then treat empty lines as repeat commands even if the 98 /// interpreter is non-interactive. 99 CommandInterpreterRunOptions(LazyBool stop_on_continue, 100 LazyBool stop_on_error, LazyBool stop_on_crash, 101 LazyBool echo_commands, LazyBool echo_comments, 102 LazyBool print_results, LazyBool print_errors, 103 LazyBool add_to_history, 104 LazyBool handle_repeats) 105 : m_stop_on_continue(stop_on_continue), m_stop_on_error(stop_on_error), 106 m_stop_on_crash(stop_on_crash), m_echo_commands(echo_commands), 107 m_echo_comment_commands(echo_comments), m_print_results(print_results), 108 m_print_errors(print_errors), m_add_to_history(add_to_history), 109 m_allow_repeats(handle_repeats) {} 110 111 CommandInterpreterRunOptions() = default; 112 113 void SetSilent(bool silent) { 114 LazyBool value = silent ? eLazyBoolNo : eLazyBoolYes; 115 116 m_print_results = value; 117 m_print_errors = value; 118 m_echo_commands = value; 119 m_echo_comment_commands = value; 120 m_add_to_history = value; 121 } 122 // These return the default behaviors if the behavior is not 123 // eLazyBoolCalculate. But I've also left the ivars public since for 124 // different ways of running the interpreter you might want to force 125 // different defaults... In that case, just grab the LazyBool ivars directly 126 // and do what you want with eLazyBoolCalculate. 127 bool GetStopOnContinue() const { return DefaultToNo(m_stop_on_continue); } 128 129 void SetStopOnContinue(bool stop_on_continue) { 130 m_stop_on_continue = stop_on_continue ? eLazyBoolYes : eLazyBoolNo; 131 } 132 133 bool GetStopOnError() const { return DefaultToNo(m_stop_on_error); } 134 135 void SetStopOnError(bool stop_on_error) { 136 m_stop_on_error = stop_on_error ? eLazyBoolYes : eLazyBoolNo; 137 } 138 139 bool GetStopOnCrash() const { return DefaultToNo(m_stop_on_crash); } 140 141 void SetStopOnCrash(bool stop_on_crash) { 142 m_stop_on_crash = stop_on_crash ? eLazyBoolYes : eLazyBoolNo; 143 } 144 145 bool GetEchoCommands() const { return DefaultToYes(m_echo_commands); } 146 147 void SetEchoCommands(bool echo_commands) { 148 m_echo_commands = echo_commands ? eLazyBoolYes : eLazyBoolNo; 149 } 150 151 bool GetEchoCommentCommands() const { 152 return DefaultToYes(m_echo_comment_commands); 153 } 154 155 void SetEchoCommentCommands(bool echo_comments) { 156 m_echo_comment_commands = echo_comments ? eLazyBoolYes : eLazyBoolNo; 157 } 158 159 bool GetPrintResults() const { return DefaultToYes(m_print_results); } 160 161 void SetPrintResults(bool print_results) { 162 m_print_results = print_results ? eLazyBoolYes : eLazyBoolNo; 163 } 164 165 bool GetPrintErrors() const { return DefaultToYes(m_print_errors); } 166 167 void SetPrintErrors(bool print_errors) { 168 m_print_errors = print_errors ? eLazyBoolYes : eLazyBoolNo; 169 } 170 171 bool GetAddToHistory() const { return DefaultToYes(m_add_to_history); } 172 173 void SetAddToHistory(bool add_to_history) { 174 m_add_to_history = add_to_history ? eLazyBoolYes : eLazyBoolNo; 175 } 176 177 bool GetAutoHandleEvents() const { 178 return DefaultToYes(m_auto_handle_events); 179 } 180 181 void SetAutoHandleEvents(bool auto_handle_events) { 182 m_auto_handle_events = auto_handle_events ? eLazyBoolYes : eLazyBoolNo; 183 } 184 185 bool GetSpawnThread() const { return DefaultToNo(m_spawn_thread); } 186 187 void SetSpawnThread(bool spawn_thread) { 188 m_spawn_thread = spawn_thread ? eLazyBoolYes : eLazyBoolNo; 189 } 190 191 bool GetAllowRepeats() const { return DefaultToNo(m_allow_repeats); } 192 193 void SetAllowRepeats(bool allow_repeats) { 194 m_allow_repeats = allow_repeats ? eLazyBoolYes : eLazyBoolNo; 195 } 196 197 LazyBool m_stop_on_continue = eLazyBoolCalculate; 198 LazyBool m_stop_on_error = eLazyBoolCalculate; 199 LazyBool m_stop_on_crash = eLazyBoolCalculate; 200 LazyBool m_echo_commands = eLazyBoolCalculate; 201 LazyBool m_echo_comment_commands = eLazyBoolCalculate; 202 LazyBool m_print_results = eLazyBoolCalculate; 203 LazyBool m_print_errors = eLazyBoolCalculate; 204 LazyBool m_add_to_history = eLazyBoolCalculate; 205 LazyBool m_auto_handle_events; 206 LazyBool m_spawn_thread; 207 LazyBool m_allow_repeats = eLazyBoolCalculate; 208 209 private: 210 static bool DefaultToYes(LazyBool flag) { 211 switch (flag) { 212 case eLazyBoolNo: 213 return false; 214 default: 215 return true; 216 } 217 } 218 219 static bool DefaultToNo(LazyBool flag) { 220 switch (flag) { 221 case eLazyBoolYes: 222 return true; 223 default: 224 return false; 225 } 226 } 227 }; 228 229 class CommandInterpreter : public Broadcaster, 230 public Properties, 231 public IOHandlerDelegate { 232 public: 233 enum { 234 eBroadcastBitThreadShouldExit = (1 << 0), 235 eBroadcastBitResetPrompt = (1 << 1), 236 eBroadcastBitQuitCommandReceived = (1 << 2), // User entered quit 237 eBroadcastBitAsynchronousOutputData = (1 << 3), 238 eBroadcastBitAsynchronousErrorData = (1 << 4) 239 }; 240 241 /// Tristate boolean to manage children omission warnings. 242 enum ChildrenOmissionWarningStatus { 243 eNoOmission = 0, ///< No children were omitted. 244 eUnwarnedOmission = 1, ///< Children omitted, and not yet notified. 245 eWarnedOmission = 2 ///< Children omitted and notified. 246 }; 247 248 enum CommandTypes { 249 eCommandTypesBuiltin = 0x0001, //< native commands such as "frame" 250 eCommandTypesUserDef = 0x0002, //< scripted commands 251 eCommandTypesUserMW = 0x0004, //< multiword commands (command containers) 252 eCommandTypesAliases = 0x0008, //< aliases such as "po" 253 eCommandTypesHidden = 0x0010, //< commands prefixed with an underscore 254 eCommandTypesAllThem = 0xFFFF //< all commands 255 }; 256 257 // The CommandAlias and CommandInterpreter both have a hand in 258 // substituting for alias commands. They work by writing special tokens 259 // in the template form of the Alias command, and then detecting them when the 260 // command is executed. These are the special tokens: 261 static const char *g_no_argument; 262 static const char *g_need_argument; 263 static const char *g_argument; 264 265 CommandInterpreter(Debugger &debugger, bool synchronous_execution); 266 267 ~CommandInterpreter() override = default; 268 269 // These two functions fill out the Broadcaster interface: 270 271 static llvm::StringRef GetStaticBroadcasterClass(); 272 273 llvm::StringRef GetBroadcasterClass() const override { 274 return GetStaticBroadcasterClass(); 275 } 276 277 void SourceInitFileCwd(CommandReturnObject &result); 278 void SourceInitFileHome(CommandReturnObject &result, bool is_repl); 279 void SourceInitFileGlobal(CommandReturnObject &result); 280 281 bool AddCommand(llvm::StringRef name, const lldb::CommandObjectSP &cmd_sp, 282 bool can_replace); 283 284 Status AddUserCommand(llvm::StringRef name, 285 const lldb::CommandObjectSP &cmd_sp, bool can_replace); 286 287 lldb::CommandObjectSP GetCommandSPExact(llvm::StringRef cmd, 288 bool include_aliases = false) const; 289 290 CommandObject *GetCommandObject(llvm::StringRef cmd, 291 StringList *matches = nullptr, 292 StringList *descriptions = nullptr) const; 293 294 CommandObject *GetUserCommandObject(llvm::StringRef cmd, 295 StringList *matches = nullptr, 296 StringList *descriptions = nullptr) const; 297 298 CommandObject * 299 GetAliasCommandObject(llvm::StringRef cmd, StringList *matches = nullptr, 300 StringList *descriptions = nullptr) const; 301 302 /// Determine whether a root level, built-in command with this name exists. 303 bool CommandExists(llvm::StringRef cmd) const; 304 305 /// Determine whether an alias command with this name exists 306 bool AliasExists(llvm::StringRef cmd) const; 307 308 /// Determine whether a root-level user command with this name exists. 309 bool UserCommandExists(llvm::StringRef cmd) const; 310 311 /// Determine whether a root-level user multiword command with this name 312 /// exists. 313 bool UserMultiwordCommandExists(llvm::StringRef cmd) const; 314 315 /// Look up the command pointed to by path encoded in the arguments of 316 /// the incoming command object. If all the path components exist 317 /// and are all actual commands - not aliases, and the leaf command is a 318 /// multiword command, return the command. Otherwise return nullptr, and put 319 /// a useful diagnostic in the Status object. 320 /// 321 /// \param[in] path 322 /// An Args object holding the path in its arguments 323 /// \param[in] leaf_is_command 324 /// If true, return the container of the leaf name rather than looking up 325 /// the whole path as a leaf command. The leaf needn't exist in this case. 326 /// \param[in,out] result 327 /// If the path is not found, this error shows where we got off track. 328 /// \return 329 /// If found, a pointer to the CommandObjectMultiword pointed to by path, 330 /// or to the container of the leaf element is is_leaf_command. 331 /// Returns nullptr under two circumstances: 332 /// 1) The command in not found (check error.Fail) 333 /// 2) is_leaf is true and the path has only a leaf. We don't have a 334 /// dummy "contains everything MWC, so we return null here, but 335 /// in this case error.Success is true. 336 337 CommandObjectMultiword *VerifyUserMultiwordCmdPath(Args &path, 338 bool leaf_is_command, 339 Status &result); 340 341 CommandAlias *AddAlias(llvm::StringRef alias_name, 342 lldb::CommandObjectSP &command_obj_sp, 343 llvm::StringRef args_string = llvm::StringRef()); 344 345 /// Remove a command if it is removable (python or regex command). If \b force 346 /// is provided, the command is removed regardless of its removable status. 347 bool RemoveCommand(llvm::StringRef cmd, bool force = false); 348 349 bool RemoveAlias(llvm::StringRef alias_name); 350 351 bool GetAliasFullName(llvm::StringRef cmd, std::string &full_name) const; 352 353 bool RemoveUserMultiword(llvm::StringRef multiword_name); 354 355 // Do we want to allow top-level user multiword commands to be deleted? 356 void RemoveAllUserMultiword() { m_user_mw_dict.clear(); } 357 358 bool RemoveUser(llvm::StringRef alias_name); 359 360 void RemoveAllUser() { m_user_dict.clear(); } 361 362 const CommandAlias *GetAlias(llvm::StringRef alias_name) const; 363 364 CommandObject *BuildAliasResult(llvm::StringRef alias_name, 365 std::string &raw_input_string, 366 std::string &alias_result, 367 CommandReturnObject &result); 368 369 bool HandleCommand(const char *command_line, LazyBool add_to_history, 370 const ExecutionContext &override_context, 371 CommandReturnObject &result); 372 373 bool HandleCommand(const char *command_line, LazyBool add_to_history, 374 CommandReturnObject &result, 375 bool force_repeat_command = false); 376 377 bool InterruptCommand(); 378 379 /// Execute a list of commands in sequence. 380 /// 381 /// \param[in] commands 382 /// The list of commands to execute. 383 /// \param[in,out] context 384 /// The execution context in which to run the commands. 385 /// \param[in] options 386 /// This object holds the options used to control when to stop, whether to 387 /// execute commands, 388 /// etc. 389 /// \param[out] result 390 /// This is marked as succeeding with no output if all commands execute 391 /// safely, 392 /// and failed with some explanation if we aborted executing the commands 393 /// at some point. 394 void HandleCommands(const StringList &commands, 395 const ExecutionContext &context, 396 const CommandInterpreterRunOptions &options, 397 CommandReturnObject &result); 398 399 void HandleCommands(const StringList &commands, 400 const CommandInterpreterRunOptions &options, 401 CommandReturnObject &result); 402 403 /// Execute a list of commands from a file. 404 /// 405 /// \param[in] file 406 /// The file from which to read in commands. 407 /// \param[in,out] context 408 /// The execution context in which to run the commands. 409 /// \param[in] options 410 /// This object holds the options used to control when to stop, whether to 411 /// execute commands, 412 /// etc. 413 /// \param[out] result 414 /// This is marked as succeeding with no output if all commands execute 415 /// safely, 416 /// and failed with some explanation if we aborted executing the commands 417 /// at some point. 418 void HandleCommandsFromFile(FileSpec &file, const ExecutionContext &context, 419 const CommandInterpreterRunOptions &options, 420 CommandReturnObject &result); 421 422 void HandleCommandsFromFile(FileSpec &file, 423 const CommandInterpreterRunOptions &options, 424 CommandReturnObject &result); 425 426 CommandObject *GetCommandObjectForCommand(llvm::StringRef &command_line); 427 428 /// Returns the auto-suggestion string that should be added to the given 429 /// command line. 430 std::optional<std::string> GetAutoSuggestionForCommand(llvm::StringRef line); 431 432 // This handles command line completion. 433 void HandleCompletion(CompletionRequest &request); 434 435 // This version just returns matches, and doesn't compute the substring. It 436 // is here so the Help command can call it for the first argument. 437 void HandleCompletionMatches(CompletionRequest &request); 438 439 int GetCommandNamesMatchingPartialString(const char *cmd_cstr, 440 bool include_aliases, 441 StringList &matches, 442 StringList &descriptions); 443 444 void GetHelp(CommandReturnObject &result, 445 uint32_t types = eCommandTypesAllThem); 446 447 void GetAliasHelp(const char *alias_name, StreamString &help_string); 448 449 void OutputFormattedHelpText(Stream &strm, llvm::StringRef prefix, 450 llvm::StringRef help_text); 451 452 void OutputFormattedHelpText(Stream &stream, llvm::StringRef command_word, 453 llvm::StringRef separator, 454 llvm::StringRef help_text, size_t max_word_len); 455 456 // this mimics OutputFormattedHelpText but it does perform a much simpler 457 // formatting, basically ensuring line alignment. This is only good if you 458 // have some complicated layout for your help text and want as little help as 459 // reasonable in properly displaying it. Most of the times, you simply want 460 // to type some text and have it printed in a reasonable way on screen. If 461 // so, use OutputFormattedHelpText 462 void OutputHelpText(Stream &stream, llvm::StringRef command_word, 463 llvm::StringRef separator, llvm::StringRef help_text, 464 uint32_t max_word_len); 465 466 Debugger &GetDebugger() { return m_debugger; } 467 468 ExecutionContext GetExecutionContext() const; 469 470 lldb::PlatformSP GetPlatform(bool prefer_target_platform); 471 472 const char *ProcessEmbeddedScriptCommands(const char *arg); 473 474 void UpdatePrompt(llvm::StringRef prompt); 475 476 bool Confirm(llvm::StringRef message, bool default_answer); 477 478 void LoadCommandDictionary(); 479 480 void Initialize(); 481 482 void Clear(); 483 484 bool HasCommands() const; 485 486 bool HasAliases() const; 487 488 bool HasUserCommands() const; 489 490 bool HasUserMultiwordCommands() const; 491 492 bool HasAliasOptions() const; 493 494 void BuildAliasCommandArgs(CommandObject *alias_cmd_obj, 495 const char *alias_name, Args &cmd_args, 496 std::string &raw_input_string, 497 CommandReturnObject &result); 498 499 /// Picks the number out of a string of the form "%NNN", otherwise return 0. 500 int GetOptionArgumentPosition(const char *in_string); 501 502 void SkipLLDBInitFiles(bool skip_lldbinit_files) { 503 m_skip_lldbinit_files = skip_lldbinit_files; 504 } 505 506 void SkipAppInitFiles(bool skip_app_init_files) { 507 m_skip_app_init_files = skip_app_init_files; 508 } 509 510 bool GetSynchronous(); 511 512 void FindCommandsForApropos(llvm::StringRef word, StringList &commands_found, 513 StringList &commands_help, 514 bool search_builtin_commands, 515 bool search_user_commands, 516 bool search_alias_commands, 517 bool search_user_mw_commands); 518 519 bool GetBatchCommandMode() { return m_batch_command_mode; } 520 521 bool SetBatchCommandMode(bool value) { 522 const bool old_value = m_batch_command_mode; 523 m_batch_command_mode = value; 524 return old_value; 525 } 526 527 void ChildrenTruncated() { 528 if (m_truncation_warning == eNoOmission) 529 m_truncation_warning = eUnwarnedOmission; 530 } 531 532 void SetReachedMaximumDepth() { 533 if (m_max_depth_warning == eNoOmission) 534 m_max_depth_warning = eUnwarnedOmission; 535 } 536 537 void PrintWarningsIfNecessary(Stream &s, const std::string &cmd_name) { 538 if (m_truncation_warning == eUnwarnedOmission) { 539 s.Printf("*** Some of the displayed variables have more members than the " 540 "debugger will show by default. To show all of them, you can " 541 "either use the --show-all-children option to %s or raise the " 542 "limit by changing the target.max-children-count setting.\n", 543 cmd_name.c_str()); 544 m_truncation_warning = eWarnedOmission; 545 } 546 547 if (m_max_depth_warning == eUnwarnedOmission) { 548 s.Printf("*** Some of the displayed variables have a greater depth of " 549 "members than the debugger will show by default. To increase " 550 "the limit, use the --depth option to %s, or raise the limit by " 551 "changing the target.max-children-depth setting.\n", 552 cmd_name.c_str()); 553 m_max_depth_warning = eWarnedOmission; 554 } 555 } 556 557 CommandHistory &GetCommandHistory() { return m_command_history; } 558 559 bool IsActive(); 560 561 CommandInterpreterRunResult 562 RunCommandInterpreter(CommandInterpreterRunOptions &options); 563 564 void GetLLDBCommandsFromIOHandler(const char *prompt, 565 IOHandlerDelegate &delegate, 566 void *baton = nullptr); 567 568 void GetPythonCommandsFromIOHandler(const char *prompt, 569 IOHandlerDelegate &delegate, 570 void *baton = nullptr); 571 572 const char *GetCommandPrefix(); 573 574 // Properties 575 bool GetExpandRegexAliases() const; 576 577 bool GetPromptOnQuit() const; 578 void SetPromptOnQuit(bool enable); 579 580 bool GetSaveTranscript() const; 581 void SetSaveTranscript(bool enable); 582 583 bool GetSaveSessionOnQuit() const; 584 void SetSaveSessionOnQuit(bool enable); 585 586 bool GetOpenTranscriptInEditor() const; 587 void SetOpenTranscriptInEditor(bool enable); 588 589 FileSpec GetSaveSessionDirectory() const; 590 void SetSaveSessionDirectory(llvm::StringRef path); 591 592 bool GetEchoCommands() const; 593 void SetEchoCommands(bool enable); 594 595 bool GetEchoCommentCommands() const; 596 void SetEchoCommentCommands(bool enable); 597 598 bool GetRepeatPreviousCommand() const; 599 600 bool GetRequireCommandOverwrite() const; 601 602 const CommandObject::CommandMap &GetUserCommands() const { 603 return m_user_dict; 604 } 605 606 const CommandObject::CommandMap &GetUserMultiwordCommands() const { 607 return m_user_mw_dict; 608 } 609 610 const CommandObject::CommandMap &GetCommands() const { 611 return m_command_dict; 612 } 613 614 const CommandObject::CommandMap &GetAliases() const { return m_alias_dict; } 615 616 /// Specify if the command interpreter should allow that the user can 617 /// specify a custom exit code when calling 'quit'. 618 void AllowExitCodeOnQuit(bool allow); 619 620 /// Sets the exit code for the quit command. 621 /// \param[in] exit_code 622 /// The exit code that the driver should return on exit. 623 /// \return True if the exit code was successfully set; false if the 624 /// interpreter doesn't allow custom exit codes. 625 /// \see AllowExitCodeOnQuit 626 [[nodiscard]] bool SetQuitExitCode(int exit_code); 627 628 /// Returns the exit code that the user has specified when running the 629 /// 'quit' command. 630 /// \param[out] exited 631 /// Set to true if the user has called quit with a custom exit code. 632 int GetQuitExitCode(bool &exited) const; 633 634 void ResolveCommand(const char *command_line, CommandReturnObject &result); 635 636 bool GetStopCmdSourceOnError() const; 637 638 lldb::IOHandlerSP 639 GetIOHandler(bool force_create = false, 640 CommandInterpreterRunOptions *options = nullptr); 641 642 bool GetSpaceReplPrompts() const; 643 644 /// Save the current debugger session transcript to a file on disk. 645 /// \param output_file 646 /// The file path to which the session transcript will be written. Since 647 /// the argument is optional, an arbitrary temporary file will be create 648 /// when no argument is passed. 649 /// \param result 650 /// This is used to pass function output and error messages. 651 /// \return \b true if the session transcript was successfully written to 652 /// disk, \b false otherwise. 653 bool SaveTranscript(CommandReturnObject &result, 654 std::optional<std::string> output_file = std::nullopt); 655 656 FileSpec GetCurrentSourceDir(); 657 658 bool IsInteractive(); 659 660 bool IOHandlerInterrupt(IOHandler &io_handler) override; 661 662 Status PreprocessCommand(std::string &command); 663 Status PreprocessToken(std::string &token); 664 665 void IncreaseCommandUsage(const CommandObject &cmd_obj) { 666 ++m_command_usages[cmd_obj.GetCommandName()]; 667 } 668 669 llvm::json::Value GetStatistics(); 670 const StructuredData::Array &GetTranscript() const; 671 672 protected: 673 friend class Debugger; 674 675 // This checks just the RunCommandInterpreter interruption state. It is only 676 // meant to be used in Debugger::InterruptRequested 677 bool WasInterrupted() const; 678 679 // IOHandlerDelegate functions 680 void IOHandlerInputComplete(IOHandler &io_handler, 681 std::string &line) override; 682 683 llvm::StringRef IOHandlerGetControlSequence(char ch) override { 684 static constexpr llvm::StringLiteral control_sequence("quit\n"); 685 if (ch == 'd') 686 return control_sequence; 687 return {}; 688 } 689 690 void GetProcessOutput(); 691 692 bool DidProcessStopAbnormally() const; 693 694 void SetSynchronous(bool value); 695 696 lldb::CommandObjectSP GetCommandSP(llvm::StringRef cmd, 697 bool include_aliases = true, 698 bool exact = true, 699 StringList *matches = nullptr, 700 StringList *descriptions = nullptr) const; 701 702 private: 703 void OverrideExecutionContext(const ExecutionContext &override_context); 704 705 void RestoreExecutionContext(); 706 707 void SourceInitFile(FileSpec file, CommandReturnObject &result); 708 709 // Completely resolves aliases and abbreviations, returning a pointer to the 710 // final command object and updating command_line to the fully substituted 711 // and translated command. 712 CommandObject *ResolveCommandImpl(std::string &command_line, 713 CommandReturnObject &result); 714 715 void FindCommandsForApropos(llvm::StringRef word, StringList &commands_found, 716 StringList &commands_help, 717 const CommandObject::CommandMap &command_map); 718 719 // An interruptible wrapper around the stream output 720 void PrintCommandOutput(IOHandler &io_handler, llvm::StringRef str, 721 bool is_stdout); 722 723 bool EchoCommandNonInteractive(llvm::StringRef line, 724 const Flags &io_handler_flags) const; 725 726 // A very simple state machine which models the command handling transitions 727 enum class CommandHandlingState { 728 eIdle, 729 eInProgress, 730 eInterrupted, 731 }; 732 733 std::atomic<CommandHandlingState> m_command_state{ 734 CommandHandlingState::eIdle}; 735 736 int m_iohandler_nesting_level = 0; 737 738 void StartHandlingCommand(); 739 void FinishHandlingCommand(); 740 741 Debugger &m_debugger; // The debugger session that this interpreter is 742 // associated with 743 // Execution contexts that were temporarily set by some of HandleCommand* 744 // overloads. 745 std::stack<ExecutionContext> m_overriden_exe_contexts; 746 bool m_synchronous_execution; 747 bool m_skip_lldbinit_files; 748 bool m_skip_app_init_files; 749 CommandObject::CommandMap m_command_dict; // Stores basic built-in commands 750 // (they cannot be deleted, removed 751 // or overwritten). 752 CommandObject::CommandMap 753 m_alias_dict; // Stores user aliases/abbreviations for commands 754 CommandObject::CommandMap m_user_dict; // Stores user-defined commands 755 CommandObject::CommandMap 756 m_user_mw_dict; // Stores user-defined multiword commands 757 CommandHistory m_command_history; 758 std::string m_repeat_command; // Stores the command that will be executed for 759 // an empty command string. 760 lldb::IOHandlerSP m_command_io_handler_sp; 761 char m_comment_char; 762 bool m_batch_command_mode; 763 /// Whether we truncated a value's list of children and whether the user has 764 /// been told. 765 ChildrenOmissionWarningStatus m_truncation_warning; 766 /// Whether we reached the maximum child nesting depth and whether the user 767 /// has been told. 768 ChildrenOmissionWarningStatus m_max_depth_warning; 769 770 // FIXME: Stop using this to control adding to the history and then replace 771 // this with m_command_source_dirs.size(). 772 uint32_t m_command_source_depth; 773 /// A stack of directory paths. When not empty, the last one is the directory 774 /// of the file that's currently sourced. 775 std::vector<FileSpec> m_command_source_dirs; 776 std::vector<uint32_t> m_command_source_flags; 777 CommandInterpreterRunResult m_result; 778 779 // The exit code the user has requested when calling the 'quit' command. 780 // No value means the user hasn't set a custom exit code so far. 781 std::optional<int> m_quit_exit_code; 782 // If the driver is accepts custom exit codes for the 'quit' command. 783 bool m_allow_exit_code = false; 784 785 /// Command usage statistics. 786 typedef llvm::StringMap<uint64_t> CommandUsageMap; 787 CommandUsageMap m_command_usages; 788 789 /// Turn on settings `interpreter.save-transcript` for LLDB to populate 790 /// this stream. Otherwise this stream is empty. 791 StreamString m_transcript_stream; 792 793 /// Contains a list of handled commands and their details. Each element in 794 /// the list is a dictionary with the following keys/values: 795 /// - "command" (string): The command that was given by the user. 796 /// - "commandName" (string): The name of the executed command. 797 /// - "commandArguments" (string): The arguments of the executed command. 798 /// - "output" (string): The output of the command. Empty ("") if no output. 799 /// - "error" (string): The error of the command. Empty ("") if no error. 800 /// - "durationInSeconds" (float): The time it took to execute the command. 801 /// - "timestampInEpochSeconds" (int): The timestamp when the command is 802 /// executed. 803 /// 804 /// Turn on settings `interpreter.save-transcript` for LLDB to populate 805 /// this list. Otherwise this list is empty. 806 StructuredData::Array m_transcript; 807 }; 808 809 } // namespace lldb_private 810 811 #endif // LLDB_INTERPRETER_COMMANDINTERPRETER_H 812