Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 1 | //===-- Driver.cpp ----------------------------------------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #include "Driver.h" |
| 11 | |
Deepak Panickal | 429222c | 2013-10-15 15:46:40 +0000 | [diff] [blame] | 12 | #include <stdio.h> |
Eli Friedman | a382d47 | 2010-06-09 09:50:17 +0000 | [diff] [blame] | 13 | #include <string.h> |
| 14 | #include <stdlib.h> |
| 15 | #include <limits.h> |
Eli Friedman | 07b1627 | 2010-06-09 19:11:30 +0000 | [diff] [blame] | 16 | #include <fcntl.h> |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 17 | |
| 18 | #include <string> |
| 19 | |
Deepak Panickal | 429222c | 2013-10-15 15:46:40 +0000 | [diff] [blame] | 20 | #include <thread> |
Jim Ingham | e6bc6cb | 2012-02-08 05:23:15 +0000 | [diff] [blame] | 21 | #include "lldb/API/SBBreakpoint.h" |
Eli Friedman | a382d47 | 2010-06-09 09:50:17 +0000 | [diff] [blame] | 22 | #include "lldb/API/SBCommandInterpreter.h" |
| 23 | #include "lldb/API/SBCommandReturnObject.h" |
| 24 | #include "lldb/API/SBCommunication.h" |
| 25 | #include "lldb/API/SBDebugger.h" |
| 26 | #include "lldb/API/SBEvent.h" |
| 27 | #include "lldb/API/SBHostOS.h" |
| 28 | #include "lldb/API/SBListener.h" |
Jim Ingham | 85e8b81 | 2011-02-19 02:53:09 +0000 | [diff] [blame] | 29 | #include "lldb/API/SBStream.h" |
Eli Friedman | a382d47 | 2010-06-09 09:50:17 +0000 | [diff] [blame] | 30 | #include "lldb/API/SBTarget.h" |
| 31 | #include "lldb/API/SBThread.h" |
| 32 | #include "lldb/API/SBProcess.h" |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 33 | |
| 34 | using namespace lldb; |
| 35 | |
| 36 | static void reset_stdin_termios (); |
Greg Clayton | f571b89 | 2012-02-02 19:28:31 +0000 | [diff] [blame] | 37 | static bool g_old_stdin_termios_is_valid = false; |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 38 | static struct termios g_old_stdin_termios; |
| 39 | |
Caroline Tice | dd75985 | 2010-09-09 17:45:09 +0000 | [diff] [blame] | 40 | static char *g_debugger_name = (char *) ""; |
Caroline Tice | efed613 | 2010-11-19 20:47:54 +0000 | [diff] [blame] | 41 | static Driver *g_driver = NULL; |
Caroline Tice | dd75985 | 2010-09-09 17:45:09 +0000 | [diff] [blame] | 42 | |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 43 | // In the Driver::MainLoop, we change the terminal settings. This function is |
| 44 | // added as an atexit handler to make sure we clean them up. |
| 45 | static void |
| 46 | reset_stdin_termios () |
| 47 | { |
Greg Clayton | f571b89 | 2012-02-02 19:28:31 +0000 | [diff] [blame] | 48 | if (g_old_stdin_termios_is_valid) |
| 49 | { |
| 50 | g_old_stdin_termios_is_valid = false; |
| 51 | ::tcsetattr (STDIN_FILENO, TCSANOW, &g_old_stdin_termios); |
| 52 | } |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 53 | } |
| 54 | |
Greg Clayton | e0d378b | 2011-03-24 21:19:54 +0000 | [diff] [blame] | 55 | typedef struct |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 56 | { |
Greg Clayton | e0d378b | 2011-03-24 21:19:54 +0000 | [diff] [blame] | 57 | uint32_t usage_mask; // Used to mark options that can be used together. If (1 << n & usage_mask) != 0 |
| 58 | // then this option belongs to option set n. |
| 59 | bool required; // This option is required (in the current usage level) |
| 60 | const char * long_option; // Full name for this option. |
Greg Clayton | 3bcdfc0 | 2012-12-04 00:32:51 +0000 | [diff] [blame] | 61 | int short_option; // Single character for this option. |
Greg Clayton | e0d378b | 2011-03-24 21:19:54 +0000 | [diff] [blame] | 62 | int option_has_arg; // no_argument, required_argument or optional_argument |
Greg Clayton | ab65b34 | 2011-04-13 22:47:15 +0000 | [diff] [blame] | 63 | uint32_t completion_type; // Cookie the option class can use to do define the argument completion. |
Greg Clayton | e0d378b | 2011-03-24 21:19:54 +0000 | [diff] [blame] | 64 | lldb::CommandArgumentType argument_type; // Type of argument this option takes |
| 65 | const char * usage_text; // Full text explaining what this options does and what (if any) argument to |
| 66 | // pass it. |
| 67 | } OptionDefinition; |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 68 | |
Jim Ingham | e64f0dc | 2011-09-13 23:25:31 +0000 | [diff] [blame] | 69 | #define LLDB_3_TO_5 LLDB_OPT_SET_3|LLDB_OPT_SET_4|LLDB_OPT_SET_5 |
| 70 | #define LLDB_4_TO_5 LLDB_OPT_SET_4|LLDB_OPT_SET_5 |
| 71 | |
Greg Clayton | e0d378b | 2011-03-24 21:19:54 +0000 | [diff] [blame] | 72 | static OptionDefinition g_options[] = |
| 73 | { |
Filipe Cabecinhas | d0b87d8 | 2012-09-11 18:11:16 +0000 | [diff] [blame] | 74 | { LLDB_OPT_SET_1, true , "help" , 'h', no_argument , 0, eArgTypeNone, |
Jim Ingham | 12e9a20 | 2011-09-15 21:30:02 +0000 | [diff] [blame] | 75 | "Prints out the usage information for the LLDB debugger." }, |
Filipe Cabecinhas | d0b87d8 | 2012-09-11 18:11:16 +0000 | [diff] [blame] | 76 | { LLDB_OPT_SET_2, true , "version" , 'v', no_argument , 0, eArgTypeNone, |
Jim Ingham | 12e9a20 | 2011-09-15 21:30:02 +0000 | [diff] [blame] | 77 | "Prints out the current version number of the LLDB debugger." }, |
Filipe Cabecinhas | d0b87d8 | 2012-09-11 18:11:16 +0000 | [diff] [blame] | 78 | { LLDB_OPT_SET_3, true , "arch" , 'a', required_argument, 0, eArgTypeArchitecture, |
Jim Ingham | 12e9a20 | 2011-09-15 21:30:02 +0000 | [diff] [blame] | 79 | "Tells the debugger to use the specified architecture when starting and running the program. <architecture> must " |
| 80 | "be one of the architectures for which the program was compiled." }, |
Filipe Cabecinhas | d0b87d8 | 2012-09-11 18:11:16 +0000 | [diff] [blame] | 81 | { LLDB_OPT_SET_3, true , "file" , 'f', required_argument, 0, eArgTypeFilename, |
Jim Ingham | 12e9a20 | 2011-09-15 21:30:02 +0000 | [diff] [blame] | 82 | "Tells the debugger to use the file <filename> as the program to be debugged." }, |
Jason Molenda | 67c3cf5 | 2012-10-24 03:29:40 +0000 | [diff] [blame] | 83 | { LLDB_OPT_SET_3, false, "core" , 'c', required_argument, 0, eArgTypeFilename, |
Johnny Chen | eb46f78 | 2012-08-15 22:10:42 +0000 | [diff] [blame] | 84 | "Tells the debugger to use the fullpath to <path> as the core file." }, |
Jim Ingham | f0c63b9 | 2014-02-05 21:35:09 +0000 | [diff] [blame] | 85 | { LLDB_OPT_SET_5, true , "attach-pid" , 'p', required_argument, 0, eArgTypePid, |
| 86 | "Tells the debugger to attach to a process with the given pid." }, |
Filipe Cabecinhas | d0b87d8 | 2012-09-11 18:11:16 +0000 | [diff] [blame] | 87 | { LLDB_OPT_SET_4, true , "attach-name" , 'n', required_argument, 0, eArgTypeProcessName, |
Jim Ingham | 12e9a20 | 2011-09-15 21:30:02 +0000 | [diff] [blame] | 88 | "Tells the debugger to attach to a process with the given name." }, |
Filipe Cabecinhas | d0b87d8 | 2012-09-11 18:11:16 +0000 | [diff] [blame] | 89 | { LLDB_OPT_SET_4, true , "wait-for" , 'w', no_argument , 0, eArgTypeNone, |
Jim Ingham | 12e9a20 | 2011-09-15 21:30:02 +0000 | [diff] [blame] | 90 | "Tells the debugger to wait for a process with the given pid or name to launch before attaching." }, |
Filipe Cabecinhas | d0b87d8 | 2012-09-11 18:11:16 +0000 | [diff] [blame] | 91 | { LLDB_3_TO_5, false, "source" , 's', required_argument, 0, eArgTypeFilename, |
Jim Ingham | 47ea51f | 2013-09-17 01:53:35 +0000 | [diff] [blame] | 92 | "Tells the debugger to read in and execute the lldb commands in the given file, after any file provided on the command line has been loaded." }, |
Jim Ingham | ed3252f | 2013-09-14 00:20:24 +0000 | [diff] [blame] | 93 | { LLDB_3_TO_5, false, "one-line" , 'o', required_argument, 0, eArgTypeNone, |
Jim Ingham | 47ea51f | 2013-09-17 01:53:35 +0000 | [diff] [blame] | 94 | "Tells the debugger to execute this one-line lldb command after any file provided on the command line has been loaded." }, |
Jim Ingham | ed3252f | 2013-09-14 00:20:24 +0000 | [diff] [blame] | 95 | { LLDB_3_TO_5, false, "source-before-file" , 'S', required_argument, 0, eArgTypeFilename, |
Jim Ingham | 47ea51f | 2013-09-17 01:53:35 +0000 | [diff] [blame] | 96 | "Tells the debugger to read in and execute the lldb commands in the given file, before any file provided on the command line has been loaded." }, |
Jim Ingham | ed3252f | 2013-09-14 00:20:24 +0000 | [diff] [blame] | 97 | { LLDB_3_TO_5, false, "one-line-before-file" , 'O', required_argument, 0, eArgTypeNone, |
Jim Ingham | 47ea51f | 2013-09-17 01:53:35 +0000 | [diff] [blame] | 98 | "Tells the debugger to execute this one-line lldb command before any file provided on the command line has been loaded." }, |
Jim Ingham | f0c63b9 | 2014-02-05 21:35:09 +0000 | [diff] [blame] | 99 | { LLDB_3_TO_5, false, "source-quietly" , 'Q', no_argument , 0, eArgTypeNone, |
| 100 | "Tells the debugger suppress output from commands provided in the -s, -S, -O and -o commands." }, |
Filipe Cabecinhas | d0b87d8 | 2012-09-11 18:11:16 +0000 | [diff] [blame] | 101 | { LLDB_3_TO_5, false, "editor" , 'e', no_argument , 0, eArgTypeNone, |
Jim Ingham | 12e9a20 | 2011-09-15 21:30:02 +0000 | [diff] [blame] | 102 | "Tells the debugger to open source files using the host's \"external editor\" mechanism." }, |
Filipe Cabecinhas | d0b87d8 | 2012-09-11 18:11:16 +0000 | [diff] [blame] | 103 | { LLDB_3_TO_5, false, "no-lldbinit" , 'x', no_argument , 0, eArgTypeNone, |
Jim Ingham | 12e9a20 | 2011-09-15 21:30:02 +0000 | [diff] [blame] | 104 | "Do not automatically parse any '.lldbinit' files." }, |
Jim Ingham | ed3252f | 2013-09-14 00:20:24 +0000 | [diff] [blame] | 105 | { LLDB_3_TO_5, false, "no-use-colors" , 'X', no_argument , 0, eArgTypeNone, |
Michael Sartain | c3ce7f27 | 2013-05-23 20:47:45 +0000 | [diff] [blame] | 106 | "Do not use colors." }, |
| 107 | { LLDB_OPT_SET_6, true , "python-path" , 'P', no_argument , 0, eArgTypeNone, |
Jim Ingham | e2231ac | 2012-12-21 22:22:26 +0000 | [diff] [blame] | 108 | "Prints out the path to the lldb.py file for this version of lldb." }, |
Jim Ingham | f0c63b9 | 2014-02-05 21:35:09 +0000 | [diff] [blame] | 109 | { LLDB_3_TO_5, false, "script-language", 'l', required_argument, 0, eArgTypeScriptLang, |
| 110 | "Tells the debugger to use the specified scripting language for user-defined scripts, rather than the default. " |
| 111 | "Valid scripting languages that can be specified include Python, Perl, Ruby and Tcl. Currently only the Python " |
| 112 | "extensions have been implemented." }, |
| 113 | { LLDB_3_TO_5, false, "debug" , 'd', no_argument , 0, eArgTypeNone, |
| 114 | "Tells the debugger to print out extra information for debugging itself." }, |
Filipe Cabecinhas | d0b87d8 | 2012-09-11 18:11:16 +0000 | [diff] [blame] | 115 | { 0, false, NULL , 0 , 0 , 0, eArgTypeNone, NULL } |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 116 | }; |
| 117 | |
Jim Ingham | e64f0dc | 2011-09-13 23:25:31 +0000 | [diff] [blame] | 118 | static const uint32_t last_option_set_with_args = 2; |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 119 | |
| 120 | Driver::Driver () : |
| 121 | SBBroadcaster ("Driver"), |
Jim Ingham | 0694269 | 2011-08-13 00:22:20 +0000 | [diff] [blame] | 122 | m_debugger (SBDebugger::Create(false)), |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 123 | m_option_data () |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 124 | { |
Greg Clayton | fc3f027 | 2011-05-29 04:06:55 +0000 | [diff] [blame] | 125 | // We want to be able to handle CTRL+D in the terminal to have it terminate |
| 126 | // certain input |
| 127 | m_debugger.SetCloseInputOnEOF (false); |
Caroline Tice | dd75985 | 2010-09-09 17:45:09 +0000 | [diff] [blame] | 128 | g_debugger_name = (char *) m_debugger.GetInstanceName(); |
| 129 | if (g_debugger_name == NULL) |
| 130 | g_debugger_name = (char *) ""; |
Caroline Tice | efed613 | 2010-11-19 20:47:54 +0000 | [diff] [blame] | 131 | g_driver = this; |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | Driver::~Driver () |
| 135 | { |
Caroline Tice | efed613 | 2010-11-19 20:47:54 +0000 | [diff] [blame] | 136 | g_driver = NULL; |
| 137 | g_debugger_name = NULL; |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 138 | } |
| 139 | |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 140 | |
Greg Clayton | c982c76 | 2010-07-09 20:39:50 +0000 | [diff] [blame] | 141 | // This function takes INDENT, which tells how many spaces to output at the front |
| 142 | // of each line; TEXT, which is the text that is to be output. It outputs the |
| 143 | // text, on multiple lines if necessary, to RESULT, with INDENT spaces at the |
| 144 | // front of each line. It breaks lines on spaces, tabs or newlines, shortening |
| 145 | // the line if necessary to not break in the middle of a word. It assumes that |
| 146 | // each output line should contain a maximum of OUTPUT_MAX_COLUMNS characters. |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 147 | |
| 148 | void |
Greg Clayton | c982c76 | 2010-07-09 20:39:50 +0000 | [diff] [blame] | 149 | OutputFormattedUsageText (FILE *out, int indent, const char *text, int output_max_columns) |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 150 | { |
| 151 | int len = strlen (text); |
| 152 | std::string text_string (text); |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 153 | |
| 154 | // Force indentation to be reasonable. |
| 155 | if (indent >= output_max_columns) |
| 156 | indent = 0; |
| 157 | |
| 158 | // Will it all fit on one line? |
| 159 | |
| 160 | if (len + indent < output_max_columns) |
| 161 | // Output as a single line |
Greg Clayton | c982c76 | 2010-07-09 20:39:50 +0000 | [diff] [blame] | 162 | fprintf (out, "%*s%s\n", indent, "", text); |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 163 | else |
| 164 | { |
| 165 | // We need to break it up into multiple lines. |
| 166 | int text_width = output_max_columns - indent - 1; |
| 167 | int start = 0; |
| 168 | int end = start; |
| 169 | int final_end = len; |
| 170 | int sub_len; |
| 171 | |
| 172 | while (end < final_end) |
| 173 | { |
| 174 | // Dont start the 'text' on a space, since we're already outputting the indentation. |
| 175 | while ((start < final_end) && (text[start] == ' ')) |
| 176 | start++; |
| 177 | |
| 178 | end = start + text_width; |
| 179 | if (end > final_end) |
| 180 | end = final_end; |
| 181 | else |
| 182 | { |
| 183 | // If we're not at the end of the text, make sure we break the line on white space. |
| 184 | while (end > start |
| 185 | && text[end] != ' ' && text[end] != '\t' && text[end] != '\n') |
| 186 | end--; |
| 187 | } |
| 188 | sub_len = end - start; |
| 189 | std::string substring = text_string.substr (start, sub_len); |
Greg Clayton | c982c76 | 2010-07-09 20:39:50 +0000 | [diff] [blame] | 190 | fprintf (out, "%*s%s\n", indent, "", substring.c_str()); |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 191 | start = end + 1; |
| 192 | } |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | void |
Greg Clayton | e0d378b | 2011-03-24 21:19:54 +0000 | [diff] [blame] | 197 | ShowUsage (FILE *out, OptionDefinition *option_table, Driver::OptionData data) |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 198 | { |
| 199 | uint32_t screen_width = 80; |
| 200 | uint32_t indent_level = 0; |
| 201 | const char *name = "lldb"; |
Jim Ingham | 8651121 | 2010-06-15 18:47:14 +0000 | [diff] [blame] | 202 | |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 203 | fprintf (out, "\nUsage:\n\n"); |
| 204 | |
| 205 | indent_level += 2; |
| 206 | |
| 207 | |
| 208 | // First, show each usage level set of options, e.g. <cmd> [options-for-level-0] |
| 209 | // <cmd> [options-for-level-1] |
| 210 | // etc. |
| 211 | |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 212 | uint32_t num_options; |
Jim Ingham | 8651121 | 2010-06-15 18:47:14 +0000 | [diff] [blame] | 213 | uint32_t num_option_sets = 0; |
| 214 | |
| 215 | for (num_options = 0; option_table[num_options].long_option != NULL; ++num_options) |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 216 | { |
Jim Ingham | 8651121 | 2010-06-15 18:47:14 +0000 | [diff] [blame] | 217 | uint32_t this_usage_mask = option_table[num_options].usage_mask; |
| 218 | if (this_usage_mask == LLDB_OPT_SET_ALL) |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 219 | { |
Jim Ingham | 8651121 | 2010-06-15 18:47:14 +0000 | [diff] [blame] | 220 | if (num_option_sets == 0) |
| 221 | num_option_sets = 1; |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 222 | } |
| 223 | else |
| 224 | { |
Greg Clayton | c982c76 | 2010-07-09 20:39:50 +0000 | [diff] [blame] | 225 | for (uint32_t j = 0; j < LLDB_MAX_NUM_OPTION_SETS; j++) |
Jim Ingham | 8651121 | 2010-06-15 18:47:14 +0000 | [diff] [blame] | 226 | { |
| 227 | if (this_usage_mask & 1 << j) |
| 228 | { |
| 229 | if (num_option_sets <= j) |
| 230 | num_option_sets = j + 1; |
| 231 | } |
| 232 | } |
| 233 | } |
| 234 | } |
| 235 | |
| 236 | for (uint32_t opt_set = 0; opt_set < num_option_sets; opt_set++) |
| 237 | { |
| 238 | uint32_t opt_set_mask; |
| 239 | |
| 240 | opt_set_mask = 1 << opt_set; |
| 241 | |
| 242 | if (opt_set > 0) |
| 243 | fprintf (out, "\n"); |
Greg Clayton | c982c76 | 2010-07-09 20:39:50 +0000 | [diff] [blame] | 244 | fprintf (out, "%*s%s", indent_level, "", name); |
Jim Ingham | 556e653 | 2011-08-16 23:15:02 +0000 | [diff] [blame] | 245 | bool is_help_line = false; |
Jim Ingham | 8651121 | 2010-06-15 18:47:14 +0000 | [diff] [blame] | 246 | |
| 247 | for (uint32_t i = 0; i < num_options; ++i) |
| 248 | { |
| 249 | if (option_table[i].usage_mask & opt_set_mask) |
| 250 | { |
Caroline Tice | deaab22 | 2010-10-01 19:59:14 +0000 | [diff] [blame] | 251 | CommandArgumentType arg_type = option_table[i].argument_type; |
Greg Clayton | 9d0402b | 2011-02-20 02:15:07 +0000 | [diff] [blame] | 252 | const char *arg_name = SBCommandInterpreter::GetArgumentTypeAsCString (arg_type); |
Jim Ingham | 556e653 | 2011-08-16 23:15:02 +0000 | [diff] [blame] | 253 | // This is a bit of a hack, but there's no way to say certain options don't have arguments yet... |
| 254 | // so we do it by hand here. |
| 255 | if (option_table[i].short_option == 'h') |
| 256 | is_help_line = true; |
| 257 | |
Jim Ingham | 8651121 | 2010-06-15 18:47:14 +0000 | [diff] [blame] | 258 | if (option_table[i].required) |
| 259 | { |
| 260 | if (option_table[i].option_has_arg == required_argument) |
Greg Clayton | 9d0402b | 2011-02-20 02:15:07 +0000 | [diff] [blame] | 261 | fprintf (out, " -%c <%s>", option_table[i].short_option, arg_name); |
Jim Ingham | 8651121 | 2010-06-15 18:47:14 +0000 | [diff] [blame] | 262 | else if (option_table[i].option_has_arg == optional_argument) |
Greg Clayton | 9d0402b | 2011-02-20 02:15:07 +0000 | [diff] [blame] | 263 | fprintf (out, " -%c [<%s>]", option_table[i].short_option, arg_name); |
Jim Ingham | 8651121 | 2010-06-15 18:47:14 +0000 | [diff] [blame] | 264 | else |
| 265 | fprintf (out, " -%c", option_table[i].short_option); |
| 266 | } |
| 267 | else |
| 268 | { |
| 269 | if (option_table[i].option_has_arg == required_argument) |
Greg Clayton | 9d0402b | 2011-02-20 02:15:07 +0000 | [diff] [blame] | 270 | fprintf (out, " [-%c <%s>]", option_table[i].short_option, arg_name); |
Jim Ingham | 8651121 | 2010-06-15 18:47:14 +0000 | [diff] [blame] | 271 | else if (option_table[i].option_has_arg == optional_argument) |
Greg Clayton | 9d0402b | 2011-02-20 02:15:07 +0000 | [diff] [blame] | 272 | fprintf (out, " [-%c [<%s>]]", option_table[i].short_option, arg_name); |
Jim Ingham | 8651121 | 2010-06-15 18:47:14 +0000 | [diff] [blame] | 273 | else |
| 274 | fprintf (out, " [-%c]", option_table[i].short_option); |
| 275 | } |
| 276 | } |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 277 | } |
Jim Ingham | e64f0dc | 2011-09-13 23:25:31 +0000 | [diff] [blame] | 278 | if (!is_help_line && (opt_set <= last_option_set_with_args)) |
Jim Ingham | 556e653 | 2011-08-16 23:15:02 +0000 | [diff] [blame] | 279 | fprintf (out, " [[--] <PROGRAM-ARG-1> [<PROGRAM_ARG-2> ...]]"); |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 280 | } |
| 281 | |
| 282 | fprintf (out, "\n\n"); |
| 283 | |
| 284 | // Now print out all the detailed information about the various options: long form, short form and help text: |
| 285 | // -- long_name <argument> |
| 286 | // - short <argument> |
| 287 | // help text |
| 288 | |
| 289 | // This variable is used to keep track of which options' info we've printed out, because some options can be in |
| 290 | // more than one usage level, but we only want to print the long form of its information once. |
| 291 | |
| 292 | Driver::OptionData::OptionSet options_seen; |
| 293 | Driver::OptionData::OptionSet::iterator pos; |
| 294 | |
| 295 | indent_level += 5; |
| 296 | |
Jim Ingham | 8651121 | 2010-06-15 18:47:14 +0000 | [diff] [blame] | 297 | for (uint32_t i = 0; i < num_options; ++i) |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 298 | { |
| 299 | // Only print this option if we haven't already seen it. |
| 300 | pos = options_seen.find (option_table[i].short_option); |
| 301 | if (pos == options_seen.end()) |
| 302 | { |
Caroline Tice | deaab22 | 2010-10-01 19:59:14 +0000 | [diff] [blame] | 303 | CommandArgumentType arg_type = option_table[i].argument_type; |
Greg Clayton | 9d0402b | 2011-02-20 02:15:07 +0000 | [diff] [blame] | 304 | const char *arg_name = SBCommandInterpreter::GetArgumentTypeAsCString (arg_type); |
Caroline Tice | deaab22 | 2010-10-01 19:59:14 +0000 | [diff] [blame] | 305 | |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 306 | options_seen.insert (option_table[i].short_option); |
Greg Clayton | c982c76 | 2010-07-09 20:39:50 +0000 | [diff] [blame] | 307 | fprintf (out, "%*s-%c ", indent_level, "", option_table[i].short_option); |
Caroline Tice | deaab22 | 2010-10-01 19:59:14 +0000 | [diff] [blame] | 308 | if (arg_type != eArgTypeNone) |
Greg Clayton | 9d0402b | 2011-02-20 02:15:07 +0000 | [diff] [blame] | 309 | fprintf (out, "<%s>", arg_name); |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 310 | fprintf (out, "\n"); |
Greg Clayton | c982c76 | 2010-07-09 20:39:50 +0000 | [diff] [blame] | 311 | fprintf (out, "%*s--%s ", indent_level, "", option_table[i].long_option); |
Caroline Tice | deaab22 | 2010-10-01 19:59:14 +0000 | [diff] [blame] | 312 | if (arg_type != eArgTypeNone) |
Greg Clayton | 9d0402b | 2011-02-20 02:15:07 +0000 | [diff] [blame] | 313 | fprintf (out, "<%s>", arg_name); |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 314 | fprintf (out, "\n"); |
| 315 | indent_level += 5; |
Greg Clayton | c982c76 | 2010-07-09 20:39:50 +0000 | [diff] [blame] | 316 | OutputFormattedUsageText (out, indent_level, option_table[i].usage_text, screen_width); |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 317 | indent_level -= 5; |
| 318 | fprintf (out, "\n"); |
| 319 | } |
| 320 | } |
| 321 | |
| 322 | indent_level -= 5; |
Jim Ingham | f0c63b9 | 2014-02-05 21:35:09 +0000 | [diff] [blame] | 323 | |
| 324 | fprintf (out, "\n%*sNotes:\n", |
| 325 | indent_level, ""); |
| 326 | indent_level += 5; |
| 327 | |
Jim Ingham | 47ea51f | 2013-09-17 01:53:35 +0000 | [diff] [blame] | 328 | fprintf (out, "\n%*sMultiple \"-s\" and \"-o\" options can be provided. They will be processed from left to right in order, " |
| 329 | "\n%*swith the source files and commands interleaved. The same is true of the \"-S\" and \"-O\" options." |
| 330 | "\n%*sThe before file and after file sets can intermixed freely, the command parser will sort them out." |
| 331 | "\n%*sThe order of the file specifiers (\"-c\", \"-f\", etc.) is not significant in this regard.\n\n", |
| 332 | indent_level, "", |
| 333 | indent_level, "", |
| 334 | indent_level, "", |
| 335 | indent_level, ""); |
| 336 | |
Jim Ingham | f0c63b9 | 2014-02-05 21:35:09 +0000 | [diff] [blame] | 337 | fprintf (out, "\n%*sIf you don't provide -f then the first argument will be the file to be debugged" |
| 338 | "\n%*swhich means that '%s -- <filename> [<ARG1> [<ARG2>]]' also works." |
| 339 | "\n%*sBut remember to end the options with \"--\" if any of your arguments have a \"-\" in them.\n\n", |
Jim Ingham | a9deaf9 | 2011-08-16 23:57:58 +0000 | [diff] [blame] | 340 | indent_level, "", |
| 341 | indent_level, "", |
| 342 | name, |
| 343 | indent_level, ""); |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 344 | } |
| 345 | |
| 346 | void |
Greg Clayton | e0d378b | 2011-03-24 21:19:54 +0000 | [diff] [blame] | 347 | BuildGetOptTable (OptionDefinition *expanded_option_table, std::vector<struct option> &getopt_table, |
Caroline Tice | 4ab31c9 | 2010-10-12 21:57:09 +0000 | [diff] [blame] | 348 | uint32_t num_options) |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 349 | { |
| 350 | if (num_options == 0) |
| 351 | return; |
| 352 | |
| 353 | uint32_t i; |
| 354 | uint32_t j; |
| 355 | std::bitset<256> option_seen; |
| 356 | |
Caroline Tice | 4ab31c9 | 2010-10-12 21:57:09 +0000 | [diff] [blame] | 357 | getopt_table.resize (num_options + 1); |
| 358 | |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 359 | for (i = 0, j = 0; i < num_options; ++i) |
Greg Clayton | c982c76 | 2010-07-09 20:39:50 +0000 | [diff] [blame] | 360 | { |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 361 | char short_opt = expanded_option_table[i].short_option; |
Greg Clayton | c982c76 | 2010-07-09 20:39:50 +0000 | [diff] [blame] | 362 | |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 363 | if (option_seen.test(short_opt) == false) |
Greg Clayton | c982c76 | 2010-07-09 20:39:50 +0000 | [diff] [blame] | 364 | { |
Caroline Tice | 4ab31c9 | 2010-10-12 21:57:09 +0000 | [diff] [blame] | 365 | getopt_table[j].name = expanded_option_table[i].long_option; |
| 366 | getopt_table[j].has_arg = expanded_option_table[i].option_has_arg; |
| 367 | getopt_table[j].flag = NULL; |
| 368 | getopt_table[j].val = expanded_option_table[i].short_option; |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 369 | option_seen.set(short_opt); |
| 370 | ++j; |
Greg Clayton | c982c76 | 2010-07-09 20:39:50 +0000 | [diff] [blame] | 371 | } |
| 372 | } |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 373 | |
Caroline Tice | 4ab31c9 | 2010-10-12 21:57:09 +0000 | [diff] [blame] | 374 | getopt_table[j].name = NULL; |
| 375 | getopt_table[j].has_arg = 0; |
| 376 | getopt_table[j].flag = NULL; |
| 377 | getopt_table[j].val = 0; |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 378 | |
| 379 | } |
| 380 | |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 381 | Driver::OptionData::OptionData () : |
Greg Clayton | 8d846da | 2010-12-08 22:23:24 +0000 | [diff] [blame] | 382 | m_args(), |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 383 | m_script_lang (lldb::eScriptLanguageDefault), |
Johnny Chen | eb46f78 | 2012-08-15 22:10:42 +0000 | [diff] [blame] | 384 | m_core_file (), |
Greg Clayton | c982c76 | 2010-07-09 20:39:50 +0000 | [diff] [blame] | 385 | m_crash_log (), |
Jim Ingham | ed3252f | 2013-09-14 00:20:24 +0000 | [diff] [blame] | 386 | m_initial_commands (), |
| 387 | m_after_file_commands (), |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 388 | m_debug_mode (false), |
Jim Ingham | ed3252f | 2013-09-14 00:20:24 +0000 | [diff] [blame] | 389 | m_source_quietly(false), |
Greg Clayton | c982c76 | 2010-07-09 20:39:50 +0000 | [diff] [blame] | 390 | m_print_version (false), |
Jim Ingham | e2231ac | 2012-12-21 22:22:26 +0000 | [diff] [blame] | 391 | m_print_python_path (false), |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 392 | m_print_help (false), |
Jim Ingham | e64f0dc | 2011-09-13 23:25:31 +0000 | [diff] [blame] | 393 | m_wait_for(false), |
| 394 | m_process_name(), |
| 395 | m_process_pid(LLDB_INVALID_PROCESS_ID), |
Daniel Dunbar | a08823f | 2011-10-31 22:50:49 +0000 | [diff] [blame] | 396 | m_use_external_editor(false), |
Stephen Wilson | 71c21d1 | 2011-04-11 19:41:40 +0000 | [diff] [blame] | 397 | m_seen_options() |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 398 | { |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 399 | } |
| 400 | |
| 401 | Driver::OptionData::~OptionData () |
| 402 | { |
| 403 | } |
| 404 | |
| 405 | void |
| 406 | Driver::OptionData::Clear () |
| 407 | { |
Greg Clayton | 8d846da | 2010-12-08 22:23:24 +0000 | [diff] [blame] | 408 | m_args.clear (); |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 409 | m_script_lang = lldb::eScriptLanguageDefault; |
Jim Ingham | ed3252f | 2013-09-14 00:20:24 +0000 | [diff] [blame] | 410 | m_initial_commands.clear (); |
| 411 | m_after_file_commands.clear (); |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 412 | m_debug_mode = false; |
Jim Ingham | ed3252f | 2013-09-14 00:20:24 +0000 | [diff] [blame] | 413 | m_source_quietly = false; |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 414 | m_print_help = false; |
| 415 | m_print_version = false; |
Jim Ingham | e2231ac | 2012-12-21 22:22:26 +0000 | [diff] [blame] | 416 | m_print_python_path = false; |
Jim Ingham | e40e421 | 2010-08-30 19:44:40 +0000 | [diff] [blame] | 417 | m_use_external_editor = false; |
Jim Ingham | e64f0dc | 2011-09-13 23:25:31 +0000 | [diff] [blame] | 418 | m_wait_for = false; |
| 419 | m_process_name.erase(); |
| 420 | m_process_pid = LLDB_INVALID_PROCESS_ID; |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 421 | } |
| 422 | |
| 423 | void |
Jim Ingham | ed3252f | 2013-09-14 00:20:24 +0000 | [diff] [blame] | 424 | Driver::OptionData::AddInitialCommand (const char *command, bool before_file, bool is_file, SBError &error) |
| 425 | { |
| 426 | std::vector<std::pair<bool, std::string> > *command_set; |
| 427 | if (before_file) |
| 428 | command_set = &(m_initial_commands); |
| 429 | else |
| 430 | command_set = &(m_after_file_commands); |
| 431 | |
| 432 | if (is_file) |
| 433 | { |
| 434 | SBFileSpec file(command); |
| 435 | if (file.Exists()) |
| 436 | command_set->push_back (std::pair<bool, std::string> (true, optarg)); |
| 437 | else if (file.ResolveExecutableLocation()) |
| 438 | { |
| 439 | char final_path[PATH_MAX]; |
| 440 | file.GetPath (final_path, sizeof(final_path)); |
| 441 | std::string path_str (final_path); |
| 442 | command_set->push_back (std::pair<bool, std::string> (true, path_str)); |
| 443 | } |
| 444 | else |
| 445 | error.SetErrorStringWithFormat("file specified in --source (-s) option doesn't exist: '%s'", optarg); |
| 446 | } |
| 447 | else |
| 448 | command_set->push_back (std::pair<bool, std::string> (false, optarg)); |
| 449 | } |
| 450 | |
| 451 | void |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 452 | Driver::ResetOptionValues () |
| 453 | { |
| 454 | m_option_data.Clear (); |
| 455 | } |
| 456 | |
| 457 | const char * |
| 458 | Driver::GetFilename() const |
| 459 | { |
Greg Clayton | 8d846da | 2010-12-08 22:23:24 +0000 | [diff] [blame] | 460 | if (m_option_data.m_args.empty()) |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 461 | return NULL; |
Greg Clayton | 8d846da | 2010-12-08 22:23:24 +0000 | [diff] [blame] | 462 | return m_option_data.m_args.front().c_str(); |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 463 | } |
| 464 | |
| 465 | const char * |
| 466 | Driver::GetCrashLogFilename() const |
| 467 | { |
| 468 | if (m_option_data.m_crash_log.empty()) |
| 469 | return NULL; |
| 470 | return m_option_data.m_crash_log.c_str(); |
| 471 | } |
| 472 | |
| 473 | lldb::ScriptLanguage |
| 474 | Driver::GetScriptLanguage() const |
| 475 | { |
| 476 | return m_option_data.m_script_lang; |
| 477 | } |
| 478 | |
Jim Ingham | ed3252f | 2013-09-14 00:20:24 +0000 | [diff] [blame] | 479 | void |
| 480 | Driver::ExecuteInitialCommands (bool before_file) |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 481 | { |
Jim Ingham | ed3252f | 2013-09-14 00:20:24 +0000 | [diff] [blame] | 482 | size_t num_commands; |
| 483 | std::vector<std::pair<bool, std::string> > *command_set; |
| 484 | if (before_file) |
| 485 | command_set = &(m_option_data.m_initial_commands); |
| 486 | else |
| 487 | command_set = &(m_option_data.m_after_file_commands); |
| 488 | |
| 489 | num_commands = command_set->size(); |
| 490 | SBCommandReturnObject result; |
| 491 | bool old_async = GetDebugger().GetAsync(); |
| 492 | GetDebugger().SetAsync(false); |
| 493 | for (size_t idx = 0; idx < num_commands; idx++) |
| 494 | { |
| 495 | bool is_file = (*command_set)[idx].first; |
| 496 | const char *command = (*command_set)[idx].second.c_str(); |
| 497 | char command_string[PATH_MAX * 2]; |
| 498 | const bool dump_stream_only_if_no_immediate = true; |
| 499 | const char *executed_command = command; |
| 500 | if (is_file) |
| 501 | { |
Jim Ingham | f0c63b9 | 2014-02-05 21:35:09 +0000 | [diff] [blame] | 502 | ::snprintf (command_string, sizeof(command_string), "command source -s %i '%s'", m_option_data.m_source_quietly, command); |
Jim Ingham | ed3252f | 2013-09-14 00:20:24 +0000 | [diff] [blame] | 503 | executed_command = command_string; |
| 504 | } |
| 505 | |
| 506 | m_debugger.GetCommandInterpreter().HandleCommand (executed_command, result, false); |
| 507 | if (!m_option_data.m_source_quietly || result.Succeeded() == false) |
| 508 | { |
| 509 | const size_t output_size = result.GetOutputSize(); |
| 510 | if (output_size > 0) |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 511 | { |
| 512 | const char *cstr = result.GetOutput(dump_stream_only_if_no_immediate); |
| 513 | if (cstr) |
| 514 | printf ("%s", cstr); |
| 515 | } |
Jim Ingham | ed3252f | 2013-09-14 00:20:24 +0000 | [diff] [blame] | 516 | const size_t error_size = result.GetErrorSize(); |
| 517 | if (error_size > 0) |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 518 | { |
| 519 | const char *cstr = result.GetError(dump_stream_only_if_no_immediate); |
| 520 | if (cstr) |
| 521 | printf ("%s", cstr); |
| 522 | } |
Jim Ingham | ed3252f | 2013-09-14 00:20:24 +0000 | [diff] [blame] | 523 | } |
| 524 | |
| 525 | if (result.Succeeded() == false) |
| 526 | { |
Jim Ingham | ed3252f | 2013-09-14 00:20:24 +0000 | [diff] [blame] | 527 | const char *type = before_file ? "before file" : "after_file"; |
| 528 | if (is_file) |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 529 | ::fprintf(stderr, "Aborting %s command execution, command file: '%s' failed.\n", type, command); |
Jim Ingham | ed3252f | 2013-09-14 00:20:24 +0000 | [diff] [blame] | 530 | else |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 531 | ::fprintf(stderr, "Aborting %s command execution, command: '%s' failed.\n", type, command); |
Jim Ingham | ed3252f | 2013-09-14 00:20:24 +0000 | [diff] [blame] | 532 | break; |
| 533 | } |
| 534 | result.Clear(); |
| 535 | } |
| 536 | GetDebugger().SetAsync(old_async); |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 537 | } |
| 538 | |
| 539 | bool |
| 540 | Driver::GetDebugMode() const |
| 541 | { |
| 542 | return m_option_data.m_debug_mode; |
| 543 | } |
| 544 | |
| 545 | |
| 546 | // Check the arguments that were passed to this program to make sure they are valid and to get their |
| 547 | // argument values (if any). Return a boolean value indicating whether or not to start up the full |
| 548 | // debugger (i.e. the Command Interpreter) or not. Return FALSE if the arguments were invalid OR |
| 549 | // if the user only wanted help or version information. |
| 550 | |
| 551 | SBError |
Deepak Panickal | 429222c | 2013-10-15 15:46:40 +0000 | [diff] [blame] | 552 | Driver::ParseArgs (int argc, const char *argv[], FILE *out_fh, bool &exiting) |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 553 | { |
| 554 | ResetOptionValues (); |
| 555 | |
| 556 | SBCommandReturnObject result; |
| 557 | |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 558 | SBError error; |
| 559 | std::string option_string; |
| 560 | struct option *long_options = NULL; |
Caroline Tice | 4ab31c9 | 2010-10-12 21:57:09 +0000 | [diff] [blame] | 561 | std::vector<struct option> long_options_vector; |
Greg Clayton | c982c76 | 2010-07-09 20:39:50 +0000 | [diff] [blame] | 562 | uint32_t num_options; |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 563 | |
Greg Clayton | c982c76 | 2010-07-09 20:39:50 +0000 | [diff] [blame] | 564 | for (num_options = 0; g_options[num_options].long_option != NULL; ++num_options) |
| 565 | /* Do Nothing. */; |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 566 | |
| 567 | if (num_options == 0) |
| 568 | { |
| 569 | if (argc > 1) |
| 570 | error.SetErrorStringWithFormat ("invalid number of options"); |
| 571 | return error; |
| 572 | } |
| 573 | |
Caroline Tice | 4ab31c9 | 2010-10-12 21:57:09 +0000 | [diff] [blame] | 574 | BuildGetOptTable (g_options, long_options_vector, num_options); |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 575 | |
Caroline Tice | 4ab31c9 | 2010-10-12 21:57:09 +0000 | [diff] [blame] | 576 | if (long_options_vector.empty()) |
| 577 | long_options = NULL; |
| 578 | else |
| 579 | long_options = &long_options_vector.front(); |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 580 | |
| 581 | if (long_options == NULL) |
| 582 | { |
| 583 | error.SetErrorStringWithFormat ("invalid long options"); |
| 584 | return error; |
| 585 | } |
| 586 | |
Greg Clayton | b7ad58a | 2013-04-04 20:35:24 +0000 | [diff] [blame] | 587 | // Build the option_string argument for call to getopt_long_only. |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 588 | |
| 589 | for (int i = 0; long_options[i].name != NULL; ++i) |
| 590 | { |
| 591 | if (long_options[i].flag == NULL) |
| 592 | { |
| 593 | option_string.push_back ((char) long_options[i].val); |
| 594 | switch (long_options[i].has_arg) |
| 595 | { |
| 596 | default: |
| 597 | case no_argument: |
| 598 | break; |
| 599 | case required_argument: |
| 600 | option_string.push_back (':'); |
| 601 | break; |
| 602 | case optional_argument: |
| 603 | option_string.append ("::"); |
| 604 | break; |
| 605 | } |
| 606 | } |
| 607 | } |
| 608 | |
Jim Ingham | 0694269 | 2011-08-13 00:22:20 +0000 | [diff] [blame] | 609 | // This is kind of a pain, but since we make the debugger in the Driver's constructor, we can't |
| 610 | // know at that point whether we should read in init files yet. So we don't read them in in the |
| 611 | // Driver constructor, then set the flags back to "read them in" here, and then if we see the |
| 612 | // "-n" flag, we'll turn it off again. Finally we have to read them in by hand later in the |
| 613 | // main loop. |
| 614 | |
| 615 | m_debugger.SkipLLDBInitFiles (false); |
| 616 | m_debugger.SkipAppInitFiles (false); |
| 617 | |
Greg Clayton | b7ad58a | 2013-04-04 20:35:24 +0000 | [diff] [blame] | 618 | // Prepare for & make calls to getopt_long_only. |
Eli Friedman | adb3502 | 2010-06-13 19:18:49 +0000 | [diff] [blame] | 619 | #if __GLIBC__ |
| 620 | optind = 0; |
| 621 | #else |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 622 | optreset = 1; |
| 623 | optind = 1; |
Eli Friedman | adb3502 | 2010-06-13 19:18:49 +0000 | [diff] [blame] | 624 | #endif |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 625 | int val; |
| 626 | while (1) |
| 627 | { |
| 628 | int long_options_index = -1; |
Greg Clayton | b7ad58a | 2013-04-04 20:35:24 +0000 | [diff] [blame] | 629 | val = ::getopt_long_only (argc, const_cast<char **>(argv), option_string.c_str(), long_options, &long_options_index); |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 630 | |
| 631 | if (val == -1) |
| 632 | break; |
| 633 | else if (val == '?') |
| 634 | { |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 635 | m_option_data.m_print_help = true; |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 636 | error.SetErrorStringWithFormat ("unknown or ambiguous option"); |
| 637 | break; |
| 638 | } |
| 639 | else if (val == 0) |
| 640 | continue; |
| 641 | else |
| 642 | { |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 643 | m_option_data.m_seen_options.insert ((char) val); |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 644 | if (long_options_index == -1) |
| 645 | { |
| 646 | for (int i = 0; |
| 647 | long_options[i].name || long_options[i].has_arg || long_options[i].flag || long_options[i].val; |
| 648 | ++i) |
| 649 | { |
| 650 | if (long_options[i].val == val) |
| 651 | { |
| 652 | long_options_index = i; |
| 653 | break; |
| 654 | } |
| 655 | } |
| 656 | } |
| 657 | |
| 658 | if (long_options_index >= 0) |
| 659 | { |
Greg Clayton | 3bcdfc0 | 2012-12-04 00:32:51 +0000 | [diff] [blame] | 660 | const int short_option = g_options[long_options_index].short_option; |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 661 | |
| 662 | switch (short_option) |
| 663 | { |
| 664 | case 'h': |
| 665 | m_option_data.m_print_help = true; |
| 666 | break; |
| 667 | |
| 668 | case 'v': |
| 669 | m_option_data.m_print_version = true; |
| 670 | break; |
| 671 | |
Jim Ingham | e2231ac | 2012-12-21 22:22:26 +0000 | [diff] [blame] | 672 | case 'P': |
| 673 | m_option_data.m_print_python_path = true; |
| 674 | break; |
| 675 | |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 676 | case 'c': |
Johnny Chen | eb46f78 | 2012-08-15 22:10:42 +0000 | [diff] [blame] | 677 | { |
| 678 | SBFileSpec file(optarg); |
| 679 | if (file.Exists()) |
| 680 | { |
| 681 | m_option_data.m_core_file = optarg; |
| 682 | } |
| 683 | else |
| 684 | error.SetErrorStringWithFormat("file specified in --core (-c) option doesn't exist: '%s'", optarg); |
| 685 | } |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 686 | break; |
Johnny Chen | eb46f78 | 2012-08-15 22:10:42 +0000 | [diff] [blame] | 687 | |
Jim Ingham | e40e421 | 2010-08-30 19:44:40 +0000 | [diff] [blame] | 688 | case 'e': |
| 689 | m_option_data.m_use_external_editor = true; |
| 690 | break; |
Greg Clayton | 6eee5aa | 2010-10-11 01:05:37 +0000 | [diff] [blame] | 691 | |
Jim Ingham | e64f0dc | 2011-09-13 23:25:31 +0000 | [diff] [blame] | 692 | case 'x': |
Greg Clayton | 6eee5aa | 2010-10-11 01:05:37 +0000 | [diff] [blame] | 693 | m_debugger.SkipLLDBInitFiles (true); |
Jim Ingham | 0694269 | 2011-08-13 00:22:20 +0000 | [diff] [blame] | 694 | m_debugger.SkipAppInitFiles (true); |
Greg Clayton | 6eee5aa | 2010-10-11 01:05:37 +0000 | [diff] [blame] | 695 | break; |
| 696 | |
Jim Ingham | ed3252f | 2013-09-14 00:20:24 +0000 | [diff] [blame] | 697 | case 'X': |
Michael Sartain | c3ce7f27 | 2013-05-23 20:47:45 +0000 | [diff] [blame] | 698 | m_debugger.SetUseColor (false); |
| 699 | break; |
| 700 | |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 701 | case 'f': |
| 702 | { |
| 703 | SBFileSpec file(optarg); |
| 704 | if (file.Exists()) |
Greg Clayton | 8d846da | 2010-12-08 22:23:24 +0000 | [diff] [blame] | 705 | { |
| 706 | m_option_data.m_args.push_back (optarg); |
| 707 | } |
Caroline Tice | 428a9a5 | 2010-09-10 04:48:55 +0000 | [diff] [blame] | 708 | else if (file.ResolveExecutableLocation()) |
| 709 | { |
| 710 | char path[PATH_MAX]; |
Johnny Chen | 25f3a3c | 2011-08-10 22:06:24 +0000 | [diff] [blame] | 711 | file.GetPath (path, sizeof(path)); |
Greg Clayton | 8d846da | 2010-12-08 22:23:24 +0000 | [diff] [blame] | 712 | m_option_data.m_args.push_back (path); |
Caroline Tice | 428a9a5 | 2010-09-10 04:48:55 +0000 | [diff] [blame] | 713 | } |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 714 | else |
| 715 | error.SetErrorStringWithFormat("file specified in --file (-f) option doesn't exist: '%s'", optarg); |
| 716 | } |
| 717 | break; |
| 718 | |
| 719 | case 'a': |
| 720 | if (!m_debugger.SetDefaultArchitecture (optarg)) |
| 721 | error.SetErrorStringWithFormat("invalid architecture in the -a or --arch option: '%s'", optarg); |
| 722 | break; |
| 723 | |
| 724 | case 'l': |
| 725 | m_option_data.m_script_lang = m_debugger.GetScriptingLanguage (optarg); |
| 726 | break; |
| 727 | |
| 728 | case 'd': |
| 729 | m_option_data.m_debug_mode = true; |
| 730 | break; |
| 731 | |
Jim Ingham | f0c63b9 | 2014-02-05 21:35:09 +0000 | [diff] [blame] | 732 | case 'Q': |
Jim Ingham | ed3252f | 2013-09-14 00:20:24 +0000 | [diff] [blame] | 733 | m_option_data.m_source_quietly = true; |
| 734 | break; |
| 735 | |
Jim Ingham | e64f0dc | 2011-09-13 23:25:31 +0000 | [diff] [blame] | 736 | case 'n': |
| 737 | m_option_data.m_process_name = optarg; |
| 738 | break; |
| 739 | |
| 740 | case 'w': |
| 741 | m_option_data.m_wait_for = true; |
| 742 | break; |
| 743 | |
| 744 | case 'p': |
| 745 | { |
| 746 | char *remainder; |
| 747 | m_option_data.m_process_pid = strtol (optarg, &remainder, 0); |
| 748 | if (remainder == optarg || *remainder != '\0') |
| 749 | error.SetErrorStringWithFormat ("Could not convert process PID: \"%s\" into a pid.", |
| 750 | optarg); |
| 751 | } |
| 752 | break; |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 753 | case 's': |
Jim Ingham | ed3252f | 2013-09-14 00:20:24 +0000 | [diff] [blame] | 754 | m_option_data.AddInitialCommand(optarg, false, true, error); |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 755 | break; |
Jim Ingham | ed3252f | 2013-09-14 00:20:24 +0000 | [diff] [blame] | 756 | case 'o': |
| 757 | m_option_data.AddInitialCommand(optarg, false, false, error); |
| 758 | break; |
| 759 | case 'S': |
| 760 | m_option_data.AddInitialCommand(optarg, true, true, error); |
| 761 | break; |
| 762 | case 'O': |
| 763 | m_option_data.AddInitialCommand(optarg, true, false, error); |
| 764 | break; |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 765 | default: |
| 766 | m_option_data.m_print_help = true; |
| 767 | error.SetErrorStringWithFormat ("unrecognized option %c", short_option); |
| 768 | break; |
| 769 | } |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 770 | } |
| 771 | else |
| 772 | { |
| 773 | error.SetErrorStringWithFormat ("invalid option with value %i", val); |
| 774 | } |
| 775 | if (error.Fail()) |
Caroline Tice | 4ab31c9 | 2010-10-12 21:57:09 +0000 | [diff] [blame] | 776 | { |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 777 | return error; |
Caroline Tice | 4ab31c9 | 2010-10-12 21:57:09 +0000 | [diff] [blame] | 778 | } |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 779 | } |
| 780 | } |
Jim Ingham | 8651121 | 2010-06-15 18:47:14 +0000 | [diff] [blame] | 781 | |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 782 | if (error.Fail() || m_option_data.m_print_help) |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 783 | { |
| 784 | ShowUsage (out_fh, g_options, m_option_data); |
Deepak Panickal | 429222c | 2013-10-15 15:46:40 +0000 | [diff] [blame] | 785 | exiting = true; |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 786 | } |
| 787 | else if (m_option_data.m_print_version) |
| 788 | { |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 789 | ::fprintf (out_fh, "%s\n", m_debugger.GetVersionString()); |
Deepak Panickal | 429222c | 2013-10-15 15:46:40 +0000 | [diff] [blame] | 790 | exiting = true; |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 791 | } |
Jim Ingham | e2231ac | 2012-12-21 22:22:26 +0000 | [diff] [blame] | 792 | else if (m_option_data.m_print_python_path) |
| 793 | { |
| 794 | SBFileSpec python_file_spec = SBHostOS::GetLLDBPythonPath(); |
| 795 | if (python_file_spec.IsValid()) |
| 796 | { |
| 797 | char python_path[PATH_MAX]; |
| 798 | size_t num_chars = python_file_spec.GetPath(python_path, PATH_MAX); |
| 799 | if (num_chars < PATH_MAX) |
| 800 | { |
| 801 | ::fprintf (out_fh, "%s\n", python_path); |
| 802 | } |
| 803 | else |
| 804 | ::fprintf (out_fh, "<PATH TOO LONG>\n"); |
| 805 | } |
| 806 | else |
| 807 | ::fprintf (out_fh, "<COULD NOT FIND PATH>\n"); |
Deepak Panickal | 429222c | 2013-10-15 15:46:40 +0000 | [diff] [blame] | 808 | exiting = true; |
Jim Ingham | e2231ac | 2012-12-21 22:22:26 +0000 | [diff] [blame] | 809 | } |
Jim Ingham | e64f0dc | 2011-09-13 23:25:31 +0000 | [diff] [blame] | 810 | else if (m_option_data.m_process_name.empty() && m_option_data.m_process_pid == LLDB_INVALID_PROCESS_ID) |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 811 | { |
Greg Clayton | 8d846da | 2010-12-08 22:23:24 +0000 | [diff] [blame] | 812 | // Any arguments that are left over after option parsing are for |
| 813 | // the program. If a file was specified with -f then the filename |
| 814 | // is already in the m_option_data.m_args array, and any remaining args |
| 815 | // are arguments for the inferior program. If no file was specified with |
| 816 | // -f, then what is left is the program name followed by any arguments. |
| 817 | |
Greg Clayton | b7ad58a | 2013-04-04 20:35:24 +0000 | [diff] [blame] | 818 | // Skip any options we consumed with getopt_long_only |
Greg Clayton | 8d846da | 2010-12-08 22:23:24 +0000 | [diff] [blame] | 819 | argc -= optind; |
| 820 | argv += optind; |
| 821 | |
| 822 | if (argc > 0) |
| 823 | { |
| 824 | for (int arg_idx=0; arg_idx<argc; ++arg_idx) |
| 825 | { |
| 826 | const char *arg = argv[arg_idx]; |
| 827 | if (arg) |
| 828 | m_option_data.m_args.push_back (arg); |
| 829 | } |
| 830 | } |
| 831 | |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 832 | } |
Jim Ingham | e64f0dc | 2011-09-13 23:25:31 +0000 | [diff] [blame] | 833 | else |
| 834 | { |
Greg Clayton | b7ad58a | 2013-04-04 20:35:24 +0000 | [diff] [blame] | 835 | // Skip any options we consumed with getopt_long_only |
Jim Ingham | e64f0dc | 2011-09-13 23:25:31 +0000 | [diff] [blame] | 836 | argc -= optind; |
Greg Clayton | 23f5950 | 2012-07-17 03:23:13 +0000 | [diff] [blame] | 837 | //argv += optind; // Commented out to keep static analyzer happy |
Jim Ingham | e64f0dc | 2011-09-13 23:25:31 +0000 | [diff] [blame] | 838 | |
| 839 | if (argc > 0) |
| 840 | ::fprintf (out_fh, "Warning: program arguments are ignored when attaching.\n"); |
| 841 | } |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 842 | |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 843 | return error; |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 844 | } |
| 845 | |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 846 | void |
| 847 | Driver::MainLoop () |
| 848 | { |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 849 | if (::tcgetattr(STDIN_FILENO, &g_old_stdin_termios) == 0) |
Greg Clayton | f571b89 | 2012-02-02 19:28:31 +0000 | [diff] [blame] | 850 | { |
| 851 | g_old_stdin_termios_is_valid = true; |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 852 | atexit (reset_stdin_termios); |
Greg Clayton | f571b89 | 2012-02-02 19:28:31 +0000 | [diff] [blame] | 853 | } |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 854 | |
| 855 | ::setbuf (stdin, NULL); |
| 856 | ::setbuf (stdout, NULL); |
| 857 | |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 858 | m_debugger.SetErrorFileHandle (stderr, false); |
| 859 | m_debugger.SetOutputFileHandle (stdout, false); |
| 860 | m_debugger.SetInputFileHandle (stdin, true); |
Jim Ingham | e40e421 | 2010-08-30 19:44:40 +0000 | [diff] [blame] | 861 | |
| 862 | m_debugger.SetUseExternalEditor(m_option_data.m_use_external_editor); |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 863 | |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 864 | struct winsize window_size; |
| 865 | if (isatty (STDIN_FILENO) |
| 866 | && ::ioctl (STDIN_FILENO, TIOCGWINSZ, &window_size) == 0) |
| 867 | { |
Caroline Tice | 3df9a8d | 2010-09-04 00:03:46 +0000 | [diff] [blame] | 868 | if (window_size.ws_col > 0) |
Greg Clayton | a701509 | 2010-09-18 01:14:36 +0000 | [diff] [blame] | 869 | m_debugger.SetTerminalWidth (window_size.ws_col); |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 870 | } |
| 871 | |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 872 | SBCommandInterpreter sb_interpreter = m_debugger.GetCommandInterpreter(); |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 873 | |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 874 | // Before we handle any options from the command line, we parse the |
| 875 | // .lldbinit file in the user's home directory. |
| 876 | SBCommandReturnObject result; |
| 877 | sb_interpreter.SourceInitFileInHomeDirectory(result); |
| 878 | if (GetDebugMode()) |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 879 | { |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 880 | result.PutError (m_debugger.GetErrorFileHandle()); |
| 881 | result.PutOutput (m_debugger.GetOutputFileHandle()); |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 882 | } |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 883 | |
| 884 | // Now we handle options we got from the command line |
| 885 | // First source in the commands specified to be run before the file arguments are processed. |
| 886 | ExecuteInitialCommands(true); |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 887 | |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 888 | // Was there a core file specified? |
| 889 | std::string core_file_spec(""); |
| 890 | if (!m_option_data.m_core_file.empty()) |
| 891 | core_file_spec.append("--core ").append(m_option_data.m_core_file); |
| 892 | |
| 893 | char command_string[PATH_MAX * 2]; |
| 894 | const size_t num_args = m_option_data.m_args.size(); |
| 895 | if (num_args > 0) |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 896 | { |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 897 | char arch_name[64]; |
| 898 | if (m_debugger.GetDefaultArchitecture (arch_name, sizeof (arch_name))) |
| 899 | ::snprintf (command_string, |
| 900 | sizeof (command_string), |
| 901 | "target create --arch=%s %s \"%s\"", |
| 902 | arch_name, |
| 903 | core_file_spec.c_str(), |
| 904 | m_option_data.m_args[0].c_str()); |
| 905 | else |
| 906 | ::snprintf (command_string, |
| 907 | sizeof(command_string), |
| 908 | "target create %s \"%s\"", |
| 909 | core_file_spec.c_str(), |
| 910 | m_option_data.m_args[0].c_str()); |
| 911 | |
| 912 | m_debugger.HandleCommand (command_string); |
| 913 | |
| 914 | if (num_args > 1) |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 915 | { |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 916 | m_debugger.HandleCommand ("settings clear target.run-args"); |
| 917 | char arg_cstr[1024]; |
| 918 | for (size_t arg_idx = 1; arg_idx < num_args; ++arg_idx) |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 919 | { |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 920 | ::snprintf (arg_cstr, |
| 921 | sizeof(arg_cstr), |
| 922 | "settings append target.run-args \"%s\"", |
| 923 | m_option_data.m_args[arg_idx].c_str()); |
| 924 | m_debugger.HandleCommand (arg_cstr); |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 925 | } |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 926 | } |
| 927 | } |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 928 | else if (!core_file_spec.empty()) |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 929 | { |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 930 | ::snprintf (command_string, |
| 931 | sizeof(command_string), |
| 932 | "target create %s", |
| 933 | core_file_spec.c_str()); |
| 934 | m_debugger.HandleCommand (command_string);; |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 935 | } |
Greg Clayton | 9c0b64c | 2014-02-06 18:22:44 +0000 | [diff] [blame] | 936 | else if (!m_option_data.m_process_name.empty()) |
| 937 | { |
| 938 | ::snprintf (command_string, |
| 939 | sizeof(command_string), |
| 940 | "process attach --name '%s'%s", |
| 941 | m_option_data.m_process_name.c_str(), |
| 942 | m_option_data.m_wait_for ? " --waitfor" : ""); |
| 943 | m_debugger.HandleCommand (command_string); |
| 944 | } |
| 945 | else if (LLDB_INVALID_PROCESS_ID != m_option_data.m_process_pid) |
| 946 | { |
| 947 | ::snprintf (command_string, |
| 948 | sizeof(command_string), |
| 949 | "process attach --pid %" PRIu64, |
| 950 | m_option_data.m_process_pid); |
| 951 | m_debugger.HandleCommand (command_string); |
| 952 | } |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 953 | |
| 954 | ExecuteInitialCommands(false); |
| 955 | |
| 956 | // Now that all option parsing is done, we try and parse the .lldbinit |
| 957 | // file in the current working directory |
| 958 | sb_interpreter.SourceInitFileInCurrentWorkingDirectory (result); |
| 959 | if (GetDebugMode()) |
| 960 | { |
| 961 | result.PutError(m_debugger.GetErrorFileHandle()); |
| 962 | result.PutOutput(m_debugger.GetOutputFileHandle()); |
| 963 | } |
| 964 | |
| 965 | bool handle_events = true; |
| 966 | bool spawn_thread = false; |
| 967 | m_debugger.RunCommandInterpreter(handle_events, spawn_thread); |
| 968 | |
| 969 | reset_stdin_termios(); |
| 970 | fclose (stdin); |
| 971 | |
| 972 | SBDebugger::Destroy (m_debugger); |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 973 | } |
| 974 | |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 975 | |
Jim Ingham | c46fe7c | 2013-02-22 22:56:55 +0000 | [diff] [blame] | 976 | void |
| 977 | Driver::ResizeWindow (unsigned short col) |
| 978 | { |
| 979 | GetDebugger().SetTerminalWidth (col); |
Jim Ingham | c46fe7c | 2013-02-22 22:56:55 +0000 | [diff] [blame] | 980 | } |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 981 | |
Caroline Tice | dd75985 | 2010-09-09 17:45:09 +0000 | [diff] [blame] | 982 | void |
| 983 | sigwinch_handler (int signo) |
| 984 | { |
| 985 | struct winsize window_size; |
| 986 | if (isatty (STDIN_FILENO) |
| 987 | && ::ioctl (STDIN_FILENO, TIOCGWINSZ, &window_size) == 0) |
| 988 | { |
Jim Ingham | 57190ba | 2012-04-26 21:39:32 +0000 | [diff] [blame] | 989 | if ((window_size.ws_col > 0) && g_driver != NULL) |
Caroline Tice | dd75985 | 2010-09-09 17:45:09 +0000 | [diff] [blame] | 990 | { |
Jim Ingham | c46fe7c | 2013-02-22 22:56:55 +0000 | [diff] [blame] | 991 | g_driver->ResizeWindow (window_size.ws_col); |
Caroline Tice | dd75985 | 2010-09-09 17:45:09 +0000 | [diff] [blame] | 992 | } |
| 993 | } |
| 994 | } |
| 995 | |
Caroline Tice | efed613 | 2010-11-19 20:47:54 +0000 | [diff] [blame] | 996 | void |
| 997 | sigint_handler (int signo) |
| 998 | { |
| 999 | static bool g_interrupt_sent = false; |
| 1000 | if (g_driver) |
| 1001 | { |
| 1002 | if (!g_interrupt_sent) |
| 1003 | { |
| 1004 | g_interrupt_sent = true; |
| 1005 | g_driver->GetDebugger().DispatchInputInterrupt(); |
| 1006 | g_interrupt_sent = false; |
| 1007 | return; |
| 1008 | } |
| 1009 | } |
| 1010 | |
| 1011 | exit (signo); |
| 1012 | } |
| 1013 | |
Jim Ingham | c5917d9 | 2012-11-30 20:23:19 +0000 | [diff] [blame] | 1014 | void |
| 1015 | sigtstp_handler (int signo) |
| 1016 | { |
| 1017 | g_driver->GetDebugger().SaveInputTerminalState(); |
| 1018 | signal (signo, SIG_DFL); |
| 1019 | kill (getpid(), signo); |
| 1020 | signal (signo, sigtstp_handler); |
| 1021 | } |
| 1022 | |
| 1023 | void |
| 1024 | sigcont_handler (int signo) |
| 1025 | { |
| 1026 | g_driver->GetDebugger().RestoreInputTerminalState(); |
| 1027 | signal (signo, SIG_DFL); |
| 1028 | kill (getpid(), signo); |
| 1029 | signal (signo, sigcont_handler); |
| 1030 | } |
| 1031 | |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 1032 | int |
Jim Ingham | a462f5c | 2011-01-27 20:15:39 +0000 | [diff] [blame] | 1033 | main (int argc, char const *argv[], const char *envp[]) |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 1034 | { |
Deepak Panickal | 99fbc07 | 2014-03-03 15:39:47 +0000 | [diff] [blame^] | 1035 | #ifdef _MSC_VER |
| 1036 | // disable buffering on windows |
| 1037 | setvbuf(stdout, NULL, _IONBF, 0); |
| 1038 | setvbuf(stdin , NULL, _IONBF, 0); |
| 1039 | #endif |
| 1040 | |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 1041 | SBDebugger::Initialize(); |
| 1042 | |
Greg Clayton | 2ccf8cf | 2010-11-07 21:02:03 +0000 | [diff] [blame] | 1043 | SBHostOS::ThreadCreated ("<lldb.driver.main-thread>"); |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 1044 | |
Greg Clayton | 3fcbed6 | 2010-10-19 03:25:40 +0000 | [diff] [blame] | 1045 | signal (SIGPIPE, SIG_IGN); |
Caroline Tice | dd75985 | 2010-09-09 17:45:09 +0000 | [diff] [blame] | 1046 | signal (SIGWINCH, sigwinch_handler); |
Caroline Tice | efed613 | 2010-11-19 20:47:54 +0000 | [diff] [blame] | 1047 | signal (SIGINT, sigint_handler); |
Jim Ingham | c5917d9 | 2012-11-30 20:23:19 +0000 | [diff] [blame] | 1048 | signal (SIGTSTP, sigtstp_handler); |
| 1049 | signal (SIGCONT, sigcont_handler); |
Caroline Tice | dd75985 | 2010-09-09 17:45:09 +0000 | [diff] [blame] | 1050 | |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 1051 | // Create a scope for driver so that the driver object will destroy itself |
| 1052 | // before SBDebugger::Terminate() is called. |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 1053 | { |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 1054 | Driver driver; |
| 1055 | |
Deepak Panickal | 429222c | 2013-10-15 15:46:40 +0000 | [diff] [blame] | 1056 | bool exiting = false; |
| 1057 | SBError error (driver.ParseArgs (argc, argv, stdout, exiting)); |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 1058 | if (error.Fail()) |
| 1059 | { |
| 1060 | const char *error_cstr = error.GetCString (); |
| 1061 | if (error_cstr) |
| 1062 | ::fprintf (stderr, "error: %s\n", error_cstr); |
| 1063 | } |
Deepak Panickal | 429222c | 2013-10-15 15:46:40 +0000 | [diff] [blame] | 1064 | else if (!exiting) |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 1065 | { |
| 1066 | driver.MainLoop (); |
| 1067 | } |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 1068 | } |
| 1069 | |
| 1070 | SBDebugger::Terminate(); |
| 1071 | return 0; |
| 1072 | } |