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 { 229*d37221dcSZachary Turner { LLDB_OPT_SET_1, false, "count", 'c', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeUnsignedInteger, "How many history commands to print."}, 230*d37221dcSZachary 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)."}, 231*d37221dcSZachary Turner { LLDB_OPT_SET_1, false, "end-index", 'e', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeUnsignedInteger, "Index at which to stop printing history commands."}, 232*d37221dcSZachary Turner { LLDB_OPT_SET_2, false, "clear", 'C', OptionParser::eNoArgument, NULL, NULL, 0, eArgTypeBoolean, "Clears the current command history."}, 233*d37221dcSZachary 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 390340b0309SGreg Clayton LazyBool print_command = m_options.m_silent_run.GetCurrentValue() ? eLazyBoolNo : eLazyBoolYes; 391e16c50a1SJim Ingham m_interpreter.HandleCommandsFromFile (cmd_file, 392e16c50a1SJim Ingham exe_ctx, 393340b0309SGreg Clayton m_options.m_stop_on_continue.GetCurrentValue() ? eLazyBoolYes : eLazyBoolNo, // Stop on continue 394340b0309SGreg Clayton m_options.m_stop_on_error.GetCurrentValue() ? eLazyBoolYes : eLazyBoolNo, // Stop on error 395340b0309SGreg Clayton print_command, // Echo command 396340b0309SGreg Clayton print_command, // Print command output 397340b0309SGreg Clayton eLazyBoolCalculate, // Add to history 398e16c50a1SJim Ingham result); 399340b0309SGreg Clayton 400340b0309SGreg Clayton } 401340b0309SGreg Clayton else 402340b0309SGreg Clayton { 403340b0309SGreg Clayton // No options were set, inherit any settings from nested "command source" commands, 404340b0309SGreg Clayton // or set to sane default settings... 405340b0309SGreg Clayton m_interpreter.HandleCommandsFromFile (cmd_file, 406340b0309SGreg Clayton exe_ctx, 407340b0309SGreg Clayton eLazyBoolCalculate, // Stop on continue 408340b0309SGreg Clayton eLazyBoolCalculate, // Stop on error 409340b0309SGreg Clayton eLazyBoolCalculate, // Echo command 410340b0309SGreg Clayton eLazyBoolCalculate, // Print command output 411340b0309SGreg Clayton eLazyBoolCalculate, // Add to history 412340b0309SGreg Clayton result); 413340b0309SGreg Clayton 414340b0309SGreg Clayton } 415ebc09c36SJim Ingham } 416ebc09c36SJim Ingham else 417ebc09c36SJim Ingham { 418ebc09c36SJim Ingham result.AppendErrorWithFormat("'%s' takes exactly one executable filename argument.\n", GetCommandName()); 419ebc09c36SJim Ingham result.SetStatus (eReturnStatusFailed); 420ebc09c36SJim Ingham } 421ebc09c36SJim Ingham return result.Succeeded(); 422ebc09c36SJim Ingham 423ebc09c36SJim Ingham } 4245a988416SJim Ingham CommandOptions m_options; 425ebc09c36SJim Ingham }; 426ebc09c36SJim Ingham 427e0d378b3SGreg Clayton OptionDefinition 428e16c50a1SJim Ingham CommandObjectCommandsSource::CommandOptions::g_option_table[] = 429e16c50a1SJim Ingham { 430*d37221dcSZachary Turner { LLDB_OPT_SET_ALL, false, "stop-on-error", 'e', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeBoolean, "If true, stop executing commands on error."}, 431*d37221dcSZachary Turner { LLDB_OPT_SET_ALL, false, "stop-on-continue", 'c', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeBoolean, "If true, stop executing commands on continue."}, 432*d37221dcSZachary Turner { LLDB_OPT_SET_ALL, false, "silent-run", 's', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeBoolean, "If true don't echo commands while executing."}, 433*d37221dcSZachary Turner { 0, false, NULL, 0, 0, NULL, NULL, 0, eArgTypeNone, NULL } 434e16c50a1SJim Ingham }; 435e16c50a1SJim Ingham 436ebc09c36SJim Ingham #pragma mark CommandObjectCommandsAlias 437ebc09c36SJim Ingham //------------------------------------------------------------------------- 438ebc09c36SJim Ingham // CommandObjectCommandsAlias 439ebc09c36SJim Ingham //------------------------------------------------------------------------- 440ebc09c36SJim Ingham 441be93a35aSEnrico Granata static const char *g_python_command_instructions = "Enter your Python command(s). Type 'DONE' to end.\n" 442be93a35aSEnrico Granata "You must define a Python function with this signature:\n" 44344d93782SGreg Clayton "def my_command_impl(debugger, args, result, internal_dict):\n"; 444be93a35aSEnrico Granata 445be93a35aSEnrico Granata 4465a988416SJim Ingham class CommandObjectCommandsAlias : public CommandObjectRaw 447ebc09c36SJim Ingham { 448be93a35aSEnrico Granata 449be93a35aSEnrico Granata 450ebc09c36SJim Ingham public: 451a7015092SGreg Clayton CommandObjectCommandsAlias (CommandInterpreter &interpreter) : 4525a988416SJim Ingham CommandObjectRaw (interpreter, 4530e5e5a79SGreg Clayton "command alias", 454e3d26315SCaroline Tice "Allow users to define their own debugger command abbreviations.", 455405fe67fSCaroline Tice NULL) 456ebc09c36SJim Ingham { 457ebc09c36SJim Ingham SetHelpLong( 458ebc09c36SJim Ingham "'alias' allows the user to create a short-cut or abbreviation for long \n\ 459ebc09c36SJim Ingham commands, multi-word commands, and commands that take particular options. \n\ 460ebc09c36SJim Ingham Below are some simple examples of how one might use the 'alias' command: \n\ 46169c12ccbSJason Molenda \n 'command alias sc script' // Creates the abbreviation 'sc' for the 'script' \n\ 462ebc09c36SJim Ingham // command. \n\ 46369c12ccbSJason Molenda 'command alias bp breakpoint' // Creates the abbreviation 'bp' for the 'breakpoint' \n\ 464ebc09c36SJim Ingham // command. Since breakpoint commands are two-word \n\ 465ebc09c36SJim Ingham // commands, the user will still need to enter the \n\ 466ebc09c36SJim Ingham // second word after 'bp', e.g. 'bp enable' or \n\ 467ebc09c36SJim Ingham // 'bp delete'. \n\ 46869c12ccbSJason Molenda 'command alias bpl breakpoint list' // Creates the abbreviation 'bpl' for the \n\ 469ebc09c36SJim Ingham // two-word command 'breakpoint list'. \n\ 470ebc09c36SJim Ingham \nAn alias can include some options for the command, with the values either \n\ 471ebc09c36SJim Ingham filled in at the time the alias is created, or specified as positional \n\ 472ebc09c36SJim Ingham arguments, to be filled in when the alias is invoked. The following example \n\ 473ebc09c36SJim Ingham shows how to create aliases with options: \n\ 474ebc09c36SJim Ingham \n\ 47569c12ccbSJason Molenda 'command alias bfl breakpoint set -f %1 -l %2' \n\ 476ebc09c36SJim Ingham \nThis creates the abbreviation 'bfl' (for break-file-line), with the -f and -l \n\ 477ebc09c36SJim Ingham options already part of the alias. So if the user wants to set a breakpoint \n\ 478ebc09c36SJim Ingham by file and line without explicitly having to use the -f and -l options, the \n\ 479ebc09c36SJim Ingham user can now use 'bfl' instead. The '%1' and '%2' are positional placeholders \n\ 480ebc09c36SJim Ingham for the actual arguments that will be passed when the alias command is used. \n\ 481ebc09c36SJim Ingham The number in the placeholder refers to the position/order the actual value \n\ 48281ded935SJim Ingham occupies when the alias is used. All the occurrences of '%1' in the alias \n\ 483ebc09c36SJim Ingham will be replaced with the first argument, all the occurrences of '%2' in the \n\ 484ebc09c36SJim Ingham alias will be replaced with the second argument, and so on. This also allows \n\ 485ebc09c36SJim Ingham actual arguments to be used multiple times within an alias (see 'process \n\ 48681ded935SJim Ingham launch' example below). \n\ 48781ded935SJim Ingham Note: the positional arguments must substitute as whole words in the resultant\n\ 48881ded935SJim Ingham command, so you can't at present do something like:\n\ 48981ded935SJim Ingham \n\ 49069c12ccbSJason Molenda command alias bcppfl breakpoint set -f %1.cpp -l %2\n\ 49181ded935SJim Ingham \n\ 49281ded935SJim Ingham to get the file extension \".cpp\" automatically appended. For more complex\n\ 49381ded935SJim Ingham aliasing, use the \"command regex\" command instead.\n\ 49481ded935SJim Ingham \nSo in the 'bfl' case, the actual file value will be \n\ 495ebc09c36SJim Ingham filled in with the first argument following 'bfl' and the actual line number \n\ 496ebc09c36SJim Ingham value will be filled in with the second argument. The user would use this \n\ 497ebc09c36SJim Ingham alias as follows: \n\ 49869c12ccbSJason Molenda \n (lldb) command alias bfl breakpoint set -f %1 -l %2 \n\ 499ebc09c36SJim Ingham <... some time later ...> \n\ 50009799af6SCaroline Tice (lldb) bfl my-file.c 137 \n\ 501ebc09c36SJim Ingham \nThis would be the same as if the user had entered \n\ 502ebc09c36SJim Ingham 'breakpoint set -f my-file.c -l 137'. \n\ 503ebc09c36SJim Ingham \nAnother example: \n\ 50469c12ccbSJason Molenda \n (lldb) command alias pltty process launch -s -o %1 -e %1 \n\ 50509799af6SCaroline Tice (lldb) pltty /dev/tty0 \n\ 506ebc09c36SJim Ingham // becomes 'process launch -s -o /dev/tty0 -e /dev/tty0' \n\ 507ebc09c36SJim Ingham \nIf the user always wanted to pass the same value to a particular option, the \n\ 508ebc09c36SJim Ingham alias could be defined with that value directly in the alias as a constant, \n\ 509ebc09c36SJim Ingham rather than using a positional placeholder: \n\ 51069c12ccbSJason Molenda \n command alias bl3 breakpoint set -f %1 -l 3 // Always sets a breakpoint on line \n\ 511ebc09c36SJim Ingham // 3 of whatever file is indicated. \n"); 512ebc09c36SJim Ingham 513405fe67fSCaroline Tice CommandArgumentEntry arg1; 514405fe67fSCaroline Tice CommandArgumentEntry arg2; 515405fe67fSCaroline Tice CommandArgumentEntry arg3; 516405fe67fSCaroline Tice CommandArgumentData alias_arg; 517405fe67fSCaroline Tice CommandArgumentData cmd_arg; 518405fe67fSCaroline Tice CommandArgumentData options_arg; 519405fe67fSCaroline Tice 520405fe67fSCaroline Tice // Define the first (and only) variant of this arg. 521405fe67fSCaroline Tice alias_arg.arg_type = eArgTypeAliasName; 522405fe67fSCaroline Tice alias_arg.arg_repetition = eArgRepeatPlain; 523405fe67fSCaroline Tice 524405fe67fSCaroline Tice // There is only one variant this argument could be; put it into the argument entry. 525405fe67fSCaroline Tice arg1.push_back (alias_arg); 526405fe67fSCaroline Tice 527405fe67fSCaroline Tice // Define the first (and only) variant of this arg. 528405fe67fSCaroline Tice cmd_arg.arg_type = eArgTypeCommandName; 529405fe67fSCaroline Tice cmd_arg.arg_repetition = eArgRepeatPlain; 530405fe67fSCaroline Tice 531405fe67fSCaroline Tice // There is only one variant this argument could be; put it into the argument entry. 532405fe67fSCaroline Tice arg2.push_back (cmd_arg); 533405fe67fSCaroline Tice 534405fe67fSCaroline Tice // Define the first (and only) variant of this arg. 535405fe67fSCaroline Tice options_arg.arg_type = eArgTypeAliasOptions; 536405fe67fSCaroline Tice options_arg.arg_repetition = eArgRepeatOptional; 537405fe67fSCaroline Tice 538405fe67fSCaroline Tice // There is only one variant this argument could be; put it into the argument entry. 539405fe67fSCaroline Tice arg3.push_back (options_arg); 540405fe67fSCaroline Tice 541405fe67fSCaroline Tice // Push the data for the first argument into the m_arguments vector. 542405fe67fSCaroline Tice m_arguments.push_back (arg1); 543405fe67fSCaroline Tice m_arguments.push_back (arg2); 544405fe67fSCaroline Tice m_arguments.push_back (arg3); 545ebc09c36SJim Ingham } 546ebc09c36SJim Ingham 547ebc09c36SJim Ingham ~CommandObjectCommandsAlias () 548ebc09c36SJim Ingham { 549ebc09c36SJim Ingham } 550ebc09c36SJim Ingham 5515a988416SJim Ingham protected: 5525a988416SJim Ingham virtual bool 5535a988416SJim Ingham DoExecute (const char *raw_command_line, CommandReturnObject &result) 554844d2303SCaroline Tice { 555844d2303SCaroline Tice Args args (raw_command_line); 556844d2303SCaroline Tice std::string raw_command_string (raw_command_line); 557844d2303SCaroline Tice 558844d2303SCaroline Tice size_t argc = args.GetArgumentCount(); 559844d2303SCaroline Tice 560844d2303SCaroline Tice if (argc < 2) 561844d2303SCaroline Tice { 562844d2303SCaroline Tice result.AppendError ("'alias' requires at least two arguments"); 563844d2303SCaroline Tice result.SetStatus (eReturnStatusFailed); 564844d2303SCaroline Tice return false; 565844d2303SCaroline Tice } 566844d2303SCaroline Tice 567844d2303SCaroline Tice // Get the alias command. 568844d2303SCaroline Tice 569844d2303SCaroline Tice const std::string alias_command = args.GetArgumentAtIndex (0); 570844d2303SCaroline Tice 571844d2303SCaroline Tice // Strip the new alias name off 'raw_command_string' (leave it on args, which gets passed to 'Execute', which 572844d2303SCaroline Tice // does the stripping itself. 573844d2303SCaroline Tice size_t pos = raw_command_string.find (alias_command); 574844d2303SCaroline Tice if (pos == 0) 575844d2303SCaroline Tice { 576844d2303SCaroline Tice raw_command_string = raw_command_string.substr (alias_command.size()); 577844d2303SCaroline Tice pos = raw_command_string.find_first_not_of (' '); 578844d2303SCaroline Tice if ((pos != std::string::npos) && (pos > 0)) 579844d2303SCaroline Tice raw_command_string = raw_command_string.substr (pos); 580844d2303SCaroline Tice } 581844d2303SCaroline Tice else 582844d2303SCaroline Tice { 583844d2303SCaroline Tice result.AppendError ("Error parsing command string. No alias created."); 584844d2303SCaroline Tice result.SetStatus (eReturnStatusFailed); 585844d2303SCaroline Tice return false; 586844d2303SCaroline Tice } 587844d2303SCaroline Tice 588844d2303SCaroline Tice 589844d2303SCaroline Tice // Verify that the command is alias-able. 590844d2303SCaroline Tice if (m_interpreter.CommandExists (alias_command.c_str())) 591844d2303SCaroline Tice { 592844d2303SCaroline Tice result.AppendErrorWithFormat ("'%s' is a permanent debugger command and cannot be redefined.\n", 593844d2303SCaroline Tice alias_command.c_str()); 594844d2303SCaroline Tice result.SetStatus (eReturnStatusFailed); 595844d2303SCaroline Tice return false; 596844d2303SCaroline Tice } 597844d2303SCaroline Tice 598844d2303SCaroline Tice // Get CommandObject that is being aliased. The command name is read from the front of raw_command_string. 599844d2303SCaroline Tice // raw_command_string is returned with the name of the command object stripped off the front. 600844d2303SCaroline Tice CommandObject *cmd_obj = m_interpreter.GetCommandObjectForCommand (raw_command_string); 601844d2303SCaroline Tice 602844d2303SCaroline Tice if (!cmd_obj) 603844d2303SCaroline Tice { 60486edbf41SGreg Clayton result.AppendErrorWithFormat ("invalid command given to 'alias'. '%s' does not begin with a valid command." 605844d2303SCaroline Tice " No alias created.", raw_command_string.c_str()); 606844d2303SCaroline Tice result.SetStatus (eReturnStatusFailed); 607844d2303SCaroline Tice return false; 608844d2303SCaroline Tice } 609844d2303SCaroline Tice else if (!cmd_obj->WantsRawCommandString ()) 610844d2303SCaroline Tice { 611844d2303SCaroline Tice // Note that args was initialized with the original command, and has not been updated to this point. 612844d2303SCaroline Tice // Therefore can we pass it to the version of Execute that does not need/expect raw input in the alias. 6135a988416SJim Ingham return HandleAliasingNormalCommand (args, result); 614844d2303SCaroline Tice } 615844d2303SCaroline Tice else 616844d2303SCaroline Tice { 6175a988416SJim Ingham return HandleAliasingRawCommand (alias_command, raw_command_string, *cmd_obj, result); 6185a988416SJim Ingham } 6195a988416SJim Ingham return result.Succeeded(); 6205a988416SJim Ingham } 6215a988416SJim Ingham 6225a988416SJim Ingham bool 6235a988416SJim Ingham HandleAliasingRawCommand (const std::string &alias_command, std::string &raw_command_string, CommandObject &cmd_obj, CommandReturnObject &result) 6245a988416SJim Ingham { 625844d2303SCaroline Tice // Verify & handle any options/arguments passed to the alias command 626844d2303SCaroline Tice 627844d2303SCaroline Tice OptionArgVectorSP option_arg_vector_sp = OptionArgVectorSP (new OptionArgVector); 628844d2303SCaroline Tice OptionArgVector *option_arg_vector = option_arg_vector_sp.get(); 629844d2303SCaroline Tice 6305a988416SJim Ingham CommandObjectSP cmd_obj_sp = m_interpreter.GetCommandSPExact (cmd_obj.GetCommandName(), false); 631844d2303SCaroline Tice 632ca90c47eSCaroline Tice if (!m_interpreter.ProcessAliasOptionsArgs (cmd_obj_sp, raw_command_string.c_str(), option_arg_vector_sp)) 633844d2303SCaroline Tice { 634844d2303SCaroline Tice result.AppendError ("Unable to create requested alias.\n"); 635ca90c47eSCaroline Tice result.SetStatus (eReturnStatusFailed); 636844d2303SCaroline Tice return false; 637844d2303SCaroline Tice } 638844d2303SCaroline Tice 639844d2303SCaroline Tice // Create the alias 640844d2303SCaroline Tice if (m_interpreter.AliasExists (alias_command.c_str()) 641844d2303SCaroline Tice || m_interpreter.UserCommandExists (alias_command.c_str())) 642844d2303SCaroline Tice { 643844d2303SCaroline Tice OptionArgVectorSP temp_option_arg_sp (m_interpreter.GetAliasOptions (alias_command.c_str())); 644844d2303SCaroline Tice if (temp_option_arg_sp.get()) 645844d2303SCaroline Tice { 646844d2303SCaroline Tice if (option_arg_vector->size() == 0) 647844d2303SCaroline Tice m_interpreter.RemoveAliasOptions (alias_command.c_str()); 648844d2303SCaroline Tice } 649844d2303SCaroline Tice result.AppendWarningWithFormat ("Overwriting existing definition for '%s'.\n", 650844d2303SCaroline Tice alias_command.c_str()); 651844d2303SCaroline Tice } 652844d2303SCaroline Tice 653472362e6SCaroline Tice if (cmd_obj_sp) 654472362e6SCaroline Tice { 655844d2303SCaroline Tice m_interpreter.AddAlias (alias_command.c_str(), cmd_obj_sp); 656844d2303SCaroline Tice if (option_arg_vector->size() > 0) 657844d2303SCaroline Tice m_interpreter.AddOrReplaceAliasOptions (alias_command.c_str(), option_arg_vector_sp); 658844d2303SCaroline Tice result.SetStatus (eReturnStatusSuccessFinishNoResult); 659844d2303SCaroline Tice } 660472362e6SCaroline Tice else 661472362e6SCaroline Tice { 662472362e6SCaroline Tice result.AppendError ("Unable to create requested alias.\n"); 663472362e6SCaroline Tice result.SetStatus (eReturnStatusFailed); 664472362e6SCaroline Tice } 665844d2303SCaroline Tice return result.Succeeded (); 666844d2303SCaroline Tice } 667ebc09c36SJim Ingham 668ebc09c36SJim Ingham bool 6695a988416SJim Ingham HandleAliasingNormalCommand (Args& args, CommandReturnObject &result) 670ebc09c36SJim Ingham { 671867b185dSCaroline Tice size_t argc = args.GetArgumentCount(); 672ebc09c36SJim Ingham 673ebc09c36SJim Ingham if (argc < 2) 674ebc09c36SJim Ingham { 675ebc09c36SJim Ingham result.AppendError ("'alias' requires at least two arguments"); 676ebc09c36SJim Ingham result.SetStatus (eReturnStatusFailed); 677ebc09c36SJim Ingham return false; 678ebc09c36SJim Ingham } 679ebc09c36SJim Ingham 680ebc09c36SJim Ingham const std::string alias_command = args.GetArgumentAtIndex(0); 681ebc09c36SJim Ingham const std::string actual_command = args.GetArgumentAtIndex(1); 682ebc09c36SJim Ingham 683ebc09c36SJim Ingham args.Shift(); // Shift the alias command word off the argument vector. 684ebc09c36SJim Ingham args.Shift(); // Shift the old command word off the argument vector. 685ebc09c36SJim Ingham 686ebc09c36SJim Ingham // Verify that the command is alias'able, and get the appropriate command object. 687ebc09c36SJim Ingham 688a7015092SGreg Clayton if (m_interpreter.CommandExists (alias_command.c_str())) 689ebc09c36SJim Ingham { 690ebc09c36SJim Ingham result.AppendErrorWithFormat ("'%s' is a permanent debugger command and cannot be redefined.\n", 691ebc09c36SJim Ingham alias_command.c_str()); 692ebc09c36SJim Ingham result.SetStatus (eReturnStatusFailed); 693ebc09c36SJim Ingham } 694ebc09c36SJim Ingham else 695ebc09c36SJim Ingham { 696a7015092SGreg Clayton CommandObjectSP command_obj_sp(m_interpreter.GetCommandSPExact (actual_command.c_str(), true)); 697ebc09c36SJim Ingham CommandObjectSP subcommand_obj_sp; 698ebc09c36SJim Ingham bool use_subcommand = false; 699ebc09c36SJim Ingham if (command_obj_sp.get()) 700ebc09c36SJim Ingham { 701ebc09c36SJim Ingham CommandObject *cmd_obj = command_obj_sp.get(); 702c982c768SGreg Clayton CommandObject *sub_cmd_obj = NULL; 703ebc09c36SJim Ingham OptionArgVectorSP option_arg_vector_sp = OptionArgVectorSP (new OptionArgVector); 704ebc09c36SJim Ingham OptionArgVector *option_arg_vector = option_arg_vector_sp.get(); 705ebc09c36SJim Ingham 706844d2303SCaroline Tice while (cmd_obj->IsMultiwordObject() && args.GetArgumentCount() > 0) 707ebc09c36SJim Ingham { 708ebc09c36SJim Ingham if (argc >= 3) 709ebc09c36SJim Ingham { 710ebc09c36SJim Ingham const std::string sub_command = args.GetArgumentAtIndex(0); 711ebc09c36SJim Ingham assert (sub_command.length() != 0); 712998255bfSGreg Clayton subcommand_obj_sp = cmd_obj->GetSubcommandSP (sub_command.c_str()); 713ebc09c36SJim Ingham if (subcommand_obj_sp.get()) 714ebc09c36SJim Ingham { 715ebc09c36SJim Ingham sub_cmd_obj = subcommand_obj_sp.get(); 716ebc09c36SJim Ingham use_subcommand = true; 717ebc09c36SJim Ingham args.Shift(); // Shift the sub_command word off the argument vector. 718844d2303SCaroline Tice cmd_obj = sub_cmd_obj; 719ebc09c36SJim Ingham } 720ebc09c36SJim Ingham else 721ebc09c36SJim Ingham { 722f415eeb4SCaroline Tice result.AppendErrorWithFormat("'%s' is not a valid sub-command of '%s'. " 723f415eeb4SCaroline Tice "Unable to create alias.\n", 724f415eeb4SCaroline Tice sub_command.c_str(), actual_command.c_str()); 725ebc09c36SJim Ingham result.SetStatus (eReturnStatusFailed); 726ebc09c36SJim Ingham return false; 727ebc09c36SJim Ingham } 728ebc09c36SJim Ingham } 729ebc09c36SJim Ingham } 730ebc09c36SJim Ingham 731ebc09c36SJim Ingham // Verify & handle any options/arguments passed to the alias command 732ebc09c36SJim Ingham 733ebc09c36SJim Ingham if (args.GetArgumentCount () > 0) 734ebc09c36SJim Ingham { 735ca90c47eSCaroline Tice CommandObjectSP tmp_sp = m_interpreter.GetCommandSPExact (cmd_obj->GetCommandName(), false); 736ebc09c36SJim Ingham if (use_subcommand) 737ca90c47eSCaroline Tice tmp_sp = m_interpreter.GetCommandSPExact (sub_cmd_obj->GetCommandName(), false); 738ca90c47eSCaroline Tice 739ca90c47eSCaroline Tice std::string args_string; 740ca90c47eSCaroline Tice args.GetCommandString (args_string); 741ca90c47eSCaroline Tice 742ca90c47eSCaroline Tice if (!m_interpreter.ProcessAliasOptionsArgs (tmp_sp, args_string.c_str(), option_arg_vector_sp)) 743ebc09c36SJim Ingham { 744ca90c47eSCaroline Tice result.AppendError ("Unable to create requested alias.\n"); 745ca90c47eSCaroline Tice result.SetStatus (eReturnStatusFailed); 746e7941795SCaroline Tice return false; 747867b185dSCaroline Tice } 748867b185dSCaroline Tice } 749867b185dSCaroline Tice 750ebc09c36SJim Ingham // Create the alias. 751ebc09c36SJim Ingham 752a7015092SGreg Clayton if (m_interpreter.AliasExists (alias_command.c_str()) 753a7015092SGreg Clayton || m_interpreter.UserCommandExists (alias_command.c_str())) 754ebc09c36SJim Ingham { 755a7015092SGreg Clayton OptionArgVectorSP tmp_option_arg_sp (m_interpreter.GetAliasOptions (alias_command.c_str())); 756ebc09c36SJim Ingham if (tmp_option_arg_sp.get()) 757ebc09c36SJim Ingham { 758ebc09c36SJim Ingham if (option_arg_vector->size() == 0) 759a7015092SGreg Clayton m_interpreter.RemoveAliasOptions (alias_command.c_str()); 760ebc09c36SJim Ingham } 761ebc09c36SJim Ingham result.AppendWarningWithFormat ("Overwriting existing definition for '%s'.\n", 762ebc09c36SJim Ingham alias_command.c_str()); 763ebc09c36SJim Ingham } 764ebc09c36SJim Ingham 765ebc09c36SJim Ingham if (use_subcommand) 766a7015092SGreg Clayton m_interpreter.AddAlias (alias_command.c_str(), subcommand_obj_sp); 767ebc09c36SJim Ingham else 768a7015092SGreg Clayton m_interpreter.AddAlias (alias_command.c_str(), command_obj_sp); 769ebc09c36SJim Ingham if (option_arg_vector->size() > 0) 770a7015092SGreg Clayton m_interpreter.AddOrReplaceAliasOptions (alias_command.c_str(), option_arg_vector_sp); 771ebc09c36SJim Ingham result.SetStatus (eReturnStatusSuccessFinishNoResult); 772ebc09c36SJim Ingham } 773ebc09c36SJim Ingham else 774ebc09c36SJim Ingham { 775ebc09c36SJim Ingham result.AppendErrorWithFormat ("'%s' is not an existing command.\n", actual_command.c_str()); 776ebc09c36SJim Ingham result.SetStatus (eReturnStatusFailed); 777e7941795SCaroline Tice return false; 778ebc09c36SJim Ingham } 779ebc09c36SJim Ingham } 780ebc09c36SJim Ingham 781ebc09c36SJim Ingham return result.Succeeded(); 782ebc09c36SJim Ingham } 7835a988416SJim Ingham 784ebc09c36SJim Ingham }; 785ebc09c36SJim Ingham 786ebc09c36SJim Ingham #pragma mark CommandObjectCommandsUnalias 787ebc09c36SJim Ingham //------------------------------------------------------------------------- 788ebc09c36SJim Ingham // CommandObjectCommandsUnalias 789ebc09c36SJim Ingham //------------------------------------------------------------------------- 790ebc09c36SJim Ingham 7915a988416SJim Ingham class CommandObjectCommandsUnalias : public CommandObjectParsed 792ebc09c36SJim Ingham { 793ebc09c36SJim Ingham public: 794a7015092SGreg Clayton CommandObjectCommandsUnalias (CommandInterpreter &interpreter) : 7955a988416SJim Ingham CommandObjectParsed (interpreter, 7960e5e5a79SGreg Clayton "command unalias", 79786ddae50SCaroline Tice "Allow the user to remove/delete a user-defined command abbreviation.", 798405fe67fSCaroline Tice NULL) 799ebc09c36SJim Ingham { 800405fe67fSCaroline Tice CommandArgumentEntry arg; 801405fe67fSCaroline Tice CommandArgumentData alias_arg; 802405fe67fSCaroline Tice 803405fe67fSCaroline Tice // Define the first (and only) variant of this arg. 804405fe67fSCaroline Tice alias_arg.arg_type = eArgTypeAliasName; 805405fe67fSCaroline Tice alias_arg.arg_repetition = eArgRepeatPlain; 806405fe67fSCaroline Tice 807405fe67fSCaroline Tice // There is only one variant this argument could be; put it into the argument entry. 808405fe67fSCaroline Tice arg.push_back (alias_arg); 809405fe67fSCaroline Tice 810405fe67fSCaroline Tice // Push the data for the first argument into the m_arguments vector. 811405fe67fSCaroline Tice m_arguments.push_back (arg); 812ebc09c36SJim Ingham } 813ebc09c36SJim Ingham 814ebc09c36SJim Ingham ~CommandObjectCommandsUnalias() 815ebc09c36SJim Ingham { 816ebc09c36SJim Ingham } 817ebc09c36SJim Ingham 8185a988416SJim Ingham protected: 819ebc09c36SJim Ingham bool 8205a988416SJim Ingham DoExecute (Args& args, CommandReturnObject &result) 821ebc09c36SJim Ingham { 822ebc09c36SJim Ingham CommandObject::CommandMap::iterator pos; 823ebc09c36SJim Ingham CommandObject *cmd_obj; 824ebc09c36SJim Ingham 825ebc09c36SJim Ingham if (args.GetArgumentCount() != 0) 826ebc09c36SJim Ingham { 827ebc09c36SJim Ingham const char *command_name = args.GetArgumentAtIndex(0); 828a7015092SGreg Clayton cmd_obj = m_interpreter.GetCommandObject(command_name); 829ebc09c36SJim Ingham if (cmd_obj) 830ebc09c36SJim Ingham { 831a7015092SGreg Clayton if (m_interpreter.CommandExists (command_name)) 832ebc09c36SJim Ingham { 833ebc09c36SJim Ingham result.AppendErrorWithFormat ("'%s' is a permanent debugger command and cannot be removed.\n", 834ebc09c36SJim Ingham command_name); 835ebc09c36SJim Ingham result.SetStatus (eReturnStatusFailed); 836ebc09c36SJim Ingham } 837ebc09c36SJim Ingham else 838ebc09c36SJim Ingham { 839ebc09c36SJim Ingham 840a7015092SGreg Clayton if (m_interpreter.RemoveAlias (command_name) == false) 841ebc09c36SJim Ingham { 842a7015092SGreg Clayton if (m_interpreter.AliasExists (command_name)) 843ebc09c36SJim Ingham result.AppendErrorWithFormat ("Error occurred while attempting to unalias '%s'.\n", 844ebc09c36SJim Ingham command_name); 845ebc09c36SJim Ingham else 846ebc09c36SJim Ingham result.AppendErrorWithFormat ("'%s' is not an existing alias.\n", command_name); 847ebc09c36SJim Ingham result.SetStatus (eReturnStatusFailed); 848ebc09c36SJim Ingham } 849ebc09c36SJim Ingham else 850ebc09c36SJim Ingham result.SetStatus (eReturnStatusSuccessFinishNoResult); 851ebc09c36SJim Ingham } 852ebc09c36SJim Ingham } 853ebc09c36SJim Ingham else 854ebc09c36SJim Ingham { 855ebc09c36SJim Ingham result.AppendErrorWithFormat ("'%s' is not a known command.\nTry 'help' to see a " 856ebc09c36SJim Ingham "current list of commands.\n", 857ebc09c36SJim Ingham command_name); 858ebc09c36SJim Ingham result.SetStatus (eReturnStatusFailed); 859ebc09c36SJim Ingham } 860ebc09c36SJim Ingham } 861ebc09c36SJim Ingham else 862ebc09c36SJim Ingham { 863ebc09c36SJim Ingham result.AppendError ("must call 'unalias' with a valid alias"); 864ebc09c36SJim Ingham result.SetStatus (eReturnStatusFailed); 865ebc09c36SJim Ingham } 866ebc09c36SJim Ingham 867ebc09c36SJim Ingham return result.Succeeded(); 868ebc09c36SJim Ingham } 869ebc09c36SJim Ingham }; 870ebc09c36SJim Ingham 871de164aaaSGreg Clayton //------------------------------------------------------------------------- 872de164aaaSGreg Clayton // CommandObjectCommandsAddRegex 873de164aaaSGreg Clayton //------------------------------------------------------------------------- 8745a988416SJim Ingham #pragma mark CommandObjectCommandsAddRegex 875de164aaaSGreg Clayton 87644d93782SGreg Clayton class CommandObjectCommandsAddRegex : 87744d93782SGreg Clayton public CommandObjectParsed, 87844d93782SGreg Clayton public IOHandlerDelegate 879de164aaaSGreg Clayton { 880de164aaaSGreg Clayton public: 881de164aaaSGreg Clayton CommandObjectCommandsAddRegex (CommandInterpreter &interpreter) : 8825a988416SJim Ingham CommandObjectParsed (interpreter, 8830e5e5a79SGreg Clayton "command regex", 884de164aaaSGreg Clayton "Allow the user to create a regular expression command.", 8850e5e5a79SGreg Clayton "command regex <cmd-name> [s/<regex>/<subst>/ ...]"), 88644d93782SGreg Clayton IOHandlerDelegate(IOHandlerDelegate::Completion::LLDBCommand), 887de164aaaSGreg Clayton m_options (interpreter) 888de164aaaSGreg Clayton { 8890e5e5a79SGreg Clayton SetHelpLong( 8900e5e5a79SGreg Clayton "This command allows the user to create powerful regular expression commands\n" 8910e5e5a79SGreg Clayton "with substitutions. The regular expressions and substitutions are specified\n" 892d93c4a33SBruce Mitchener "using the regular expression substitution format of:\n" 8930e5e5a79SGreg Clayton "\n" 8940e5e5a79SGreg Clayton " s/<regex>/<subst>/\n" 8950e5e5a79SGreg Clayton "\n" 8960e5e5a79SGreg Clayton "<regex> is a regular expression that can use parenthesis to capture regular\n" 8970e5e5a79SGreg Clayton "expression input and substitute the captured matches in the output using %1\n" 8980e5e5a79SGreg Clayton "for the first match, %2 for the second, and so on.\n" 8990e5e5a79SGreg Clayton "\n" 9000e5e5a79SGreg Clayton "The regular expressions can all be specified on the command line if more than\n" 9010e5e5a79SGreg Clayton "one argument is provided. If just the command name is provided on the command\n" 9020e5e5a79SGreg Clayton "line, then the regular expressions and substitutions can be entered on separate\n" 9030e5e5a79SGreg Clayton " lines, followed by an empty line to terminate the command definition.\n" 9040e5e5a79SGreg Clayton "\n" 9050e5e5a79SGreg Clayton "EXAMPLES\n" 9060e5e5a79SGreg Clayton "\n" 907adc43c99SSean Callanan "The following example will define a regular expression command named 'f' that\n" 9080e5e5a79SGreg Clayton "will call 'finish' if there are no arguments, or 'frame select <frame-idx>' if\n" 9090e5e5a79SGreg Clayton "a number follows 'f':\n" 910adc43c99SSean Callanan "\n" 9110e5e5a79SGreg Clayton " (lldb) command regex f s/^$/finish/ 's/([0-9]+)/frame select %1/'\n" 912adc43c99SSean Callanan "\n" 9130e5e5a79SGreg Clayton ); 914de164aaaSGreg Clayton } 915de164aaaSGreg Clayton 916de164aaaSGreg Clayton ~CommandObjectCommandsAddRegex() 917de164aaaSGreg Clayton { 918de164aaaSGreg Clayton } 919de164aaaSGreg Clayton 920de164aaaSGreg Clayton 9215a988416SJim Ingham protected: 92244d93782SGreg Clayton 92344d93782SGreg Clayton virtual void 92444d93782SGreg Clayton IOHandlerActivated (IOHandler &io_handler) 92544d93782SGreg Clayton { 92644d93782SGreg Clayton StreamFileSP output_sp(io_handler.GetOutputStreamFile()); 92744d93782SGreg Clayton if (output_sp) 92844d93782SGreg Clayton { 92944d93782SGreg 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"); 93044d93782SGreg Clayton output_sp->Flush(); 93144d93782SGreg Clayton } 93244d93782SGreg Clayton } 93344d93782SGreg Clayton 93444d93782SGreg Clayton virtual void 93544d93782SGreg Clayton IOHandlerInputComplete (IOHandler &io_handler, std::string &data) 93644d93782SGreg Clayton { 93744d93782SGreg Clayton io_handler.SetIsDone(true); 93844d93782SGreg Clayton if (m_regex_cmd_ap.get()) 93944d93782SGreg Clayton { 94044d93782SGreg Clayton StringList lines; 94144d93782SGreg Clayton if (lines.SplitIntoLines (data)) 94244d93782SGreg Clayton { 94344d93782SGreg Clayton const size_t num_lines = lines.GetSize(); 94444d93782SGreg Clayton bool check_only = false; 94544d93782SGreg Clayton for (size_t i=0; i<num_lines; ++i) 94644d93782SGreg Clayton { 94744d93782SGreg Clayton printf ("regex[%zu] = %s\n", i, lines[i].c_str()); 94844d93782SGreg Clayton llvm::StringRef bytes_strref (lines[i]); 94944d93782SGreg Clayton Error error = AppendRegexSubstitution (bytes_strref, check_only); 95044d93782SGreg Clayton if (error.Fail()) 95144d93782SGreg Clayton { 95244d93782SGreg Clayton if (!m_interpreter.GetDebugger().GetCommandInterpreter().GetBatchCommandMode()) 95344d93782SGreg Clayton { 95444d93782SGreg Clayton StreamSP out_stream = m_interpreter.GetDebugger().GetAsyncOutputStream(); 95544d93782SGreg Clayton out_stream->Printf("error: %s\n", error.AsCString()); 95644d93782SGreg Clayton } 95744d93782SGreg Clayton } 95844d93782SGreg Clayton } 95944d93782SGreg Clayton } 96044d93782SGreg Clayton if (m_regex_cmd_ap->HasRegexEntries()) 96144d93782SGreg Clayton { 96244d93782SGreg Clayton CommandObjectSP cmd_sp (m_regex_cmd_ap.release()); 96344d93782SGreg Clayton m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); 96444d93782SGreg Clayton } 96544d93782SGreg Clayton } 96644d93782SGreg Clayton } 96744d93782SGreg Clayton 96844d93782SGreg Clayton virtual LineStatus 96944d93782SGreg Clayton IOHandlerLinesUpdated (IOHandler &io_handler, 97044d93782SGreg Clayton StringList &lines, 97144d93782SGreg Clayton uint32_t line_idx, 97244d93782SGreg Clayton Error &error) 97344d93782SGreg Clayton { 97444d93782SGreg Clayton if (line_idx == UINT32_MAX) 97544d93782SGreg Clayton { 97644d93782SGreg Clayton // Return true to indicate we are done getting lines (this 97744d93782SGreg Clayton // is a "fake" line - the real terminating blank line was 97844d93782SGreg Clayton // removed during a previous call with the code below) 97944d93782SGreg Clayton error.Clear(); 98044d93782SGreg Clayton return LineStatus::Done; 98144d93782SGreg Clayton } 98244d93782SGreg Clayton else 98344d93782SGreg Clayton { 98444d93782SGreg Clayton const size_t num_lines = lines.GetSize(); 98544d93782SGreg Clayton if (line_idx + 1 == num_lines) 98644d93782SGreg Clayton { 98744d93782SGreg Clayton // The last line was edited, if this line is empty, then we are done 98844d93782SGreg Clayton // getting our multiple lines. 98944d93782SGreg Clayton if (lines[line_idx].empty()) 99044d93782SGreg Clayton { 99144d93782SGreg Clayton // Remove the last empty line from "lines" so it doesn't appear 99244d93782SGreg Clayton // in our final expression and return true to indicate we are done 99344d93782SGreg Clayton // getting lines 99444d93782SGreg Clayton lines.PopBack(); 99544d93782SGreg Clayton return LineStatus::Done; 99644d93782SGreg Clayton } 99744d93782SGreg Clayton } 99844d93782SGreg Clayton // Check the current line to make sure it is formatted correctly 99944d93782SGreg Clayton bool check_only = true; 100044d93782SGreg Clayton llvm::StringRef regex_sed(lines[line_idx]); 100144d93782SGreg Clayton error = AppendRegexSubstitution (regex_sed, check_only); 100244d93782SGreg Clayton if (error.Fail()) 100344d93782SGreg Clayton { 100444d93782SGreg Clayton return LineStatus::Error; 100544d93782SGreg Clayton } 100644d93782SGreg Clayton else 100744d93782SGreg Clayton { 100844d93782SGreg Clayton return LineStatus::Success; 100944d93782SGreg Clayton } 101044d93782SGreg Clayton } 101144d93782SGreg Clayton } 101244d93782SGreg Clayton 1013de164aaaSGreg Clayton bool 10145a988416SJim Ingham DoExecute (Args& command, CommandReturnObject &result) 1015de164aaaSGreg Clayton { 10165a988416SJim Ingham const size_t argc = command.GetArgumentCount(); 10170e5e5a79SGreg Clayton if (argc == 0) 1018de164aaaSGreg Clayton { 101969c12ccbSJason Molenda result.AppendError ("usage: 'command regex <command-name> [s/<regex1>/<subst1>/ s/<regex2>/<subst2>/ ...]'\n"); 10200e5e5a79SGreg Clayton result.SetStatus (eReturnStatusFailed); 10210e5e5a79SGreg Clayton } 10220e5e5a79SGreg Clayton else 10230e5e5a79SGreg Clayton { 10240e5e5a79SGreg Clayton Error error; 10255a988416SJim Ingham const char *name = command.GetArgumentAtIndex(0); 1026de164aaaSGreg Clayton m_regex_cmd_ap.reset (new CommandObjectRegexCommand (m_interpreter, 1027de164aaaSGreg Clayton name, 1028de164aaaSGreg Clayton m_options.GetHelp (), 1029de164aaaSGreg Clayton m_options.GetSyntax (), 1030de164aaaSGreg Clayton 10)); 10310e5e5a79SGreg Clayton 10320e5e5a79SGreg Clayton if (argc == 1) 10330e5e5a79SGreg Clayton { 103444d93782SGreg Clayton Debugger &debugger = m_interpreter.GetDebugger(); 103544d93782SGreg Clayton const bool multiple_lines = true; // Get multiple lines 103644d93782SGreg Clayton IOHandlerSP io_handler_sp (new IOHandlerEditline (debugger, 103744d93782SGreg Clayton "lldb", // Name of input reader for history 103844d93782SGreg Clayton "\033[K> ", // Prompt and clear line 103944d93782SGreg Clayton multiple_lines, 1040f6913cd7SGreg Clayton 0, // Don't show line numbers 104144d93782SGreg Clayton *this)); 104244d93782SGreg Clayton 104344d93782SGreg Clayton if (io_handler_sp) 1044de164aaaSGreg Clayton { 104544d93782SGreg Clayton debugger.PushIOHandler(io_handler_sp); 1046de164aaaSGreg Clayton result.SetStatus (eReturnStatusSuccessFinishNoResult); 1047de164aaaSGreg Clayton } 1048de164aaaSGreg Clayton } 1049de164aaaSGreg Clayton else 1050de164aaaSGreg Clayton { 10510e5e5a79SGreg Clayton for (size_t arg_idx = 1; arg_idx < argc; ++arg_idx) 10520e5e5a79SGreg Clayton { 10535a988416SJim Ingham llvm::StringRef arg_strref (command.GetArgumentAtIndex(arg_idx)); 105444d93782SGreg Clayton bool check_only = false; 105544d93782SGreg Clayton error = AppendRegexSubstitution (arg_strref, check_only); 10560e5e5a79SGreg Clayton if (error.Fail()) 10570e5e5a79SGreg Clayton break; 10580e5e5a79SGreg Clayton } 10590e5e5a79SGreg Clayton 10600e5e5a79SGreg Clayton if (error.Success()) 10610e5e5a79SGreg Clayton { 10620e5e5a79SGreg Clayton AddRegexCommandToInterpreter(); 10630e5e5a79SGreg Clayton } 10640e5e5a79SGreg Clayton } 10650e5e5a79SGreg Clayton if (error.Fail()) 10660e5e5a79SGreg Clayton { 10670e5e5a79SGreg Clayton result.AppendError (error.AsCString()); 1068de164aaaSGreg Clayton result.SetStatus (eReturnStatusFailed); 1069de164aaaSGreg Clayton } 10700e5e5a79SGreg Clayton } 10710e5e5a79SGreg Clayton 1072de164aaaSGreg Clayton return result.Succeeded(); 1073de164aaaSGreg Clayton } 1074de164aaaSGreg Clayton 10750e5e5a79SGreg Clayton Error 107644d93782SGreg Clayton AppendRegexSubstitution (const llvm::StringRef ®ex_sed, bool check_only) 1077de164aaaSGreg Clayton { 10780e5e5a79SGreg Clayton Error error; 10790e5e5a79SGreg Clayton 10800e5e5a79SGreg Clayton if (m_regex_cmd_ap.get() == NULL) 1081de164aaaSGreg Clayton { 10820e5e5a79SGreg Clayton error.SetErrorStringWithFormat("invalid regular expression command object for: '%.*s'", 10830e5e5a79SGreg Clayton (int)regex_sed.size(), 10840e5e5a79SGreg Clayton regex_sed.data()); 10850e5e5a79SGreg Clayton return error; 1086de164aaaSGreg Clayton } 10870e5e5a79SGreg Clayton 10880e5e5a79SGreg Clayton size_t regex_sed_size = regex_sed.size(); 10890e5e5a79SGreg Clayton 10900e5e5a79SGreg Clayton if (regex_sed_size <= 1) 10910e5e5a79SGreg Clayton { 10920e5e5a79SGreg Clayton error.SetErrorStringWithFormat("regular expression substitution string is too short: '%.*s'", 10930e5e5a79SGreg Clayton (int)regex_sed.size(), 10940e5e5a79SGreg Clayton regex_sed.data()); 10950e5e5a79SGreg Clayton return error; 10960e5e5a79SGreg Clayton } 10970e5e5a79SGreg Clayton 10980e5e5a79SGreg Clayton if (regex_sed[0] != 's') 10990e5e5a79SGreg Clayton { 11000e5e5a79SGreg Clayton error.SetErrorStringWithFormat("regular expression substitution string doesn't start with 's': '%.*s'", 11010e5e5a79SGreg Clayton (int)regex_sed.size(), 11020e5e5a79SGreg Clayton regex_sed.data()); 11030e5e5a79SGreg Clayton return error; 11040e5e5a79SGreg Clayton } 11050e5e5a79SGreg Clayton const size_t first_separator_char_pos = 1; 11060e5e5a79SGreg Clayton // use the char that follows 's' as the regex separator character 11070e5e5a79SGreg Clayton // so we can have "s/<regex>/<subst>/" or "s|<regex>|<subst>|" 11080e5e5a79SGreg Clayton const char separator_char = regex_sed[first_separator_char_pos]; 11090e5e5a79SGreg Clayton const size_t second_separator_char_pos = regex_sed.find (separator_char, first_separator_char_pos + 1); 11100e5e5a79SGreg Clayton 11110e5e5a79SGreg Clayton if (second_separator_char_pos == std::string::npos) 11120e5e5a79SGreg Clayton { 11130e5e5a79SGreg Clayton error.SetErrorStringWithFormat("missing second '%c' separator char after '%.*s'", 11140e5e5a79SGreg Clayton separator_char, 11150e5e5a79SGreg Clayton (int)(regex_sed.size() - first_separator_char_pos - 1), 11160e5e5a79SGreg Clayton regex_sed.data() + (first_separator_char_pos + 1)); 11170e5e5a79SGreg Clayton return error; 11180e5e5a79SGreg Clayton } 11190e5e5a79SGreg Clayton 11200e5e5a79SGreg Clayton const size_t third_separator_char_pos = regex_sed.find (separator_char, second_separator_char_pos + 1); 11210e5e5a79SGreg Clayton 11220e5e5a79SGreg Clayton if (third_separator_char_pos == std::string::npos) 11230e5e5a79SGreg Clayton { 11240e5e5a79SGreg Clayton error.SetErrorStringWithFormat("missing third '%c' separator char after '%.*s'", 11250e5e5a79SGreg Clayton separator_char, 11260e5e5a79SGreg Clayton (int)(regex_sed.size() - second_separator_char_pos - 1), 11270e5e5a79SGreg Clayton regex_sed.data() + (second_separator_char_pos + 1)); 11280e5e5a79SGreg Clayton return error; 11290e5e5a79SGreg Clayton } 11300e5e5a79SGreg Clayton 11310e5e5a79SGreg Clayton if (third_separator_char_pos != regex_sed_size - 1) 11320e5e5a79SGreg Clayton { 11330e5e5a79SGreg Clayton // Make sure that everything that follows the last regex 11340e5e5a79SGreg Clayton // separator char 11350e5e5a79SGreg Clayton if (regex_sed.find_first_not_of("\t\n\v\f\r ", third_separator_char_pos + 1) != std::string::npos) 11360e5e5a79SGreg Clayton { 11370e5e5a79SGreg Clayton error.SetErrorStringWithFormat("extra data found after the '%.*s' regular expression substitution string: '%.*s'", 11380e5e5a79SGreg Clayton (int)third_separator_char_pos + 1, 11390e5e5a79SGreg Clayton regex_sed.data(), 11400e5e5a79SGreg Clayton (int)(regex_sed.size() - third_separator_char_pos - 1), 11410e5e5a79SGreg Clayton regex_sed.data() + (third_separator_char_pos + 1)); 11420e5e5a79SGreg Clayton return error; 11430e5e5a79SGreg Clayton } 11440e5e5a79SGreg Clayton 11450e5e5a79SGreg Clayton } 11460e5e5a79SGreg Clayton else if (first_separator_char_pos + 1 == second_separator_char_pos) 11470e5e5a79SGreg Clayton { 11480e5e5a79SGreg Clayton error.SetErrorStringWithFormat("<regex> can't be empty in 's%c<regex>%c<subst>%c' string: '%.*s'", 11490e5e5a79SGreg Clayton separator_char, 11500e5e5a79SGreg Clayton separator_char, 11510e5e5a79SGreg Clayton separator_char, 11520e5e5a79SGreg Clayton (int)regex_sed.size(), 11530e5e5a79SGreg Clayton regex_sed.data()); 11540e5e5a79SGreg Clayton return error; 11550e5e5a79SGreg Clayton } 11560e5e5a79SGreg Clayton else if (second_separator_char_pos + 1 == third_separator_char_pos) 11570e5e5a79SGreg Clayton { 11580e5e5a79SGreg Clayton error.SetErrorStringWithFormat("<subst> can't be empty in 's%c<regex>%c<subst>%c' string: '%.*s'", 11590e5e5a79SGreg Clayton separator_char, 11600e5e5a79SGreg Clayton separator_char, 11610e5e5a79SGreg Clayton separator_char, 11620e5e5a79SGreg Clayton (int)regex_sed.size(), 11630e5e5a79SGreg Clayton regex_sed.data()); 11640e5e5a79SGreg Clayton return error; 11650e5e5a79SGreg Clayton } 116644d93782SGreg Clayton 116744d93782SGreg Clayton if (check_only == false) 116844d93782SGreg Clayton { 11690e5e5a79SGreg Clayton std::string regex(regex_sed.substr(first_separator_char_pos + 1, second_separator_char_pos - first_separator_char_pos - 1)); 11700e5e5a79SGreg Clayton std::string subst(regex_sed.substr(second_separator_char_pos + 1, third_separator_char_pos - second_separator_char_pos - 1)); 11710e5e5a79SGreg Clayton m_regex_cmd_ap->AddRegexCommand (regex.c_str(), 11720e5e5a79SGreg Clayton subst.c_str()); 117344d93782SGreg Clayton } 11740e5e5a79SGreg Clayton return error; 1175de164aaaSGreg Clayton } 1176de164aaaSGreg Clayton 1177de164aaaSGreg Clayton void 11780e5e5a79SGreg Clayton AddRegexCommandToInterpreter() 1179de164aaaSGreg Clayton { 1180de164aaaSGreg Clayton if (m_regex_cmd_ap.get()) 1181de164aaaSGreg Clayton { 1182de164aaaSGreg Clayton if (m_regex_cmd_ap->HasRegexEntries()) 1183de164aaaSGreg Clayton { 1184de164aaaSGreg Clayton CommandObjectSP cmd_sp (m_regex_cmd_ap.release()); 1185de164aaaSGreg Clayton m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); 1186de164aaaSGreg Clayton } 1187de164aaaSGreg Clayton } 1188de164aaaSGreg Clayton } 1189de164aaaSGreg Clayton 1190de164aaaSGreg Clayton private: 11917b0992d9SGreg Clayton std::unique_ptr<CommandObjectRegexCommand> m_regex_cmd_ap; 1192de164aaaSGreg Clayton 1193de164aaaSGreg Clayton class CommandOptions : public Options 1194de164aaaSGreg Clayton { 1195de164aaaSGreg Clayton public: 1196de164aaaSGreg Clayton 1197de164aaaSGreg Clayton CommandOptions (CommandInterpreter &interpreter) : 1198de164aaaSGreg Clayton Options (interpreter) 1199de164aaaSGreg Clayton { 1200de164aaaSGreg Clayton } 1201de164aaaSGreg Clayton 1202de164aaaSGreg Clayton virtual 1203de164aaaSGreg Clayton ~CommandOptions (){} 1204de164aaaSGreg Clayton 1205de164aaaSGreg Clayton virtual Error 1206de164aaaSGreg Clayton SetOptionValue (uint32_t option_idx, const char *option_arg) 1207de164aaaSGreg Clayton { 1208de164aaaSGreg Clayton Error error; 12093bcdfc0eSGreg Clayton const int short_option = m_getopt_table[option_idx].val; 1210de164aaaSGreg Clayton 1211de164aaaSGreg Clayton switch (short_option) 1212de164aaaSGreg Clayton { 1213de164aaaSGreg Clayton case 'h': 1214de164aaaSGreg Clayton m_help.assign (option_arg); 1215de164aaaSGreg Clayton break; 1216de164aaaSGreg Clayton case 's': 1217de164aaaSGreg Clayton m_syntax.assign (option_arg); 1218de164aaaSGreg Clayton break; 1219de164aaaSGreg Clayton 1220de164aaaSGreg Clayton default: 122186edbf41SGreg Clayton error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option); 1222de164aaaSGreg Clayton break; 1223de164aaaSGreg Clayton } 1224de164aaaSGreg Clayton 1225de164aaaSGreg Clayton return error; 1226de164aaaSGreg Clayton } 1227de164aaaSGreg Clayton 1228de164aaaSGreg Clayton void 1229de164aaaSGreg Clayton OptionParsingStarting () 1230de164aaaSGreg Clayton { 1231de164aaaSGreg Clayton m_help.clear(); 1232de164aaaSGreg Clayton m_syntax.clear(); 1233de164aaaSGreg Clayton } 1234de164aaaSGreg Clayton 1235de164aaaSGreg Clayton const OptionDefinition* 1236de164aaaSGreg Clayton GetDefinitions () 1237de164aaaSGreg Clayton { 1238de164aaaSGreg Clayton return g_option_table; 1239de164aaaSGreg Clayton } 1240de164aaaSGreg Clayton 1241de164aaaSGreg Clayton // Options table: Required for subclasses of Options. 1242de164aaaSGreg Clayton 1243de164aaaSGreg Clayton static OptionDefinition g_option_table[]; 1244de164aaaSGreg Clayton 1245de164aaaSGreg Clayton const char * 1246de164aaaSGreg Clayton GetHelp () 1247de164aaaSGreg Clayton { 1248de164aaaSGreg Clayton if (m_help.empty()) 1249de164aaaSGreg Clayton return NULL; 1250de164aaaSGreg Clayton return m_help.c_str(); 1251de164aaaSGreg Clayton } 1252de164aaaSGreg Clayton const char * 1253de164aaaSGreg Clayton GetSyntax () 1254de164aaaSGreg Clayton { 1255de164aaaSGreg Clayton if (m_syntax.empty()) 1256de164aaaSGreg Clayton return NULL; 1257de164aaaSGreg Clayton return m_syntax.c_str(); 1258de164aaaSGreg Clayton } 1259de164aaaSGreg Clayton // Instance variables to hold the values for command options. 1260de164aaaSGreg Clayton protected: 1261de164aaaSGreg Clayton std::string m_help; 1262de164aaaSGreg Clayton std::string m_syntax; 1263de164aaaSGreg Clayton }; 1264de164aaaSGreg Clayton 1265de164aaaSGreg Clayton virtual Options * 1266de164aaaSGreg Clayton GetOptions () 1267de164aaaSGreg Clayton { 1268de164aaaSGreg Clayton return &m_options; 1269de164aaaSGreg Clayton } 1270de164aaaSGreg Clayton 12715a988416SJim Ingham CommandOptions m_options; 1272de164aaaSGreg Clayton }; 1273de164aaaSGreg Clayton 1274de164aaaSGreg Clayton OptionDefinition 1275de164aaaSGreg Clayton CommandObjectCommandsAddRegex::CommandOptions::g_option_table[] = 1276de164aaaSGreg Clayton { 1277*d37221dcSZachary Turner { LLDB_OPT_SET_1, false, "help" , 'h', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeNone, "The help text to display for this command."}, 1278*d37221dcSZachary Turner { LLDB_OPT_SET_1, false, "syntax", 's', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeNone, "A syntax string showing the typical usage syntax."}, 1279*d37221dcSZachary Turner { 0 , false, NULL , 0 , 0 , NULL, NULL, 0, eArgTypeNone, NULL } 1280de164aaaSGreg Clayton }; 1281de164aaaSGreg Clayton 1282de164aaaSGreg Clayton 12835a988416SJim Ingham class CommandObjectPythonFunction : public CommandObjectRaw 1284223383edSEnrico Granata { 1285223383edSEnrico Granata private: 1286223383edSEnrico Granata std::string m_function_name; 12870a305db7SEnrico Granata ScriptedCommandSynchronicity m_synchro; 1288fac939e9SEnrico Granata bool m_fetched_help_long; 1289223383edSEnrico Granata 1290223383edSEnrico Granata public: 1291223383edSEnrico Granata 1292223383edSEnrico Granata CommandObjectPythonFunction (CommandInterpreter &interpreter, 1293223383edSEnrico Granata std::string name, 12940a305db7SEnrico Granata std::string funct, 12950a305db7SEnrico Granata ScriptedCommandSynchronicity synch) : 12965a988416SJim Ingham CommandObjectRaw (interpreter, 1297223383edSEnrico Granata name.c_str(), 1298223383edSEnrico Granata (std::string("Run Python function ") + funct).c_str(), 1299223383edSEnrico Granata NULL), 13000a305db7SEnrico Granata m_function_name(funct), 1301fac939e9SEnrico Granata m_synchro(synch), 1302fac939e9SEnrico Granata m_fetched_help_long(false) 1303223383edSEnrico Granata { 1304223383edSEnrico Granata } 1305223383edSEnrico Granata 1306223383edSEnrico Granata virtual 1307223383edSEnrico Granata ~CommandObjectPythonFunction () 1308223383edSEnrico Granata { 1309223383edSEnrico Granata } 1310223383edSEnrico Granata 1311223383edSEnrico Granata virtual bool 13123a18e319SGreg Clayton IsRemovable () const 13135a988416SJim Ingham { 13145a988416SJim Ingham return true; 13155a988416SJim Ingham } 13165a988416SJim Ingham 13175a988416SJim Ingham const std::string& 13185a988416SJim Ingham GetFunctionName () 13195a988416SJim Ingham { 13205a988416SJim Ingham return m_function_name; 13215a988416SJim Ingham } 13225a988416SJim Ingham 13235a988416SJim Ingham ScriptedCommandSynchronicity 13245a988416SJim Ingham GetSynchronicity () 13255a988416SJim Ingham { 13265a988416SJim Ingham return m_synchro; 13275a988416SJim Ingham } 13285a988416SJim Ingham 1329fac939e9SEnrico Granata virtual const char * 1330fac939e9SEnrico Granata GetHelpLong () 1331fac939e9SEnrico Granata { 1332fac939e9SEnrico Granata if (!m_fetched_help_long) 1333fac939e9SEnrico Granata { 1334fac939e9SEnrico Granata ScriptInterpreter* scripter = m_interpreter.GetScriptInterpreter(); 1335fac939e9SEnrico Granata if (scripter) 1336fac939e9SEnrico Granata { 1337fac939e9SEnrico Granata std::string docstring; 1338fac939e9SEnrico Granata m_fetched_help_long = scripter->GetDocumentationForItem(m_function_name.c_str(),docstring); 1339fac939e9SEnrico Granata if (!docstring.empty()) 1340fac939e9SEnrico Granata SetHelpLong(docstring); 1341fac939e9SEnrico Granata } 1342fac939e9SEnrico Granata } 1343fac939e9SEnrico Granata return CommandObjectRaw::GetHelpLong(); 1344fac939e9SEnrico Granata } 1345fac939e9SEnrico Granata 13465a988416SJim Ingham protected: 13475a988416SJim Ingham virtual bool 13485a988416SJim Ingham DoExecute (const char *raw_command_line, CommandReturnObject &result) 1349223383edSEnrico Granata { 1350223383edSEnrico Granata ScriptInterpreter* scripter = m_interpreter.GetScriptInterpreter(); 1351223383edSEnrico Granata 1352223383edSEnrico Granata Error error; 1353223383edSEnrico Granata 135470f11f88SJim Ingham result.SetStatus(eReturnStatusInvalid); 135570f11f88SJim Ingham 1356223383edSEnrico Granata if (!scripter || scripter->RunScriptBasedCommand(m_function_name.c_str(), 1357223383edSEnrico Granata raw_command_line, 13580a305db7SEnrico Granata m_synchro, 1359223383edSEnrico Granata result, 1360223383edSEnrico Granata error) == false) 1361223383edSEnrico Granata { 1362223383edSEnrico Granata result.AppendError(error.AsCString()); 1363223383edSEnrico Granata result.SetStatus(eReturnStatusFailed); 1364223383edSEnrico Granata } 1365223383edSEnrico Granata else 136670f11f88SJim Ingham { 136770f11f88SJim Ingham // Don't change the status if the command already set it... 136870f11f88SJim Ingham if (result.GetStatus() == eReturnStatusInvalid) 136970f11f88SJim Ingham { 13709a71a7d8SDaniel Malea if (result.GetOutputData() == NULL || result.GetOutputData()[0] == '\0') 1371223383edSEnrico Granata result.SetStatus(eReturnStatusSuccessFinishNoResult); 137270f11f88SJim Ingham else 137370f11f88SJim Ingham result.SetStatus(eReturnStatusSuccessFinishResult); 137470f11f88SJim Ingham } 137570f11f88SJim Ingham } 1376223383edSEnrico Granata 1377223383edSEnrico Granata return result.Succeeded(); 1378223383edSEnrico Granata } 1379223383edSEnrico Granata 1380223383edSEnrico Granata }; 1381223383edSEnrico Granata 1382a9dbf432SEnrico Granata //------------------------------------------------------------------------- 1383a9dbf432SEnrico Granata // CommandObjectCommandsScriptImport 1384a9dbf432SEnrico Granata //------------------------------------------------------------------------- 1385a9dbf432SEnrico Granata 13865a988416SJim Ingham class CommandObjectCommandsScriptImport : public CommandObjectParsed 1387a9dbf432SEnrico Granata { 13885a988416SJim Ingham public: 13895a988416SJim Ingham CommandObjectCommandsScriptImport (CommandInterpreter &interpreter) : 13905a988416SJim Ingham CommandObjectParsed (interpreter, 13915a988416SJim Ingham "command script import", 13925a988416SJim Ingham "Import a scripting module in LLDB.", 13935a988416SJim Ingham NULL), 13945a988416SJim Ingham m_options(interpreter) 13955a988416SJim Ingham { 13965a988416SJim Ingham CommandArgumentEntry arg1; 13975a988416SJim Ingham CommandArgumentData cmd_arg; 13985a988416SJim Ingham 13995a988416SJim Ingham // Define the first (and only) variant of this arg. 14005a988416SJim Ingham cmd_arg.arg_type = eArgTypeFilename; 14015a988416SJim Ingham cmd_arg.arg_repetition = eArgRepeatPlain; 14025a988416SJim Ingham 14035a988416SJim Ingham // There is only one variant this argument could be; put it into the argument entry. 14045a988416SJim Ingham arg1.push_back (cmd_arg); 14055a988416SJim Ingham 14065a988416SJim Ingham // Push the data for the first argument into the m_arguments vector. 14075a988416SJim Ingham m_arguments.push_back (arg1); 14085a988416SJim Ingham } 14095a988416SJim Ingham 14105a988416SJim Ingham ~CommandObjectCommandsScriptImport () 14115a988416SJim Ingham { 14125a988416SJim Ingham } 14135a988416SJim Ingham 1414c7bece56SGreg Clayton virtual int 14155a988416SJim Ingham HandleArgumentCompletion (Args &input, 14165a988416SJim Ingham int &cursor_index, 14175a988416SJim Ingham int &cursor_char_position, 14185a988416SJim Ingham OptionElementVector &opt_element_vector, 14195a988416SJim Ingham int match_start_point, 14205a988416SJim Ingham int max_return_elements, 14215a988416SJim Ingham bool &word_complete, 14225a988416SJim Ingham StringList &matches) 14235a988416SJim Ingham { 14245a988416SJim Ingham std::string completion_str (input.GetArgumentAtIndex(cursor_index)); 14255a988416SJim Ingham completion_str.erase (cursor_char_position); 14265a988416SJim Ingham 14275a988416SJim Ingham CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter, 14285a988416SJim Ingham CommandCompletions::eDiskFileCompletion, 14295a988416SJim Ingham completion_str.c_str(), 14305a988416SJim Ingham match_start_point, 14315a988416SJim Ingham max_return_elements, 14325a988416SJim Ingham NULL, 14335a988416SJim Ingham word_complete, 14345a988416SJim Ingham matches); 14355a988416SJim Ingham return matches.GetSize(); 14365a988416SJim Ingham } 14375a988416SJim Ingham 14385a988416SJim Ingham virtual Options * 14395a988416SJim Ingham GetOptions () 14405a988416SJim Ingham { 14415a988416SJim Ingham return &m_options; 14425a988416SJim Ingham } 14435a988416SJim Ingham 14445a988416SJim Ingham protected: 14450a305db7SEnrico Granata 14460a305db7SEnrico Granata class CommandOptions : public Options 14470a305db7SEnrico Granata { 14480a305db7SEnrico Granata public: 14490a305db7SEnrico Granata 14500a305db7SEnrico Granata CommandOptions (CommandInterpreter &interpreter) : 14510a305db7SEnrico Granata Options (interpreter) 14520a305db7SEnrico Granata { 14530a305db7SEnrico Granata } 14540a305db7SEnrico Granata 14550a305db7SEnrico Granata virtual 14560a305db7SEnrico Granata ~CommandOptions (){} 14570a305db7SEnrico Granata 14580a305db7SEnrico Granata virtual Error 14590a305db7SEnrico Granata SetOptionValue (uint32_t option_idx, const char *option_arg) 14600a305db7SEnrico Granata { 14610a305db7SEnrico Granata Error error; 14623bcdfc0eSGreg Clayton const int short_option = m_getopt_table[option_idx].val; 14630a305db7SEnrico Granata 14640a305db7SEnrico Granata switch (short_option) 14650a305db7SEnrico Granata { 14660a305db7SEnrico Granata case 'r': 14670a305db7SEnrico Granata m_allow_reload = true; 14680a305db7SEnrico Granata break; 14690a305db7SEnrico Granata default: 14700a305db7SEnrico Granata error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option); 14710a305db7SEnrico Granata break; 14720a305db7SEnrico Granata } 14730a305db7SEnrico Granata 14740a305db7SEnrico Granata return error; 14750a305db7SEnrico Granata } 14760a305db7SEnrico Granata 14770a305db7SEnrico Granata void 14780a305db7SEnrico Granata OptionParsingStarting () 14790a305db7SEnrico Granata { 1480e0c70f1bSEnrico Granata m_allow_reload = true; 14810a305db7SEnrico Granata } 14820a305db7SEnrico Granata 14830a305db7SEnrico Granata const OptionDefinition* 14840a305db7SEnrico Granata GetDefinitions () 14850a305db7SEnrico Granata { 14860a305db7SEnrico Granata return g_option_table; 14870a305db7SEnrico Granata } 14880a305db7SEnrico Granata 14890a305db7SEnrico Granata // Options table: Required for subclasses of Options. 14900a305db7SEnrico Granata 14910a305db7SEnrico Granata static OptionDefinition g_option_table[]; 14920a305db7SEnrico Granata 14930a305db7SEnrico Granata // Instance variables to hold the values for command options. 14940a305db7SEnrico Granata 14950a305db7SEnrico Granata bool m_allow_reload; 14960a305db7SEnrico Granata }; 14970a305db7SEnrico Granata 1498a9dbf432SEnrico Granata bool 14995a988416SJim Ingham DoExecute (Args& command, CommandReturnObject &result) 1500a9dbf432SEnrico Granata { 1501a9dbf432SEnrico Granata 1502a9dbf432SEnrico Granata if (m_interpreter.GetDebugger().GetScriptLanguage() != lldb::eScriptLanguagePython) 1503a9dbf432SEnrico Granata { 1504a9dbf432SEnrico Granata result.AppendError ("only scripting language supported for module importing is currently Python"); 1505a9dbf432SEnrico Granata result.SetStatus (eReturnStatusFailed); 1506a9dbf432SEnrico Granata return false; 1507a9dbf432SEnrico Granata } 1508a9dbf432SEnrico Granata 15095a988416SJim Ingham size_t argc = command.GetArgumentCount(); 1510a9dbf432SEnrico Granata 1511a9dbf432SEnrico Granata if (argc != 1) 1512a9dbf432SEnrico Granata { 1513a9dbf432SEnrico Granata result.AppendError ("'command script import' requires one argument"); 1514a9dbf432SEnrico Granata result.SetStatus (eReturnStatusFailed); 1515a9dbf432SEnrico Granata return false; 1516a9dbf432SEnrico Granata } 1517a9dbf432SEnrico Granata 15185a988416SJim Ingham std::string path = command.GetArgumentAtIndex(0); 1519a9dbf432SEnrico Granata Error error; 1520a9dbf432SEnrico Granata 1521c9d645d3SGreg Clayton const bool init_session = true; 1522078551c7SEnrico Granata // FIXME: this is necessary because CommandObject::CheckRequirements() assumes that 1523078551c7SEnrico Granata // commands won't ever be recursively invoked, but it's actually possible to craft 1524078551c7SEnrico Granata // a Python script that does other "command script imports" in __lldb_init_module 1525078551c7SEnrico Granata // the real fix is to have recursive commands possible with a CommandInvocation object 1526078551c7SEnrico Granata // separate from the CommandObject itself, so that recursive command invocations 1527078551c7SEnrico Granata // won't stomp on each other (wrt to execution contents, options, and more) 1528078551c7SEnrico Granata m_exe_ctx.Clear(); 1529a9dbf432SEnrico Granata if (m_interpreter.GetScriptInterpreter()->LoadScriptingModule(path.c_str(), 15300a305db7SEnrico Granata m_options.m_allow_reload, 1531c9d645d3SGreg Clayton init_session, 1532a9dbf432SEnrico Granata error)) 1533a9dbf432SEnrico Granata { 1534a9dbf432SEnrico Granata result.SetStatus (eReturnStatusSuccessFinishNoResult); 1535a9dbf432SEnrico Granata } 1536a9dbf432SEnrico Granata else 1537a9dbf432SEnrico Granata { 1538a9dbf432SEnrico Granata result.AppendErrorWithFormat("module importing failed: %s", error.AsCString()); 1539a9dbf432SEnrico Granata result.SetStatus (eReturnStatusFailed); 1540a9dbf432SEnrico Granata } 1541a9dbf432SEnrico Granata 1542a9dbf432SEnrico Granata return result.Succeeded(); 1543a9dbf432SEnrico Granata } 15440a305db7SEnrico Granata 15455a988416SJim Ingham CommandOptions m_options; 1546a9dbf432SEnrico Granata }; 1547223383edSEnrico Granata 15480a305db7SEnrico Granata OptionDefinition 15490a305db7SEnrico Granata CommandObjectCommandsScriptImport::CommandOptions::g_option_table[] = 15500a305db7SEnrico Granata { 1551*d37221dcSZachary 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."}, 1552*d37221dcSZachary Turner { 0, false, NULL, 0, 0, NULL, NULL, 0, eArgTypeNone, NULL } 15530a305db7SEnrico Granata }; 15540a305db7SEnrico Granata 15550a305db7SEnrico Granata 1556223383edSEnrico Granata //------------------------------------------------------------------------- 1557223383edSEnrico Granata // CommandObjectCommandsScriptAdd 1558223383edSEnrico Granata //------------------------------------------------------------------------- 1559223383edSEnrico Granata 156044d93782SGreg Clayton class CommandObjectCommandsScriptAdd : 156144d93782SGreg Clayton public CommandObjectParsed, 156244d93782SGreg Clayton public IOHandlerDelegateMultiline 1563223383edSEnrico Granata { 15645a988416SJim Ingham public: 15655a988416SJim Ingham CommandObjectCommandsScriptAdd(CommandInterpreter &interpreter) : 15665a988416SJim Ingham CommandObjectParsed (interpreter, 15675a988416SJim Ingham "command script add", 15685a988416SJim Ingham "Add a scripted function as an LLDB command.", 15695a988416SJim Ingham NULL), 1570c3d874a5SGreg Clayton IOHandlerDelegateMultiline ("DONE"), 15715a988416SJim Ingham m_options (interpreter) 15725a988416SJim Ingham { 15735a988416SJim Ingham CommandArgumentEntry arg1; 15745a988416SJim Ingham CommandArgumentData cmd_arg; 15755a988416SJim Ingham 15765a988416SJim Ingham // Define the first (and only) variant of this arg. 15775a988416SJim Ingham cmd_arg.arg_type = eArgTypeCommandName; 15785a988416SJim Ingham cmd_arg.arg_repetition = eArgRepeatPlain; 15795a988416SJim Ingham 15805a988416SJim Ingham // There is only one variant this argument could be; put it into the argument entry. 15815a988416SJim Ingham arg1.push_back (cmd_arg); 15825a988416SJim Ingham 15835a988416SJim Ingham // Push the data for the first argument into the m_arguments vector. 15845a988416SJim Ingham m_arguments.push_back (arg1); 15855a988416SJim Ingham } 15865a988416SJim Ingham 15875a988416SJim Ingham ~CommandObjectCommandsScriptAdd () 15885a988416SJim Ingham { 15895a988416SJim Ingham } 15905a988416SJim Ingham 15915a988416SJim Ingham virtual Options * 15925a988416SJim Ingham GetOptions () 15935a988416SJim Ingham { 15945a988416SJim Ingham return &m_options; 15955a988416SJim Ingham } 15965a988416SJim Ingham 15975a988416SJim Ingham protected: 1598223383edSEnrico Granata 1599223383edSEnrico Granata class CommandOptions : public Options 1600223383edSEnrico Granata { 1601223383edSEnrico Granata public: 1602223383edSEnrico Granata 1603223383edSEnrico Granata CommandOptions (CommandInterpreter &interpreter) : 1604223383edSEnrico Granata Options (interpreter) 1605223383edSEnrico Granata { 1606223383edSEnrico Granata } 1607223383edSEnrico Granata 1608223383edSEnrico Granata virtual 1609223383edSEnrico Granata ~CommandOptions (){} 1610223383edSEnrico Granata 1611223383edSEnrico Granata virtual Error 1612223383edSEnrico Granata SetOptionValue (uint32_t option_idx, const char *option_arg) 1613223383edSEnrico Granata { 1614223383edSEnrico Granata Error error; 16153bcdfc0eSGreg Clayton const int short_option = m_getopt_table[option_idx].val; 1616223383edSEnrico Granata 1617223383edSEnrico Granata switch (short_option) 1618223383edSEnrico Granata { 1619223383edSEnrico Granata case 'f': 1620223383edSEnrico Granata m_funct_name = std::string(option_arg); 1621223383edSEnrico Granata break; 16220a305db7SEnrico Granata case 's': 162344d93782SGreg Clayton m_synchronicity = (ScriptedCommandSynchronicity) Args::StringToOptionEnum(option_arg, g_option_table[option_idx].enum_values, 0, error); 16240a305db7SEnrico Granata if (!error.Success()) 16250a305db7SEnrico Granata error.SetErrorStringWithFormat ("unrecognized value for synchronicity '%s'", option_arg); 16260a305db7SEnrico Granata break; 1627223383edSEnrico Granata default: 162886edbf41SGreg Clayton error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option); 1629223383edSEnrico Granata break; 1630223383edSEnrico Granata } 1631223383edSEnrico Granata 1632223383edSEnrico Granata return error; 1633223383edSEnrico Granata } 1634223383edSEnrico Granata 1635223383edSEnrico Granata void 1636223383edSEnrico Granata OptionParsingStarting () 1637223383edSEnrico Granata { 1638223383edSEnrico Granata m_funct_name = ""; 163944d93782SGreg Clayton m_synchronicity = eScriptedCommandSynchronicitySynchronous; 1640223383edSEnrico Granata } 1641223383edSEnrico Granata 1642223383edSEnrico Granata const OptionDefinition* 1643223383edSEnrico Granata GetDefinitions () 1644223383edSEnrico Granata { 1645223383edSEnrico Granata return g_option_table; 1646223383edSEnrico Granata } 1647223383edSEnrico Granata 1648223383edSEnrico Granata // Options table: Required for subclasses of Options. 1649223383edSEnrico Granata 1650223383edSEnrico Granata static OptionDefinition g_option_table[]; 1651223383edSEnrico Granata 1652223383edSEnrico Granata // Instance variables to hold the values for command options. 1653223383edSEnrico Granata 1654223383edSEnrico Granata std::string m_funct_name; 165544d93782SGreg Clayton ScriptedCommandSynchronicity m_synchronicity; 1656223383edSEnrico Granata }; 1657223383edSEnrico Granata 165844d93782SGreg Clayton virtual void 165944d93782SGreg Clayton IOHandlerActivated (IOHandler &io_handler) 1660223383edSEnrico Granata { 166144d93782SGreg Clayton StreamFileSP output_sp(io_handler.GetOutputStreamFile()); 166244d93782SGreg Clayton if (output_sp) 1663223383edSEnrico Granata { 166444d93782SGreg Clayton output_sp->PutCString(g_python_command_instructions); 166544d93782SGreg Clayton output_sp->Flush(); 1666223383edSEnrico Granata } 1667223383edSEnrico Granata } 1668223383edSEnrico Granata 1669223383edSEnrico Granata 167044d93782SGreg Clayton virtual void 167144d93782SGreg Clayton IOHandlerInputComplete (IOHandler &io_handler, std::string &data) 1672223383edSEnrico Granata { 167344d93782SGreg Clayton StreamFileSP error_sp = io_handler.GetErrorStreamFile(); 167444d93782SGreg Clayton 167544d93782SGreg Clayton ScriptInterpreter *interpreter = m_interpreter.GetScriptInterpreter(); 167644d93782SGreg Clayton if (interpreter) 167744d93782SGreg Clayton { 167844d93782SGreg Clayton 167944d93782SGreg Clayton StringList lines; 168044d93782SGreg Clayton lines.SplitIntoLines(data); 168144d93782SGreg Clayton if (lines.GetSize() > 0) 168244d93782SGreg Clayton { 1683a73b7df7SEnrico Granata std::string funct_name_str; 168444d93782SGreg Clayton if (interpreter->GenerateScriptAliasFunction (lines, funct_name_str)) 1685223383edSEnrico Granata { 1686a73b7df7SEnrico Granata if (funct_name_str.empty()) 1687223383edSEnrico Granata { 168844d93782SGreg Clayton error_sp->Printf ("error: unable to obtain a function name, didn't add python command.\n"); 168944d93782SGreg Clayton error_sp->Flush(); 1690223383edSEnrico Granata } 169144d93782SGreg Clayton else 169244d93782SGreg Clayton { 1693223383edSEnrico Granata // everything should be fine now, let's add this alias 1694223383edSEnrico Granata 1695223383edSEnrico Granata CommandObjectSP command_obj_sp(new CommandObjectPythonFunction (m_interpreter, 1696223383edSEnrico Granata m_cmd_name, 1697a73b7df7SEnrico Granata funct_name_str.c_str(), 169844d93782SGreg Clayton m_synchronicity)); 1699223383edSEnrico Granata 17000a305db7SEnrico Granata if (!m_interpreter.AddUserCommand(m_cmd_name, command_obj_sp, true)) 1701223383edSEnrico Granata { 170244d93782SGreg Clayton error_sp->Printf ("error: unable to add selected command, didn't add python command.\n"); 170344d93782SGreg Clayton error_sp->Flush(); 1704223383edSEnrico Granata } 1705223383edSEnrico Granata } 170644d93782SGreg Clayton } 170744d93782SGreg Clayton else 170844d93782SGreg Clayton { 170944d93782SGreg Clayton error_sp->Printf ("error: unable to create function, didn't add python command.\n"); 171044d93782SGreg Clayton error_sp->Flush(); 171144d93782SGreg Clayton } 171244d93782SGreg Clayton } 171344d93782SGreg Clayton else 171444d93782SGreg Clayton { 171544d93782SGreg Clayton error_sp->Printf ("error: empty function, didn't add python command.\n"); 171644d93782SGreg Clayton error_sp->Flush(); 171744d93782SGreg Clayton } 171844d93782SGreg Clayton } 171944d93782SGreg Clayton else 172044d93782SGreg Clayton { 172144d93782SGreg Clayton error_sp->Printf ("error: script interpreter missing, didn't add python command.\n"); 172244d93782SGreg Clayton error_sp->Flush(); 172344d93782SGreg Clayton } 172444d93782SGreg Clayton 172544d93782SGreg Clayton io_handler.SetIsDone(true); 172644d93782SGreg Clayton 172744d93782SGreg Clayton 172844d93782SGreg Clayton } 1729223383edSEnrico Granata 17305a988416SJim Ingham protected: 1731223383edSEnrico Granata bool 17325a988416SJim Ingham DoExecute (Args& command, CommandReturnObject &result) 1733223383edSEnrico Granata { 173499f0b8f9SEnrico Granata 173599f0b8f9SEnrico Granata if (m_interpreter.GetDebugger().GetScriptLanguage() != lldb::eScriptLanguagePython) 173699f0b8f9SEnrico Granata { 173799f0b8f9SEnrico Granata result.AppendError ("only scripting language supported for scripted commands is currently Python"); 173899f0b8f9SEnrico Granata result.SetStatus (eReturnStatusFailed); 173999f0b8f9SEnrico Granata return false; 174099f0b8f9SEnrico Granata } 174199f0b8f9SEnrico Granata 17425a988416SJim Ingham size_t argc = command.GetArgumentCount(); 1743223383edSEnrico Granata 1744223383edSEnrico Granata if (argc != 1) 1745223383edSEnrico Granata { 1746223383edSEnrico Granata result.AppendError ("'command script add' requires one argument"); 1747223383edSEnrico Granata result.SetStatus (eReturnStatusFailed); 1748223383edSEnrico Granata return false; 1749223383edSEnrico Granata } 1750223383edSEnrico Granata 175144d93782SGreg Clayton // Store the command name and synchronicity in case we get multi-line input 175244d93782SGreg Clayton m_cmd_name = command.GetArgumentAtIndex(0); 175344d93782SGreg Clayton m_synchronicity = m_options.m_synchronicity; 1754223383edSEnrico Granata 1755223383edSEnrico Granata if (m_options.m_funct_name.empty()) 1756223383edSEnrico Granata { 175744d93782SGreg Clayton m_interpreter.GetPythonCommandsFromIOHandler (" ", // Prompt 175844d93782SGreg Clayton *this, // IOHandlerDelegate 175944d93782SGreg Clayton true, // Run IOHandler in async mode 176044d93782SGreg Clayton NULL); // Baton for the "io_handler" that will be passed back into our IOHandlerDelegate functions 1761223383edSEnrico Granata } 1762223383edSEnrico Granata else 1763223383edSEnrico Granata { 17640a305db7SEnrico Granata CommandObjectSP new_cmd(new CommandObjectPythonFunction(m_interpreter, 176544d93782SGreg Clayton m_cmd_name, 17660a305db7SEnrico Granata m_options.m_funct_name, 176744d93782SGreg Clayton m_synchronicity)); 176844d93782SGreg Clayton if (m_interpreter.AddUserCommand(m_cmd_name, new_cmd, true)) 1769223383edSEnrico Granata { 1770223383edSEnrico Granata result.SetStatus (eReturnStatusSuccessFinishNoResult); 1771223383edSEnrico Granata } 1772223383edSEnrico Granata else 1773223383edSEnrico Granata { 1774223383edSEnrico Granata result.AppendError("cannot add command"); 1775223383edSEnrico Granata result.SetStatus (eReturnStatusFailed); 1776223383edSEnrico Granata } 1777223383edSEnrico Granata } 1778223383edSEnrico Granata 1779223383edSEnrico Granata return result.Succeeded(); 1780223383edSEnrico Granata 1781223383edSEnrico Granata } 17825a988416SJim Ingham 17835a988416SJim Ingham CommandOptions m_options; 178444d93782SGreg Clayton std::string m_cmd_name; 178544d93782SGreg Clayton ScriptedCommandSynchronicity m_synchronicity; 1786223383edSEnrico Granata }; 1787223383edSEnrico Granata 17880a305db7SEnrico Granata static OptionEnumValueElement g_script_synchro_type[] = 17890a305db7SEnrico Granata { 17900a305db7SEnrico Granata { eScriptedCommandSynchronicitySynchronous, "synchronous", "Run synchronous"}, 17910a305db7SEnrico Granata { eScriptedCommandSynchronicityAsynchronous, "asynchronous", "Run asynchronous"}, 17920a305db7SEnrico Granata { eScriptedCommandSynchronicityCurrentValue, "current", "Do not alter current setting"}, 17930a305db7SEnrico Granata { 0, NULL, NULL } 17940a305db7SEnrico Granata }; 17950a305db7SEnrico Granata 1796223383edSEnrico Granata OptionDefinition 1797223383edSEnrico Granata CommandObjectCommandsScriptAdd::CommandOptions::g_option_table[] = 1798223383edSEnrico Granata { 1799*d37221dcSZachary 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."}, 1800*d37221dcSZachary 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."}, 1801*d37221dcSZachary Turner { 0, false, NULL, 0, 0, NULL, NULL, 0, eArgTypeNone, NULL } 1802223383edSEnrico Granata }; 1803223383edSEnrico Granata 1804223383edSEnrico Granata //------------------------------------------------------------------------- 1805223383edSEnrico Granata // CommandObjectCommandsScriptList 1806223383edSEnrico Granata //------------------------------------------------------------------------- 1807223383edSEnrico Granata 18085a988416SJim Ingham class CommandObjectCommandsScriptList : public CommandObjectParsed 1809223383edSEnrico Granata { 1810223383edSEnrico Granata private: 1811223383edSEnrico Granata 1812223383edSEnrico Granata public: 1813223383edSEnrico Granata CommandObjectCommandsScriptList(CommandInterpreter &interpreter) : 18145a988416SJim Ingham CommandObjectParsed (interpreter, 1815223383edSEnrico Granata "command script list", 1816223383edSEnrico Granata "List defined scripted commands.", 1817223383edSEnrico Granata NULL) 1818223383edSEnrico Granata { 1819223383edSEnrico Granata } 1820223383edSEnrico Granata 1821223383edSEnrico Granata ~CommandObjectCommandsScriptList () 1822223383edSEnrico Granata { 1823223383edSEnrico Granata } 1824223383edSEnrico Granata 1825223383edSEnrico Granata bool 18265a988416SJim Ingham DoExecute (Args& command, CommandReturnObject &result) 1827223383edSEnrico Granata { 1828223383edSEnrico Granata 1829223383edSEnrico Granata m_interpreter.GetHelp(result, 1830223383edSEnrico Granata CommandInterpreter::eCommandTypesUserDef); 1831223383edSEnrico Granata 1832223383edSEnrico Granata result.SetStatus (eReturnStatusSuccessFinishResult); 1833223383edSEnrico Granata 1834223383edSEnrico Granata return true; 1835223383edSEnrico Granata 1836223383edSEnrico Granata 1837223383edSEnrico Granata } 1838223383edSEnrico Granata }; 1839223383edSEnrico Granata 1840223383edSEnrico Granata //------------------------------------------------------------------------- 1841223383edSEnrico Granata // CommandObjectCommandsScriptClear 1842223383edSEnrico Granata //------------------------------------------------------------------------- 1843223383edSEnrico Granata 18445a988416SJim Ingham class CommandObjectCommandsScriptClear : public CommandObjectParsed 1845223383edSEnrico Granata { 1846223383edSEnrico Granata private: 1847223383edSEnrico Granata 1848223383edSEnrico Granata public: 1849223383edSEnrico Granata CommandObjectCommandsScriptClear(CommandInterpreter &interpreter) : 18505a988416SJim Ingham CommandObjectParsed (interpreter, 1851223383edSEnrico Granata "command script clear", 1852223383edSEnrico Granata "Delete all scripted commands.", 1853223383edSEnrico Granata NULL) 1854223383edSEnrico Granata { 1855223383edSEnrico Granata } 1856223383edSEnrico Granata 1857223383edSEnrico Granata ~CommandObjectCommandsScriptClear () 1858223383edSEnrico Granata { 1859223383edSEnrico Granata } 1860223383edSEnrico Granata 18615a988416SJim Ingham protected: 1862223383edSEnrico Granata bool 18635a988416SJim Ingham DoExecute (Args& command, CommandReturnObject &result) 1864223383edSEnrico Granata { 1865223383edSEnrico Granata 1866223383edSEnrico Granata m_interpreter.RemoveAllUser(); 1867223383edSEnrico Granata 1868223383edSEnrico Granata result.SetStatus (eReturnStatusSuccessFinishResult); 1869223383edSEnrico Granata 1870223383edSEnrico Granata return true; 1871223383edSEnrico Granata } 1872223383edSEnrico Granata }; 1873223383edSEnrico Granata 1874223383edSEnrico Granata //------------------------------------------------------------------------- 1875223383edSEnrico Granata // CommandObjectCommandsScriptDelete 1876223383edSEnrico Granata //------------------------------------------------------------------------- 1877223383edSEnrico Granata 18785a988416SJim Ingham class CommandObjectCommandsScriptDelete : public CommandObjectParsed 1879223383edSEnrico Granata { 1880223383edSEnrico Granata public: 1881223383edSEnrico Granata CommandObjectCommandsScriptDelete(CommandInterpreter &interpreter) : 18825a988416SJim Ingham CommandObjectParsed (interpreter, 1883223383edSEnrico Granata "command script delete", 1884223383edSEnrico Granata "Delete a scripted command.", 1885223383edSEnrico Granata NULL) 1886223383edSEnrico Granata { 1887223383edSEnrico Granata CommandArgumentEntry arg1; 1888223383edSEnrico Granata CommandArgumentData cmd_arg; 1889223383edSEnrico Granata 1890223383edSEnrico Granata // Define the first (and only) variant of this arg. 1891223383edSEnrico Granata cmd_arg.arg_type = eArgTypeCommandName; 1892223383edSEnrico Granata cmd_arg.arg_repetition = eArgRepeatPlain; 1893223383edSEnrico Granata 1894223383edSEnrico Granata // There is only one variant this argument could be; put it into the argument entry. 1895223383edSEnrico Granata arg1.push_back (cmd_arg); 1896223383edSEnrico Granata 1897223383edSEnrico Granata // Push the data for the first argument into the m_arguments vector. 1898223383edSEnrico Granata m_arguments.push_back (arg1); 1899223383edSEnrico Granata } 1900223383edSEnrico Granata 1901223383edSEnrico Granata ~CommandObjectCommandsScriptDelete () 1902223383edSEnrico Granata { 1903223383edSEnrico Granata } 1904223383edSEnrico Granata 19055a988416SJim Ingham protected: 1906223383edSEnrico Granata bool 19075a988416SJim Ingham DoExecute (Args& command, CommandReturnObject &result) 1908223383edSEnrico Granata { 1909223383edSEnrico Granata 19105a988416SJim Ingham size_t argc = command.GetArgumentCount(); 1911223383edSEnrico Granata 1912223383edSEnrico Granata if (argc != 1) 1913223383edSEnrico Granata { 1914223383edSEnrico Granata result.AppendError ("'command script delete' requires one argument"); 1915223383edSEnrico Granata result.SetStatus (eReturnStatusFailed); 1916223383edSEnrico Granata return false; 1917223383edSEnrico Granata } 1918223383edSEnrico Granata 19195a988416SJim Ingham const char* cmd_name = command.GetArgumentAtIndex(0); 1920223383edSEnrico Granata 1921223383edSEnrico Granata if (cmd_name && *cmd_name && m_interpreter.HasUserCommands() && m_interpreter.UserCommandExists(cmd_name)) 1922223383edSEnrico Granata { 1923223383edSEnrico Granata m_interpreter.RemoveUser(cmd_name); 1924223383edSEnrico Granata result.SetStatus (eReturnStatusSuccessFinishResult); 1925223383edSEnrico Granata } 1926223383edSEnrico Granata else 1927223383edSEnrico Granata { 1928223383edSEnrico Granata result.AppendErrorWithFormat ("command %s not found", cmd_name); 1929223383edSEnrico Granata result.SetStatus (eReturnStatusFailed); 1930223383edSEnrico Granata } 1931223383edSEnrico Granata 1932223383edSEnrico Granata return result.Succeeded(); 1933223383edSEnrico Granata 1934223383edSEnrico Granata } 1935223383edSEnrico Granata }; 1936223383edSEnrico Granata 1937223383edSEnrico Granata #pragma mark CommandObjectMultiwordCommandsScript 1938223383edSEnrico Granata 1939223383edSEnrico Granata //------------------------------------------------------------------------- 1940223383edSEnrico Granata // CommandObjectMultiwordCommandsScript 1941223383edSEnrico Granata //------------------------------------------------------------------------- 1942223383edSEnrico Granata 1943223383edSEnrico Granata class CommandObjectMultiwordCommandsScript : public CommandObjectMultiword 1944223383edSEnrico Granata { 1945223383edSEnrico Granata public: 1946223383edSEnrico Granata CommandObjectMultiwordCommandsScript (CommandInterpreter &interpreter) : 1947223383edSEnrico Granata CommandObjectMultiword (interpreter, 1948223383edSEnrico Granata "command script", 1949223383edSEnrico Granata "A set of commands for managing or customizing script commands.", 1950223383edSEnrico Granata "command script <subcommand> [<subcommand-options>]") 1951223383edSEnrico Granata { 1952223383edSEnrico Granata LoadSubCommand ("add", CommandObjectSP (new CommandObjectCommandsScriptAdd (interpreter))); 1953223383edSEnrico Granata LoadSubCommand ("delete", CommandObjectSP (new CommandObjectCommandsScriptDelete (interpreter))); 1954223383edSEnrico Granata LoadSubCommand ("clear", CommandObjectSP (new CommandObjectCommandsScriptClear (interpreter))); 1955223383edSEnrico Granata LoadSubCommand ("list", CommandObjectSP (new CommandObjectCommandsScriptList (interpreter))); 1956a9dbf432SEnrico Granata LoadSubCommand ("import", CommandObjectSP (new CommandObjectCommandsScriptImport (interpreter))); 1957223383edSEnrico Granata } 1958223383edSEnrico Granata 1959223383edSEnrico Granata ~CommandObjectMultiwordCommandsScript () 1960223383edSEnrico Granata { 1961223383edSEnrico Granata } 1962223383edSEnrico Granata 1963223383edSEnrico Granata }; 1964223383edSEnrico Granata 1965223383edSEnrico Granata 1966ebc09c36SJim Ingham #pragma mark CommandObjectMultiwordCommands 1967ebc09c36SJim Ingham 1968ebc09c36SJim Ingham //------------------------------------------------------------------------- 1969ebc09c36SJim Ingham // CommandObjectMultiwordCommands 1970ebc09c36SJim Ingham //------------------------------------------------------------------------- 1971ebc09c36SJim Ingham 1972ebc09c36SJim Ingham CommandObjectMultiwordCommands::CommandObjectMultiwordCommands (CommandInterpreter &interpreter) : 1973a7015092SGreg Clayton CommandObjectMultiword (interpreter, 19740e5e5a79SGreg Clayton "command", 19753f4c09c1SCaroline Tice "A set of commands for managing or customizing the debugger commands.", 19760e5e5a79SGreg Clayton "command <subcommand> [<subcommand-options>]") 1977ebc09c36SJim Ingham { 1978a7015092SGreg Clayton LoadSubCommand ("source", CommandObjectSP (new CommandObjectCommandsSource (interpreter))); 1979a7015092SGreg Clayton LoadSubCommand ("alias", CommandObjectSP (new CommandObjectCommandsAlias (interpreter))); 1980a7015092SGreg Clayton LoadSubCommand ("unalias", CommandObjectSP (new CommandObjectCommandsUnalias (interpreter))); 1981de164aaaSGreg Clayton LoadSubCommand ("regex", CommandObjectSP (new CommandObjectCommandsAddRegex (interpreter))); 1982a5a97ebeSJim Ingham LoadSubCommand ("history", CommandObjectSP (new CommandObjectCommandsHistory (interpreter))); 1983223383edSEnrico Granata LoadSubCommand ("script", CommandObjectSP (new CommandObjectMultiwordCommandsScript (interpreter))); 1984ebc09c36SJim Ingham } 1985ebc09c36SJim Ingham 1986ebc09c36SJim Ingham CommandObjectMultiwordCommands::~CommandObjectMultiwordCommands () 1987ebc09c36SJim Ingham { 1988ebc09c36SJim Ingham } 1989ebc09c36SJim Ingham 1990