1ebc09c36SJim Ingham //===-- CommandObjectSource.cpp ---------------------------------*- C++ -*-===// 2ebc09c36SJim Ingham // 3ebc09c36SJim Ingham // The LLVM Compiler Infrastructure 4ebc09c36SJim Ingham // 5ebc09c36SJim Ingham // This file is distributed under the University of Illinois Open Source 6ebc09c36SJim Ingham // License. See LICENSE.TXT for details. 7ebc09c36SJim Ingham // 8ebc09c36SJim Ingham //===----------------------------------------------------------------------===// 9ebc09c36SJim Ingham 1093a64300SDaniel Malea #include "lldb/lldb-python.h" 1193a64300SDaniel Malea 12ebc09c36SJim Ingham #include "CommandObjectCommands.h" 13ebc09c36SJim Ingham 14ebc09c36SJim Ingham // C Includes 15ebc09c36SJim Ingham // C++ Includes 16ebc09c36SJim Ingham // Other libraries and framework includes 170e5e5a79SGreg Clayton #include "llvm/ADT/StringRef.h" 180e5e5a79SGreg Clayton 19ebc09c36SJim Ingham // Project includes 20ebc09c36SJim Ingham #include "lldb/Core/Debugger.h" 2144d93782SGreg Clayton #include "lldb/Core/IOHandler.h" 22be93a35aSEnrico Granata #include "lldb/Core/StringList.h" 23de164aaaSGreg Clayton #include "lldb/Interpreter/Args.h" 247594f14fSEnrico Granata #include "lldb/Interpreter/CommandHistory.h" 25ebc09c36SJim Ingham #include "lldb/Interpreter/CommandInterpreter.h" 26de164aaaSGreg Clayton #include "lldb/Interpreter/CommandObjectRegexCommand.h" 27ebc09c36SJim Ingham #include "lldb/Interpreter/CommandReturnObject.h" 28012d4fcaSEnrico Granata #include "lldb/Interpreter/OptionValueBoolean.h" 297594f14fSEnrico Granata #include "lldb/Interpreter/OptionValueUInt64.h" 30ebc09c36SJim Ingham #include "lldb/Interpreter/Options.h" 3199f0b8f9SEnrico Granata #include "lldb/Interpreter/ScriptInterpreter.h" 3299f0b8f9SEnrico Granata #include "lldb/Interpreter/ScriptInterpreterPython.h" 33ebc09c36SJim Ingham 34ebc09c36SJim Ingham using namespace lldb; 35ebc09c36SJim Ingham using namespace lldb_private; 36ebc09c36SJim Ingham 37ebc09c36SJim Ingham //------------------------------------------------------------------------- 38ebc09c36SJim Ingham // CommandObjectCommandsSource 39ebc09c36SJim Ingham //------------------------------------------------------------------------- 40ebc09c36SJim Ingham 415a988416SJim Ingham class CommandObjectCommandsHistory : public CommandObjectParsed 42a5a97ebeSJim Ingham { 435a988416SJim Ingham public: 445a988416SJim Ingham CommandObjectCommandsHistory(CommandInterpreter &interpreter) : 455a988416SJim Ingham CommandObjectParsed (interpreter, 465a988416SJim Ingham "command history", 475a988416SJim Ingham "Dump the history of commands in this session.", 485a988416SJim Ingham NULL), 495a988416SJim Ingham m_options (interpreter) 505a988416SJim Ingham { 515a988416SJim Ingham } 525a988416SJim Ingham 535a988416SJim Ingham ~CommandObjectCommandsHistory () {} 545a988416SJim Ingham 555a988416SJim Ingham virtual Options * 565a988416SJim Ingham GetOptions () 575a988416SJim Ingham { 585a988416SJim Ingham return &m_options; 595a988416SJim Ingham } 605a988416SJim Ingham 615a988416SJim Ingham protected: 62a5a97ebeSJim Ingham 63a5a97ebeSJim Ingham class CommandOptions : public Options 64a5a97ebeSJim Ingham { 65a5a97ebeSJim Ingham public: 66a5a97ebeSJim Ingham 67a5a97ebeSJim Ingham CommandOptions (CommandInterpreter &interpreter) : 687594f14fSEnrico Granata Options (interpreter), 697594f14fSEnrico Granata m_start_idx(0), 707594f14fSEnrico Granata m_stop_idx(0), 717594f14fSEnrico Granata m_count(0), 7263123b64SEnrico Granata m_clear(false) 73a5a97ebeSJim Ingham { 74a5a97ebeSJim Ingham } 75a5a97ebeSJim Ingham 76a5a97ebeSJim Ingham virtual 77a5a97ebeSJim Ingham ~CommandOptions (){} 78a5a97ebeSJim Ingham 79a5a97ebeSJim Ingham virtual Error 80a5a97ebeSJim Ingham SetOptionValue (uint32_t option_idx, const char *option_arg) 81a5a97ebeSJim Ingham { 82a5a97ebeSJim Ingham Error error; 833bcdfc0eSGreg Clayton const int short_option = m_getopt_table[option_idx].val; 84a5a97ebeSJim Ingham 85a5a97ebeSJim Ingham switch (short_option) 86a5a97ebeSJim Ingham { 87a5a97ebeSJim Ingham case 'c': 887594f14fSEnrico Granata error = m_count.SetValueFromCString(option_arg,eVarSetOperationAssign); 89a5a97ebeSJim Ingham break; 90a5a97ebeSJim Ingham case 's': 917594f14fSEnrico Granata if (option_arg && strcmp("end", option_arg) == 0) 927594f14fSEnrico Granata { 937594f14fSEnrico Granata m_start_idx.SetCurrentValue(UINT64_MAX); 947594f14fSEnrico Granata m_start_idx.SetOptionWasSet(); 957594f14fSEnrico Granata } 967594f14fSEnrico Granata else 977594f14fSEnrico Granata error = m_start_idx.SetValueFromCString(option_arg,eVarSetOperationAssign); 987594f14fSEnrico Granata break; 997594f14fSEnrico Granata case 'e': 1007594f14fSEnrico Granata error = m_stop_idx.SetValueFromCString(option_arg,eVarSetOperationAssign); 1017594f14fSEnrico Granata break; 10263123b64SEnrico Granata case 'C': 10363123b64SEnrico Granata m_clear.SetCurrentValue(true); 10463123b64SEnrico Granata m_clear.SetOptionWasSet(); 105a5a97ebeSJim Ingham break; 106a5a97ebeSJim Ingham default: 10786edbf41SGreg Clayton error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option); 108a5a97ebeSJim Ingham break; 109a5a97ebeSJim Ingham } 110a5a97ebeSJim Ingham 111a5a97ebeSJim Ingham return error; 112a5a97ebeSJim Ingham } 113a5a97ebeSJim Ingham 114a5a97ebeSJim Ingham void 115a5a97ebeSJim Ingham OptionParsingStarting () 116a5a97ebeSJim Ingham { 1177594f14fSEnrico Granata m_start_idx.Clear(); 1187594f14fSEnrico Granata m_stop_idx.Clear(); 1197594f14fSEnrico Granata m_count.Clear(); 12063123b64SEnrico Granata m_clear.Clear(); 121a5a97ebeSJim Ingham } 122a5a97ebeSJim Ingham 123a5a97ebeSJim Ingham const OptionDefinition* 124a5a97ebeSJim Ingham GetDefinitions () 125a5a97ebeSJim Ingham { 126a5a97ebeSJim Ingham return g_option_table; 127a5a97ebeSJim Ingham } 128a5a97ebeSJim Ingham 129a5a97ebeSJim Ingham // Options table: Required for subclasses of Options. 130a5a97ebeSJim Ingham 131a5a97ebeSJim Ingham static OptionDefinition g_option_table[]; 132a5a97ebeSJim Ingham 133a5a97ebeSJim Ingham // Instance variables to hold the values for command options. 134a5a97ebeSJim Ingham 1357594f14fSEnrico Granata OptionValueUInt64 m_start_idx; 1367594f14fSEnrico Granata OptionValueUInt64 m_stop_idx; 1377594f14fSEnrico Granata OptionValueUInt64 m_count; 13863123b64SEnrico Granata OptionValueBoolean m_clear; 139a5a97ebeSJim Ingham }; 140a5a97ebeSJim Ingham 141a5a97ebeSJim Ingham bool 1425a988416SJim Ingham DoExecute (Args& command, CommandReturnObject &result) 143a5a97ebeSJim Ingham { 14463123b64SEnrico Granata if (m_options.m_clear.GetCurrentValue() && m_options.m_clear.OptionWasSet()) 1457594f14fSEnrico Granata { 1467594f14fSEnrico Granata m_interpreter.GetCommandHistory().Clear(); 1477594f14fSEnrico Granata result.SetStatus(lldb::eReturnStatusSuccessFinishNoResult); 1487594f14fSEnrico Granata } 1497594f14fSEnrico Granata else 1507594f14fSEnrico Granata { 1517594f14fSEnrico Granata if (m_options.m_start_idx.OptionWasSet() && m_options.m_stop_idx.OptionWasSet() && m_options.m_count.OptionWasSet()) 1527594f14fSEnrico Granata { 1537594f14fSEnrico Granata result.AppendError("--count, --start-index and --end-index cannot be all specified in the same invocation"); 1547594f14fSEnrico Granata result.SetStatus(lldb::eReturnStatusFailed); 1557594f14fSEnrico Granata } 1567594f14fSEnrico Granata else 1577594f14fSEnrico Granata { 15884400ec7SVirgile Bello std::pair<bool,uint64_t> start_idx(m_options.m_start_idx.OptionWasSet(),m_options.m_start_idx.GetCurrentValue()); 15984400ec7SVirgile Bello std::pair<bool,uint64_t> stop_idx(m_options.m_stop_idx.OptionWasSet(),m_options.m_stop_idx.GetCurrentValue()); 16084400ec7SVirgile Bello std::pair<bool,uint64_t> count(m_options.m_count.OptionWasSet(),m_options.m_count.GetCurrentValue()); 161a5a97ebeSJim Ingham 1627594f14fSEnrico Granata const CommandHistory& history(m_interpreter.GetCommandHistory()); 1637594f14fSEnrico Granata 1647594f14fSEnrico Granata if (start_idx.first && start_idx.second == UINT64_MAX) 1657594f14fSEnrico Granata { 1667594f14fSEnrico Granata if (count.first) 1677594f14fSEnrico Granata { 1687594f14fSEnrico Granata start_idx.second = history.GetSize() - count.second; 1697594f14fSEnrico Granata stop_idx.second = history.GetSize() - 1; 1707594f14fSEnrico Granata } 1717594f14fSEnrico Granata else if (stop_idx.first) 1727594f14fSEnrico Granata { 1737594f14fSEnrico Granata start_idx.second = stop_idx.second; 1747594f14fSEnrico Granata stop_idx.second = history.GetSize() - 1; 1757594f14fSEnrico Granata } 1767594f14fSEnrico Granata else 1777594f14fSEnrico Granata { 1787594f14fSEnrico Granata start_idx.second = 0; 1797594f14fSEnrico Granata stop_idx.second = history.GetSize() - 1; 1807594f14fSEnrico Granata } 1817594f14fSEnrico Granata } 1827594f14fSEnrico Granata else 1837594f14fSEnrico Granata { 1847594f14fSEnrico Granata if (!start_idx.first && !stop_idx.first && !count.first) 1857594f14fSEnrico Granata { 1867594f14fSEnrico Granata start_idx.second = 0; 1877594f14fSEnrico Granata stop_idx.second = history.GetSize() - 1; 1887594f14fSEnrico Granata } 1897594f14fSEnrico Granata else if (start_idx.first) 1907594f14fSEnrico Granata { 1917594f14fSEnrico Granata if (count.first) 1927594f14fSEnrico Granata { 1937594f14fSEnrico Granata stop_idx.second = start_idx.second + count.second - 1; 1947594f14fSEnrico Granata } 1957594f14fSEnrico Granata else if (!stop_idx.first) 1967594f14fSEnrico Granata { 1977594f14fSEnrico Granata stop_idx.second = history.GetSize() - 1; 1987594f14fSEnrico Granata } 1997594f14fSEnrico Granata } 2007594f14fSEnrico Granata else if (stop_idx.first) 2017594f14fSEnrico Granata { 2027594f14fSEnrico Granata if (count.first) 2037594f14fSEnrico Granata { 2047594f14fSEnrico Granata if (stop_idx.second >= count.second) 2057594f14fSEnrico Granata start_idx.second = stop_idx.second - count.second + 1; 2067594f14fSEnrico Granata else 2077594f14fSEnrico Granata start_idx.second = 0; 2087594f14fSEnrico Granata } 2097594f14fSEnrico Granata } 2107594f14fSEnrico Granata else /* if (count.first) */ 2117594f14fSEnrico Granata { 2127594f14fSEnrico Granata start_idx.second = 0; 2137594f14fSEnrico Granata stop_idx.second = count.second - 1; 2147594f14fSEnrico Granata } 2157594f14fSEnrico Granata } 2167594f14fSEnrico Granata history.Dump(result.GetOutputStream(), start_idx.second, stop_idx.second); 2177594f14fSEnrico Granata } 2187594f14fSEnrico Granata } 219a5a97ebeSJim Ingham return result.Succeeded(); 220a5a97ebeSJim Ingham 221a5a97ebeSJim Ingham } 2225a988416SJim Ingham 2235a988416SJim Ingham CommandOptions m_options; 224a5a97ebeSJim Ingham }; 225a5a97ebeSJim Ingham 226a5a97ebeSJim Ingham OptionDefinition 227a5a97ebeSJim Ingham CommandObjectCommandsHistory::CommandOptions::g_option_table[] = 228a5a97ebeSJim Ingham { 229d37221dcSZachary Turner { LLDB_OPT_SET_1, false, "count", 'c', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeUnsignedInteger, "How many history commands to print."}, 230d37221dcSZachary Turner { LLDB_OPT_SET_1, false, "start-index", 's', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeUnsignedInteger, "Index at which to start printing history commands (or end to mean tail mode)."}, 231d37221dcSZachary Turner { LLDB_OPT_SET_1, false, "end-index", 'e', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeUnsignedInteger, "Index at which to stop printing history commands."}, 232d37221dcSZachary Turner { LLDB_OPT_SET_2, false, "clear", 'C', OptionParser::eNoArgument, NULL, NULL, 0, eArgTypeBoolean, "Clears the current command history."}, 233d37221dcSZachary Turner { 0, false, NULL, 0, 0, NULL, NULL, 0, eArgTypeNone, NULL } 234a5a97ebeSJim Ingham }; 235a5a97ebeSJim Ingham 236a5a97ebeSJim Ingham 237a5a97ebeSJim Ingham //------------------------------------------------------------------------- 238a5a97ebeSJim Ingham // CommandObjectCommandsSource 239a5a97ebeSJim Ingham //------------------------------------------------------------------------- 240a5a97ebeSJim Ingham 2415a988416SJim Ingham class CommandObjectCommandsSource : public CommandObjectParsed 242ebc09c36SJim Ingham { 2435a988416SJim Ingham public: 2445a988416SJim Ingham CommandObjectCommandsSource(CommandInterpreter &interpreter) : 2455a988416SJim Ingham CommandObjectParsed (interpreter, 2465a988416SJim Ingham "command source", 2475a988416SJim Ingham "Read in debugger commands from the file <filename> and execute them.", 2485a988416SJim Ingham NULL), 2495a988416SJim Ingham m_options (interpreter) 2505a988416SJim Ingham { 2515a988416SJim Ingham CommandArgumentEntry arg; 2525a988416SJim Ingham CommandArgumentData file_arg; 2535a988416SJim Ingham 2545a988416SJim Ingham // Define the first (and only) variant of this arg. 2555a988416SJim Ingham file_arg.arg_type = eArgTypeFilename; 2565a988416SJim Ingham file_arg.arg_repetition = eArgRepeatPlain; 2575a988416SJim Ingham 2585a988416SJim Ingham // There is only one variant this argument could be; put it into the argument entry. 2595a988416SJim Ingham arg.push_back (file_arg); 2605a988416SJim Ingham 2615a988416SJim Ingham // Push the data for the first argument into the m_arguments vector. 2625a988416SJim Ingham m_arguments.push_back (arg); 2635a988416SJim Ingham } 2645a988416SJim Ingham 2655a988416SJim Ingham ~CommandObjectCommandsSource () {} 2665a988416SJim Ingham 2675a988416SJim Ingham virtual const char* 2685a988416SJim Ingham GetRepeatCommand (Args ¤t_command_args, uint32_t index) 2695a988416SJim Ingham { 2705a988416SJim Ingham return ""; 2715a988416SJim Ingham } 2725a988416SJim Ingham 273c7bece56SGreg Clayton virtual int 2745a988416SJim Ingham HandleArgumentCompletion (Args &input, 2755a988416SJim Ingham int &cursor_index, 2765a988416SJim Ingham int &cursor_char_position, 2775a988416SJim Ingham OptionElementVector &opt_element_vector, 2785a988416SJim Ingham int match_start_point, 2795a988416SJim Ingham int max_return_elements, 2805a988416SJim Ingham bool &word_complete, 2815a988416SJim Ingham StringList &matches) 2825a988416SJim Ingham { 2835a988416SJim Ingham std::string completion_str (input.GetArgumentAtIndex(cursor_index)); 2845a988416SJim Ingham completion_str.erase (cursor_char_position); 2855a988416SJim Ingham 2865a988416SJim Ingham CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter, 2875a988416SJim Ingham CommandCompletions::eDiskFileCompletion, 2885a988416SJim Ingham completion_str.c_str(), 2895a988416SJim Ingham match_start_point, 2905a988416SJim Ingham max_return_elements, 2915a988416SJim Ingham NULL, 2925a988416SJim Ingham word_complete, 2935a988416SJim Ingham matches); 2945a988416SJim Ingham return matches.GetSize(); 2955a988416SJim Ingham } 2965a988416SJim Ingham 2975a988416SJim Ingham virtual Options * 2985a988416SJim Ingham GetOptions () 2995a988416SJim Ingham { 3005a988416SJim Ingham return &m_options; 3015a988416SJim Ingham } 3025a988416SJim Ingham 3035a988416SJim Ingham protected: 304e16c50a1SJim Ingham 305e16c50a1SJim Ingham class CommandOptions : public Options 306e16c50a1SJim Ingham { 307e16c50a1SJim Ingham public: 308e16c50a1SJim Ingham 309eb0103f2SGreg Clayton CommandOptions (CommandInterpreter &interpreter) : 310012d4fcaSEnrico Granata Options (interpreter), 311340b0309SGreg Clayton m_stop_on_error (true), 312340b0309SGreg Clayton m_silent_run (false), 313340b0309SGreg Clayton m_stop_on_continue (true) 314eb0103f2SGreg Clayton { 315eb0103f2SGreg Clayton } 316e16c50a1SJim Ingham 317e16c50a1SJim Ingham virtual 318e16c50a1SJim Ingham ~CommandOptions (){} 319e16c50a1SJim Ingham 320e16c50a1SJim Ingham virtual Error 321f6b8b581SGreg Clayton SetOptionValue (uint32_t option_idx, const char *option_arg) 322e16c50a1SJim Ingham { 323e16c50a1SJim Ingham Error error; 3243bcdfc0eSGreg Clayton const int short_option = m_getopt_table[option_idx].val; 325e16c50a1SJim Ingham 326e16c50a1SJim Ingham switch (short_option) 327e16c50a1SJim Ingham { 328e16c50a1SJim Ingham case 'e': 32915571f15SEnrico Granata error = m_stop_on_error.SetValueFromCString(option_arg); 330e16c50a1SJim Ingham break; 331340b0309SGreg Clayton 332e16c50a1SJim Ingham case 'c': 333340b0309SGreg Clayton error = m_stop_on_continue.SetValueFromCString(option_arg); 334e16c50a1SJim Ingham break; 335340b0309SGreg Clayton 33660986174SMichael Sartain case 's': 337340b0309SGreg Clayton error = m_silent_run.SetValueFromCString(option_arg); 33860986174SMichael Sartain break; 339340b0309SGreg Clayton 340e16c50a1SJim Ingham default: 34186edbf41SGreg Clayton error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option); 342e16c50a1SJim Ingham break; 343e16c50a1SJim Ingham } 344e16c50a1SJim Ingham 345e16c50a1SJim Ingham return error; 346e16c50a1SJim Ingham } 347e16c50a1SJim Ingham 348e16c50a1SJim Ingham void 349f6b8b581SGreg Clayton OptionParsingStarting () 350e16c50a1SJim Ingham { 351012d4fcaSEnrico Granata m_stop_on_error.Clear(); 352340b0309SGreg Clayton m_silent_run.Clear(); 353340b0309SGreg Clayton m_stop_on_continue.Clear(); 354e16c50a1SJim Ingham } 355e16c50a1SJim Ingham 356e0d378b3SGreg Clayton const OptionDefinition* 357e16c50a1SJim Ingham GetDefinitions () 358e16c50a1SJim Ingham { 359e16c50a1SJim Ingham return g_option_table; 360e16c50a1SJim Ingham } 361e16c50a1SJim Ingham 362e16c50a1SJim Ingham // Options table: Required for subclasses of Options. 363e16c50a1SJim Ingham 364e0d378b3SGreg Clayton static OptionDefinition g_option_table[]; 365e16c50a1SJim Ingham 366e16c50a1SJim Ingham // Instance variables to hold the values for command options. 367e16c50a1SJim Ingham 368012d4fcaSEnrico Granata OptionValueBoolean m_stop_on_error; 369340b0309SGreg Clayton OptionValueBoolean m_silent_run; 370340b0309SGreg Clayton OptionValueBoolean m_stop_on_continue; 371e16c50a1SJim Ingham }; 372e16c50a1SJim Ingham 373ebc09c36SJim Ingham bool 3745a988416SJim Ingham DoExecute(Args& command, CommandReturnObject &result) 375ebc09c36SJim Ingham { 376c7bece56SGreg Clayton const size_t argc = command.GetArgumentCount(); 377ebc09c36SJim Ingham if (argc == 1) 378ebc09c36SJim Ingham { 3795a988416SJim Ingham const char *filename = command.GetArgumentAtIndex(0); 380ebc09c36SJim Ingham 3811ee3853fSJohnny Chen FileSpec cmd_file (filename, true); 382e16c50a1SJim Ingham ExecutionContext *exe_ctx = NULL; // Just use the default context. 383ebc09c36SJim Ingham 384340b0309SGreg Clayton // If any options were set, then use them 385340b0309SGreg Clayton if (m_options.m_stop_on_error.OptionWasSet() || 386340b0309SGreg Clayton m_options.m_silent_run.OptionWasSet() || 387340b0309SGreg Clayton m_options.m_stop_on_continue.OptionWasSet()) 388340b0309SGreg Clayton { 389340b0309SGreg Clayton // Use user set settings 39026c7bf93SJim Ingham CommandInterpreterRunOptions options; 39126c7bf93SJim Ingham options.SetStopOnContinue(m_options.m_stop_on_continue.GetCurrentValue()); 39226c7bf93SJim Ingham options.SetStopOnError (m_options.m_stop_on_error.GetCurrentValue()); 39326c7bf93SJim Ingham options.SetEchoCommands (m_options.m_silent_run.GetCurrentValue()); 39426c7bf93SJim Ingham options.SetPrintResults (m_options.m_silent_run.GetCurrentValue()); 39526c7bf93SJim Ingham 396e16c50a1SJim Ingham m_interpreter.HandleCommandsFromFile (cmd_file, 397e16c50a1SJim Ingham exe_ctx, 39826c7bf93SJim Ingham options, 399e16c50a1SJim Ingham result); 400340b0309SGreg Clayton 401340b0309SGreg Clayton } 402340b0309SGreg Clayton else 403340b0309SGreg Clayton { 404340b0309SGreg Clayton // No options were set, inherit any settings from nested "command source" commands, 405340b0309SGreg Clayton // or set to sane default settings... 40626c7bf93SJim Ingham CommandInterpreterRunOptions options; 407340b0309SGreg Clayton m_interpreter.HandleCommandsFromFile (cmd_file, 408340b0309SGreg Clayton exe_ctx, 40926c7bf93SJim Ingham options, 410340b0309SGreg Clayton result); 411340b0309SGreg Clayton 412340b0309SGreg Clayton } 413ebc09c36SJim Ingham } 414ebc09c36SJim Ingham else 415ebc09c36SJim Ingham { 416ebc09c36SJim Ingham result.AppendErrorWithFormat("'%s' takes exactly one executable filename argument.\n", GetCommandName()); 417ebc09c36SJim Ingham result.SetStatus (eReturnStatusFailed); 418ebc09c36SJim Ingham } 419ebc09c36SJim Ingham return result.Succeeded(); 420ebc09c36SJim Ingham 421ebc09c36SJim Ingham } 4225a988416SJim Ingham CommandOptions m_options; 423ebc09c36SJim Ingham }; 424ebc09c36SJim Ingham 425e0d378b3SGreg Clayton OptionDefinition 426e16c50a1SJim Ingham CommandObjectCommandsSource::CommandOptions::g_option_table[] = 427e16c50a1SJim Ingham { 428d37221dcSZachary Turner { LLDB_OPT_SET_ALL, false, "stop-on-error", 'e', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeBoolean, "If true, stop executing commands on error."}, 429d37221dcSZachary Turner { LLDB_OPT_SET_ALL, false, "stop-on-continue", 'c', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeBoolean, "If true, stop executing commands on continue."}, 430d37221dcSZachary Turner { LLDB_OPT_SET_ALL, false, "silent-run", 's', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeBoolean, "If true don't echo commands while executing."}, 431d37221dcSZachary Turner { 0, false, NULL, 0, 0, NULL, NULL, 0, eArgTypeNone, NULL } 432e16c50a1SJim Ingham }; 433e16c50a1SJim Ingham 434ebc09c36SJim Ingham #pragma mark CommandObjectCommandsAlias 435ebc09c36SJim Ingham //------------------------------------------------------------------------- 436ebc09c36SJim Ingham // CommandObjectCommandsAlias 437ebc09c36SJim Ingham //------------------------------------------------------------------------- 438ebc09c36SJim Ingham 439be93a35aSEnrico Granata static const char *g_python_command_instructions = "Enter your Python command(s). Type 'DONE' to end.\n" 440be93a35aSEnrico Granata "You must define a Python function with this signature:\n" 44144d93782SGreg Clayton "def my_command_impl(debugger, args, result, internal_dict):\n"; 442be93a35aSEnrico Granata 443be93a35aSEnrico Granata 4445a988416SJim Ingham class CommandObjectCommandsAlias : public CommandObjectRaw 445ebc09c36SJim Ingham { 446be93a35aSEnrico Granata 447be93a35aSEnrico Granata 448ebc09c36SJim Ingham public: 449a7015092SGreg Clayton CommandObjectCommandsAlias (CommandInterpreter &interpreter) : 4505a988416SJim Ingham CommandObjectRaw (interpreter, 4510e5e5a79SGreg Clayton "command alias", 452e3d26315SCaroline Tice "Allow users to define their own debugger command abbreviations.", 453405fe67fSCaroline Tice NULL) 454ebc09c36SJim Ingham { 455ebc09c36SJim Ingham SetHelpLong( 456ebc09c36SJim Ingham "'alias' allows the user to create a short-cut or abbreviation for long \n\ 457ebc09c36SJim Ingham commands, multi-word commands, and commands that take particular options. \n\ 458ebc09c36SJim Ingham Below are some simple examples of how one might use the 'alias' command: \n\ 45969c12ccbSJason Molenda \n 'command alias sc script' // Creates the abbreviation 'sc' for the 'script' \n\ 460ebc09c36SJim Ingham // command. \n\ 46169c12ccbSJason Molenda 'command alias bp breakpoint' // Creates the abbreviation 'bp' for the 'breakpoint' \n\ 462ebc09c36SJim Ingham // command. Since breakpoint commands are two-word \n\ 463ebc09c36SJim Ingham // commands, the user will still need to enter the \n\ 464ebc09c36SJim Ingham // second word after 'bp', e.g. 'bp enable' or \n\ 465ebc09c36SJim Ingham // 'bp delete'. \n\ 46669c12ccbSJason Molenda 'command alias bpl breakpoint list' // Creates the abbreviation 'bpl' for the \n\ 467ebc09c36SJim Ingham // two-word command 'breakpoint list'. \n\ 468ebc09c36SJim Ingham \nAn alias can include some options for the command, with the values either \n\ 469ebc09c36SJim Ingham filled in at the time the alias is created, or specified as positional \n\ 470ebc09c36SJim Ingham arguments, to be filled in when the alias is invoked. The following example \n\ 471ebc09c36SJim Ingham shows how to create aliases with options: \n\ 472ebc09c36SJim Ingham \n\ 47369c12ccbSJason Molenda 'command alias bfl breakpoint set -f %1 -l %2' \n\ 474ebc09c36SJim Ingham \nThis creates the abbreviation 'bfl' (for break-file-line), with the -f and -l \n\ 475ebc09c36SJim Ingham options already part of the alias. So if the user wants to set a breakpoint \n\ 476ebc09c36SJim Ingham by file and line without explicitly having to use the -f and -l options, the \n\ 477ebc09c36SJim Ingham user can now use 'bfl' instead. The '%1' and '%2' are positional placeholders \n\ 478ebc09c36SJim Ingham for the actual arguments that will be passed when the alias command is used. \n\ 479ebc09c36SJim Ingham The number in the placeholder refers to the position/order the actual value \n\ 48081ded935SJim Ingham occupies when the alias is used. All the occurrences of '%1' in the alias \n\ 481ebc09c36SJim Ingham will be replaced with the first argument, all the occurrences of '%2' in the \n\ 482ebc09c36SJim Ingham alias will be replaced with the second argument, and so on. This also allows \n\ 483ebc09c36SJim Ingham actual arguments to be used multiple times within an alias (see 'process \n\ 48481ded935SJim Ingham launch' example below). \n\ 48581ded935SJim Ingham Note: the positional arguments must substitute as whole words in the resultant\n\ 48681ded935SJim Ingham command, so you can't at present do something like:\n\ 48781ded935SJim Ingham \n\ 48869c12ccbSJason Molenda command alias bcppfl breakpoint set -f %1.cpp -l %2\n\ 48981ded935SJim Ingham \n\ 49081ded935SJim Ingham to get the file extension \".cpp\" automatically appended. For more complex\n\ 49181ded935SJim Ingham aliasing, use the \"command regex\" command instead.\n\ 49281ded935SJim Ingham \nSo in the 'bfl' case, the actual file value will be \n\ 493ebc09c36SJim Ingham filled in with the first argument following 'bfl' and the actual line number \n\ 494ebc09c36SJim Ingham value will be filled in with the second argument. The user would use this \n\ 495ebc09c36SJim Ingham alias as follows: \n\ 49669c12ccbSJason Molenda \n (lldb) command alias bfl breakpoint set -f %1 -l %2 \n\ 497ebc09c36SJim Ingham <... some time later ...> \n\ 49809799af6SCaroline Tice (lldb) bfl my-file.c 137 \n\ 499ebc09c36SJim Ingham \nThis would be the same as if the user had entered \n\ 500ebc09c36SJim Ingham 'breakpoint set -f my-file.c -l 137'. \n\ 501ebc09c36SJim Ingham \nAnother example: \n\ 50269c12ccbSJason Molenda \n (lldb) command alias pltty process launch -s -o %1 -e %1 \n\ 50309799af6SCaroline Tice (lldb) pltty /dev/tty0 \n\ 504ebc09c36SJim Ingham // becomes 'process launch -s -o /dev/tty0 -e /dev/tty0' \n\ 505ebc09c36SJim Ingham \nIf the user always wanted to pass the same value to a particular option, the \n\ 506ebc09c36SJim Ingham alias could be defined with that value directly in the alias as a constant, \n\ 507ebc09c36SJim Ingham rather than using a positional placeholder: \n\ 50869c12ccbSJason Molenda \n command alias bl3 breakpoint set -f %1 -l 3 // Always sets a breakpoint on line \n\ 509ebc09c36SJim Ingham // 3 of whatever file is indicated. \n"); 510ebc09c36SJim Ingham 511405fe67fSCaroline Tice CommandArgumentEntry arg1; 512405fe67fSCaroline Tice CommandArgumentEntry arg2; 513405fe67fSCaroline Tice CommandArgumentEntry arg3; 514405fe67fSCaroline Tice CommandArgumentData alias_arg; 515405fe67fSCaroline Tice CommandArgumentData cmd_arg; 516405fe67fSCaroline Tice CommandArgumentData options_arg; 517405fe67fSCaroline Tice 518405fe67fSCaroline Tice // Define the first (and only) variant of this arg. 519405fe67fSCaroline Tice alias_arg.arg_type = eArgTypeAliasName; 520405fe67fSCaroline Tice alias_arg.arg_repetition = eArgRepeatPlain; 521405fe67fSCaroline Tice 522405fe67fSCaroline Tice // There is only one variant this argument could be; put it into the argument entry. 523405fe67fSCaroline Tice arg1.push_back (alias_arg); 524405fe67fSCaroline Tice 525405fe67fSCaroline Tice // Define the first (and only) variant of this arg. 526405fe67fSCaroline Tice cmd_arg.arg_type = eArgTypeCommandName; 527405fe67fSCaroline Tice cmd_arg.arg_repetition = eArgRepeatPlain; 528405fe67fSCaroline Tice 529405fe67fSCaroline Tice // There is only one variant this argument could be; put it into the argument entry. 530405fe67fSCaroline Tice arg2.push_back (cmd_arg); 531405fe67fSCaroline Tice 532405fe67fSCaroline Tice // Define the first (and only) variant of this arg. 533405fe67fSCaroline Tice options_arg.arg_type = eArgTypeAliasOptions; 534405fe67fSCaroline Tice options_arg.arg_repetition = eArgRepeatOptional; 535405fe67fSCaroline Tice 536405fe67fSCaroline Tice // There is only one variant this argument could be; put it into the argument entry. 537405fe67fSCaroline Tice arg3.push_back (options_arg); 538405fe67fSCaroline Tice 539405fe67fSCaroline Tice // Push the data for the first argument into the m_arguments vector. 540405fe67fSCaroline Tice m_arguments.push_back (arg1); 541405fe67fSCaroline Tice m_arguments.push_back (arg2); 542405fe67fSCaroline Tice m_arguments.push_back (arg3); 543ebc09c36SJim Ingham } 544ebc09c36SJim Ingham 545ebc09c36SJim Ingham ~CommandObjectCommandsAlias () 546ebc09c36SJim Ingham { 547ebc09c36SJim Ingham } 548ebc09c36SJim Ingham 5495a988416SJim Ingham protected: 5505a988416SJim Ingham virtual bool 5515a988416SJim Ingham DoExecute (const char *raw_command_line, CommandReturnObject &result) 552844d2303SCaroline Tice { 553844d2303SCaroline Tice Args args (raw_command_line); 554844d2303SCaroline Tice std::string raw_command_string (raw_command_line); 555844d2303SCaroline Tice 556844d2303SCaroline Tice size_t argc = args.GetArgumentCount(); 557844d2303SCaroline Tice 558844d2303SCaroline Tice if (argc < 2) 559844d2303SCaroline Tice { 560844d2303SCaroline Tice result.AppendError ("'alias' requires at least two arguments"); 561844d2303SCaroline Tice result.SetStatus (eReturnStatusFailed); 562844d2303SCaroline Tice return false; 563844d2303SCaroline Tice } 564844d2303SCaroline Tice 565844d2303SCaroline Tice // Get the alias command. 566844d2303SCaroline Tice 567844d2303SCaroline Tice const std::string alias_command = args.GetArgumentAtIndex (0); 568844d2303SCaroline Tice 569844d2303SCaroline Tice // Strip the new alias name off 'raw_command_string' (leave it on args, which gets passed to 'Execute', which 570844d2303SCaroline Tice // does the stripping itself. 571844d2303SCaroline Tice size_t pos = raw_command_string.find (alias_command); 572844d2303SCaroline Tice if (pos == 0) 573844d2303SCaroline Tice { 574844d2303SCaroline Tice raw_command_string = raw_command_string.substr (alias_command.size()); 575844d2303SCaroline Tice pos = raw_command_string.find_first_not_of (' '); 576844d2303SCaroline Tice if ((pos != std::string::npos) && (pos > 0)) 577844d2303SCaroline Tice raw_command_string = raw_command_string.substr (pos); 578844d2303SCaroline Tice } 579844d2303SCaroline Tice else 580844d2303SCaroline Tice { 581844d2303SCaroline Tice result.AppendError ("Error parsing command string. No alias created."); 582844d2303SCaroline Tice result.SetStatus (eReturnStatusFailed); 583844d2303SCaroline Tice return false; 584844d2303SCaroline Tice } 585844d2303SCaroline Tice 586844d2303SCaroline Tice 587844d2303SCaroline Tice // Verify that the command is alias-able. 588844d2303SCaroline Tice if (m_interpreter.CommandExists (alias_command.c_str())) 589844d2303SCaroline Tice { 590844d2303SCaroline Tice result.AppendErrorWithFormat ("'%s' is a permanent debugger command and cannot be redefined.\n", 591844d2303SCaroline Tice alias_command.c_str()); 592844d2303SCaroline Tice result.SetStatus (eReturnStatusFailed); 593844d2303SCaroline Tice return false; 594844d2303SCaroline Tice } 595844d2303SCaroline Tice 596844d2303SCaroline Tice // Get CommandObject that is being aliased. The command name is read from the front of raw_command_string. 597844d2303SCaroline Tice // raw_command_string is returned with the name of the command object stripped off the front. 598844d2303SCaroline Tice CommandObject *cmd_obj = m_interpreter.GetCommandObjectForCommand (raw_command_string); 599844d2303SCaroline Tice 600844d2303SCaroline Tice if (!cmd_obj) 601844d2303SCaroline Tice { 60286edbf41SGreg Clayton result.AppendErrorWithFormat ("invalid command given to 'alias'. '%s' does not begin with a valid command." 603844d2303SCaroline Tice " No alias created.", raw_command_string.c_str()); 604844d2303SCaroline Tice result.SetStatus (eReturnStatusFailed); 605844d2303SCaroline Tice return false; 606844d2303SCaroline Tice } 607844d2303SCaroline Tice else if (!cmd_obj->WantsRawCommandString ()) 608844d2303SCaroline Tice { 609844d2303SCaroline Tice // Note that args was initialized with the original command, and has not been updated to this point. 610844d2303SCaroline Tice // Therefore can we pass it to the version of Execute that does not need/expect raw input in the alias. 6115a988416SJim Ingham return HandleAliasingNormalCommand (args, result); 612844d2303SCaroline Tice } 613844d2303SCaroline Tice else 614844d2303SCaroline Tice { 6155a988416SJim Ingham return HandleAliasingRawCommand (alias_command, raw_command_string, *cmd_obj, result); 6165a988416SJim Ingham } 6175a988416SJim Ingham return result.Succeeded(); 6185a988416SJim Ingham } 6195a988416SJim Ingham 6205a988416SJim Ingham bool 6215a988416SJim Ingham HandleAliasingRawCommand (const std::string &alias_command, std::string &raw_command_string, CommandObject &cmd_obj, CommandReturnObject &result) 6225a988416SJim Ingham { 623844d2303SCaroline Tice // Verify & handle any options/arguments passed to the alias command 624844d2303SCaroline Tice 625844d2303SCaroline Tice OptionArgVectorSP option_arg_vector_sp = OptionArgVectorSP (new OptionArgVector); 626844d2303SCaroline Tice OptionArgVector *option_arg_vector = option_arg_vector_sp.get(); 627844d2303SCaroline Tice 6285a988416SJim Ingham CommandObjectSP cmd_obj_sp = m_interpreter.GetCommandSPExact (cmd_obj.GetCommandName(), false); 629844d2303SCaroline Tice 630ca90c47eSCaroline Tice if (!m_interpreter.ProcessAliasOptionsArgs (cmd_obj_sp, raw_command_string.c_str(), option_arg_vector_sp)) 631844d2303SCaroline Tice { 632844d2303SCaroline Tice result.AppendError ("Unable to create requested alias.\n"); 633ca90c47eSCaroline Tice result.SetStatus (eReturnStatusFailed); 634844d2303SCaroline Tice return false; 635844d2303SCaroline Tice } 636844d2303SCaroline Tice 637844d2303SCaroline Tice // Create the alias 638844d2303SCaroline Tice if (m_interpreter.AliasExists (alias_command.c_str()) 639844d2303SCaroline Tice || m_interpreter.UserCommandExists (alias_command.c_str())) 640844d2303SCaroline Tice { 641844d2303SCaroline Tice OptionArgVectorSP temp_option_arg_sp (m_interpreter.GetAliasOptions (alias_command.c_str())); 642844d2303SCaroline Tice if (temp_option_arg_sp.get()) 643844d2303SCaroline Tice { 644844d2303SCaroline Tice if (option_arg_vector->size() == 0) 645844d2303SCaroline Tice m_interpreter.RemoveAliasOptions (alias_command.c_str()); 646844d2303SCaroline Tice } 647844d2303SCaroline Tice result.AppendWarningWithFormat ("Overwriting existing definition for '%s'.\n", 648844d2303SCaroline Tice alias_command.c_str()); 649844d2303SCaroline Tice } 650844d2303SCaroline Tice 651472362e6SCaroline Tice if (cmd_obj_sp) 652472362e6SCaroline Tice { 653844d2303SCaroline Tice m_interpreter.AddAlias (alias_command.c_str(), cmd_obj_sp); 654844d2303SCaroline Tice if (option_arg_vector->size() > 0) 655844d2303SCaroline Tice m_interpreter.AddOrReplaceAliasOptions (alias_command.c_str(), option_arg_vector_sp); 656844d2303SCaroline Tice result.SetStatus (eReturnStatusSuccessFinishNoResult); 657844d2303SCaroline Tice } 658472362e6SCaroline Tice else 659472362e6SCaroline Tice { 660472362e6SCaroline Tice result.AppendError ("Unable to create requested alias.\n"); 661472362e6SCaroline Tice result.SetStatus (eReturnStatusFailed); 662472362e6SCaroline Tice } 663844d2303SCaroline Tice return result.Succeeded (); 664844d2303SCaroline Tice } 665ebc09c36SJim Ingham 666ebc09c36SJim Ingham bool 6675a988416SJim Ingham HandleAliasingNormalCommand (Args& args, CommandReturnObject &result) 668ebc09c36SJim Ingham { 669867b185dSCaroline Tice size_t argc = args.GetArgumentCount(); 670ebc09c36SJim Ingham 671ebc09c36SJim Ingham if (argc < 2) 672ebc09c36SJim Ingham { 673ebc09c36SJim Ingham result.AppendError ("'alias' requires at least two arguments"); 674ebc09c36SJim Ingham result.SetStatus (eReturnStatusFailed); 675ebc09c36SJim Ingham return false; 676ebc09c36SJim Ingham } 677ebc09c36SJim Ingham 678ebc09c36SJim Ingham const std::string alias_command = args.GetArgumentAtIndex(0); 679ebc09c36SJim Ingham const std::string actual_command = args.GetArgumentAtIndex(1); 680ebc09c36SJim Ingham 681ebc09c36SJim Ingham args.Shift(); // Shift the alias command word off the argument vector. 682ebc09c36SJim Ingham args.Shift(); // Shift the old command word off the argument vector. 683ebc09c36SJim Ingham 684ebc09c36SJim Ingham // Verify that the command is alias'able, and get the appropriate command object. 685ebc09c36SJim Ingham 686a7015092SGreg Clayton if (m_interpreter.CommandExists (alias_command.c_str())) 687ebc09c36SJim Ingham { 688ebc09c36SJim Ingham result.AppendErrorWithFormat ("'%s' is a permanent debugger command and cannot be redefined.\n", 689ebc09c36SJim Ingham alias_command.c_str()); 690ebc09c36SJim Ingham result.SetStatus (eReturnStatusFailed); 691ebc09c36SJim Ingham } 692ebc09c36SJim Ingham else 693ebc09c36SJim Ingham { 694a7015092SGreg Clayton CommandObjectSP command_obj_sp(m_interpreter.GetCommandSPExact (actual_command.c_str(), true)); 695ebc09c36SJim Ingham CommandObjectSP subcommand_obj_sp; 696ebc09c36SJim Ingham bool use_subcommand = false; 697ebc09c36SJim Ingham if (command_obj_sp.get()) 698ebc09c36SJim Ingham { 699ebc09c36SJim Ingham CommandObject *cmd_obj = command_obj_sp.get(); 700c982c768SGreg Clayton CommandObject *sub_cmd_obj = NULL; 701ebc09c36SJim Ingham OptionArgVectorSP option_arg_vector_sp = OptionArgVectorSP (new OptionArgVector); 702ebc09c36SJim Ingham OptionArgVector *option_arg_vector = option_arg_vector_sp.get(); 703ebc09c36SJim Ingham 704844d2303SCaroline Tice while (cmd_obj->IsMultiwordObject() && args.GetArgumentCount() > 0) 705ebc09c36SJim Ingham { 706ebc09c36SJim Ingham if (argc >= 3) 707ebc09c36SJim Ingham { 708ebc09c36SJim Ingham const std::string sub_command = args.GetArgumentAtIndex(0); 709ebc09c36SJim Ingham assert (sub_command.length() != 0); 710998255bfSGreg Clayton subcommand_obj_sp = cmd_obj->GetSubcommandSP (sub_command.c_str()); 711ebc09c36SJim Ingham if (subcommand_obj_sp.get()) 712ebc09c36SJim Ingham { 713ebc09c36SJim Ingham sub_cmd_obj = subcommand_obj_sp.get(); 714ebc09c36SJim Ingham use_subcommand = true; 715ebc09c36SJim Ingham args.Shift(); // Shift the sub_command word off the argument vector. 716844d2303SCaroline Tice cmd_obj = sub_cmd_obj; 717ebc09c36SJim Ingham } 718ebc09c36SJim Ingham else 719ebc09c36SJim Ingham { 720f415eeb4SCaroline Tice result.AppendErrorWithFormat("'%s' is not a valid sub-command of '%s'. " 721f415eeb4SCaroline Tice "Unable to create alias.\n", 722f415eeb4SCaroline Tice sub_command.c_str(), actual_command.c_str()); 723ebc09c36SJim Ingham result.SetStatus (eReturnStatusFailed); 724ebc09c36SJim Ingham return false; 725ebc09c36SJim Ingham } 726ebc09c36SJim Ingham } 727ebc09c36SJim Ingham } 728ebc09c36SJim Ingham 729ebc09c36SJim Ingham // Verify & handle any options/arguments passed to the alias command 730ebc09c36SJim Ingham 731ebc09c36SJim Ingham if (args.GetArgumentCount () > 0) 732ebc09c36SJim Ingham { 733ca90c47eSCaroline Tice CommandObjectSP tmp_sp = m_interpreter.GetCommandSPExact (cmd_obj->GetCommandName(), false); 734ebc09c36SJim Ingham if (use_subcommand) 735ca90c47eSCaroline Tice tmp_sp = m_interpreter.GetCommandSPExact (sub_cmd_obj->GetCommandName(), false); 736ca90c47eSCaroline Tice 737ca90c47eSCaroline Tice std::string args_string; 738ca90c47eSCaroline Tice args.GetCommandString (args_string); 739ca90c47eSCaroline Tice 740ca90c47eSCaroline Tice if (!m_interpreter.ProcessAliasOptionsArgs (tmp_sp, args_string.c_str(), option_arg_vector_sp)) 741ebc09c36SJim Ingham { 742ca90c47eSCaroline Tice result.AppendError ("Unable to create requested alias.\n"); 743ca90c47eSCaroline Tice result.SetStatus (eReturnStatusFailed); 744e7941795SCaroline Tice return false; 745867b185dSCaroline Tice } 746867b185dSCaroline Tice } 747867b185dSCaroline Tice 748ebc09c36SJim Ingham // Create the alias. 749ebc09c36SJim Ingham 750a7015092SGreg Clayton if (m_interpreter.AliasExists (alias_command.c_str()) 751a7015092SGreg Clayton || m_interpreter.UserCommandExists (alias_command.c_str())) 752ebc09c36SJim Ingham { 753a7015092SGreg Clayton OptionArgVectorSP tmp_option_arg_sp (m_interpreter.GetAliasOptions (alias_command.c_str())); 754ebc09c36SJim Ingham if (tmp_option_arg_sp.get()) 755ebc09c36SJim Ingham { 756ebc09c36SJim Ingham if (option_arg_vector->size() == 0) 757a7015092SGreg Clayton m_interpreter.RemoveAliasOptions (alias_command.c_str()); 758ebc09c36SJim Ingham } 759ebc09c36SJim Ingham result.AppendWarningWithFormat ("Overwriting existing definition for '%s'.\n", 760ebc09c36SJim Ingham alias_command.c_str()); 761ebc09c36SJim Ingham } 762ebc09c36SJim Ingham 763ebc09c36SJim Ingham if (use_subcommand) 764a7015092SGreg Clayton m_interpreter.AddAlias (alias_command.c_str(), subcommand_obj_sp); 765ebc09c36SJim Ingham else 766a7015092SGreg Clayton m_interpreter.AddAlias (alias_command.c_str(), command_obj_sp); 767ebc09c36SJim Ingham if (option_arg_vector->size() > 0) 768a7015092SGreg Clayton m_interpreter.AddOrReplaceAliasOptions (alias_command.c_str(), option_arg_vector_sp); 769ebc09c36SJim Ingham result.SetStatus (eReturnStatusSuccessFinishNoResult); 770ebc09c36SJim Ingham } 771ebc09c36SJim Ingham else 772ebc09c36SJim Ingham { 773ebc09c36SJim Ingham result.AppendErrorWithFormat ("'%s' is not an existing command.\n", actual_command.c_str()); 774ebc09c36SJim Ingham result.SetStatus (eReturnStatusFailed); 775e7941795SCaroline Tice return false; 776ebc09c36SJim Ingham } 777ebc09c36SJim Ingham } 778ebc09c36SJim Ingham 779ebc09c36SJim Ingham return result.Succeeded(); 780ebc09c36SJim Ingham } 7815a988416SJim Ingham 782ebc09c36SJim Ingham }; 783ebc09c36SJim Ingham 784ebc09c36SJim Ingham #pragma mark CommandObjectCommandsUnalias 785ebc09c36SJim Ingham //------------------------------------------------------------------------- 786ebc09c36SJim Ingham // CommandObjectCommandsUnalias 787ebc09c36SJim Ingham //------------------------------------------------------------------------- 788ebc09c36SJim Ingham 7895a988416SJim Ingham class CommandObjectCommandsUnalias : public CommandObjectParsed 790ebc09c36SJim Ingham { 791ebc09c36SJim Ingham public: 792a7015092SGreg Clayton CommandObjectCommandsUnalias (CommandInterpreter &interpreter) : 7935a988416SJim Ingham CommandObjectParsed (interpreter, 7940e5e5a79SGreg Clayton "command unalias", 79586ddae50SCaroline Tice "Allow the user to remove/delete a user-defined command abbreviation.", 796405fe67fSCaroline Tice NULL) 797ebc09c36SJim Ingham { 798405fe67fSCaroline Tice CommandArgumentEntry arg; 799405fe67fSCaroline Tice CommandArgumentData alias_arg; 800405fe67fSCaroline Tice 801405fe67fSCaroline Tice // Define the first (and only) variant of this arg. 802405fe67fSCaroline Tice alias_arg.arg_type = eArgTypeAliasName; 803405fe67fSCaroline Tice alias_arg.arg_repetition = eArgRepeatPlain; 804405fe67fSCaroline Tice 805405fe67fSCaroline Tice // There is only one variant this argument could be; put it into the argument entry. 806405fe67fSCaroline Tice arg.push_back (alias_arg); 807405fe67fSCaroline Tice 808405fe67fSCaroline Tice // Push the data for the first argument into the m_arguments vector. 809405fe67fSCaroline Tice m_arguments.push_back (arg); 810ebc09c36SJim Ingham } 811ebc09c36SJim Ingham 812ebc09c36SJim Ingham ~CommandObjectCommandsUnalias() 813ebc09c36SJim Ingham { 814ebc09c36SJim Ingham } 815ebc09c36SJim Ingham 8165a988416SJim Ingham protected: 817ebc09c36SJim Ingham bool 8185a988416SJim Ingham DoExecute (Args& args, CommandReturnObject &result) 819ebc09c36SJim Ingham { 820ebc09c36SJim Ingham CommandObject::CommandMap::iterator pos; 821ebc09c36SJim Ingham CommandObject *cmd_obj; 822ebc09c36SJim Ingham 823ebc09c36SJim Ingham if (args.GetArgumentCount() != 0) 824ebc09c36SJim Ingham { 825ebc09c36SJim Ingham const char *command_name = args.GetArgumentAtIndex(0); 826a7015092SGreg Clayton cmd_obj = m_interpreter.GetCommandObject(command_name); 827ebc09c36SJim Ingham if (cmd_obj) 828ebc09c36SJim Ingham { 829a7015092SGreg Clayton if (m_interpreter.CommandExists (command_name)) 830ebc09c36SJim Ingham { 831ebc09c36SJim Ingham result.AppendErrorWithFormat ("'%s' is a permanent debugger command and cannot be removed.\n", 832ebc09c36SJim Ingham command_name); 833ebc09c36SJim Ingham result.SetStatus (eReturnStatusFailed); 834ebc09c36SJim Ingham } 835ebc09c36SJim Ingham else 836ebc09c36SJim Ingham { 837ebc09c36SJim Ingham 838a7015092SGreg Clayton if (m_interpreter.RemoveAlias (command_name) == false) 839ebc09c36SJim Ingham { 840a7015092SGreg Clayton if (m_interpreter.AliasExists (command_name)) 841ebc09c36SJim Ingham result.AppendErrorWithFormat ("Error occurred while attempting to unalias '%s'.\n", 842ebc09c36SJim Ingham command_name); 843ebc09c36SJim Ingham else 844ebc09c36SJim Ingham result.AppendErrorWithFormat ("'%s' is not an existing alias.\n", command_name); 845ebc09c36SJim Ingham result.SetStatus (eReturnStatusFailed); 846ebc09c36SJim Ingham } 847ebc09c36SJim Ingham else 848ebc09c36SJim Ingham result.SetStatus (eReturnStatusSuccessFinishNoResult); 849ebc09c36SJim Ingham } 850ebc09c36SJim Ingham } 851ebc09c36SJim Ingham else 852ebc09c36SJim Ingham { 853ebc09c36SJim Ingham result.AppendErrorWithFormat ("'%s' is not a known command.\nTry 'help' to see a " 854ebc09c36SJim Ingham "current list of commands.\n", 855ebc09c36SJim Ingham command_name); 856ebc09c36SJim Ingham result.SetStatus (eReturnStatusFailed); 857ebc09c36SJim Ingham } 858ebc09c36SJim Ingham } 859ebc09c36SJim Ingham else 860ebc09c36SJim Ingham { 861ebc09c36SJim Ingham result.AppendError ("must call 'unalias' with a valid alias"); 862ebc09c36SJim Ingham result.SetStatus (eReturnStatusFailed); 863ebc09c36SJim Ingham } 864ebc09c36SJim Ingham 865ebc09c36SJim Ingham return result.Succeeded(); 866ebc09c36SJim Ingham } 867ebc09c36SJim Ingham }; 868ebc09c36SJim Ingham 869de164aaaSGreg Clayton //------------------------------------------------------------------------- 870de164aaaSGreg Clayton // CommandObjectCommandsAddRegex 871de164aaaSGreg Clayton //------------------------------------------------------------------------- 8725a988416SJim Ingham #pragma mark CommandObjectCommandsAddRegex 873de164aaaSGreg Clayton 87444d93782SGreg Clayton class CommandObjectCommandsAddRegex : 87544d93782SGreg Clayton public CommandObjectParsed, 876*ea508635SGreg Clayton public IOHandlerDelegateMultiline 877de164aaaSGreg Clayton { 878de164aaaSGreg Clayton public: 879de164aaaSGreg Clayton CommandObjectCommandsAddRegex (CommandInterpreter &interpreter) : 8805a988416SJim Ingham CommandObjectParsed (interpreter, 8810e5e5a79SGreg Clayton "command regex", 882de164aaaSGreg Clayton "Allow the user to create a regular expression command.", 8830e5e5a79SGreg Clayton "command regex <cmd-name> [s/<regex>/<subst>/ ...]"), 884*ea508635SGreg Clayton IOHandlerDelegateMultiline ("", IOHandlerDelegate::Completion::LLDBCommand), 885de164aaaSGreg Clayton m_options (interpreter) 886de164aaaSGreg Clayton { 8870e5e5a79SGreg Clayton SetHelpLong( 8880e5e5a79SGreg Clayton "This command allows the user to create powerful regular expression commands\n" 8890e5e5a79SGreg Clayton "with substitutions. The regular expressions and substitutions are specified\n" 890d93c4a33SBruce Mitchener "using the regular expression substitution format of:\n" 8910e5e5a79SGreg Clayton "\n" 8920e5e5a79SGreg Clayton " s/<regex>/<subst>/\n" 8930e5e5a79SGreg Clayton "\n" 8940e5e5a79SGreg Clayton "<regex> is a regular expression that can use parenthesis to capture regular\n" 8950e5e5a79SGreg Clayton "expression input and substitute the captured matches in the output using %1\n" 8960e5e5a79SGreg Clayton "for the first match, %2 for the second, and so on.\n" 8970e5e5a79SGreg Clayton "\n" 8980e5e5a79SGreg Clayton "The regular expressions can all be specified on the command line if more than\n" 8990e5e5a79SGreg Clayton "one argument is provided. If just the command name is provided on the command\n" 9000e5e5a79SGreg Clayton "line, then the regular expressions and substitutions can be entered on separate\n" 9010e5e5a79SGreg Clayton " lines, followed by an empty line to terminate the command definition.\n" 9020e5e5a79SGreg Clayton "\n" 9030e5e5a79SGreg Clayton "EXAMPLES\n" 9040e5e5a79SGreg Clayton "\n" 905adc43c99SSean Callanan "The following example will define a regular expression command named 'f' that\n" 9060e5e5a79SGreg Clayton "will call 'finish' if there are no arguments, or 'frame select <frame-idx>' if\n" 9070e5e5a79SGreg Clayton "a number follows 'f':\n" 908adc43c99SSean Callanan "\n" 9090e5e5a79SGreg Clayton " (lldb) command regex f s/^$/finish/ 's/([0-9]+)/frame select %1/'\n" 910adc43c99SSean Callanan "\n" 9110e5e5a79SGreg Clayton ); 912de164aaaSGreg Clayton } 913de164aaaSGreg Clayton 914de164aaaSGreg Clayton ~CommandObjectCommandsAddRegex() 915de164aaaSGreg Clayton { 916de164aaaSGreg Clayton } 917de164aaaSGreg Clayton 918de164aaaSGreg Clayton 9195a988416SJim Ingham protected: 92044d93782SGreg Clayton 921*ea508635SGreg Clayton void 922*ea508635SGreg Clayton IOHandlerActivated (IOHandler &io_handler) override 92344d93782SGreg Clayton { 92444d93782SGreg Clayton StreamFileSP output_sp(io_handler.GetOutputStreamFile()); 92544d93782SGreg Clayton if (output_sp) 92644d93782SGreg Clayton { 92744d93782SGreg Clayton output_sp->PutCString("Enter one of more sed substitution commands in the form: 's/<regex>/<subst>/'.\nTerminate the substitution list with an empty line.\n"); 92844d93782SGreg Clayton output_sp->Flush(); 92944d93782SGreg Clayton } 93044d93782SGreg Clayton } 93144d93782SGreg Clayton 932*ea508635SGreg Clayton void 933*ea508635SGreg Clayton IOHandlerInputComplete (IOHandler &io_handler, std::string &data) override 93444d93782SGreg Clayton { 93544d93782SGreg Clayton io_handler.SetIsDone(true); 93644d93782SGreg Clayton if (m_regex_cmd_ap.get()) 93744d93782SGreg Clayton { 93844d93782SGreg Clayton StringList lines; 93944d93782SGreg Clayton if (lines.SplitIntoLines (data)) 94044d93782SGreg Clayton { 94144d93782SGreg Clayton const size_t num_lines = lines.GetSize(); 94244d93782SGreg Clayton bool check_only = false; 94344d93782SGreg Clayton for (size_t i=0; i<num_lines; ++i) 94444d93782SGreg Clayton { 94544d93782SGreg Clayton llvm::StringRef bytes_strref (lines[i]); 94644d93782SGreg Clayton Error error = AppendRegexSubstitution (bytes_strref, check_only); 94744d93782SGreg Clayton if (error.Fail()) 94844d93782SGreg Clayton { 94944d93782SGreg Clayton if (!m_interpreter.GetDebugger().GetCommandInterpreter().GetBatchCommandMode()) 95044d93782SGreg Clayton { 95144d93782SGreg Clayton StreamSP out_stream = m_interpreter.GetDebugger().GetAsyncOutputStream(); 95244d93782SGreg Clayton out_stream->Printf("error: %s\n", error.AsCString()); 95344d93782SGreg Clayton } 95444d93782SGreg Clayton } 95544d93782SGreg Clayton } 95644d93782SGreg Clayton } 95744d93782SGreg Clayton if (m_regex_cmd_ap->HasRegexEntries()) 95844d93782SGreg Clayton { 95944d93782SGreg Clayton CommandObjectSP cmd_sp (m_regex_cmd_ap.release()); 96044d93782SGreg Clayton m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); 96144d93782SGreg Clayton } 96244d93782SGreg Clayton } 96344d93782SGreg Clayton } 96444d93782SGreg Clayton 965de164aaaSGreg Clayton bool 9665a988416SJim Ingham DoExecute (Args& command, CommandReturnObject &result) 967de164aaaSGreg Clayton { 9685a988416SJim Ingham const size_t argc = command.GetArgumentCount(); 9690e5e5a79SGreg Clayton if (argc == 0) 970de164aaaSGreg Clayton { 97169c12ccbSJason Molenda result.AppendError ("usage: 'command regex <command-name> [s/<regex1>/<subst1>/ s/<regex2>/<subst2>/ ...]'\n"); 9720e5e5a79SGreg Clayton result.SetStatus (eReturnStatusFailed); 9730e5e5a79SGreg Clayton } 9740e5e5a79SGreg Clayton else 9750e5e5a79SGreg Clayton { 9760e5e5a79SGreg Clayton Error error; 9775a988416SJim Ingham const char *name = command.GetArgumentAtIndex(0); 978de164aaaSGreg Clayton m_regex_cmd_ap.reset (new CommandObjectRegexCommand (m_interpreter, 979de164aaaSGreg Clayton name, 980de164aaaSGreg Clayton m_options.GetHelp (), 981de164aaaSGreg Clayton m_options.GetSyntax (), 982de164aaaSGreg Clayton 10)); 9830e5e5a79SGreg Clayton 9840e5e5a79SGreg Clayton if (argc == 1) 9850e5e5a79SGreg Clayton { 98644d93782SGreg Clayton Debugger &debugger = m_interpreter.GetDebugger(); 987e30f11d9SKate Stone bool color_prompt = debugger.GetUseColor(); 98844d93782SGreg Clayton const bool multiple_lines = true; // Get multiple lines 98944d93782SGreg Clayton IOHandlerSP io_handler_sp (new IOHandlerEditline (debugger, 990e30f11d9SKate Stone IOHandler::Type::Other, 99173d80faaSGreg Clayton "lldb-regex", // Name of input reader for history 992*ea508635SGreg Clayton "> ", // Prompt 993e30f11d9SKate Stone NULL, // Continuation prompt 99444d93782SGreg Clayton multiple_lines, 995e30f11d9SKate Stone color_prompt, 996f6913cd7SGreg Clayton 0, // Don't show line numbers 99744d93782SGreg Clayton *this)); 99844d93782SGreg Clayton 99944d93782SGreg Clayton if (io_handler_sp) 1000de164aaaSGreg Clayton { 100144d93782SGreg Clayton debugger.PushIOHandler(io_handler_sp); 1002de164aaaSGreg Clayton result.SetStatus (eReturnStatusSuccessFinishNoResult); 1003de164aaaSGreg Clayton } 1004de164aaaSGreg Clayton } 1005de164aaaSGreg Clayton else 1006de164aaaSGreg Clayton { 10070e5e5a79SGreg Clayton for (size_t arg_idx = 1; arg_idx < argc; ++arg_idx) 10080e5e5a79SGreg Clayton { 10095a988416SJim Ingham llvm::StringRef arg_strref (command.GetArgumentAtIndex(arg_idx)); 101044d93782SGreg Clayton bool check_only = false; 101144d93782SGreg Clayton error = AppendRegexSubstitution (arg_strref, check_only); 10120e5e5a79SGreg Clayton if (error.Fail()) 10130e5e5a79SGreg Clayton break; 10140e5e5a79SGreg Clayton } 10150e5e5a79SGreg Clayton 10160e5e5a79SGreg Clayton if (error.Success()) 10170e5e5a79SGreg Clayton { 10180e5e5a79SGreg Clayton AddRegexCommandToInterpreter(); 10190e5e5a79SGreg Clayton } 10200e5e5a79SGreg Clayton } 10210e5e5a79SGreg Clayton if (error.Fail()) 10220e5e5a79SGreg Clayton { 10230e5e5a79SGreg Clayton result.AppendError (error.AsCString()); 1024de164aaaSGreg Clayton result.SetStatus (eReturnStatusFailed); 1025de164aaaSGreg Clayton } 10260e5e5a79SGreg Clayton } 10270e5e5a79SGreg Clayton 1028de164aaaSGreg Clayton return result.Succeeded(); 1029de164aaaSGreg Clayton } 1030de164aaaSGreg Clayton 10310e5e5a79SGreg Clayton Error 103244d93782SGreg Clayton AppendRegexSubstitution (const llvm::StringRef ®ex_sed, bool check_only) 1033de164aaaSGreg Clayton { 10340e5e5a79SGreg Clayton Error error; 10350e5e5a79SGreg Clayton 10360e5e5a79SGreg Clayton if (m_regex_cmd_ap.get() == NULL) 1037de164aaaSGreg Clayton { 10380e5e5a79SGreg Clayton error.SetErrorStringWithFormat("invalid regular expression command object for: '%.*s'", 10390e5e5a79SGreg Clayton (int)regex_sed.size(), 10400e5e5a79SGreg Clayton regex_sed.data()); 10410e5e5a79SGreg Clayton return error; 1042de164aaaSGreg Clayton } 10430e5e5a79SGreg Clayton 10440e5e5a79SGreg Clayton size_t regex_sed_size = regex_sed.size(); 10450e5e5a79SGreg Clayton 10460e5e5a79SGreg Clayton if (regex_sed_size <= 1) 10470e5e5a79SGreg Clayton { 10480e5e5a79SGreg Clayton error.SetErrorStringWithFormat("regular expression substitution string is too short: '%.*s'", 10490e5e5a79SGreg Clayton (int)regex_sed.size(), 10500e5e5a79SGreg Clayton regex_sed.data()); 10510e5e5a79SGreg Clayton return error; 10520e5e5a79SGreg Clayton } 10530e5e5a79SGreg Clayton 10540e5e5a79SGreg Clayton if (regex_sed[0] != 's') 10550e5e5a79SGreg Clayton { 10560e5e5a79SGreg Clayton error.SetErrorStringWithFormat("regular expression substitution string doesn't start with 's': '%.*s'", 10570e5e5a79SGreg Clayton (int)regex_sed.size(), 10580e5e5a79SGreg Clayton regex_sed.data()); 10590e5e5a79SGreg Clayton return error; 10600e5e5a79SGreg Clayton } 10610e5e5a79SGreg Clayton const size_t first_separator_char_pos = 1; 10620e5e5a79SGreg Clayton // use the char that follows 's' as the regex separator character 10630e5e5a79SGreg Clayton // so we can have "s/<regex>/<subst>/" or "s|<regex>|<subst>|" 10640e5e5a79SGreg Clayton const char separator_char = regex_sed[first_separator_char_pos]; 10650e5e5a79SGreg Clayton const size_t second_separator_char_pos = regex_sed.find (separator_char, first_separator_char_pos + 1); 10660e5e5a79SGreg Clayton 10670e5e5a79SGreg Clayton if (second_separator_char_pos == std::string::npos) 10680e5e5a79SGreg Clayton { 1069*ea508635SGreg Clayton error.SetErrorStringWithFormat("missing second '%c' separator char after '%.*s' in '%.*s'", 10700e5e5a79SGreg Clayton separator_char, 10710e5e5a79SGreg Clayton (int)(regex_sed.size() - first_separator_char_pos - 1), 1072*ea508635SGreg Clayton regex_sed.data() + (first_separator_char_pos + 1), 1073*ea508635SGreg Clayton (int)regex_sed.size(), 1074*ea508635SGreg Clayton regex_sed.data()); 10750e5e5a79SGreg Clayton return error; 10760e5e5a79SGreg Clayton } 10770e5e5a79SGreg Clayton 10780e5e5a79SGreg Clayton const size_t third_separator_char_pos = regex_sed.find (separator_char, second_separator_char_pos + 1); 10790e5e5a79SGreg Clayton 10800e5e5a79SGreg Clayton if (third_separator_char_pos == std::string::npos) 10810e5e5a79SGreg Clayton { 1082*ea508635SGreg Clayton error.SetErrorStringWithFormat("missing third '%c' separator char after '%.*s' in '%.*s'", 10830e5e5a79SGreg Clayton separator_char, 10840e5e5a79SGreg Clayton (int)(regex_sed.size() - second_separator_char_pos - 1), 1085*ea508635SGreg Clayton regex_sed.data() + (second_separator_char_pos + 1), 1086*ea508635SGreg Clayton (int)regex_sed.size(), 1087*ea508635SGreg Clayton regex_sed.data()); 10880e5e5a79SGreg Clayton return error; 10890e5e5a79SGreg Clayton } 10900e5e5a79SGreg Clayton 10910e5e5a79SGreg Clayton if (third_separator_char_pos != regex_sed_size - 1) 10920e5e5a79SGreg Clayton { 10930e5e5a79SGreg Clayton // Make sure that everything that follows the last regex 10940e5e5a79SGreg Clayton // separator char 10950e5e5a79SGreg Clayton if (regex_sed.find_first_not_of("\t\n\v\f\r ", third_separator_char_pos + 1) != std::string::npos) 10960e5e5a79SGreg Clayton { 10970e5e5a79SGreg Clayton error.SetErrorStringWithFormat("extra data found after the '%.*s' regular expression substitution string: '%.*s'", 10980e5e5a79SGreg Clayton (int)third_separator_char_pos + 1, 10990e5e5a79SGreg Clayton regex_sed.data(), 11000e5e5a79SGreg Clayton (int)(regex_sed.size() - third_separator_char_pos - 1), 11010e5e5a79SGreg Clayton regex_sed.data() + (third_separator_char_pos + 1)); 11020e5e5a79SGreg Clayton return error; 11030e5e5a79SGreg Clayton } 11040e5e5a79SGreg Clayton 11050e5e5a79SGreg Clayton } 11060e5e5a79SGreg Clayton else if (first_separator_char_pos + 1 == second_separator_char_pos) 11070e5e5a79SGreg Clayton { 11080e5e5a79SGreg Clayton error.SetErrorStringWithFormat("<regex> can't be empty in 's%c<regex>%c<subst>%c' string: '%.*s'", 11090e5e5a79SGreg Clayton separator_char, 11100e5e5a79SGreg Clayton separator_char, 11110e5e5a79SGreg Clayton separator_char, 11120e5e5a79SGreg Clayton (int)regex_sed.size(), 11130e5e5a79SGreg Clayton regex_sed.data()); 11140e5e5a79SGreg Clayton return error; 11150e5e5a79SGreg Clayton } 11160e5e5a79SGreg Clayton else if (second_separator_char_pos + 1 == third_separator_char_pos) 11170e5e5a79SGreg Clayton { 11180e5e5a79SGreg Clayton error.SetErrorStringWithFormat("<subst> can't be empty in 's%c<regex>%c<subst>%c' string: '%.*s'", 11190e5e5a79SGreg Clayton separator_char, 11200e5e5a79SGreg Clayton separator_char, 11210e5e5a79SGreg Clayton separator_char, 11220e5e5a79SGreg Clayton (int)regex_sed.size(), 11230e5e5a79SGreg Clayton regex_sed.data()); 11240e5e5a79SGreg Clayton return error; 11250e5e5a79SGreg Clayton } 112644d93782SGreg Clayton 112744d93782SGreg Clayton if (check_only == false) 112844d93782SGreg Clayton { 11290e5e5a79SGreg Clayton std::string regex(regex_sed.substr(first_separator_char_pos + 1, second_separator_char_pos - first_separator_char_pos - 1)); 11300e5e5a79SGreg Clayton std::string subst(regex_sed.substr(second_separator_char_pos + 1, third_separator_char_pos - second_separator_char_pos - 1)); 11310e5e5a79SGreg Clayton m_regex_cmd_ap->AddRegexCommand (regex.c_str(), 11320e5e5a79SGreg Clayton subst.c_str()); 113344d93782SGreg Clayton } 11340e5e5a79SGreg Clayton return error; 1135de164aaaSGreg Clayton } 1136de164aaaSGreg Clayton 1137de164aaaSGreg Clayton void 11380e5e5a79SGreg Clayton AddRegexCommandToInterpreter() 1139de164aaaSGreg Clayton { 1140de164aaaSGreg Clayton if (m_regex_cmd_ap.get()) 1141de164aaaSGreg Clayton { 1142de164aaaSGreg Clayton if (m_regex_cmd_ap->HasRegexEntries()) 1143de164aaaSGreg Clayton { 1144de164aaaSGreg Clayton CommandObjectSP cmd_sp (m_regex_cmd_ap.release()); 1145de164aaaSGreg Clayton m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); 1146de164aaaSGreg Clayton } 1147de164aaaSGreg Clayton } 1148de164aaaSGreg Clayton } 1149de164aaaSGreg Clayton 1150de164aaaSGreg Clayton private: 11517b0992d9SGreg Clayton std::unique_ptr<CommandObjectRegexCommand> m_regex_cmd_ap; 1152de164aaaSGreg Clayton 1153de164aaaSGreg Clayton class CommandOptions : public Options 1154de164aaaSGreg Clayton { 1155de164aaaSGreg Clayton public: 1156de164aaaSGreg Clayton 1157de164aaaSGreg Clayton CommandOptions (CommandInterpreter &interpreter) : 1158de164aaaSGreg Clayton Options (interpreter) 1159de164aaaSGreg Clayton { 1160de164aaaSGreg Clayton } 1161de164aaaSGreg Clayton 1162de164aaaSGreg Clayton virtual 1163de164aaaSGreg Clayton ~CommandOptions (){} 1164de164aaaSGreg Clayton 1165de164aaaSGreg Clayton virtual Error 1166de164aaaSGreg Clayton SetOptionValue (uint32_t option_idx, const char *option_arg) 1167de164aaaSGreg Clayton { 1168de164aaaSGreg Clayton Error error; 11693bcdfc0eSGreg Clayton const int short_option = m_getopt_table[option_idx].val; 1170de164aaaSGreg Clayton 1171de164aaaSGreg Clayton switch (short_option) 1172de164aaaSGreg Clayton { 1173de164aaaSGreg Clayton case 'h': 1174de164aaaSGreg Clayton m_help.assign (option_arg); 1175de164aaaSGreg Clayton break; 1176de164aaaSGreg Clayton case 's': 1177de164aaaSGreg Clayton m_syntax.assign (option_arg); 1178de164aaaSGreg Clayton break; 1179de164aaaSGreg Clayton 1180de164aaaSGreg Clayton default: 118186edbf41SGreg Clayton error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option); 1182de164aaaSGreg Clayton break; 1183de164aaaSGreg Clayton } 1184de164aaaSGreg Clayton 1185de164aaaSGreg Clayton return error; 1186de164aaaSGreg Clayton } 1187de164aaaSGreg Clayton 1188de164aaaSGreg Clayton void 1189de164aaaSGreg Clayton OptionParsingStarting () 1190de164aaaSGreg Clayton { 1191de164aaaSGreg Clayton m_help.clear(); 1192de164aaaSGreg Clayton m_syntax.clear(); 1193de164aaaSGreg Clayton } 1194de164aaaSGreg Clayton 1195de164aaaSGreg Clayton const OptionDefinition* 1196de164aaaSGreg Clayton GetDefinitions () 1197de164aaaSGreg Clayton { 1198de164aaaSGreg Clayton return g_option_table; 1199de164aaaSGreg Clayton } 1200de164aaaSGreg Clayton 1201de164aaaSGreg Clayton // Options table: Required for subclasses of Options. 1202de164aaaSGreg Clayton 1203de164aaaSGreg Clayton static OptionDefinition g_option_table[]; 1204de164aaaSGreg Clayton 1205de164aaaSGreg Clayton const char * 1206de164aaaSGreg Clayton GetHelp () 1207de164aaaSGreg Clayton { 1208de164aaaSGreg Clayton if (m_help.empty()) 1209de164aaaSGreg Clayton return NULL; 1210de164aaaSGreg Clayton return m_help.c_str(); 1211de164aaaSGreg Clayton } 1212de164aaaSGreg Clayton const char * 1213de164aaaSGreg Clayton GetSyntax () 1214de164aaaSGreg Clayton { 1215de164aaaSGreg Clayton if (m_syntax.empty()) 1216de164aaaSGreg Clayton return NULL; 1217de164aaaSGreg Clayton return m_syntax.c_str(); 1218de164aaaSGreg Clayton } 1219de164aaaSGreg Clayton // Instance variables to hold the values for command options. 1220de164aaaSGreg Clayton protected: 1221de164aaaSGreg Clayton std::string m_help; 1222de164aaaSGreg Clayton std::string m_syntax; 1223de164aaaSGreg Clayton }; 1224de164aaaSGreg Clayton 1225de164aaaSGreg Clayton virtual Options * 1226de164aaaSGreg Clayton GetOptions () 1227de164aaaSGreg Clayton { 1228de164aaaSGreg Clayton return &m_options; 1229de164aaaSGreg Clayton } 1230de164aaaSGreg Clayton 12315a988416SJim Ingham CommandOptions m_options; 1232de164aaaSGreg Clayton }; 1233de164aaaSGreg Clayton 1234de164aaaSGreg Clayton OptionDefinition 1235de164aaaSGreg Clayton CommandObjectCommandsAddRegex::CommandOptions::g_option_table[] = 1236de164aaaSGreg Clayton { 1237d37221dcSZachary Turner { LLDB_OPT_SET_1, false, "help" , 'h', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeNone, "The help text to display for this command."}, 1238d37221dcSZachary Turner { LLDB_OPT_SET_1, false, "syntax", 's', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeNone, "A syntax string showing the typical usage syntax."}, 1239d37221dcSZachary Turner { 0 , false, NULL , 0 , 0 , NULL, NULL, 0, eArgTypeNone, NULL } 1240de164aaaSGreg Clayton }; 1241de164aaaSGreg Clayton 1242de164aaaSGreg Clayton 12435a988416SJim Ingham class CommandObjectPythonFunction : public CommandObjectRaw 1244223383edSEnrico Granata { 1245223383edSEnrico Granata private: 1246223383edSEnrico Granata std::string m_function_name; 12470a305db7SEnrico Granata ScriptedCommandSynchronicity m_synchro; 1248fac939e9SEnrico Granata bool m_fetched_help_long; 1249223383edSEnrico Granata 1250223383edSEnrico Granata public: 1251223383edSEnrico Granata 1252223383edSEnrico Granata CommandObjectPythonFunction (CommandInterpreter &interpreter, 1253223383edSEnrico Granata std::string name, 12540a305db7SEnrico Granata std::string funct, 1255735152e3SEnrico Granata std::string help, 12560a305db7SEnrico Granata ScriptedCommandSynchronicity synch) : 12575a988416SJim Ingham CommandObjectRaw (interpreter, 1258223383edSEnrico Granata name.c_str(), 1259735152e3SEnrico Granata NULL, 1260223383edSEnrico Granata NULL), 12610a305db7SEnrico Granata m_function_name(funct), 1262fac939e9SEnrico Granata m_synchro(synch), 1263fac939e9SEnrico Granata m_fetched_help_long(false) 1264223383edSEnrico Granata { 1265735152e3SEnrico Granata if (!help.empty()) 1266735152e3SEnrico Granata SetHelp(help.c_str()); 1267735152e3SEnrico Granata else 1268735152e3SEnrico Granata { 1269735152e3SEnrico Granata StreamString stream; 1270735152e3SEnrico Granata stream.Printf("For more information run 'help %s'",name.c_str()); 1271735152e3SEnrico Granata SetHelp(stream.GetData()); 1272735152e3SEnrico Granata } 1273223383edSEnrico Granata } 1274223383edSEnrico Granata 1275223383edSEnrico Granata virtual 1276223383edSEnrico Granata ~CommandObjectPythonFunction () 1277223383edSEnrico Granata { 1278223383edSEnrico Granata } 1279223383edSEnrico Granata 1280223383edSEnrico Granata virtual bool 12813a18e319SGreg Clayton IsRemovable () const 12825a988416SJim Ingham { 12835a988416SJim Ingham return true; 12845a988416SJim Ingham } 12855a988416SJim Ingham 12865a988416SJim Ingham const std::string& 12875a988416SJim Ingham GetFunctionName () 12885a988416SJim Ingham { 12895a988416SJim Ingham return m_function_name; 12905a988416SJim Ingham } 12915a988416SJim Ingham 12925a988416SJim Ingham ScriptedCommandSynchronicity 12935a988416SJim Ingham GetSynchronicity () 12945a988416SJim Ingham { 12955a988416SJim Ingham return m_synchro; 12965a988416SJim Ingham } 12975a988416SJim Ingham 1298fac939e9SEnrico Granata virtual const char * 1299fac939e9SEnrico Granata GetHelpLong () 1300fac939e9SEnrico Granata { 1301fac939e9SEnrico Granata if (!m_fetched_help_long) 1302fac939e9SEnrico Granata { 1303fac939e9SEnrico Granata ScriptInterpreter* scripter = m_interpreter.GetScriptInterpreter(); 1304fac939e9SEnrico Granata if (scripter) 1305fac939e9SEnrico Granata { 1306fac939e9SEnrico Granata std::string docstring; 1307fac939e9SEnrico Granata m_fetched_help_long = scripter->GetDocumentationForItem(m_function_name.c_str(),docstring); 1308fac939e9SEnrico Granata if (!docstring.empty()) 1309fac939e9SEnrico Granata SetHelpLong(docstring); 1310fac939e9SEnrico Granata } 1311fac939e9SEnrico Granata } 1312fac939e9SEnrico Granata return CommandObjectRaw::GetHelpLong(); 1313fac939e9SEnrico Granata } 1314fac939e9SEnrico Granata 13155a988416SJim Ingham protected: 13165a988416SJim Ingham virtual bool 13175a988416SJim Ingham DoExecute (const char *raw_command_line, CommandReturnObject &result) 1318223383edSEnrico Granata { 1319223383edSEnrico Granata ScriptInterpreter* scripter = m_interpreter.GetScriptInterpreter(); 1320223383edSEnrico Granata 1321223383edSEnrico Granata Error error; 1322223383edSEnrico Granata 132370f11f88SJim Ingham result.SetStatus(eReturnStatusInvalid); 132470f11f88SJim Ingham 1325223383edSEnrico Granata if (!scripter || scripter->RunScriptBasedCommand(m_function_name.c_str(), 1326223383edSEnrico Granata raw_command_line, 13270a305db7SEnrico Granata m_synchro, 1328223383edSEnrico Granata result, 132906be059aSEnrico Granata error, 133006be059aSEnrico Granata m_exe_ctx) == false) 1331223383edSEnrico Granata { 1332223383edSEnrico Granata result.AppendError(error.AsCString()); 1333223383edSEnrico Granata result.SetStatus(eReturnStatusFailed); 1334223383edSEnrico Granata } 1335223383edSEnrico Granata else 133670f11f88SJim Ingham { 133770f11f88SJim Ingham // Don't change the status if the command already set it... 133870f11f88SJim Ingham if (result.GetStatus() == eReturnStatusInvalid) 133970f11f88SJim Ingham { 13409a71a7d8SDaniel Malea if (result.GetOutputData() == NULL || result.GetOutputData()[0] == '\0') 1341223383edSEnrico Granata result.SetStatus(eReturnStatusSuccessFinishNoResult); 134270f11f88SJim Ingham else 134370f11f88SJim Ingham result.SetStatus(eReturnStatusSuccessFinishResult); 134470f11f88SJim Ingham } 134570f11f88SJim Ingham } 1346223383edSEnrico Granata 1347223383edSEnrico Granata return result.Succeeded(); 1348223383edSEnrico Granata } 1349223383edSEnrico Granata 1350223383edSEnrico Granata }; 1351223383edSEnrico Granata 1352a9dbf432SEnrico Granata //------------------------------------------------------------------------- 1353a9dbf432SEnrico Granata // CommandObjectCommandsScriptImport 1354a9dbf432SEnrico Granata //------------------------------------------------------------------------- 1355a9dbf432SEnrico Granata 13565a988416SJim Ingham class CommandObjectCommandsScriptImport : public CommandObjectParsed 1357a9dbf432SEnrico Granata { 13585a988416SJim Ingham public: 13595a988416SJim Ingham CommandObjectCommandsScriptImport (CommandInterpreter &interpreter) : 13605a988416SJim Ingham CommandObjectParsed (interpreter, 13615a988416SJim Ingham "command script import", 13625a988416SJim Ingham "Import a scripting module in LLDB.", 13635a988416SJim Ingham NULL), 13645a988416SJim Ingham m_options(interpreter) 13655a988416SJim Ingham { 13665a988416SJim Ingham CommandArgumentEntry arg1; 13675a988416SJim Ingham CommandArgumentData cmd_arg; 13685a988416SJim Ingham 13695a988416SJim Ingham // Define the first (and only) variant of this arg. 13705a988416SJim Ingham cmd_arg.arg_type = eArgTypeFilename; 13715a988416SJim Ingham cmd_arg.arg_repetition = eArgRepeatPlain; 13725a988416SJim Ingham 13735a988416SJim Ingham // There is only one variant this argument could be; put it into the argument entry. 13745a988416SJim Ingham arg1.push_back (cmd_arg); 13755a988416SJim Ingham 13765a988416SJim Ingham // Push the data for the first argument into the m_arguments vector. 13775a988416SJim Ingham m_arguments.push_back (arg1); 13785a988416SJim Ingham } 13795a988416SJim Ingham 13805a988416SJim Ingham ~CommandObjectCommandsScriptImport () 13815a988416SJim Ingham { 13825a988416SJim Ingham } 13835a988416SJim Ingham 1384c7bece56SGreg Clayton virtual int 13855a988416SJim Ingham HandleArgumentCompletion (Args &input, 13865a988416SJim Ingham int &cursor_index, 13875a988416SJim Ingham int &cursor_char_position, 13885a988416SJim Ingham OptionElementVector &opt_element_vector, 13895a988416SJim Ingham int match_start_point, 13905a988416SJim Ingham int max_return_elements, 13915a988416SJim Ingham bool &word_complete, 13925a988416SJim Ingham StringList &matches) 13935a988416SJim Ingham { 13945a988416SJim Ingham std::string completion_str (input.GetArgumentAtIndex(cursor_index)); 13955a988416SJim Ingham completion_str.erase (cursor_char_position); 13965a988416SJim Ingham 13975a988416SJim Ingham CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter, 13985a988416SJim Ingham CommandCompletions::eDiskFileCompletion, 13995a988416SJim Ingham completion_str.c_str(), 14005a988416SJim Ingham match_start_point, 14015a988416SJim Ingham max_return_elements, 14025a988416SJim Ingham NULL, 14035a988416SJim Ingham word_complete, 14045a988416SJim Ingham matches); 14055a988416SJim Ingham return matches.GetSize(); 14065a988416SJim Ingham } 14075a988416SJim Ingham 14085a988416SJim Ingham virtual Options * 14095a988416SJim Ingham GetOptions () 14105a988416SJim Ingham { 14115a988416SJim Ingham return &m_options; 14125a988416SJim Ingham } 14135a988416SJim Ingham 14145a988416SJim Ingham protected: 14150a305db7SEnrico Granata 14160a305db7SEnrico Granata class CommandOptions : public Options 14170a305db7SEnrico Granata { 14180a305db7SEnrico Granata public: 14190a305db7SEnrico Granata 14200a305db7SEnrico Granata CommandOptions (CommandInterpreter &interpreter) : 14210a305db7SEnrico Granata Options (interpreter) 14220a305db7SEnrico Granata { 14230a305db7SEnrico Granata } 14240a305db7SEnrico Granata 14250a305db7SEnrico Granata virtual 14260a305db7SEnrico Granata ~CommandOptions (){} 14270a305db7SEnrico Granata 14280a305db7SEnrico Granata virtual Error 14290a305db7SEnrico Granata SetOptionValue (uint32_t option_idx, const char *option_arg) 14300a305db7SEnrico Granata { 14310a305db7SEnrico Granata Error error; 14323bcdfc0eSGreg Clayton const int short_option = m_getopt_table[option_idx].val; 14330a305db7SEnrico Granata 14340a305db7SEnrico Granata switch (short_option) 14350a305db7SEnrico Granata { 14360a305db7SEnrico Granata case 'r': 14370a305db7SEnrico Granata m_allow_reload = true; 14380a305db7SEnrico Granata break; 14390a305db7SEnrico Granata default: 14400a305db7SEnrico Granata error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option); 14410a305db7SEnrico Granata break; 14420a305db7SEnrico Granata } 14430a305db7SEnrico Granata 14440a305db7SEnrico Granata return error; 14450a305db7SEnrico Granata } 14460a305db7SEnrico Granata 14470a305db7SEnrico Granata void 14480a305db7SEnrico Granata OptionParsingStarting () 14490a305db7SEnrico Granata { 1450e0c70f1bSEnrico Granata m_allow_reload = true; 14510a305db7SEnrico Granata } 14520a305db7SEnrico Granata 14530a305db7SEnrico Granata const OptionDefinition* 14540a305db7SEnrico Granata GetDefinitions () 14550a305db7SEnrico Granata { 14560a305db7SEnrico Granata return g_option_table; 14570a305db7SEnrico Granata } 14580a305db7SEnrico Granata 14590a305db7SEnrico Granata // Options table: Required for subclasses of Options. 14600a305db7SEnrico Granata 14610a305db7SEnrico Granata static OptionDefinition g_option_table[]; 14620a305db7SEnrico Granata 14630a305db7SEnrico Granata // Instance variables to hold the values for command options. 14640a305db7SEnrico Granata 14650a305db7SEnrico Granata bool m_allow_reload; 14660a305db7SEnrico Granata }; 14670a305db7SEnrico Granata 1468a9dbf432SEnrico Granata bool 14695a988416SJim Ingham DoExecute (Args& command, CommandReturnObject &result) 1470a9dbf432SEnrico Granata { 1471a9dbf432SEnrico Granata 1472a9dbf432SEnrico Granata if (m_interpreter.GetDebugger().GetScriptLanguage() != lldb::eScriptLanguagePython) 1473a9dbf432SEnrico Granata { 1474a9dbf432SEnrico Granata result.AppendError ("only scripting language supported for module importing is currently Python"); 1475a9dbf432SEnrico Granata result.SetStatus (eReturnStatusFailed); 1476a9dbf432SEnrico Granata return false; 1477a9dbf432SEnrico Granata } 1478a9dbf432SEnrico Granata 14795a988416SJim Ingham size_t argc = command.GetArgumentCount(); 1480a9dbf432SEnrico Granata 1481a9dbf432SEnrico Granata if (argc != 1) 1482a9dbf432SEnrico Granata { 1483a9dbf432SEnrico Granata result.AppendError ("'command script import' requires one argument"); 1484a9dbf432SEnrico Granata result.SetStatus (eReturnStatusFailed); 1485a9dbf432SEnrico Granata return false; 1486a9dbf432SEnrico Granata } 1487a9dbf432SEnrico Granata 14885a988416SJim Ingham std::string path = command.GetArgumentAtIndex(0); 1489a9dbf432SEnrico Granata Error error; 1490a9dbf432SEnrico Granata 1491c9d645d3SGreg Clayton const bool init_session = true; 1492078551c7SEnrico Granata // FIXME: this is necessary because CommandObject::CheckRequirements() assumes that 1493078551c7SEnrico Granata // commands won't ever be recursively invoked, but it's actually possible to craft 1494078551c7SEnrico Granata // a Python script that does other "command script imports" in __lldb_init_module 1495078551c7SEnrico Granata // the real fix is to have recursive commands possible with a CommandInvocation object 1496078551c7SEnrico Granata // separate from the CommandObject itself, so that recursive command invocations 1497078551c7SEnrico Granata // won't stomp on each other (wrt to execution contents, options, and more) 1498078551c7SEnrico Granata m_exe_ctx.Clear(); 1499a9dbf432SEnrico Granata if (m_interpreter.GetScriptInterpreter()->LoadScriptingModule(path.c_str(), 15000a305db7SEnrico Granata m_options.m_allow_reload, 1501c9d645d3SGreg Clayton init_session, 1502a9dbf432SEnrico Granata error)) 1503a9dbf432SEnrico Granata { 1504a9dbf432SEnrico Granata result.SetStatus (eReturnStatusSuccessFinishNoResult); 1505a9dbf432SEnrico Granata } 1506a9dbf432SEnrico Granata else 1507a9dbf432SEnrico Granata { 1508a9dbf432SEnrico Granata result.AppendErrorWithFormat("module importing failed: %s", error.AsCString()); 1509a9dbf432SEnrico Granata result.SetStatus (eReturnStatusFailed); 1510a9dbf432SEnrico Granata } 1511a9dbf432SEnrico Granata 1512a9dbf432SEnrico Granata return result.Succeeded(); 1513a9dbf432SEnrico Granata } 15140a305db7SEnrico Granata 15155a988416SJim Ingham CommandOptions m_options; 1516a9dbf432SEnrico Granata }; 1517223383edSEnrico Granata 15180a305db7SEnrico Granata OptionDefinition 15190a305db7SEnrico Granata CommandObjectCommandsScriptImport::CommandOptions::g_option_table[] = 15200a305db7SEnrico Granata { 1521d37221dcSZachary Turner { LLDB_OPT_SET_1, false, "allow-reload", 'r', OptionParser::eNoArgument, NULL, NULL, 0, eArgTypeNone, "Allow the script to be loaded even if it was already loaded before. This argument exists for backwards compatibility, but reloading is always allowed, whether you specify it or not."}, 1522d37221dcSZachary Turner { 0, false, NULL, 0, 0, NULL, NULL, 0, eArgTypeNone, NULL } 15230a305db7SEnrico Granata }; 15240a305db7SEnrico Granata 15250a305db7SEnrico Granata 1526223383edSEnrico Granata //------------------------------------------------------------------------- 1527223383edSEnrico Granata // CommandObjectCommandsScriptAdd 1528223383edSEnrico Granata //------------------------------------------------------------------------- 1529223383edSEnrico Granata 153044d93782SGreg Clayton class CommandObjectCommandsScriptAdd : 153144d93782SGreg Clayton public CommandObjectParsed, 153244d93782SGreg Clayton public IOHandlerDelegateMultiline 1533223383edSEnrico Granata { 15345a988416SJim Ingham public: 15355a988416SJim Ingham CommandObjectCommandsScriptAdd(CommandInterpreter &interpreter) : 15365a988416SJim Ingham CommandObjectParsed (interpreter, 15375a988416SJim Ingham "command script add", 15385a988416SJim Ingham "Add a scripted function as an LLDB command.", 15395a988416SJim Ingham NULL), 1540c3d874a5SGreg Clayton IOHandlerDelegateMultiline ("DONE"), 15415a988416SJim Ingham m_options (interpreter) 15425a988416SJim Ingham { 15435a988416SJim Ingham CommandArgumentEntry arg1; 15445a988416SJim Ingham CommandArgumentData cmd_arg; 15455a988416SJim Ingham 15465a988416SJim Ingham // Define the first (and only) variant of this arg. 15475a988416SJim Ingham cmd_arg.arg_type = eArgTypeCommandName; 15485a988416SJim Ingham cmd_arg.arg_repetition = eArgRepeatPlain; 15495a988416SJim Ingham 15505a988416SJim Ingham // There is only one variant this argument could be; put it into the argument entry. 15515a988416SJim Ingham arg1.push_back (cmd_arg); 15525a988416SJim Ingham 15535a988416SJim Ingham // Push the data for the first argument into the m_arguments vector. 15545a988416SJim Ingham m_arguments.push_back (arg1); 15555a988416SJim Ingham } 15565a988416SJim Ingham 15575a988416SJim Ingham ~CommandObjectCommandsScriptAdd () 15585a988416SJim Ingham { 15595a988416SJim Ingham } 15605a988416SJim Ingham 15615a988416SJim Ingham virtual Options * 15625a988416SJim Ingham GetOptions () 15635a988416SJim Ingham { 15645a988416SJim Ingham return &m_options; 15655a988416SJim Ingham } 15665a988416SJim Ingham 15675a988416SJim Ingham protected: 1568223383edSEnrico Granata 1569223383edSEnrico Granata class CommandOptions : public Options 1570223383edSEnrico Granata { 1571223383edSEnrico Granata public: 1572223383edSEnrico Granata 1573223383edSEnrico Granata CommandOptions (CommandInterpreter &interpreter) : 1574223383edSEnrico Granata Options (interpreter) 1575223383edSEnrico Granata { 1576223383edSEnrico Granata } 1577223383edSEnrico Granata 1578223383edSEnrico Granata virtual 1579223383edSEnrico Granata ~CommandOptions (){} 1580223383edSEnrico Granata 1581223383edSEnrico Granata virtual Error 1582223383edSEnrico Granata SetOptionValue (uint32_t option_idx, const char *option_arg) 1583223383edSEnrico Granata { 1584223383edSEnrico Granata Error error; 15853bcdfc0eSGreg Clayton const int short_option = m_getopt_table[option_idx].val; 1586223383edSEnrico Granata 1587223383edSEnrico Granata switch (short_option) 1588223383edSEnrico Granata { 1589223383edSEnrico Granata case 'f': 1590735152e3SEnrico Granata if (option_arg) 1591735152e3SEnrico Granata m_funct_name.assign(option_arg); 1592735152e3SEnrico Granata break; 1593735152e3SEnrico Granata case 'h': 1594735152e3SEnrico Granata if (option_arg) 1595735152e3SEnrico Granata m_short_help.assign(option_arg); 1596223383edSEnrico Granata break; 15970a305db7SEnrico Granata case 's': 159844d93782SGreg Clayton m_synchronicity = (ScriptedCommandSynchronicity) Args::StringToOptionEnum(option_arg, g_option_table[option_idx].enum_values, 0, error); 15990a305db7SEnrico Granata if (!error.Success()) 16000a305db7SEnrico Granata error.SetErrorStringWithFormat ("unrecognized value for synchronicity '%s'", option_arg); 16010a305db7SEnrico Granata break; 1602223383edSEnrico Granata default: 160386edbf41SGreg Clayton error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option); 1604223383edSEnrico Granata break; 1605223383edSEnrico Granata } 1606223383edSEnrico Granata 1607223383edSEnrico Granata return error; 1608223383edSEnrico Granata } 1609223383edSEnrico Granata 1610223383edSEnrico Granata void 1611223383edSEnrico Granata OptionParsingStarting () 1612223383edSEnrico Granata { 1613735152e3SEnrico Granata m_funct_name.clear(); 1614735152e3SEnrico Granata m_short_help.clear(); 161544d93782SGreg Clayton m_synchronicity = eScriptedCommandSynchronicitySynchronous; 1616223383edSEnrico Granata } 1617223383edSEnrico Granata 1618223383edSEnrico Granata const OptionDefinition* 1619223383edSEnrico Granata GetDefinitions () 1620223383edSEnrico Granata { 1621223383edSEnrico Granata return g_option_table; 1622223383edSEnrico Granata } 1623223383edSEnrico Granata 1624223383edSEnrico Granata // Options table: Required for subclasses of Options. 1625223383edSEnrico Granata 1626223383edSEnrico Granata static OptionDefinition g_option_table[]; 1627223383edSEnrico Granata 1628223383edSEnrico Granata // Instance variables to hold the values for command options. 1629223383edSEnrico Granata 1630223383edSEnrico Granata std::string m_funct_name; 1631735152e3SEnrico Granata std::string m_short_help; 163244d93782SGreg Clayton ScriptedCommandSynchronicity m_synchronicity; 1633223383edSEnrico Granata }; 1634223383edSEnrico Granata 163544d93782SGreg Clayton virtual void 163644d93782SGreg Clayton IOHandlerActivated (IOHandler &io_handler) 1637223383edSEnrico Granata { 163844d93782SGreg Clayton StreamFileSP output_sp(io_handler.GetOutputStreamFile()); 163944d93782SGreg Clayton if (output_sp) 1640223383edSEnrico Granata { 164144d93782SGreg Clayton output_sp->PutCString(g_python_command_instructions); 164244d93782SGreg Clayton output_sp->Flush(); 1643223383edSEnrico Granata } 1644223383edSEnrico Granata } 1645223383edSEnrico Granata 1646223383edSEnrico Granata 164744d93782SGreg Clayton virtual void 164844d93782SGreg Clayton IOHandlerInputComplete (IOHandler &io_handler, std::string &data) 1649223383edSEnrico Granata { 165044d93782SGreg Clayton StreamFileSP error_sp = io_handler.GetErrorStreamFile(); 165144d93782SGreg Clayton 165244d93782SGreg Clayton ScriptInterpreter *interpreter = m_interpreter.GetScriptInterpreter(); 165344d93782SGreg Clayton if (interpreter) 165444d93782SGreg Clayton { 165544d93782SGreg Clayton 165644d93782SGreg Clayton StringList lines; 165744d93782SGreg Clayton lines.SplitIntoLines(data); 165844d93782SGreg Clayton if (lines.GetSize() > 0) 165944d93782SGreg Clayton { 1660a73b7df7SEnrico Granata std::string funct_name_str; 166144d93782SGreg Clayton if (interpreter->GenerateScriptAliasFunction (lines, funct_name_str)) 1662223383edSEnrico Granata { 1663a73b7df7SEnrico Granata if (funct_name_str.empty()) 1664223383edSEnrico Granata { 166544d93782SGreg Clayton error_sp->Printf ("error: unable to obtain a function name, didn't add python command.\n"); 166644d93782SGreg Clayton error_sp->Flush(); 1667223383edSEnrico Granata } 166844d93782SGreg Clayton else 166944d93782SGreg Clayton { 1670223383edSEnrico Granata // everything should be fine now, let's add this alias 1671223383edSEnrico Granata 1672223383edSEnrico Granata CommandObjectSP command_obj_sp(new CommandObjectPythonFunction (m_interpreter, 1673223383edSEnrico Granata m_cmd_name, 1674a73b7df7SEnrico Granata funct_name_str.c_str(), 1675735152e3SEnrico Granata m_short_help, 167644d93782SGreg Clayton m_synchronicity)); 1677223383edSEnrico Granata 16780a305db7SEnrico Granata if (!m_interpreter.AddUserCommand(m_cmd_name, command_obj_sp, true)) 1679223383edSEnrico Granata { 168044d93782SGreg Clayton error_sp->Printf ("error: unable to add selected command, didn't add python command.\n"); 168144d93782SGreg Clayton error_sp->Flush(); 1682223383edSEnrico Granata } 1683223383edSEnrico Granata } 168444d93782SGreg Clayton } 168544d93782SGreg Clayton else 168644d93782SGreg Clayton { 168744d93782SGreg Clayton error_sp->Printf ("error: unable to create function, didn't add python command.\n"); 168844d93782SGreg Clayton error_sp->Flush(); 168944d93782SGreg Clayton } 169044d93782SGreg Clayton } 169144d93782SGreg Clayton else 169244d93782SGreg Clayton { 169344d93782SGreg Clayton error_sp->Printf ("error: empty function, didn't add python command.\n"); 169444d93782SGreg Clayton error_sp->Flush(); 169544d93782SGreg Clayton } 169644d93782SGreg Clayton } 169744d93782SGreg Clayton else 169844d93782SGreg Clayton { 169944d93782SGreg Clayton error_sp->Printf ("error: script interpreter missing, didn't add python command.\n"); 170044d93782SGreg Clayton error_sp->Flush(); 170144d93782SGreg Clayton } 170244d93782SGreg Clayton 170344d93782SGreg Clayton io_handler.SetIsDone(true); 170444d93782SGreg Clayton 170544d93782SGreg Clayton 170644d93782SGreg Clayton } 1707223383edSEnrico Granata 17085a988416SJim Ingham protected: 1709223383edSEnrico Granata bool 17105a988416SJim Ingham DoExecute (Args& command, CommandReturnObject &result) 1711223383edSEnrico Granata { 171299f0b8f9SEnrico Granata 171399f0b8f9SEnrico Granata if (m_interpreter.GetDebugger().GetScriptLanguage() != lldb::eScriptLanguagePython) 171499f0b8f9SEnrico Granata { 171599f0b8f9SEnrico Granata result.AppendError ("only scripting language supported for scripted commands is currently Python"); 171699f0b8f9SEnrico Granata result.SetStatus (eReturnStatusFailed); 171799f0b8f9SEnrico Granata return false; 171899f0b8f9SEnrico Granata } 171999f0b8f9SEnrico Granata 17205a988416SJim Ingham size_t argc = command.GetArgumentCount(); 1721223383edSEnrico Granata 1722223383edSEnrico Granata if (argc != 1) 1723223383edSEnrico Granata { 1724223383edSEnrico Granata result.AppendError ("'command script add' requires one argument"); 1725223383edSEnrico Granata result.SetStatus (eReturnStatusFailed); 1726223383edSEnrico Granata return false; 1727223383edSEnrico Granata } 1728223383edSEnrico Granata 1729735152e3SEnrico Granata // Store the options in case we get multi-line input 173044d93782SGreg Clayton m_cmd_name = command.GetArgumentAtIndex(0); 1731735152e3SEnrico Granata m_short_help.assign(m_options.m_short_help); 173244d93782SGreg Clayton m_synchronicity = m_options.m_synchronicity; 1733223383edSEnrico Granata 1734223383edSEnrico Granata if (m_options.m_funct_name.empty()) 1735223383edSEnrico Granata { 173644d93782SGreg Clayton m_interpreter.GetPythonCommandsFromIOHandler (" ", // Prompt 173744d93782SGreg Clayton *this, // IOHandlerDelegate 173844d93782SGreg Clayton true, // Run IOHandler in async mode 173944d93782SGreg Clayton NULL); // Baton for the "io_handler" that will be passed back into our IOHandlerDelegate functions 1740223383edSEnrico Granata } 1741223383edSEnrico Granata else 1742223383edSEnrico Granata { 17430a305db7SEnrico Granata CommandObjectSP new_cmd(new CommandObjectPythonFunction(m_interpreter, 174444d93782SGreg Clayton m_cmd_name, 17450a305db7SEnrico Granata m_options.m_funct_name, 1746735152e3SEnrico Granata m_options.m_short_help, 174744d93782SGreg Clayton m_synchronicity)); 174844d93782SGreg Clayton if (m_interpreter.AddUserCommand(m_cmd_name, new_cmd, true)) 1749223383edSEnrico Granata { 1750223383edSEnrico Granata result.SetStatus (eReturnStatusSuccessFinishNoResult); 1751223383edSEnrico Granata } 1752223383edSEnrico Granata else 1753223383edSEnrico Granata { 1754223383edSEnrico Granata result.AppendError("cannot add command"); 1755223383edSEnrico Granata result.SetStatus (eReturnStatusFailed); 1756223383edSEnrico Granata } 1757223383edSEnrico Granata } 1758223383edSEnrico Granata 1759223383edSEnrico Granata return result.Succeeded(); 1760223383edSEnrico Granata 1761223383edSEnrico Granata } 17625a988416SJim Ingham 17635a988416SJim Ingham CommandOptions m_options; 176444d93782SGreg Clayton std::string m_cmd_name; 1765735152e3SEnrico Granata std::string m_short_help; 176644d93782SGreg Clayton ScriptedCommandSynchronicity m_synchronicity; 1767223383edSEnrico Granata }; 1768223383edSEnrico Granata 17690a305db7SEnrico Granata static OptionEnumValueElement g_script_synchro_type[] = 17700a305db7SEnrico Granata { 17710a305db7SEnrico Granata { eScriptedCommandSynchronicitySynchronous, "synchronous", "Run synchronous"}, 17720a305db7SEnrico Granata { eScriptedCommandSynchronicityAsynchronous, "asynchronous", "Run asynchronous"}, 17730a305db7SEnrico Granata { eScriptedCommandSynchronicityCurrentValue, "current", "Do not alter current setting"}, 17740a305db7SEnrico Granata { 0, NULL, NULL } 17750a305db7SEnrico Granata }; 17760a305db7SEnrico Granata 1777223383edSEnrico Granata OptionDefinition 1778223383edSEnrico Granata CommandObjectCommandsScriptAdd::CommandOptions::g_option_table[] = 1779223383edSEnrico Granata { 1780d37221dcSZachary Turner { LLDB_OPT_SET_1, false, "function", 'f', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypePythonFunction, "Name of the Python function to bind to this command name."}, 1781735152e3SEnrico Granata { LLDB_OPT_SET_1, false, "help" , 'h', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeHelpText, "The help text to display for this command."}, 1782d37221dcSZachary Turner { LLDB_OPT_SET_1, false, "synchronicity", 's', OptionParser::eRequiredArgument, NULL, g_script_synchro_type, 0, eArgTypeScriptedCommandSynchronicity, "Set the synchronicity of this command's executions with regard to LLDB event system."}, 1783d37221dcSZachary Turner { 0, false, NULL, 0, 0, NULL, NULL, 0, eArgTypeNone, NULL } 1784223383edSEnrico Granata }; 1785223383edSEnrico Granata 1786223383edSEnrico Granata //------------------------------------------------------------------------- 1787223383edSEnrico Granata // CommandObjectCommandsScriptList 1788223383edSEnrico Granata //------------------------------------------------------------------------- 1789223383edSEnrico Granata 17905a988416SJim Ingham class CommandObjectCommandsScriptList : public CommandObjectParsed 1791223383edSEnrico Granata { 1792223383edSEnrico Granata private: 1793223383edSEnrico Granata 1794223383edSEnrico Granata public: 1795223383edSEnrico Granata CommandObjectCommandsScriptList(CommandInterpreter &interpreter) : 17965a988416SJim Ingham CommandObjectParsed (interpreter, 1797223383edSEnrico Granata "command script list", 1798223383edSEnrico Granata "List defined scripted commands.", 1799223383edSEnrico Granata NULL) 1800223383edSEnrico Granata { 1801223383edSEnrico Granata } 1802223383edSEnrico Granata 1803223383edSEnrico Granata ~CommandObjectCommandsScriptList () 1804223383edSEnrico Granata { 1805223383edSEnrico Granata } 1806223383edSEnrico Granata 1807223383edSEnrico Granata bool 18085a988416SJim Ingham DoExecute (Args& command, CommandReturnObject &result) 1809223383edSEnrico Granata { 1810223383edSEnrico Granata 1811223383edSEnrico Granata m_interpreter.GetHelp(result, 1812223383edSEnrico Granata CommandInterpreter::eCommandTypesUserDef); 1813223383edSEnrico Granata 1814223383edSEnrico Granata result.SetStatus (eReturnStatusSuccessFinishResult); 1815223383edSEnrico Granata 1816223383edSEnrico Granata return true; 1817223383edSEnrico Granata 1818223383edSEnrico Granata 1819223383edSEnrico Granata } 1820223383edSEnrico Granata }; 1821223383edSEnrico Granata 1822223383edSEnrico Granata //------------------------------------------------------------------------- 1823223383edSEnrico Granata // CommandObjectCommandsScriptClear 1824223383edSEnrico Granata //------------------------------------------------------------------------- 1825223383edSEnrico Granata 18265a988416SJim Ingham class CommandObjectCommandsScriptClear : public CommandObjectParsed 1827223383edSEnrico Granata { 1828223383edSEnrico Granata private: 1829223383edSEnrico Granata 1830223383edSEnrico Granata public: 1831223383edSEnrico Granata CommandObjectCommandsScriptClear(CommandInterpreter &interpreter) : 18325a988416SJim Ingham CommandObjectParsed (interpreter, 1833223383edSEnrico Granata "command script clear", 1834223383edSEnrico Granata "Delete all scripted commands.", 1835223383edSEnrico Granata NULL) 1836223383edSEnrico Granata { 1837223383edSEnrico Granata } 1838223383edSEnrico Granata 1839223383edSEnrico Granata ~CommandObjectCommandsScriptClear () 1840223383edSEnrico Granata { 1841223383edSEnrico Granata } 1842223383edSEnrico Granata 18435a988416SJim Ingham protected: 1844223383edSEnrico Granata bool 18455a988416SJim Ingham DoExecute (Args& command, CommandReturnObject &result) 1846223383edSEnrico Granata { 1847223383edSEnrico Granata 1848223383edSEnrico Granata m_interpreter.RemoveAllUser(); 1849223383edSEnrico Granata 1850223383edSEnrico Granata result.SetStatus (eReturnStatusSuccessFinishResult); 1851223383edSEnrico Granata 1852223383edSEnrico Granata return true; 1853223383edSEnrico Granata } 1854223383edSEnrico Granata }; 1855223383edSEnrico Granata 1856223383edSEnrico Granata //------------------------------------------------------------------------- 1857223383edSEnrico Granata // CommandObjectCommandsScriptDelete 1858223383edSEnrico Granata //------------------------------------------------------------------------- 1859223383edSEnrico Granata 18605a988416SJim Ingham class CommandObjectCommandsScriptDelete : public CommandObjectParsed 1861223383edSEnrico Granata { 1862223383edSEnrico Granata public: 1863223383edSEnrico Granata CommandObjectCommandsScriptDelete(CommandInterpreter &interpreter) : 18645a988416SJim Ingham CommandObjectParsed (interpreter, 1865223383edSEnrico Granata "command script delete", 1866223383edSEnrico Granata "Delete a scripted command.", 1867223383edSEnrico Granata NULL) 1868223383edSEnrico Granata { 1869223383edSEnrico Granata CommandArgumentEntry arg1; 1870223383edSEnrico Granata CommandArgumentData cmd_arg; 1871223383edSEnrico Granata 1872223383edSEnrico Granata // Define the first (and only) variant of this arg. 1873223383edSEnrico Granata cmd_arg.arg_type = eArgTypeCommandName; 1874223383edSEnrico Granata cmd_arg.arg_repetition = eArgRepeatPlain; 1875223383edSEnrico Granata 1876223383edSEnrico Granata // There is only one variant this argument could be; put it into the argument entry. 1877223383edSEnrico Granata arg1.push_back (cmd_arg); 1878223383edSEnrico Granata 1879223383edSEnrico Granata // Push the data for the first argument into the m_arguments vector. 1880223383edSEnrico Granata m_arguments.push_back (arg1); 1881223383edSEnrico Granata } 1882223383edSEnrico Granata 1883223383edSEnrico Granata ~CommandObjectCommandsScriptDelete () 1884223383edSEnrico Granata { 1885223383edSEnrico Granata } 1886223383edSEnrico Granata 18875a988416SJim Ingham protected: 1888223383edSEnrico Granata bool 18895a988416SJim Ingham DoExecute (Args& command, CommandReturnObject &result) 1890223383edSEnrico Granata { 1891223383edSEnrico Granata 18925a988416SJim Ingham size_t argc = command.GetArgumentCount(); 1893223383edSEnrico Granata 1894223383edSEnrico Granata if (argc != 1) 1895223383edSEnrico Granata { 1896223383edSEnrico Granata result.AppendError ("'command script delete' requires one argument"); 1897223383edSEnrico Granata result.SetStatus (eReturnStatusFailed); 1898223383edSEnrico Granata return false; 1899223383edSEnrico Granata } 1900223383edSEnrico Granata 19015a988416SJim Ingham const char* cmd_name = command.GetArgumentAtIndex(0); 1902223383edSEnrico Granata 1903223383edSEnrico Granata if (cmd_name && *cmd_name && m_interpreter.HasUserCommands() && m_interpreter.UserCommandExists(cmd_name)) 1904223383edSEnrico Granata { 1905223383edSEnrico Granata m_interpreter.RemoveUser(cmd_name); 1906223383edSEnrico Granata result.SetStatus (eReturnStatusSuccessFinishResult); 1907223383edSEnrico Granata } 1908223383edSEnrico Granata else 1909223383edSEnrico Granata { 1910223383edSEnrico Granata result.AppendErrorWithFormat ("command %s not found", cmd_name); 1911223383edSEnrico Granata result.SetStatus (eReturnStatusFailed); 1912223383edSEnrico Granata } 1913223383edSEnrico Granata 1914223383edSEnrico Granata return result.Succeeded(); 1915223383edSEnrico Granata 1916223383edSEnrico Granata } 1917223383edSEnrico Granata }; 1918223383edSEnrico Granata 1919223383edSEnrico Granata #pragma mark CommandObjectMultiwordCommandsScript 1920223383edSEnrico Granata 1921223383edSEnrico Granata //------------------------------------------------------------------------- 1922223383edSEnrico Granata // CommandObjectMultiwordCommandsScript 1923223383edSEnrico Granata //------------------------------------------------------------------------- 1924223383edSEnrico Granata 1925223383edSEnrico Granata class CommandObjectMultiwordCommandsScript : public CommandObjectMultiword 1926223383edSEnrico Granata { 1927223383edSEnrico Granata public: 1928223383edSEnrico Granata CommandObjectMultiwordCommandsScript (CommandInterpreter &interpreter) : 1929223383edSEnrico Granata CommandObjectMultiword (interpreter, 1930223383edSEnrico Granata "command script", 1931223383edSEnrico Granata "A set of commands for managing or customizing script commands.", 1932223383edSEnrico Granata "command script <subcommand> [<subcommand-options>]") 1933223383edSEnrico Granata { 1934223383edSEnrico Granata LoadSubCommand ("add", CommandObjectSP (new CommandObjectCommandsScriptAdd (interpreter))); 1935223383edSEnrico Granata LoadSubCommand ("delete", CommandObjectSP (new CommandObjectCommandsScriptDelete (interpreter))); 1936223383edSEnrico Granata LoadSubCommand ("clear", CommandObjectSP (new CommandObjectCommandsScriptClear (interpreter))); 1937223383edSEnrico Granata LoadSubCommand ("list", CommandObjectSP (new CommandObjectCommandsScriptList (interpreter))); 1938a9dbf432SEnrico Granata LoadSubCommand ("import", CommandObjectSP (new CommandObjectCommandsScriptImport (interpreter))); 1939223383edSEnrico Granata } 1940223383edSEnrico Granata 1941223383edSEnrico Granata ~CommandObjectMultiwordCommandsScript () 1942223383edSEnrico Granata { 1943223383edSEnrico Granata } 1944223383edSEnrico Granata 1945223383edSEnrico Granata }; 1946223383edSEnrico Granata 1947223383edSEnrico Granata 1948ebc09c36SJim Ingham #pragma mark CommandObjectMultiwordCommands 1949ebc09c36SJim Ingham 1950ebc09c36SJim Ingham //------------------------------------------------------------------------- 1951ebc09c36SJim Ingham // CommandObjectMultiwordCommands 1952ebc09c36SJim Ingham //------------------------------------------------------------------------- 1953ebc09c36SJim Ingham 1954ebc09c36SJim Ingham CommandObjectMultiwordCommands::CommandObjectMultiwordCommands (CommandInterpreter &interpreter) : 1955a7015092SGreg Clayton CommandObjectMultiword (interpreter, 19560e5e5a79SGreg Clayton "command", 19573f4c09c1SCaroline Tice "A set of commands for managing or customizing the debugger commands.", 19580e5e5a79SGreg Clayton "command <subcommand> [<subcommand-options>]") 1959ebc09c36SJim Ingham { 1960a7015092SGreg Clayton LoadSubCommand ("source", CommandObjectSP (new CommandObjectCommandsSource (interpreter))); 1961a7015092SGreg Clayton LoadSubCommand ("alias", CommandObjectSP (new CommandObjectCommandsAlias (interpreter))); 1962a7015092SGreg Clayton LoadSubCommand ("unalias", CommandObjectSP (new CommandObjectCommandsUnalias (interpreter))); 1963de164aaaSGreg Clayton LoadSubCommand ("regex", CommandObjectSP (new CommandObjectCommandsAddRegex (interpreter))); 1964a5a97ebeSJim Ingham LoadSubCommand ("history", CommandObjectSP (new CommandObjectCommandsHistory (interpreter))); 1965223383edSEnrico Granata LoadSubCommand ("script", CommandObjectSP (new CommandObjectMultiwordCommandsScript (interpreter))); 1966ebc09c36SJim Ingham } 1967ebc09c36SJim Ingham 1968ebc09c36SJim Ingham CommandObjectMultiwordCommands::~CommandObjectMultiwordCommands () 1969ebc09c36SJim Ingham { 1970ebc09c36SJim Ingham } 1971ebc09c36SJim Ingham 1972