blob: 9c6f722d7ef5e8571172c5c8db78c1afd616508e [file] [log] [blame]
Chris Lattner24943d22010-06-08 16:52:24 +00001//===-- CommandInterpreter.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 <string>
Caroline Ticebd5c63e2010-10-12 21:57:09 +000011#include <vector>
Chris Lattner24943d22010-06-08 16:52:24 +000012
13#include <getopt.h>
14#include <stdlib.h>
15
Greg Clayton5c28dd12011-06-23 17:59:56 +000016#include "CommandObjectScript.h"
Peter Collingbourne921fac02011-06-23 20:37:26 +000017#include "lldb/Interpreter/CommandObjectRegexCommand.h"
Greg Clayton5c28dd12011-06-23 17:59:56 +000018
Eli Friedmanccdb9ec2010-06-13 02:17:17 +000019#include "../Commands/CommandObjectApropos.h"
20#include "../Commands/CommandObjectArgs.h"
21#include "../Commands/CommandObjectBreakpoint.h"
Eli Friedmanccdb9ec2010-06-13 02:17:17 +000022#include "../Commands/CommandObjectDisassemble.h"
23#include "../Commands/CommandObjectExpression.h"
Eli Friedmanccdb9ec2010-06-13 02:17:17 +000024#include "../Commands/CommandObjectFrame.h"
25#include "../Commands/CommandObjectHelp.h"
Eli Friedmanccdb9ec2010-06-13 02:17:17 +000026#include "../Commands/CommandObjectLog.h"
27#include "../Commands/CommandObjectMemory.h"
Greg Claytonb1888f22011-03-19 01:12:21 +000028#include "../Commands/CommandObjectPlatform.h"
Eli Friedmanccdb9ec2010-06-13 02:17:17 +000029#include "../Commands/CommandObjectProcess.h"
30#include "../Commands/CommandObjectQuit.h"
Eli Friedmanccdb9ec2010-06-13 02:17:17 +000031#include "../Commands/CommandObjectRegister.h"
Eli Friedmanccdb9ec2010-06-13 02:17:17 +000032#include "../Commands/CommandObjectSettings.h"
Eli Friedmanccdb9ec2010-06-13 02:17:17 +000033#include "../Commands/CommandObjectSource.h"
Jim Ingham767af882010-07-07 03:36:20 +000034#include "../Commands/CommandObjectCommands.h"
Eli Friedmanccdb9ec2010-06-13 02:17:17 +000035#include "../Commands/CommandObjectSyntax.h"
36#include "../Commands/CommandObjectTarget.h"
37#include "../Commands/CommandObjectThread.h"
Greg Clayton5c28dd12011-06-23 17:59:56 +000038#include "../Commands/CommandObjectType.h"
Johnny Chen902e0182010-12-23 20:21:44 +000039#include "../Commands/CommandObjectVersion.h"
Johnny Chen01acfa72011-09-22 18:04:58 +000040#include "../Commands/CommandObjectWatchpoint.h"
Chris Lattner24943d22010-06-08 16:52:24 +000041
Jim Ingham84cdc152010-06-15 19:49:27 +000042#include "lldb/Interpreter/Args.h"
Caroline Tice5ddbe212011-05-06 21:37:15 +000043#include "lldb/Interpreter/Options.h"
Chris Lattner24943d22010-06-08 16:52:24 +000044#include "lldb/Core/Debugger.h"
Jim Ingham5e16ef52010-10-04 19:49:29 +000045#include "lldb/Core/InputReader.h"
Chris Lattner24943d22010-06-08 16:52:24 +000046#include "lldb/Core/Stream.h"
47#include "lldb/Core/Timer.h"
Greg Claytoncd548032011-02-01 01:31:41 +000048#include "lldb/Host/Host.h"
Chris Lattner24943d22010-06-08 16:52:24 +000049#include "lldb/Target/Process.h"
50#include "lldb/Target/Thread.h"
51#include "lldb/Target/TargetList.h"
Greg Claytone98ac252010-11-10 04:57:04 +000052#include "lldb/Utility/CleanUp.h"
Chris Lattner24943d22010-06-08 16:52:24 +000053
54#include "lldb/Interpreter/CommandReturnObject.h"
55#include "lldb/Interpreter/CommandInterpreter.h"
Caroline Tice0aa2e552011-01-14 00:29:16 +000056#include "lldb/Interpreter/ScriptInterpreterNone.h"
57#include "lldb/Interpreter/ScriptInterpreterPython.h"
Chris Lattner24943d22010-06-08 16:52:24 +000058
59using namespace lldb;
60using namespace lldb_private;
61
Jim Ingham5a15e692012-02-16 06:50:00 +000062ConstString &
63CommandInterpreter::GetStaticBroadcasterClass ()
64{
65 static ConstString class_name ("lldb.commandInterpreter");
66 return class_name;
67}
68
Chris Lattner24943d22010-06-08 16:52:24 +000069CommandInterpreter::CommandInterpreter
70(
Greg Clayton63094e02010-06-23 01:19:29 +000071 Debugger &debugger,
Chris Lattner24943d22010-06-08 16:52:24 +000072 ScriptLanguage script_language,
Greg Clayton63094e02010-06-23 01:19:29 +000073 bool synchronous_execution
Chris Lattner24943d22010-06-08 16:52:24 +000074) :
Jim Ingham5a15e692012-02-16 06:50:00 +000075 Broadcaster (&debugger, "lldb.command-interpreter"),
Greg Clayton63094e02010-06-23 01:19:29 +000076 m_debugger (debugger),
Greg Clayton887aa282010-10-11 01:05:37 +000077 m_synchronous_execution (synchronous_execution),
Caroline Tice0aa2e552011-01-14 00:29:16 +000078 m_skip_lldbinit_files (false),
Jim Ingham574c3d62011-08-12 23:34:31 +000079 m_skip_app_init_files (false),
Jim Ingham949d5ac2011-02-18 00:54:25 +000080 m_script_interpreter_ap (),
Caroline Tice892fadd2011-06-16 16:27:19 +000081 m_comment_char ('#'),
Jim Ingham6247dbe2011-07-12 03:12:18 +000082 m_repeat_char ('!'),
Enrico Granata01bc2d42012-05-31 01:09:06 +000083 m_truncation_warning(eNoTruncation),
84 m_command_source_depth (0)
Chris Lattner24943d22010-06-08 16:52:24 +000085{
Caroline Tice6e4c5ce2010-09-04 00:03:46 +000086 const char *dbg_name = debugger.GetInstanceName().AsCString();
87 std::string lang_name = ScriptInterpreter::LanguageToString (script_language);
88 StreamString var_name;
89 var_name.Printf ("[%s].script-lang", dbg_name);
Caroline Tice1d2aefd2010-09-09 06:25:08 +000090 debugger.GetSettingsController()->SetVariable (var_name.GetData(), lang_name.c_str(),
Greg Claytonb3448432011-03-24 21:19:54 +000091 eVarSetOperationAssign, false,
Greg Clayton49ce6822010-10-31 03:01:06 +000092 m_debugger.GetInstanceName().AsCString());
93 SetEventName (eBroadcastBitThreadShouldExit, "thread-should-exit");
94 SetEventName (eBroadcastBitResetPrompt, "reset-prompt");
95 SetEventName (eBroadcastBitQuitCommandReceived, "quit");
Jim Ingham5a15e692012-02-16 06:50:00 +000096
97 CheckInWithManager ();
Chris Lattner24943d22010-06-08 16:52:24 +000098}
99
100void
101CommandInterpreter::Initialize ()
102{
103 Timer scoped_timer (__PRETTY_FUNCTION__, __PRETTY_FUNCTION__);
104
105 CommandReturnObject result;
106
107 LoadCommandDictionary ();
108
Chris Lattner24943d22010-06-08 16:52:24 +0000109 // Set up some initial aliases.
Caroline Tice5ddbe212011-05-06 21:37:15 +0000110 CommandObjectSP cmd_obj_sp = GetCommandSPExact ("quit", false);
111 if (cmd_obj_sp)
112 {
113 AddAlias ("q", cmd_obj_sp);
114 AddAlias ("exit", cmd_obj_sp);
115 }
Sean Callananfc58af22012-05-04 23:15:02 +0000116
117 cmd_obj_sp = GetCommandSPExact ("process attach", false);
118 if (cmd_obj_sp)
119 {
120 AddAlias ("attach", cmd_obj_sp);
121 }
Caroline Tice5ddbe212011-05-06 21:37:15 +0000122
123 cmd_obj_sp = GetCommandSPExact ("process continue", false);
124 if (cmd_obj_sp)
125 {
126 AddAlias ("c", cmd_obj_sp);
127 AddAlias ("continue", cmd_obj_sp);
128 }
129
130 cmd_obj_sp = GetCommandSPExact ("_regexp-break",false);
131 if (cmd_obj_sp)
132 AddAlias ("b", cmd_obj_sp);
133
134 cmd_obj_sp = GetCommandSPExact ("thread backtrace", false);
135 if (cmd_obj_sp)
136 AddAlias ("bt", cmd_obj_sp);
137
138 cmd_obj_sp = GetCommandSPExact ("thread step-inst", false);
139 if (cmd_obj_sp)
Jason Molenda47eb00e2011-10-22 00:47:41 +0000140 {
141 AddAlias ("stepi", cmd_obj_sp);
Caroline Tice5ddbe212011-05-06 21:37:15 +0000142 AddAlias ("si", cmd_obj_sp);
Jason Molenda47eb00e2011-10-22 00:47:41 +0000143 }
144
145 cmd_obj_sp = GetCommandSPExact ("thread step-inst-over", false);
146 if (cmd_obj_sp)
147 {
148 AddAlias ("nexti", cmd_obj_sp);
149 AddAlias ("ni", cmd_obj_sp);
150 }
Caroline Tice5ddbe212011-05-06 21:37:15 +0000151
152 cmd_obj_sp = GetCommandSPExact ("thread step-in", false);
153 if (cmd_obj_sp)
154 {
155 AddAlias ("s", cmd_obj_sp);
156 AddAlias ("step", cmd_obj_sp);
157 }
158
159 cmd_obj_sp = GetCommandSPExact ("thread step-over", false);
160 if (cmd_obj_sp)
161 {
162 AddAlias ("n", cmd_obj_sp);
163 AddAlias ("next", cmd_obj_sp);
164 }
165
166 cmd_obj_sp = GetCommandSPExact ("thread step-out", false);
167 if (cmd_obj_sp)
168 {
Caroline Tice5ddbe212011-05-06 21:37:15 +0000169 AddAlias ("finish", cmd_obj_sp);
170 }
171
Jim Ingham59355252011-12-02 01:12:59 +0000172 cmd_obj_sp = GetCommandSPExact ("frame select", false);
173 if (cmd_obj_sp)
174 {
175 AddAlias ("f", cmd_obj_sp);
176 }
177
Caroline Tice5ddbe212011-05-06 21:37:15 +0000178 cmd_obj_sp = GetCommandSPExact ("source list", false);
179 if (cmd_obj_sp)
180 {
181 AddAlias ("l", cmd_obj_sp);
182 AddAlias ("list", cmd_obj_sp);
183 }
184
185 cmd_obj_sp = GetCommandSPExact ("memory read", false);
186 if (cmd_obj_sp)
187 AddAlias ("x", cmd_obj_sp);
188
189 cmd_obj_sp = GetCommandSPExact ("_regexp-up", false);
190 if (cmd_obj_sp)
191 AddAlias ("up", cmd_obj_sp);
192
193 cmd_obj_sp = GetCommandSPExact ("_regexp-down", false);
194 if (cmd_obj_sp)
195 AddAlias ("down", cmd_obj_sp);
196
Jason Molenda3f2ec9b2011-10-25 02:11:20 +0000197 cmd_obj_sp = GetCommandSPExact ("_regexp-display", false);
Jason Molenda730cae02011-10-22 01:30:52 +0000198 if (cmd_obj_sp)
199 AddAlias ("display", cmd_obj_sp);
Jim Ingham9d1acc12011-10-24 18:37:00 +0000200
201 cmd_obj_sp = GetCommandSPExact ("disassemble", false);
202 if (cmd_obj_sp)
203 AddAlias ("dis", cmd_obj_sp);
204
205 cmd_obj_sp = GetCommandSPExact ("disassemble", false);
206 if (cmd_obj_sp)
207 AddAlias ("di", cmd_obj_sp);
208
209
Jason Molenda730cae02011-10-22 01:30:52 +0000210
Jason Molenda3f2ec9b2011-10-25 02:11:20 +0000211 cmd_obj_sp = GetCommandSPExact ("_regexp-undisplay", false);
Jason Molenda730cae02011-10-22 01:30:52 +0000212 if (cmd_obj_sp)
213 AddAlias ("undisplay", cmd_obj_sp);
214
Caroline Tice5ddbe212011-05-06 21:37:15 +0000215 cmd_obj_sp = GetCommandSPExact ("target create", false);
216 if (cmd_obj_sp)
217 AddAlias ("file", cmd_obj_sp);
218
219 cmd_obj_sp = GetCommandSPExact ("target modules", false);
220 if (cmd_obj_sp)
221 AddAlias ("image", cmd_obj_sp);
222
223
224 OptionArgVectorSP alias_arguments_vector_sp (new OptionArgVector);
Jim Inghame56493f2011-03-22 02:29:32 +0000225
Caroline Tice5ddbe212011-05-06 21:37:15 +0000226 cmd_obj_sp = GetCommandSPExact ("expression", false);
227 if (cmd_obj_sp)
228 {
229 AddAlias ("expr", cmd_obj_sp);
230
231 ProcessAliasOptionsArgs (cmd_obj_sp, "--", alias_arguments_vector_sp);
232 AddAlias ("p", cmd_obj_sp);
233 AddAlias ("print", cmd_obj_sp);
Sean Callanan59959eb2012-08-08 01:30:34 +0000234 AddAlias ("call", cmd_obj_sp);
Caroline Tice5ddbe212011-05-06 21:37:15 +0000235 AddOrReplaceAliasOptions ("p", alias_arguments_vector_sp);
236 AddOrReplaceAliasOptions ("print", alias_arguments_vector_sp);
Sean Callanan59959eb2012-08-08 01:30:34 +0000237 AddOrReplaceAliasOptions ("call", alias_arguments_vector_sp);
Caroline Tice5ddbe212011-05-06 21:37:15 +0000238
239 alias_arguments_vector_sp.reset (new OptionArgVector);
240 ProcessAliasOptionsArgs (cmd_obj_sp, "-o --", alias_arguments_vector_sp);
241 AddAlias ("po", cmd_obj_sp);
242 AddOrReplaceAliasOptions ("po", alias_arguments_vector_sp);
243 }
244
Sean Callananee301fa2012-06-01 23:29:32 +0000245 cmd_obj_sp = GetCommandSPExact ("process kill", false);
246 if (cmd_obj_sp)
247 AddAlias ("kill", cmd_obj_sp);
248
Caroline Tice5ddbe212011-05-06 21:37:15 +0000249 cmd_obj_sp = GetCommandSPExact ("process launch", false);
250 if (cmd_obj_sp)
251 {
252 alias_arguments_vector_sp.reset (new OptionArgVector);
Jason Molenda36eb7c02012-07-06 02:46:23 +0000253#if defined (__arm__)
254 ProcessAliasOptionsArgs (cmd_obj_sp, "--", alias_arguments_vector_sp);
255#else
Greg Clayton86c50d72012-05-18 00:04:38 +0000256 ProcessAliasOptionsArgs (cmd_obj_sp, "--shell=/bin/bash --", alias_arguments_vector_sp);
Jason Molenda36eb7c02012-07-06 02:46:23 +0000257#endif
Caroline Tice5ddbe212011-05-06 21:37:15 +0000258 AddAlias ("r", cmd_obj_sp);
259 AddAlias ("run", cmd_obj_sp);
260 AddOrReplaceAliasOptions ("r", alias_arguments_vector_sp);
261 AddOrReplaceAliasOptions ("run", alias_arguments_vector_sp);
262 }
Greg Claytonc84623f2012-03-29 21:47:51 +0000263
264 cmd_obj_sp = GetCommandSPExact ("target symbols add", false);
265 if (cmd_obj_sp)
266 {
267 AddAlias ("add-dsym", cmd_obj_sp);
268 }
Sean Callanan7b71b172012-05-21 18:25:19 +0000269
270 cmd_obj_sp = GetCommandSPExact ("breakpoint set", false);
271 if (cmd_obj_sp)
272 {
273 alias_arguments_vector_sp.reset (new OptionArgVector);
274 ProcessAliasOptionsArgs (cmd_obj_sp, "--func-regex %1", alias_arguments_vector_sp);
275 AddAlias ("rb", cmd_obj_sp);
276 AddOrReplaceAliasOptions("rb", alias_arguments_vector_sp);
277 }
Chris Lattner24943d22010-06-08 16:52:24 +0000278}
279
Chris Lattner24943d22010-06-08 16:52:24 +0000280const char *
281CommandInterpreter::ProcessEmbeddedScriptCommands (const char *arg)
282{
283 // This function has not yet been implemented.
284
285 // Look for any embedded script command
286 // If found,
287 // get interpreter object from the command dictionary,
288 // call execute_one_command on it,
289 // get the results as a string,
290 // substitute that string for current stuff.
291
292 return arg;
293}
294
295
296void
297CommandInterpreter::LoadCommandDictionary ()
298{
299 Timer scoped_timer (__PRETTY_FUNCTION__, __PRETTY_FUNCTION__);
300
301 // **** IMPORTANT **** IMPORTANT *** IMPORTANT *** **** IMPORTANT **** IMPORTANT *** IMPORTANT ***
302 //
303 // Command objects that are used as cross reference objects (i.e. they inherit from CommandObjectCrossref)
304 // *MUST* be created and put into the command dictionary *BEFORE* any multi-word commands (which may use
305 // the cross-referencing stuff) are created!!!
306 //
307 // **** IMPORTANT **** IMPORTANT *** IMPORTANT *** **** IMPORTANT **** IMPORTANT *** IMPORTANT ***
308
309
310 // Command objects that inherit from CommandObjectCrossref must be created before other command objects
311 // are created. This is so that when another command is created that needs to go into a crossref object,
312 // the crossref object exists and is ready to take the cross reference. Put the cross referencing command
313 // objects into the CommandDictionary now, so they are ready for use when the other commands get created.
314
Chris Lattner24943d22010-06-08 16:52:24 +0000315 // Non-CommandObjectCrossref commands can now be created.
316
Caroline Tice5bc8c972010-09-20 20:44:43 +0000317 lldb::ScriptLanguage script_language = m_debugger.GetScriptLanguage();
Caroline Tice6e4c5ce2010-09-04 00:03:46 +0000318
Greg Clayton238c0a12010-09-18 01:14:36 +0000319 m_command_dict["apropos"] = CommandObjectSP (new CommandObjectApropos (*this));
Greg Clayton63094e02010-06-23 01:19:29 +0000320 m_command_dict["breakpoint"]= CommandObjectSP (new CommandObjectMultiwordBreakpoint (*this));
Greg Clayton238c0a12010-09-18 01:14:36 +0000321 //m_command_dict["call"] = CommandObjectSP (new CommandObjectCall (*this));
Johnny Chen9e4c3d72011-04-21 00:39:18 +0000322 m_command_dict["command"] = CommandObjectSP (new CommandObjectMultiwordCommands (*this));
Greg Clayton238c0a12010-09-18 01:14:36 +0000323 m_command_dict["disassemble"] = CommandObjectSP (new CommandObjectDisassemble (*this));
324 m_command_dict["expression"]= CommandObjectSP (new CommandObjectExpression (*this));
Greg Claytonabe0fed2011-04-18 08:33:37 +0000325// m_command_dict["file"] = CommandObjectSP (new CommandObjectFile (*this));
Greg Clayton63094e02010-06-23 01:19:29 +0000326 m_command_dict["frame"] = CommandObjectSP (new CommandObjectMultiwordFrame (*this));
Greg Clayton238c0a12010-09-18 01:14:36 +0000327 m_command_dict["help"] = CommandObjectSP (new CommandObjectHelp (*this));
Greg Claytone1f50b92011-05-03 22:09:39 +0000328 /// m_command_dict["image"] = CommandObjectSP (new CommandObjectImage (*this));
Greg Clayton63094e02010-06-23 01:19:29 +0000329 m_command_dict["log"] = CommandObjectSP (new CommandObjectLog (*this));
330 m_command_dict["memory"] = CommandObjectSP (new CommandObjectMemory (*this));
Greg Claytonb1888f22011-03-19 01:12:21 +0000331 m_command_dict["platform"] = CommandObjectSP (new CommandObjectPlatform (*this));
Greg Clayton63094e02010-06-23 01:19:29 +0000332 m_command_dict["process"] = CommandObjectSP (new CommandObjectMultiwordProcess (*this));
Greg Clayton238c0a12010-09-18 01:14:36 +0000333 m_command_dict["quit"] = CommandObjectSP (new CommandObjectQuit (*this));
Greg Clayton63094e02010-06-23 01:19:29 +0000334 m_command_dict["register"] = CommandObjectSP (new CommandObjectRegister (*this));
Greg Clayton238c0a12010-09-18 01:14:36 +0000335 m_command_dict["script"] = CommandObjectSP (new CommandObjectScript (*this, script_language));
Caroline Tice6e4c5ce2010-09-04 00:03:46 +0000336 m_command_dict["settings"] = CommandObjectSP (new CommandObjectMultiwordSettings (*this));
Jim Ingham767af882010-07-07 03:36:20 +0000337 m_command_dict["source"] = CommandObjectSP (new CommandObjectMultiwordSource (*this));
Greg Clayton63094e02010-06-23 01:19:29 +0000338 m_command_dict["target"] = CommandObjectSP (new CommandObjectMultiwordTarget (*this));
339 m_command_dict["thread"] = CommandObjectSP (new CommandObjectMultiwordThread (*this));
Enrico Granata6b1596d2011-08-16 23:24:13 +0000340 m_command_dict["type"] = CommandObjectSP (new CommandObjectType (*this));
Johnny Chen902e0182010-12-23 20:21:44 +0000341 m_command_dict["version"] = CommandObjectSP (new CommandObjectVersion (*this));
Johnny Chen01acfa72011-09-22 18:04:58 +0000342 m_command_dict["watchpoint"]= CommandObjectSP (new CommandObjectMultiwordWatchpoint (*this));
Chris Lattner24943d22010-06-08 16:52:24 +0000343
344 std::auto_ptr<CommandObjectRegexCommand>
Greg Clayton238c0a12010-09-18 01:14:36 +0000345 break_regex_cmd_ap(new CommandObjectRegexCommand (*this,
Greg Claytonb72d0f02011-04-12 05:54:46 +0000346 "_regexp-break",
Caroline Ticec1ad82e2010-09-07 22:38:08 +0000347 "Set a breakpoint using a regular expression to specify the location.",
Greg Claytonb72d0f02011-04-12 05:54:46 +0000348 "_regexp-break [<filename>:<linenum>]\n_regexp-break [<address>]\n_regexp-break <...>", 2));
Chris Lattner24943d22010-06-08 16:52:24 +0000349 if (break_regex_cmd_ap.get())
350 {
351 if (break_regex_cmd_ap->AddRegexCommand("^(.*[^[:space:]])[[:space:]]*:[[:space:]]*([[:digit:]]+)[[:space:]]*$", "breakpoint set --file '%1' --line %2") &&
352 break_regex_cmd_ap->AddRegexCommand("^(0x[[:xdigit:]]+)[[:space:]]*$", "breakpoint set --address %1") &&
353 break_regex_cmd_ap->AddRegexCommand("^[\"']?([-+]\\[.*\\])[\"']?[[:space:]]*$", "breakpoint set --name '%1'") &&
Greg Claytonb72d0f02011-04-12 05:54:46 +0000354 break_regex_cmd_ap->AddRegexCommand("^$", "breakpoint list --full") &&
Chris Lattner24943d22010-06-08 16:52:24 +0000355 break_regex_cmd_ap->AddRegexCommand("^(-.*)$", "breakpoint set %1") &&
Greg Claytonb01000f2011-01-17 03:46:26 +0000356 break_regex_cmd_ap->AddRegexCommand("^(.*[^[:space:]])`(.*[^[:space:]])[[:space:]]*$", "breakpoint set --name '%2' --shlib '%1'") &&
Chris Lattner24943d22010-06-08 16:52:24 +0000357 break_regex_cmd_ap->AddRegexCommand("^(.*[^[:space:]])[[:space:]]*$", "breakpoint set --name '%1'"))
358 {
359 CommandObjectSP break_regex_cmd_sp(break_regex_cmd_ap.release());
360 m_command_dict[break_regex_cmd_sp->GetCommandName ()] = break_regex_cmd_sp;
361 }
362 }
Jim Inghame56493f2011-03-22 02:29:32 +0000363
364 std::auto_ptr<CommandObjectRegexCommand>
365 down_regex_cmd_ap(new CommandObjectRegexCommand (*this,
Greg Claytonb72d0f02011-04-12 05:54:46 +0000366 "_regexp-down",
367 "Go down \"n\" frames in the stack (1 frame by default).",
368 "_regexp-down [n]", 2));
Jim Inghame56493f2011-03-22 02:29:32 +0000369 if (down_regex_cmd_ap.get())
370 {
371 if (down_regex_cmd_ap->AddRegexCommand("^$", "frame select -r -1") &&
372 down_regex_cmd_ap->AddRegexCommand("^([0-9]+)$", "frame select -r -%1"))
373 {
374 CommandObjectSP down_regex_cmd_sp(down_regex_cmd_ap.release());
375 m_command_dict[down_regex_cmd_sp->GetCommandName ()] = down_regex_cmd_sp;
376 }
377 }
378
379 std::auto_ptr<CommandObjectRegexCommand>
380 up_regex_cmd_ap(new CommandObjectRegexCommand (*this,
Greg Claytonb72d0f02011-04-12 05:54:46 +0000381 "_regexp-up",
382 "Go up \"n\" frames in the stack (1 frame by default).",
383 "_regexp-up [n]", 2));
Jim Inghame56493f2011-03-22 02:29:32 +0000384 if (up_regex_cmd_ap.get())
385 {
386 if (up_regex_cmd_ap->AddRegexCommand("^$", "frame select -r 1") &&
387 up_regex_cmd_ap->AddRegexCommand("^([0-9]+)$", "frame select -r %1"))
388 {
389 CommandObjectSP up_regex_cmd_sp(up_regex_cmd_ap.release());
390 m_command_dict[up_regex_cmd_sp->GetCommandName ()] = up_regex_cmd_sp;
391 }
392 }
Jason Molenda730cae02011-10-22 01:30:52 +0000393
394 std::auto_ptr<CommandObjectRegexCommand>
395 display_regex_cmd_ap(new CommandObjectRegexCommand (*this,
Jason Molenda3f2ec9b2011-10-25 02:11:20 +0000396 "_regexp-display",
Jason Molenda730cae02011-10-22 01:30:52 +0000397 "Add an expression evaluation stop-hook.",
Jason Molenda3f2ec9b2011-10-25 02:11:20 +0000398 "_regexp-display expression", 2));
Jason Molenda730cae02011-10-22 01:30:52 +0000399 if (display_regex_cmd_ap.get())
400 {
401 if (display_regex_cmd_ap->AddRegexCommand("^(.+)$", "target stop-hook add -o \"expr -- %1\""))
402 {
403 CommandObjectSP display_regex_cmd_sp(display_regex_cmd_ap.release());
404 m_command_dict[display_regex_cmd_sp->GetCommandName ()] = display_regex_cmd_sp;
405 }
406 }
407
408 std::auto_ptr<CommandObjectRegexCommand>
409 undisplay_regex_cmd_ap(new CommandObjectRegexCommand (*this,
Jason Molenda3f2ec9b2011-10-25 02:11:20 +0000410 "_regexp-undisplay",
Jason Molenda730cae02011-10-22 01:30:52 +0000411 "Remove an expression evaluation stop-hook.",
Jason Molenda3f2ec9b2011-10-25 02:11:20 +0000412 "_regexp-undisplay stop-hook-number", 2));
Jason Molenda730cae02011-10-22 01:30:52 +0000413 if (undisplay_regex_cmd_ap.get())
414 {
415 if (undisplay_regex_cmd_ap->AddRegexCommand("^([0-9]+)$", "target stop-hook delete %1"))
416 {
417 CommandObjectSP undisplay_regex_cmd_sp(undisplay_regex_cmd_ap.release());
418 m_command_dict[undisplay_regex_cmd_sp->GetCommandName ()] = undisplay_regex_cmd_sp;
419 }
420 }
421
Chris Lattner24943d22010-06-08 16:52:24 +0000422}
423
424int
425CommandInterpreter::GetCommandNamesMatchingPartialString (const char *cmd_str, bool include_aliases,
426 StringList &matches)
427{
428 CommandObject::AddNamesMatchingPartialString (m_command_dict, cmd_str, matches);
429
430 if (include_aliases)
431 {
432 CommandObject::AddNamesMatchingPartialString (m_alias_dict, cmd_str, matches);
433 }
434
435 return matches.GetSize();
436}
437
438CommandObjectSP
439CommandInterpreter::GetCommandSP (const char *cmd_cstr, bool include_aliases, bool exact, StringList *matches)
440{
441 CommandObject::CommandMap::iterator pos;
442 CommandObjectSP ret_val;
443
444 std::string cmd(cmd_cstr);
445
446 if (HasCommands())
447 {
448 pos = m_command_dict.find(cmd);
449 if (pos != m_command_dict.end())
450 ret_val = pos->second;
451 }
452
453 if (include_aliases && HasAliases())
454 {
455 pos = m_alias_dict.find(cmd);
456 if (pos != m_alias_dict.end())
457 ret_val = pos->second;
458 }
459
460 if (HasUserCommands())
461 {
462 pos = m_user_dict.find(cmd);
463 if (pos != m_user_dict.end())
464 ret_val = pos->second;
465 }
466
467 if (!exact && ret_val == NULL)
468 {
Jim Inghamd40f8a62010-07-06 22:46:59 +0000469 // We will only get into here if we didn't find any exact matches.
470
471 CommandObjectSP user_match_sp, alias_match_sp, real_match_sp;
472
Chris Lattner24943d22010-06-08 16:52:24 +0000473 StringList local_matches;
474 if (matches == NULL)
475 matches = &local_matches;
476
Jim Inghamd40f8a62010-07-06 22:46:59 +0000477 unsigned int num_cmd_matches = 0;
478 unsigned int num_alias_matches = 0;
479 unsigned int num_user_matches = 0;
480
481 // Look through the command dictionaries one by one, and if we get only one match from any of
482 // them in toto, then return that, otherwise return an empty CommandObjectSP and the list of matches.
483
Chris Lattner24943d22010-06-08 16:52:24 +0000484 if (HasCommands())
485 {
486 num_cmd_matches = CommandObject::AddNamesMatchingPartialString (m_command_dict, cmd_cstr, *matches);
487 }
488
489 if (num_cmd_matches == 1)
490 {
491 cmd.assign(matches->GetStringAtIndex(0));
492 pos = m_command_dict.find(cmd);
493 if (pos != m_command_dict.end())
Jim Inghamd40f8a62010-07-06 22:46:59 +0000494 real_match_sp = pos->second;
Chris Lattner24943d22010-06-08 16:52:24 +0000495 }
496
Jim Ingham9a574172010-06-24 20:28:42 +0000497 if (include_aliases && HasAliases())
Chris Lattner24943d22010-06-08 16:52:24 +0000498 {
499 num_alias_matches = CommandObject::AddNamesMatchingPartialString (m_alias_dict, cmd_cstr, *matches);
500
501 }
502
Jim Inghamd40f8a62010-07-06 22:46:59 +0000503 if (num_alias_matches == 1)
Chris Lattner24943d22010-06-08 16:52:24 +0000504 {
505 cmd.assign(matches->GetStringAtIndex (num_cmd_matches));
506 pos = m_alias_dict.find(cmd);
507 if (pos != m_alias_dict.end())
Jim Inghamd40f8a62010-07-06 22:46:59 +0000508 alias_match_sp = pos->second;
Chris Lattner24943d22010-06-08 16:52:24 +0000509 }
510
Jim Ingham9a574172010-06-24 20:28:42 +0000511 if (HasUserCommands())
Chris Lattner24943d22010-06-08 16:52:24 +0000512 {
513 num_user_matches = CommandObject::AddNamesMatchingPartialString (m_user_dict, cmd_cstr, *matches);
514 }
515
Jim Inghamd40f8a62010-07-06 22:46:59 +0000516 if (num_user_matches == 1)
Chris Lattner24943d22010-06-08 16:52:24 +0000517 {
518 cmd.assign (matches->GetStringAtIndex (num_cmd_matches + num_alias_matches));
519
520 pos = m_user_dict.find (cmd);
521 if (pos != m_user_dict.end())
Jim Inghamd40f8a62010-07-06 22:46:59 +0000522 user_match_sp = pos->second;
523 }
524
525 // If we got exactly one match, return that, otherwise return the match list.
526
527 if (num_user_matches + num_cmd_matches + num_alias_matches == 1)
528 {
529 if (num_cmd_matches)
530 return real_match_sp;
531 else if (num_alias_matches)
532 return alias_match_sp;
533 else
534 return user_match_sp;
Chris Lattner24943d22010-06-08 16:52:24 +0000535 }
536 }
Jim Inghamd40f8a62010-07-06 22:46:59 +0000537 else if (matches && ret_val != NULL)
538 {
539 matches->AppendString (cmd_cstr);
Chris Lattner24943d22010-06-08 16:52:24 +0000540 }
541
542
543 return ret_val;
544}
545
Greg Claytond12aeab2011-04-20 16:37:46 +0000546bool
547CommandInterpreter::AddCommand (const char *name, const lldb::CommandObjectSP &cmd_sp, bool can_replace)
548{
549 if (name && name[0])
550 {
551 std::string name_sstr(name);
552 if (!can_replace)
553 {
554 if (m_command_dict.find (name_sstr) != m_command_dict.end())
555 return false;
556 }
557 m_command_dict[name_sstr] = cmd_sp;
558 return true;
559 }
560 return false;
561}
562
Enrico Granata6b1596d2011-08-16 23:24:13 +0000563bool
Enrico Granata6010ace2011-11-07 22:57:04 +0000564CommandInterpreter::AddUserCommand (std::string name,
Enrico Granata6b1596d2011-08-16 23:24:13 +0000565 const lldb::CommandObjectSP &cmd_sp,
566 bool can_replace)
567{
Enrico Granata6010ace2011-11-07 22:57:04 +0000568 if (!name.empty())
Enrico Granata6b1596d2011-08-16 23:24:13 +0000569 {
Enrico Granata6010ace2011-11-07 22:57:04 +0000570
571 const char* name_cstr = name.c_str();
572
573 // do not allow replacement of internal commands
574 if (CommandExists(name_cstr))
575 return false;
576
577 if (can_replace == false && UserCommandExists(name_cstr))
578 return false;
579
580 m_user_dict[name] = cmd_sp;
Enrico Granata6b1596d2011-08-16 23:24:13 +0000581 return true;
582 }
583 return false;
584}
Greg Claytond12aeab2011-04-20 16:37:46 +0000585
Jim Inghamd40f8a62010-07-06 22:46:59 +0000586CommandObjectSP
587CommandInterpreter::GetCommandSPExact (const char *cmd_cstr, bool include_aliases)
Chris Lattner24943d22010-06-08 16:52:24 +0000588{
Caroline Tice56d2fc42010-12-14 18:51:39 +0000589 Args cmd_words (cmd_cstr); // Break up the command string into words, in case it's a multi-word command.
590 CommandObjectSP ret_val; // Possibly empty return value.
591
592 if (cmd_cstr == NULL)
593 return ret_val;
594
595 if (cmd_words.GetArgumentCount() == 1)
596 return GetCommandSP(cmd_cstr, include_aliases, true, NULL);
597 else
598 {
599 // We have a multi-word command (seemingly), so we need to do more work.
600 // First, get the cmd_obj_sp for the first word in the command.
601 CommandObjectSP cmd_obj_sp = GetCommandSP (cmd_words.GetArgumentAtIndex (0), include_aliases, true, NULL);
602 if (cmd_obj_sp.get() != NULL)
603 {
604 // Loop through the rest of the words in the command (everything passed in was supposed to be part of a
605 // command name), and find the appropriate sub-command SP for each command word....
606 size_t end = cmd_words.GetArgumentCount();
607 for (size_t j= 1; j < end; ++j)
608 {
609 if (cmd_obj_sp->IsMultiwordObject())
610 {
611 cmd_obj_sp = ((CommandObjectMultiword *) cmd_obj_sp.get())->GetSubcommandSP
612 (cmd_words.GetArgumentAtIndex (j));
613 if (cmd_obj_sp.get() == NULL)
614 // The sub-command name was invalid. Fail and return the empty 'ret_val'.
615 return ret_val;
616 }
617 else
618 // We have more words in the command name, but we don't have a multiword object. Fail and return
619 // empty 'ret_val'.
620 return ret_val;
621 }
622 // We successfully looped through all the command words and got valid command objects for them. Assign the
623 // last object retrieved to 'ret_val'.
624 ret_val = cmd_obj_sp;
625 }
626 }
627 return ret_val;
Jim Inghamd40f8a62010-07-06 22:46:59 +0000628}
629
630CommandObject *
631CommandInterpreter::GetCommandObjectExact (const char *cmd_cstr, bool include_aliases)
632{
633 return GetCommandSPExact (cmd_cstr, include_aliases).get();
634}
635
636CommandObject *
637CommandInterpreter::GetCommandObject (const char *cmd_cstr, StringList *matches)
638{
639 CommandObject *command_obj = GetCommandSP (cmd_cstr, false, true, matches).get();
640
641 // If we didn't find an exact match to the command string in the commands, look in
642 // the aliases.
643
644 if (command_obj == NULL)
645 {
646 command_obj = GetCommandSP (cmd_cstr, true, true, matches).get();
647 }
648
649 // Finally, if there wasn't an exact match among the aliases, look for an inexact match
650 // in both the commands and the aliases.
651
652 if (command_obj == NULL)
653 command_obj = GetCommandSP(cmd_cstr, true, false, matches).get();
654
655 return command_obj;
Chris Lattner24943d22010-06-08 16:52:24 +0000656}
657
658bool
659CommandInterpreter::CommandExists (const char *cmd)
660{
661 return m_command_dict.find(cmd) != m_command_dict.end();
662}
663
664bool
Caroline Tice5ddbe212011-05-06 21:37:15 +0000665CommandInterpreter::ProcessAliasOptionsArgs (lldb::CommandObjectSP &cmd_obj_sp,
666 const char *options_args,
667 OptionArgVectorSP &option_arg_vector_sp)
668{
669 bool success = true;
670 OptionArgVector *option_arg_vector = option_arg_vector_sp.get();
671
672 if (!options_args || (strlen (options_args) < 1))
673 return true;
674
675 std::string options_string (options_args);
676 Args args (options_args);
677 CommandReturnObject result;
678 // Check to see if the command being aliased can take any command options.
679 Options *options = cmd_obj_sp->GetOptions ();
680 if (options)
681 {
682 // See if any options were specified as part of the alias; if so, handle them appropriately.
683 options->NotifyOptionParsingStarting ();
684 args.Unshift ("dummy_arg");
685 args.ParseAliasOptions (*options, result, option_arg_vector, options_string);
686 args.Shift ();
687 if (result.Succeeded())
688 options->VerifyPartialOptions (result);
689 if (!result.Succeeded() && result.GetStatus() != lldb::eReturnStatusStarted)
690 {
691 result.AppendError ("Unable to create requested alias.\n");
692 return false;
693 }
694 }
695
Greg Clayton7268b4c2011-10-28 21:38:01 +0000696 if (!options_string.empty())
Caroline Tice5ddbe212011-05-06 21:37:15 +0000697 {
698 if (cmd_obj_sp->WantsRawCommandString ())
699 option_arg_vector->push_back (OptionArgPair ("<argument>",
700 OptionArgValue (-1,
701 options_string)));
702 else
703 {
704 int argc = args.GetArgumentCount();
705 for (size_t i = 0; i < argc; ++i)
706 if (strcmp (args.GetArgumentAtIndex (i), "") != 0)
707 option_arg_vector->push_back
708 (OptionArgPair ("<argument>",
709 OptionArgValue (-1,
710 std::string (args.GetArgumentAtIndex (i)))));
711 }
712 }
713
714 return success;
715}
716
717bool
Chris Lattner24943d22010-06-08 16:52:24 +0000718CommandInterpreter::AliasExists (const char *cmd)
719{
720 return m_alias_dict.find(cmd) != m_alias_dict.end();
721}
722
723bool
724CommandInterpreter::UserCommandExists (const char *cmd)
725{
726 return m_user_dict.find(cmd) != m_user_dict.end();
727}
728
729void
730CommandInterpreter::AddAlias (const char *alias_name, CommandObjectSP& command_obj_sp)
731{
Jim Inghamd40f8a62010-07-06 22:46:59 +0000732 command_obj_sp->SetIsAlias (true);
Chris Lattner24943d22010-06-08 16:52:24 +0000733 m_alias_dict[alias_name] = command_obj_sp;
734}
735
736bool
737CommandInterpreter::RemoveAlias (const char *alias_name)
738{
739 CommandObject::CommandMap::iterator pos = m_alias_dict.find(alias_name);
740 if (pos != m_alias_dict.end())
741 {
742 m_alias_dict.erase(pos);
743 return true;
744 }
745 return false;
746}
747bool
748CommandInterpreter::RemoveUser (const char *alias_name)
749{
750 CommandObject::CommandMap::iterator pos = m_user_dict.find(alias_name);
751 if (pos != m_user_dict.end())
752 {
753 m_user_dict.erase(pos);
754 return true;
755 }
756 return false;
757}
758
Chris Lattner24943d22010-06-08 16:52:24 +0000759void
760CommandInterpreter::GetAliasHelp (const char *alias_name, const char *command_name, StreamString &help_string)
761{
762 help_string.Printf ("'%s", command_name);
763 OptionArgVectorSP option_arg_vector_sp = GetAliasOptions (alias_name);
764
765 if (option_arg_vector_sp != NULL)
766 {
767 OptionArgVector *options = option_arg_vector_sp.get();
768 for (int i = 0; i < options->size(); ++i)
769 {
770 OptionArgPair cur_option = (*options)[i];
771 std::string opt = cur_option.first;
Caroline Tice44c841d2010-12-07 19:58:26 +0000772 OptionArgValue value_pair = cur_option.second;
773 std::string value = value_pair.second;
Chris Lattner24943d22010-06-08 16:52:24 +0000774 if (opt.compare("<argument>") == 0)
775 {
776 help_string.Printf (" %s", value.c_str());
777 }
778 else
779 {
780 help_string.Printf (" %s", opt.c_str());
781 if ((value.compare ("<no-argument>") != 0)
782 && (value.compare ("<need-argument") != 0))
783 {
784 help_string.Printf (" %s", value.c_str());
785 }
786 }
787 }
788 }
789
790 help_string.Printf ("'");
791}
792
Greg Clayton65124ea2010-08-26 22:05:43 +0000793size_t
Chris Lattner24943d22010-06-08 16:52:24 +0000794CommandInterpreter::FindLongestCommandWord (CommandObject::CommandMap &dict)
795{
796 CommandObject::CommandMap::const_iterator pos;
Greg Clayton65124ea2010-08-26 22:05:43 +0000797 CommandObject::CommandMap::const_iterator end = dict.end();
798 size_t max_len = 0;
Chris Lattner24943d22010-06-08 16:52:24 +0000799
Greg Clayton65124ea2010-08-26 22:05:43 +0000800 for (pos = dict.begin(); pos != end; ++pos)
801 {
802 size_t len = pos->first.size();
803 if (max_len < len)
804 max_len = len;
Chris Lattner24943d22010-06-08 16:52:24 +0000805 }
Greg Clayton65124ea2010-08-26 22:05:43 +0000806 return max_len;
Chris Lattner24943d22010-06-08 16:52:24 +0000807}
808
809void
Enrico Granata6b1596d2011-08-16 23:24:13 +0000810CommandInterpreter::GetHelp (CommandReturnObject &result,
Enrico Granata1ac6d1f2011-09-09 17:49:36 +0000811 uint32_t cmd_types)
Chris Lattner24943d22010-06-08 16:52:24 +0000812{
813 CommandObject::CommandMap::const_iterator pos;
Greg Clayton65124ea2010-08-26 22:05:43 +0000814 uint32_t max_len = FindLongestCommandWord (m_command_dict);
Enrico Granata6b1596d2011-08-16 23:24:13 +0000815
816 if ( (cmd_types & eCommandTypesBuiltin) == eCommandTypesBuiltin )
Chris Lattner24943d22010-06-08 16:52:24 +0000817 {
Enrico Granata6b1596d2011-08-16 23:24:13 +0000818
819 result.AppendMessage("The following is a list of built-in, permanent debugger commands:");
820 result.AppendMessage("");
Chris Lattner24943d22010-06-08 16:52:24 +0000821
Enrico Granata6b1596d2011-08-16 23:24:13 +0000822 for (pos = m_command_dict.begin(); pos != m_command_dict.end(); ++pos)
823 {
824 OutputFormattedHelpText (result.GetOutputStream(), pos->first.c_str(), "--", pos->second->GetHelp(),
825 max_len);
826 }
827 result.AppendMessage("");
828
829 }
830
Greg Clayton7268b4c2011-10-28 21:38:01 +0000831 if (!m_alias_dict.empty() && ( (cmd_types & eCommandTypesAliases) == eCommandTypesAliases ))
Chris Lattner24943d22010-06-08 16:52:24 +0000832 {
Jim Inghame3663e82010-10-22 18:47:16 +0000833 result.AppendMessage("The following is a list of your current command abbreviations "
Johnny Chen9e4c3d72011-04-21 00:39:18 +0000834 "(see 'help command alias' for more info):");
Chris Lattner24943d22010-06-08 16:52:24 +0000835 result.AppendMessage("");
Greg Clayton65124ea2010-08-26 22:05:43 +0000836 max_len = FindLongestCommandWord (m_alias_dict);
837
Chris Lattner24943d22010-06-08 16:52:24 +0000838 for (pos = m_alias_dict.begin(); pos != m_alias_dict.end(); ++pos)
839 {
840 StreamString sstr;
841 StreamString translation_and_help;
842 std::string entry_name = pos->first;
843 std::string second_entry = pos->second.get()->GetCommandName();
844 GetAliasHelp (pos->first.c_str(), pos->second->GetCommandName(), sstr);
845
846 translation_and_help.Printf ("(%s) %s", sstr.GetData(), pos->second->GetHelp());
847 OutputFormattedHelpText (result.GetOutputStream(), pos->first.c_str(), "--",
848 translation_and_help.GetData(), max_len);
849 }
850 result.AppendMessage("");
851 }
852
Greg Clayton7268b4c2011-10-28 21:38:01 +0000853 if (!m_user_dict.empty() && ( (cmd_types & eCommandTypesUserDef) == eCommandTypesUserDef ))
Chris Lattner24943d22010-06-08 16:52:24 +0000854 {
855 result.AppendMessage ("The following is a list of your current user-defined commands:");
856 result.AppendMessage("");
Enrico Granata6b1596d2011-08-16 23:24:13 +0000857 max_len = FindLongestCommandWord (m_user_dict);
Chris Lattner24943d22010-06-08 16:52:24 +0000858 for (pos = m_user_dict.begin(); pos != m_user_dict.end(); ++pos)
859 {
Enrico Granata6b1596d2011-08-16 23:24:13 +0000860 OutputFormattedHelpText (result.GetOutputStream(), pos->first.c_str(), "--", pos->second->GetHelp(),
861 max_len);
Chris Lattner24943d22010-06-08 16:52:24 +0000862 }
863 result.AppendMessage("");
864 }
865
866 result.AppendMessage("For more information on any particular command, try 'help <command-name>'.");
867}
868
Caroline Ticee0da7a52010-12-09 22:52:49 +0000869CommandObject *
870CommandInterpreter::GetCommandObjectForCommand (std::string &command_string)
Chris Lattner24943d22010-06-08 16:52:24 +0000871{
Caroline Ticee0da7a52010-12-09 22:52:49 +0000872 // This function finds the final, lowest-level, alias-resolved command object whose 'Execute' function will
873 // eventually be invoked by the given command line.
874
875 CommandObject *cmd_obj = NULL;
876 std::string white_space (" \t\v");
877 size_t start = command_string.find_first_not_of (white_space);
878 size_t end = 0;
879 bool done = false;
880 while (!done)
881 {
882 if (start != std::string::npos)
883 {
884 // Get the next word from command_string.
885 end = command_string.find_first_of (white_space, start);
886 if (end == std::string::npos)
887 end = command_string.size();
888 std::string cmd_word = command_string.substr (start, end - start);
889
890 if (cmd_obj == NULL)
891 // Since cmd_obj is NULL we are on our first time through this loop. Check to see if cmd_word is a valid
892 // command or alias.
893 cmd_obj = GetCommandObject (cmd_word.c_str());
894 else if (cmd_obj->IsMultiwordObject ())
895 {
896 // Our current object is a multi-word object; see if the cmd_word is a valid sub-command for our object.
897 CommandObject *sub_cmd_obj =
898 ((CommandObjectMultiword *) cmd_obj)->GetSubcommandObject (cmd_word.c_str());
899 if (sub_cmd_obj)
900 cmd_obj = sub_cmd_obj;
901 else // cmd_word was not a valid sub-command word, so we are donee
902 done = true;
903 }
904 else
905 // We have a cmd_obj and it is not a multi-word object, so we are done.
906 done = true;
Chris Lattner24943d22010-06-08 16:52:24 +0000907
Caroline Ticee0da7a52010-12-09 22:52:49 +0000908 // If we didn't find a valid command object, or our command object is not a multi-word object, or
909 // we are at the end of the command_string, then we are done. Otherwise, find the start of the
910 // next word.
911
912 if (!cmd_obj || !cmd_obj->IsMultiwordObject() || end >= command_string.size())
913 done = true;
914 else
915 start = command_string.find_first_not_of (white_space, end);
916 }
917 else
918 // Unable to find any more words.
919 done = true;
920 }
921
922 if (end == command_string.size())
923 command_string.clear();
924 else
925 command_string = command_string.substr(end);
926
927 return cmd_obj;
928}
929
Greg Clayton9d855c62011-10-25 00:36:27 +0000930static const char *k_white_space = " \t\v";
Greg Clayton7268b4c2011-10-28 21:38:01 +0000931static const char *k_valid_command_chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_";
Greg Clayton9d855c62011-10-25 00:36:27 +0000932static void
933StripLeadingSpaces (std::string &s)
Caroline Ticee0da7a52010-12-09 22:52:49 +0000934{
Greg Clayton9d855c62011-10-25 00:36:27 +0000935 if (!s.empty())
Caroline Ticee0da7a52010-12-09 22:52:49 +0000936 {
Greg Clayton9d855c62011-10-25 00:36:27 +0000937 size_t pos = s.find_first_not_of (k_white_space);
938 if (pos == std::string::npos)
939 s.clear();
940 else if (pos == 0)
941 return;
942 s.erase (0, pos);
943 }
944}
945
Greg Clayton3840cd72011-11-09 23:25:03 +0000946static size_t
947FindArgumentTerminator (const std::string &s)
948{
Greg Clayton3840cd72011-11-09 23:25:03 +0000949 const size_t s_len = s.size();
950 size_t offset = 0;
951 while (offset < s_len)
952 {
953 size_t pos = s.find ("--", offset);
954 if (pos == std::string::npos)
955 break;
956 if (pos > 0)
957 {
958 if (isspace(s[pos-1]))
959 {
960 // Check if the string ends "\s--" (where \s is a space character)
961 // or if we have "\s--\s".
962 if ((pos + 2 >= s_len) || isspace(s[pos+2]))
963 {
Greg Clayton3840cd72011-11-09 23:25:03 +0000964 return pos;
965 }
966 }
967 }
968 offset = pos + 2;
969 }
Greg Clayton3840cd72011-11-09 23:25:03 +0000970 return std::string::npos;
971}
972
Greg Clayton9d855c62011-10-25 00:36:27 +0000973static bool
Greg Clayton7268b4c2011-10-28 21:38:01 +0000974ExtractCommand (std::string &command_string, std::string &command, std::string &suffix, char &quote_char)
Greg Clayton9d855c62011-10-25 00:36:27 +0000975{
Greg Clayton7268b4c2011-10-28 21:38:01 +0000976 command.clear();
977 suffix.clear();
Greg Clayton9d855c62011-10-25 00:36:27 +0000978 StripLeadingSpaces (command_string);
979
980 bool result = false;
981 quote_char = '\0';
982
983 if (!command_string.empty())
984 {
985 const char first_char = command_string[0];
986 if (first_char == '\'' || first_char == '"')
Caroline Ticee0da7a52010-12-09 22:52:49 +0000987 {
Greg Clayton9d855c62011-10-25 00:36:27 +0000988 quote_char = first_char;
989 const size_t end_quote_pos = command_string.find (quote_char, 1);
990 if (end_quote_pos == std::string::npos)
Caroline Tice649116c2011-05-11 16:07:06 +0000991 {
Greg Clayton7268b4c2011-10-28 21:38:01 +0000992 command.swap (command_string);
Greg Clayton9d855c62011-10-25 00:36:27 +0000993 command_string.erase ();
Caroline Tice649116c2011-05-11 16:07:06 +0000994 }
995 else
996 {
Greg Clayton7268b4c2011-10-28 21:38:01 +0000997 command.assign (command_string, 1, end_quote_pos - 1);
Greg Clayton9d855c62011-10-25 00:36:27 +0000998 if (end_quote_pos + 1 < command_string.size())
999 command_string.erase (0, command_string.find_first_not_of (k_white_space, end_quote_pos + 1));
1000 else
1001 command_string.erase ();
Caroline Tice649116c2011-05-11 16:07:06 +00001002 }
Caroline Ticee0da7a52010-12-09 22:52:49 +00001003 }
1004 else
1005 {
Greg Clayton9d855c62011-10-25 00:36:27 +00001006 const size_t first_space_pos = command_string.find_first_of (k_white_space);
1007 if (first_space_pos == std::string::npos)
Caroline Tice649116c2011-05-11 16:07:06 +00001008 {
Greg Clayton7268b4c2011-10-28 21:38:01 +00001009 command.swap (command_string);
Greg Clayton9d855c62011-10-25 00:36:27 +00001010 command_string.erase();
Caroline Tice649116c2011-05-11 16:07:06 +00001011 }
1012 else
1013 {
Greg Clayton7268b4c2011-10-28 21:38:01 +00001014 command.assign (command_string, 0, first_space_pos);
1015 command_string.erase(0, command_string.find_first_not_of (k_white_space, first_space_pos));
Caroline Tice649116c2011-05-11 16:07:06 +00001016 }
Caroline Ticee0da7a52010-12-09 22:52:49 +00001017 }
Greg Clayton9d855c62011-10-25 00:36:27 +00001018 result = true;
Caroline Ticee0da7a52010-12-09 22:52:49 +00001019 }
Greg Clayton7268b4c2011-10-28 21:38:01 +00001020
1021
1022 if (!command.empty())
1023 {
1024 // actual commands can't start with '-' or '_'
1025 if (command[0] != '-' && command[0] != '_')
1026 {
1027 size_t pos = command.find_first_not_of(k_valid_command_chars);
1028 if (pos > 0 && pos != std::string::npos)
1029 {
1030 suffix.assign (command.begin() + pos, command.end());
1031 command.erase (pos);
1032 }
1033 }
1034 }
Greg Clayton9d855c62011-10-25 00:36:27 +00001035
1036 return result;
Caroline Ticee0da7a52010-12-09 22:52:49 +00001037}
1038
Greg Clayton7268b4c2011-10-28 21:38:01 +00001039CommandObject *
1040CommandInterpreter::BuildAliasResult (const char *alias_name,
1041 std::string &raw_input_string,
1042 std::string &alias_result,
1043 CommandReturnObject &result)
Caroline Ticee0da7a52010-12-09 22:52:49 +00001044{
Greg Clayton7268b4c2011-10-28 21:38:01 +00001045 CommandObject *alias_cmd_obj = NULL;
Caroline Ticee0da7a52010-12-09 22:52:49 +00001046 Args cmd_args (raw_input_string.c_str());
1047 alias_cmd_obj = GetCommandObject (alias_name);
1048 StreamString result_str;
1049
1050 if (alias_cmd_obj)
1051 {
1052 std::string alias_name_str = alias_name;
1053 if ((cmd_args.GetArgumentCount() == 0)
1054 || (alias_name_str.compare (cmd_args.GetArgumentAtIndex(0)) != 0))
1055 cmd_args.Unshift (alias_name);
1056
1057 result_str.Printf ("%s", alias_cmd_obj->GetCommandName ());
1058 OptionArgVectorSP option_arg_vector_sp = GetAliasOptions (alias_name);
1059
1060 if (option_arg_vector_sp.get())
1061 {
1062 OptionArgVector *option_arg_vector = option_arg_vector_sp.get();
1063
1064 for (int i = 0; i < option_arg_vector->size(); ++i)
1065 {
1066 OptionArgPair option_pair = (*option_arg_vector)[i];
1067 OptionArgValue value_pair = option_pair.second;
1068 int value_type = value_pair.first;
1069 std::string option = option_pair.first;
1070 std::string value = value_pair.second;
1071 if (option.compare ("<argument>") == 0)
1072 result_str.Printf (" %s", value.c_str());
1073 else
1074 {
1075 result_str.Printf (" %s", option.c_str());
1076 if (value_type != optional_argument)
1077 result_str.Printf (" ");
1078 if (value.compare ("<no_argument>") != 0)
1079 {
1080 int index = GetOptionArgumentPosition (value.c_str());
1081 if (index == 0)
1082 result_str.Printf ("%s", value.c_str());
1083 else if (index >= cmd_args.GetArgumentCount())
1084 {
1085
1086 result.AppendErrorWithFormat
1087 ("Not enough arguments provided; you need at least %d arguments to use this alias.\n",
1088 index);
1089 result.SetStatus (eReturnStatusFailed);
Greg Clayton7268b4c2011-10-28 21:38:01 +00001090 return alias_cmd_obj;
Caroline Ticee0da7a52010-12-09 22:52:49 +00001091 }
1092 else
1093 {
1094 size_t strpos = raw_input_string.find (cmd_args.GetArgumentAtIndex (index));
1095 if (strpos != std::string::npos)
1096 raw_input_string = raw_input_string.erase (strpos,
1097 strlen (cmd_args.GetArgumentAtIndex (index)));
1098 result_str.Printf ("%s", cmd_args.GetArgumentAtIndex (index));
1099 }
1100 }
1101 }
1102 }
1103 }
1104
1105 alias_result = result_str.GetData();
1106 }
Greg Clayton7268b4c2011-10-28 21:38:01 +00001107 return alias_cmd_obj;
Caroline Ticee0da7a52010-12-09 22:52:49 +00001108}
1109
Greg Claytonf5c0c722011-10-14 07:41:33 +00001110Error
1111CommandInterpreter::PreprocessCommand (std::string &command)
1112{
1113 // The command preprocessor needs to do things to the command
1114 // line before any parsing of arguments or anything else is done.
1115 // The only current stuff that gets proprocessed is anyting enclosed
1116 // in backtick ('`') characters is evaluated as an expression and
1117 // the result of the expression must be a scalar that can be substituted
1118 // into the command. An example would be:
1119 // (lldb) memory read `$rsp + 20`
1120 Error error; // Error for any expressions that might not evaluate
1121 size_t start_backtick;
1122 size_t pos = 0;
1123 while ((start_backtick = command.find ('`', pos)) != std::string::npos)
1124 {
1125 if (start_backtick > 0 && command[start_backtick-1] == '\\')
1126 {
1127 // The backtick was preceeded by a '\' character, remove the slash
1128 // and don't treat the backtick as the start of an expression
1129 command.erase(start_backtick-1, 1);
1130 // No need to add one to start_backtick since we just deleted a char
1131 pos = start_backtick;
1132 }
1133 else
1134 {
1135 const size_t expr_content_start = start_backtick + 1;
1136 const size_t end_backtick = command.find ('`', expr_content_start);
1137 if (end_backtick == std::string::npos)
1138 return error;
1139 else if (end_backtick == expr_content_start)
1140 {
1141 // Empty expression (two backticks in a row)
1142 command.erase (start_backtick, 2);
1143 }
1144 else
1145 {
1146 std::string expr_str (command, expr_content_start, end_backtick - expr_content_start);
1147
Greg Claytonbcaf99a2012-07-12 20:32:19 +00001148 ExecutionContext exe_ctx(GetExecutionContext());
1149 Target *target = exe_ctx.GetTargetPtr();
Johnny Chenb09f8472011-10-29 00:21:50 +00001150 // Get a dummy target to allow for calculator mode while processing backticks.
1151 // This also helps break the infinite loop caused when target is null.
1152 if (!target)
1153 target = Host::GetDummyTarget(GetDebugger()).get();
Greg Claytonf5c0c722011-10-14 07:41:33 +00001154 if (target)
1155 {
Sean Callanandaa6efe2011-12-21 22:22:58 +00001156 const bool coerce_to_id = false;
Greg Claytonf5c0c722011-10-14 07:41:33 +00001157 const bool unwind_on_error = true;
1158 const bool keep_in_memory = false;
1159 ValueObjectSP expr_result_valobj_sp;
1160 ExecutionResults expr_result = target->EvaluateExpression (expr_str.c_str(),
Greg Claytonbcaf99a2012-07-12 20:32:19 +00001161 exe_ctx.GetFramePtr(),
Greg Claytonf5c0c722011-10-14 07:41:33 +00001162 eExecutionPolicyOnlyWhenNeeded,
Sean Callanandaa6efe2011-12-21 22:22:58 +00001163 coerce_to_id,
1164 unwind_on_error,
1165 keep_in_memory,
Greg Claytonf5c0c722011-10-14 07:41:33 +00001166 eNoDynamicValues,
Enrico Granata6cca9692012-07-16 23:10:35 +00001167 expr_result_valobj_sp,
1168 0 /* no timeout */);
Greg Claytonf5c0c722011-10-14 07:41:33 +00001169 if (expr_result == eExecutionCompleted)
1170 {
1171 Scalar scalar;
1172 if (expr_result_valobj_sp->ResolveValue (scalar))
1173 {
1174 command.erase (start_backtick, end_backtick - start_backtick + 1);
1175 StreamString value_strm;
1176 const bool show_type = false;
1177 scalar.GetValue (&value_strm, show_type);
1178 size_t value_string_size = value_strm.GetSize();
1179 if (value_string_size)
1180 {
1181 command.insert (start_backtick, value_strm.GetData(), value_string_size);
1182 pos = start_backtick + value_string_size;
1183 continue;
1184 }
1185 else
1186 {
1187 error.SetErrorStringWithFormat("expression value didn't result in a scalar value for the expression '%s'", expr_str.c_str());
1188 }
1189 }
1190 else
1191 {
1192 error.SetErrorStringWithFormat("expression value didn't result in a scalar value for the expression '%s'", expr_str.c_str());
1193 }
1194 }
1195 else
1196 {
1197 if (expr_result_valobj_sp)
1198 error = expr_result_valobj_sp->GetError();
1199 if (error.Success())
1200 {
1201
1202 switch (expr_result)
1203 {
1204 case eExecutionSetupError:
1205 error.SetErrorStringWithFormat("expression setup error for the expression '%s'", expr_str.c_str());
1206 break;
1207 case eExecutionCompleted:
1208 break;
1209 case eExecutionDiscarded:
1210 error.SetErrorStringWithFormat("expression discarded for the expression '%s'", expr_str.c_str());
1211 break;
1212 case eExecutionInterrupted:
1213 error.SetErrorStringWithFormat("expression interrupted for the expression '%s'", expr_str.c_str());
1214 break;
1215 case eExecutionTimedOut:
1216 error.SetErrorStringWithFormat("expression timed out for the expression '%s'", expr_str.c_str());
1217 break;
1218 }
1219 }
1220 }
1221 }
1222 }
1223 if (error.Fail())
1224 break;
1225 }
1226 }
1227 return error;
1228}
1229
1230
Caroline Ticee0da7a52010-12-09 22:52:49 +00001231bool
1232CommandInterpreter::HandleCommand (const char *command_line,
Enrico Granata01bc2d42012-05-31 01:09:06 +00001233 LazyBool lazy_add_to_history,
Caroline Ticee0da7a52010-12-09 22:52:49 +00001234 CommandReturnObject &result,
Jim Ingham949d5ac2011-02-18 00:54:25 +00001235 ExecutionContext *override_context,
Johnny Chen8bdf57c2011-10-05 00:42:59 +00001236 bool repeat_on_empty_command,
1237 bool no_context_switching)
Jim Ingham949d5ac2011-02-18 00:54:25 +00001238
Caroline Ticee0da7a52010-12-09 22:52:49 +00001239{
Jim Ingham949d5ac2011-02-18 00:54:25 +00001240
Caroline Ticee0da7a52010-12-09 22:52:49 +00001241 bool done = false;
1242 CommandObject *cmd_obj = NULL;
Caroline Ticee0da7a52010-12-09 22:52:49 +00001243 bool wants_raw_input = false;
1244 std::string command_string (command_line);
Jim Ingham6247dbe2011-07-12 03:12:18 +00001245 std::string original_command_string (command_line);
Caroline Ticee0da7a52010-12-09 22:52:49 +00001246
1247 LogSP log (lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_COMMANDS));
Greg Claytone98ac252010-11-10 04:57:04 +00001248 Host::SetCrashDescriptionWithFormat ("HandleCommand(command = \"%s\")", command_line);
1249
1250 // Make a scoped cleanup object that will clear the crash description string
1251 // on exit of this function.
Enrico Granata1a102082011-07-12 00:18:11 +00001252 lldb_utility::CleanUp <const char *> crash_description_cleanup(NULL, Host::SetCrashDescription);
Greg Claytone98ac252010-11-10 04:57:04 +00001253
Caroline Ticee0da7a52010-12-09 22:52:49 +00001254 if (log)
1255 log->Printf ("Processing command: %s", command_line);
Chris Lattner24943d22010-06-08 16:52:24 +00001256
Jim Inghamabab14b2010-11-04 23:08:45 +00001257 Timer scoped_timer (__PRETTY_FUNCTION__, "Handling command: %s.", command_line);
1258
Johnny Chen8bdf57c2011-10-05 00:42:59 +00001259 if (!no_context_switching)
1260 UpdateExecutionContext (override_context);
Enrico Granata01bc2d42012-05-31 01:09:06 +00001261
1262 // <rdar://problem/11328896>
1263 bool add_to_history;
1264 if (lazy_add_to_history == eLazyBoolCalculate)
1265 add_to_history = (m_command_source_depth == 0);
1266 else
1267 add_to_history = (lazy_add_to_history == eLazyBoolYes);
1268
Jim Ingham949d5ac2011-02-18 00:54:25 +00001269 bool empty_command = false;
1270 bool comment_command = false;
1271 if (command_string.empty())
1272 empty_command = true;
1273 else
Chris Lattner24943d22010-06-08 16:52:24 +00001274 {
Jim Ingham949d5ac2011-02-18 00:54:25 +00001275 const char *k_space_characters = "\t\n\v\f\r ";
1276
1277 size_t non_space = command_string.find_first_not_of (k_space_characters);
1278 // Check for empty line or comment line (lines whose first
1279 // non-space character is the comment character for this interpreter)
1280 if (non_space == std::string::npos)
1281 empty_command = true;
1282 else if (command_string[non_space] == m_comment_char)
1283 comment_command = true;
Jim Ingham6247dbe2011-07-12 03:12:18 +00001284 else if (command_string[non_space] == m_repeat_char)
1285 {
1286 const char *history_string = FindHistoryString (command_string.c_str() + non_space);
1287 if (history_string == NULL)
1288 {
1289 result.AppendErrorWithFormat ("Could not find entry: %s in history", command_string.c_str());
1290 result.SetStatus(eReturnStatusFailed);
1291 return false;
1292 }
1293 add_to_history = false;
1294 command_string = history_string;
1295 original_command_string = history_string;
1296 }
Jim Ingham949d5ac2011-02-18 00:54:25 +00001297 }
1298
1299 if (empty_command)
1300 {
1301 if (repeat_on_empty_command)
Chris Lattner24943d22010-06-08 16:52:24 +00001302 {
Jim Ingham949d5ac2011-02-18 00:54:25 +00001303 if (m_command_history.empty())
1304 {
1305 result.AppendError ("empty command");
1306 result.SetStatus(eReturnStatusFailed);
1307 return false;
1308 }
1309 else
1310 {
1311 command_line = m_repeat_command.c_str();
1312 command_string = command_line;
Jim Ingham6247dbe2011-07-12 03:12:18 +00001313 original_command_string = command_line;
Jim Ingham949d5ac2011-02-18 00:54:25 +00001314 if (m_repeat_command.empty())
1315 {
1316 result.AppendErrorWithFormat("No auto repeat.\n");
1317 result.SetStatus (eReturnStatusFailed);
1318 return false;
1319 }
1320 }
1321 add_to_history = false;
Chris Lattner24943d22010-06-08 16:52:24 +00001322 }
1323 else
1324 {
Jim Ingham949d5ac2011-02-18 00:54:25 +00001325 result.SetStatus (eReturnStatusSuccessFinishNoResult);
1326 return true;
Chris Lattner24943d22010-06-08 16:52:24 +00001327 }
Jim Ingham949d5ac2011-02-18 00:54:25 +00001328 }
1329 else if (comment_command)
1330 {
1331 result.SetStatus (eReturnStatusSuccessFinishNoResult);
1332 return true;
Chris Lattner24943d22010-06-08 16:52:24 +00001333 }
Caroline Tice649116c2011-05-11 16:07:06 +00001334
Greg Claytonf5c0c722011-10-14 07:41:33 +00001335
1336 Error error (PreprocessCommand (command_string));
1337
1338 if (error.Fail())
1339 {
1340 result.AppendError (error.AsCString());
1341 result.SetStatus(eReturnStatusFailed);
1342 return false;
1343 }
Caroline Ticee0da7a52010-12-09 22:52:49 +00001344 // Phase 1.
1345
1346 // Before we do ANY kind of argument processing, etc. we need to figure out what the real/final command object
1347 // is for the specified command, and whether or not it wants raw input. This gets complicated by the fact that
1348 // the user could have specified an alias, and in translating the alias there may also be command options and/or
1349 // even data (including raw text strings) that need to be found and inserted into the command line as part of
1350 // the translation. So this first step is plain look-up & replacement, resulting in three things: 1). the command
Greg Clayton5d187e52011-01-08 20:28:42 +00001351 // object whose Execute method will actually be called; 2). a revised command string, with all substitutions &
Caroline Ticee0da7a52010-12-09 22:52:49 +00001352 // replacements taken care of; 3). whether or not the Execute function wants raw input or not.
Caroline Tice44c841d2010-12-07 19:58:26 +00001353
Caroline Ticee0da7a52010-12-09 22:52:49 +00001354 StreamString revised_command_line;
Caroline Ticeea6e3df2010-12-11 08:16:56 +00001355 size_t actual_cmd_name_len = 0;
Greg Clayton7268b4c2011-10-28 21:38:01 +00001356 std::string next_word;
Filipe Cabecinhas4bc8d162012-05-16 23:25:54 +00001357 StringList matches;
Caroline Ticee0da7a52010-12-09 22:52:49 +00001358 while (!done)
Chris Lattner24943d22010-06-08 16:52:24 +00001359 {
Caroline Tice649116c2011-05-11 16:07:06 +00001360 char quote_char = '\0';
Greg Clayton7268b4c2011-10-28 21:38:01 +00001361 std::string suffix;
1362 ExtractCommand (command_string, next_word, suffix, quote_char);
1363 if (cmd_obj == NULL)
Chris Lattner24943d22010-06-08 16:52:24 +00001364 {
Greg Clayton7268b4c2011-10-28 21:38:01 +00001365 if (AliasExists (next_word.c_str()))
Caroline Tice56d2fc42010-12-14 18:51:39 +00001366 {
Greg Clayton7268b4c2011-10-28 21:38:01 +00001367 std::string alias_result;
1368 cmd_obj = BuildAliasResult (next_word.c_str(), command_string, alias_result, result);
1369 revised_command_line.Printf ("%s", alias_result.c_str());
1370 if (cmd_obj)
1371 {
1372 wants_raw_input = cmd_obj->WantsRawCommandString ();
1373 actual_cmd_name_len = strlen (cmd_obj->GetCommandName());
1374 }
Chris Lattner24943d22010-06-08 16:52:24 +00001375 }
1376 else
1377 {
Filipe Cabecinhas4bc8d162012-05-16 23:25:54 +00001378 cmd_obj = GetCommandObject (next_word.c_str(), &matches);
Greg Clayton7268b4c2011-10-28 21:38:01 +00001379 if (cmd_obj)
1380 {
1381 actual_cmd_name_len += next_word.length();
1382 revised_command_line.Printf ("%s", next_word.c_str());
1383 wants_raw_input = cmd_obj->WantsRawCommandString ();
1384 }
Caroline Tice649116c2011-05-11 16:07:06 +00001385 else
Greg Clayton7268b4c2011-10-28 21:38:01 +00001386 {
1387 revised_command_line.Printf ("%s", next_word.c_str());
1388 }
Caroline Ticee0da7a52010-12-09 22:52:49 +00001389 }
1390 }
1391 else
1392 {
Greg Clayton7268b4c2011-10-28 21:38:01 +00001393 if (cmd_obj->IsMultiwordObject ())
1394 {
1395 CommandObject *sub_cmd_obj = ((CommandObjectMultiword *) cmd_obj)->GetSubcommandObject (next_word.c_str());
1396 if (sub_cmd_obj)
1397 {
1398 actual_cmd_name_len += next_word.length() + 1;
1399 revised_command_line.Printf (" %s", next_word.c_str());
1400 cmd_obj = sub_cmd_obj;
1401 wants_raw_input = cmd_obj->WantsRawCommandString ();
1402 }
1403 else
1404 {
1405 if (quote_char)
1406 revised_command_line.Printf (" %c%s%s%c", quote_char, next_word.c_str(), suffix.c_str(), quote_char);
1407 else
1408 revised_command_line.Printf (" %s%s", next_word.c_str(), suffix.c_str());
1409 done = true;
1410 }
1411 }
Caroline Tice649116c2011-05-11 16:07:06 +00001412 else
Greg Clayton7268b4c2011-10-28 21:38:01 +00001413 {
1414 if (quote_char)
1415 revised_command_line.Printf (" %c%s%s%c", quote_char, next_word.c_str(), suffix.c_str(), quote_char);
1416 else
1417 revised_command_line.Printf (" %s%s", next_word.c_str(), suffix.c_str());
1418 done = true;
1419 }
Caroline Ticee0da7a52010-12-09 22:52:49 +00001420 }
1421
1422 if (cmd_obj == NULL)
1423 {
Filipe Cabecinhas4bc8d162012-05-16 23:25:54 +00001424 uint32_t num_matches = matches.GetSize();
1425 if (matches.GetSize() > 1) {
1426 std::string error_msg;
1427 error_msg.assign ("Ambiguous command '");
1428 error_msg.append(next_word.c_str());
1429 error_msg.append ("'.");
1430
1431 error_msg.append (" Possible matches:");
1432
1433 for (uint32_t i = 0; i < num_matches; ++i) {
1434 error_msg.append ("\n\t");
1435 error_msg.append (matches.GetStringAtIndex(i));
1436 }
1437 error_msg.append ("\n");
1438 result.AppendRawError (error_msg.c_str(), error_msg.size());
1439 } else {
1440 // We didn't have only one match, otherwise we wouldn't get here.
1441 assert(num_matches == 0);
1442 result.AppendErrorWithFormat ("'%s' is not a valid command.\n", next_word.c_str());
1443 }
Caroline Ticee0da7a52010-12-09 22:52:49 +00001444 result.SetStatus (eReturnStatusFailed);
1445 return false;
1446 }
1447
Greg Clayton7268b4c2011-10-28 21:38:01 +00001448 if (cmd_obj->IsMultiwordObject ())
1449 {
1450 if (!suffix.empty())
1451 {
1452
1453 result.AppendErrorWithFormat ("multi-word commands ('%s') can't have shorthand suffixes: '%s'\n",
1454 next_word.c_str(),
1455 suffix.c_str());
1456 result.SetStatus (eReturnStatusFailed);
1457 return false;
1458 }
1459 }
1460 else
1461 {
1462 // If we found a normal command, we are done
1463 done = true;
1464 if (!suffix.empty())
1465 {
1466 switch (suffix[0])
1467 {
1468 case '/':
1469 // GDB format suffixes
Greg Claytond8a218d2011-10-29 00:57:28 +00001470 {
1471 Options *command_options = cmd_obj->GetOptions();
1472 if (command_options && command_options->SupportsLongOption("gdb-format"))
1473 {
Greg Clayton3840cd72011-11-09 23:25:03 +00001474 std::string gdb_format_option ("--gdb-format=");
1475 gdb_format_option += (suffix.c_str() + 1);
1476
1477 bool inserted = false;
1478 std::string &cmd = revised_command_line.GetString();
1479 size_t arg_terminator_idx = FindArgumentTerminator (cmd);
1480 if (arg_terminator_idx != std::string::npos)
1481 {
1482 // Insert the gdb format option before the "--" that terminates options
1483 gdb_format_option.append(1,' ');
1484 cmd.insert(arg_terminator_idx, gdb_format_option);
1485 inserted = true;
1486 }
1487
1488 if (!inserted)
1489 revised_command_line.Printf (" %s", gdb_format_option.c_str());
1490
1491 if (wants_raw_input && FindArgumentTerminator(cmd) == std::string::npos)
1492 revised_command_line.PutCString (" --");
Greg Claytond8a218d2011-10-29 00:57:28 +00001493 }
1494 else
1495 {
1496 result.AppendErrorWithFormat ("the '%s' command doesn't support the --gdb-format option\n",
1497 cmd_obj->GetCommandName());
1498 result.SetStatus (eReturnStatusFailed);
1499 return false;
1500 }
1501 }
Greg Clayton7268b4c2011-10-28 21:38:01 +00001502 break;
Johnny Chen8ca450b2011-10-31 22:22:06 +00001503
1504 default:
1505 result.AppendErrorWithFormat ("unknown command shorthand suffix: '%s'\n",
1506 suffix.c_str());
1507 result.SetStatus (eReturnStatusFailed);
1508 return false;
1509
Greg Clayton7268b4c2011-10-28 21:38:01 +00001510 }
1511 }
1512 }
Caroline Ticee0da7a52010-12-09 22:52:49 +00001513 if (command_string.length() == 0)
1514 done = true;
1515
Chris Lattner24943d22010-06-08 16:52:24 +00001516 }
Caroline Ticee0da7a52010-12-09 22:52:49 +00001517
Greg Clayton7268b4c2011-10-28 21:38:01 +00001518 if (!command_string.empty())
Caroline Ticee0da7a52010-12-09 22:52:49 +00001519 revised_command_line.Printf (" %s", command_string.c_str());
1520
1521 // End of Phase 1.
1522 // At this point cmd_obj should contain the CommandObject whose Execute method will be called, if the command
1523 // specified was valid; revised_command_line contains the complete command line (including command name(s)),
1524 // fully translated with all substitutions & translations taken care of (still in raw text format); and
1525 // wants_raw_input specifies whether the Execute method expects raw input or not.
1526
1527
1528 if (log)
1529 {
1530 log->Printf ("HandleCommand, cmd_obj : '%s'", cmd_obj ? cmd_obj->GetCommandName() : "<not found>");
1531 log->Printf ("HandleCommand, revised_command_line: '%s'", revised_command_line.GetData());
1532 log->Printf ("HandleCommand, wants_raw_input:'%s'", wants_raw_input ? "True" : "False");
1533 }
1534
1535 // Phase 2.
1536 // Take care of things like setting up the history command & calling the appropriate Execute method on the
1537 // CommandObject, with the appropriate arguments.
1538
1539 if (cmd_obj != NULL)
1540 {
1541 if (add_to_history)
1542 {
1543 Args command_args (revised_command_line.GetData());
1544 const char *repeat_command = cmd_obj->GetRepeatCommand(command_args, 0);
1545 if (repeat_command != NULL)
1546 m_repeat_command.assign(repeat_command);
1547 else
Jim Ingham6247dbe2011-07-12 03:12:18 +00001548 m_repeat_command.assign(original_command_string.c_str());
Caroline Ticee0da7a52010-12-09 22:52:49 +00001549
Jim Ingham6247dbe2011-07-12 03:12:18 +00001550 // Don't keep pushing the same command onto the history...
Greg Clayton7268b4c2011-10-28 21:38:01 +00001551 if (m_command_history.empty() || m_command_history.back() != original_command_string)
Jim Ingham6247dbe2011-07-12 03:12:18 +00001552 m_command_history.push_back (original_command_string);
Caroline Ticee0da7a52010-12-09 22:52:49 +00001553 }
1554
1555 command_string = revised_command_line.GetData();
1556 std::string command_name (cmd_obj->GetCommandName());
Caroline Ticeea6e3df2010-12-11 08:16:56 +00001557 std::string remainder;
1558 if (actual_cmd_name_len < command_string.length())
1559 remainder = command_string.substr (actual_cmd_name_len); // Note: 'actual_cmd_name_len' may be considerably shorter
1560 // than cmd_obj->GetCommandName(), because name completion
1561 // allows users to enter short versions of the names,
1562 // e.g. 'br s' for 'breakpoint set'.
Caroline Ticee0da7a52010-12-09 22:52:49 +00001563
1564 // Remove any initial spaces
1565 std::string white_space (" \t\v");
1566 size_t pos = remainder.find_first_not_of (white_space);
1567 if (pos != 0 && pos != std::string::npos)
Greg Clayton91c9dcf2011-04-22 20:58:45 +00001568 remainder.erase(0, pos);
Caroline Ticee0da7a52010-12-09 22:52:49 +00001569
1570 if (log)
Jason Molenda24c991c2011-08-25 00:20:04 +00001571 log->Printf ("HandleCommand, command line after removing command name(s): '%s'", remainder.c_str());
Caroline Ticee0da7a52010-12-09 22:52:49 +00001572
Jim Inghamda26bd22012-06-08 21:56:10 +00001573 cmd_obj->Execute (remainder.c_str(), result);
Caroline Ticee0da7a52010-12-09 22:52:49 +00001574 }
1575 else
1576 {
1577 // We didn't find the first command object, so complete the first argument.
1578 Args command_args (revised_command_line.GetData());
1579 StringList matches;
1580 int num_matches;
1581 int cursor_index = 0;
1582 int cursor_char_position = strlen (command_args.GetArgumentAtIndex(0));
1583 bool word_complete;
1584 num_matches = HandleCompletionMatches (command_args,
1585 cursor_index,
1586 cursor_char_position,
1587 0,
1588 -1,
1589 word_complete,
1590 matches);
1591
1592 if (num_matches > 0)
1593 {
1594 std::string error_msg;
1595 error_msg.assign ("ambiguous command '");
1596 error_msg.append(command_args.GetArgumentAtIndex(0));
1597 error_msg.append ("'.");
1598
1599 error_msg.append (" Possible completions:");
1600 for (int i = 0; i < num_matches; i++)
1601 {
1602 error_msg.append ("\n\t");
1603 error_msg.append (matches.GetStringAtIndex (i));
1604 }
1605 error_msg.append ("\n");
1606 result.AppendRawError (error_msg.c_str(), error_msg.size());
1607 }
1608 else
1609 result.AppendErrorWithFormat ("Unrecognized command '%s'.\n", command_args.GetArgumentAtIndex (0));
1610
1611 result.SetStatus (eReturnStatusFailed);
1612 }
1613
Jason Molenda24c991c2011-08-25 00:20:04 +00001614 if (log)
1615 log->Printf ("HandleCommand, command %s", (result.Succeeded() ? "succeeded" : "did not succeed"));
1616
Chris Lattner24943d22010-06-08 16:52:24 +00001617 return result.Succeeded();
1618}
1619
1620int
1621CommandInterpreter::HandleCompletionMatches (Args &parsed_line,
1622 int &cursor_index,
1623 int &cursor_char_position,
1624 int match_start_point,
1625 int max_return_elements,
Jim Ingham802f8b02010-06-30 05:02:46 +00001626 bool &word_complete,
Chris Lattner24943d22010-06-08 16:52:24 +00001627 StringList &matches)
1628{
1629 int num_command_matches = 0;
Chris Lattner24943d22010-06-08 16:52:24 +00001630 bool look_for_subcommand = false;
Jim Ingham802f8b02010-06-30 05:02:46 +00001631
1632 // For any of the command completions a unique match will be a complete word.
1633 word_complete = true;
Chris Lattner24943d22010-06-08 16:52:24 +00001634
1635 if (cursor_index == -1)
1636 {
1637 // We got nothing on the command line, so return the list of commands
Jim Inghamd40f8a62010-07-06 22:46:59 +00001638 bool include_aliases = true;
Chris Lattner24943d22010-06-08 16:52:24 +00001639 num_command_matches = GetCommandNamesMatchingPartialString ("", include_aliases, matches);
1640 }
1641 else if (cursor_index == 0)
1642 {
1643 // The cursor is in the first argument, so just do a lookup in the dictionary.
Jim Inghamd40f8a62010-07-06 22:46:59 +00001644 CommandObject *cmd_obj = GetCommandObject (parsed_line.GetArgumentAtIndex(0), &matches);
Chris Lattner24943d22010-06-08 16:52:24 +00001645 num_command_matches = matches.GetSize();
1646
1647 if (num_command_matches == 1
1648 && cmd_obj && cmd_obj->IsMultiwordObject()
1649 && matches.GetStringAtIndex(0) != NULL
1650 && strcmp (parsed_line.GetArgumentAtIndex(0), matches.GetStringAtIndex(0)) == 0)
1651 {
1652 look_for_subcommand = true;
1653 num_command_matches = 0;
1654 matches.DeleteStringAtIndex(0);
1655 parsed_line.AppendArgument ("");
1656 cursor_index++;
1657 cursor_char_position = 0;
1658 }
1659 }
1660
1661 if (cursor_index > 0 || look_for_subcommand)
1662 {
1663 // We are completing further on into a commands arguments, so find the command and tell it
1664 // to complete the command.
1665 // First see if there is a matching initial command:
Jim Inghamd40f8a62010-07-06 22:46:59 +00001666 CommandObject *command_object = GetCommandObject (parsed_line.GetArgumentAtIndex(0));
Chris Lattner24943d22010-06-08 16:52:24 +00001667 if (command_object == NULL)
1668 {
1669 return 0;
1670 }
1671 else
1672 {
1673 parsed_line.Shift();
1674 cursor_index--;
Greg Clayton238c0a12010-09-18 01:14:36 +00001675 num_command_matches = command_object->HandleCompletion (parsed_line,
Greg Clayton63094e02010-06-23 01:19:29 +00001676 cursor_index,
1677 cursor_char_position,
1678 match_start_point,
Jim Ingham802f8b02010-06-30 05:02:46 +00001679 max_return_elements,
1680 word_complete,
Chris Lattner24943d22010-06-08 16:52:24 +00001681 matches);
1682 }
1683 }
1684
1685 return num_command_matches;
1686
1687}
1688
1689int
1690CommandInterpreter::HandleCompletion (const char *current_line,
1691 const char *cursor,
1692 const char *last_char,
1693 int match_start_point,
1694 int max_return_elements,
1695 StringList &matches)
1696{
1697 // We parse the argument up to the cursor, so the last argument in parsed_line is
1698 // the one containing the cursor, and the cursor is after the last character.
1699
1700 Args parsed_line(current_line, last_char - current_line);
1701 Args partial_parsed_line(current_line, cursor - current_line);
1702
Jim Ingham6247dbe2011-07-12 03:12:18 +00001703 // Don't complete comments, and if the line we are completing is just the history repeat character,
1704 // substitute the appropriate history line.
1705 const char *first_arg = parsed_line.GetArgumentAtIndex(0);
1706 if (first_arg)
1707 {
1708 if (first_arg[0] == m_comment_char)
1709 return 0;
1710 else if (first_arg[0] == m_repeat_char)
1711 {
1712 const char *history_string = FindHistoryString (first_arg);
1713 if (history_string != NULL)
1714 {
1715 matches.Clear();
1716 matches.InsertStringAtIndex(0, history_string);
1717 return -2;
1718 }
1719 else
1720 return 0;
1721
1722 }
1723 }
1724
1725
Chris Lattner24943d22010-06-08 16:52:24 +00001726 int num_args = partial_parsed_line.GetArgumentCount();
1727 int cursor_index = partial_parsed_line.GetArgumentCount() - 1;
1728 int cursor_char_position;
1729
1730 if (cursor_index == -1)
1731 cursor_char_position = 0;
1732 else
1733 cursor_char_position = strlen (partial_parsed_line.GetArgumentAtIndex(cursor_index));
Jim Inghamcf037652010-12-14 19:56:01 +00001734
1735 if (cursor > current_line && cursor[-1] == ' ')
1736 {
1737 // We are just after a space. If we are in an argument, then we will continue
1738 // parsing, but if we are between arguments, then we have to complete whatever the next
1739 // element would be.
1740 // We can distinguish the two cases because if we are in an argument (e.g. because the space is
1741 // protected by a quote) then the space will also be in the parsed argument...
1742
1743 const char *current_elem = partial_parsed_line.GetArgumentAtIndex(cursor_index);
1744 if (cursor_char_position == 0 || current_elem[cursor_char_position - 1] != ' ')
1745 {
1746 parsed_line.InsertArgumentAtIndex(cursor_index + 1, "", '"');
1747 cursor_index++;
1748 cursor_char_position = 0;
1749 }
1750 }
Chris Lattner24943d22010-06-08 16:52:24 +00001751
1752 int num_command_matches;
1753
1754 matches.Clear();
1755
1756 // Only max_return_elements == -1 is supported at present:
1757 assert (max_return_elements == -1);
Jim Ingham802f8b02010-06-30 05:02:46 +00001758 bool word_complete;
Greg Clayton63094e02010-06-23 01:19:29 +00001759 num_command_matches = HandleCompletionMatches (parsed_line,
1760 cursor_index,
1761 cursor_char_position,
1762 match_start_point,
Jim Ingham802f8b02010-06-30 05:02:46 +00001763 max_return_elements,
1764 word_complete,
Greg Clayton63094e02010-06-23 01:19:29 +00001765 matches);
Chris Lattner24943d22010-06-08 16:52:24 +00001766
1767 if (num_command_matches <= 0)
1768 return num_command_matches;
1769
1770 if (num_args == 0)
1771 {
1772 // If we got an empty string, insert nothing.
1773 matches.InsertStringAtIndex(0, "");
1774 }
1775 else
1776 {
1777 // Now figure out if there is a common substring, and if so put that in element 0, otherwise
1778 // put an empty string in element 0.
1779 std::string command_partial_str;
1780 if (cursor_index >= 0)
Jim Inghame3663e82010-10-22 18:47:16 +00001781 command_partial_str.assign(parsed_line.GetArgumentAtIndex(cursor_index),
1782 parsed_line.GetArgumentAtIndex(cursor_index) + cursor_char_position);
Chris Lattner24943d22010-06-08 16:52:24 +00001783
1784 std::string common_prefix;
1785 matches.LongestCommonPrefix (common_prefix);
1786 int partial_name_len = command_partial_str.size();
1787
1788 // If we matched a unique single command, add a space...
Jim Ingham802f8b02010-06-30 05:02:46 +00001789 // Only do this if the completer told us this was a complete word, however...
1790 if (num_command_matches == 1 && word_complete)
Chris Lattner24943d22010-06-08 16:52:24 +00001791 {
1792 char quote_char = parsed_line.GetArgumentQuoteCharAtIndex(cursor_index);
1793 if (quote_char != '\0')
1794 common_prefix.push_back(quote_char);
1795
1796 common_prefix.push_back(' ');
1797 }
1798 common_prefix.erase (0, partial_name_len);
1799 matches.InsertStringAtIndex(0, common_prefix.c_str());
1800 }
1801 return num_command_matches;
1802}
1803
Chris Lattner24943d22010-06-08 16:52:24 +00001804
1805CommandInterpreter::~CommandInterpreter ()
1806{
1807}
1808
1809const char *
1810CommandInterpreter::GetPrompt ()
1811{
Caroline Tice5bc8c972010-09-20 20:44:43 +00001812 return m_debugger.GetPrompt();
Chris Lattner24943d22010-06-08 16:52:24 +00001813}
1814
1815void
1816CommandInterpreter::SetPrompt (const char *new_prompt)
1817{
Caroline Tice5bc8c972010-09-20 20:44:43 +00001818 m_debugger.SetPrompt (new_prompt);
Chris Lattner24943d22010-06-08 16:52:24 +00001819}
1820
Jim Ingham5e16ef52010-10-04 19:49:29 +00001821size_t
Greg Clayton58928562011-02-09 01:08:52 +00001822CommandInterpreter::GetConfirmationInputReaderCallback
1823(
1824 void *baton,
1825 InputReader &reader,
1826 lldb::InputReaderAction action,
1827 const char *bytes,
1828 size_t bytes_len
1829)
Jim Ingham5e16ef52010-10-04 19:49:29 +00001830{
Greg Clayton58928562011-02-09 01:08:52 +00001831 File &out_file = reader.GetDebugger().GetOutputFile();
Jim Ingham5e16ef52010-10-04 19:49:29 +00001832 bool *response_ptr = (bool *) baton;
1833
1834 switch (action)
1835 {
1836 case eInputReaderActivate:
Greg Clayton58928562011-02-09 01:08:52 +00001837 if (out_file.IsValid())
Jim Ingham5e16ef52010-10-04 19:49:29 +00001838 {
1839 if (reader.GetPrompt())
Caroline Tice22a60092011-02-02 01:17:56 +00001840 {
Greg Clayton58928562011-02-09 01:08:52 +00001841 out_file.Printf ("%s", reader.GetPrompt());
1842 out_file.Flush ();
Caroline Tice22a60092011-02-02 01:17:56 +00001843 }
Jim Ingham5e16ef52010-10-04 19:49:29 +00001844 }
1845 break;
1846
1847 case eInputReaderDeactivate:
1848 break;
1849
1850 case eInputReaderReactivate:
Greg Clayton58928562011-02-09 01:08:52 +00001851 if (out_file.IsValid() && reader.GetPrompt())
Caroline Tice22a60092011-02-02 01:17:56 +00001852 {
Greg Clayton58928562011-02-09 01:08:52 +00001853 out_file.Printf ("%s", reader.GetPrompt());
1854 out_file.Flush ();
Caroline Tice22a60092011-02-02 01:17:56 +00001855 }
Jim Ingham5e16ef52010-10-04 19:49:29 +00001856 break;
Caroline Tice4a348082011-05-02 20:41:46 +00001857
1858 case eInputReaderAsynchronousOutputWritten:
1859 break;
1860
Jim Ingham5e16ef52010-10-04 19:49:29 +00001861 case eInputReaderGotToken:
1862 if (bytes_len == 0)
1863 {
1864 reader.SetIsDone(true);
1865 }
Jim Ingham36fe9912011-11-14 20:02:01 +00001866 else if (bytes[0] == 'y' || bytes[0] == 'Y')
Jim Ingham5e16ef52010-10-04 19:49:29 +00001867 {
1868 *response_ptr = true;
1869 reader.SetIsDone(true);
1870 }
Jim Ingham36fe9912011-11-14 20:02:01 +00001871 else if (bytes[0] == 'n' || bytes[0] == 'N')
Jim Ingham5e16ef52010-10-04 19:49:29 +00001872 {
1873 *response_ptr = false;
1874 reader.SetIsDone(true);
1875 }
1876 else
1877 {
Greg Clayton58928562011-02-09 01:08:52 +00001878 if (out_file.IsValid() && !reader.IsDone() && reader.GetPrompt())
Jim Ingham5e16ef52010-10-04 19:49:29 +00001879 {
Jim Ingham26183802011-11-17 01:22:00 +00001880 out_file.Printf ("Please answer \"y\" or \"n\".\n%s", reader.GetPrompt());
Greg Clayton58928562011-02-09 01:08:52 +00001881 out_file.Flush ();
Jim Ingham5e16ef52010-10-04 19:49:29 +00001882 }
1883 }
1884 break;
1885
Caroline Ticec4f55fe2010-11-19 20:47:54 +00001886 case eInputReaderInterrupt:
1887 case eInputReaderEndOfFile:
1888 *response_ptr = false; // Assume ^C or ^D means cancel the proposed action
1889 reader.SetIsDone (true);
1890 break;
1891
Jim Ingham5e16ef52010-10-04 19:49:29 +00001892 case eInputReaderDone:
1893 break;
1894 }
1895
1896 return bytes_len;
1897
1898}
1899
1900bool
1901CommandInterpreter::Confirm (const char *message, bool default_answer)
1902{
Jim Ingham93057472010-10-04 22:44:14 +00001903 // Check AutoConfirm first:
1904 if (m_debugger.GetAutoConfirm())
1905 return default_answer;
1906
Jim Ingham5e16ef52010-10-04 19:49:29 +00001907 InputReaderSP reader_sp (new InputReader(GetDebugger()));
1908 bool response = default_answer;
1909 if (reader_sp)
1910 {
1911 std::string prompt(message);
1912 prompt.append(": [");
1913 if (default_answer)
1914 prompt.append ("Y/n] ");
1915 else
1916 prompt.append ("y/N] ");
1917
1918 Error err (reader_sp->Initialize (CommandInterpreter::GetConfirmationInputReaderCallback,
1919 &response, // baton
1920 eInputReaderGranularityLine, // token size, to pass to callback function
1921 NULL, // end token
1922 prompt.c_str(), // prompt
1923 true)); // echo input
1924 if (err.Success())
1925 {
1926 GetDebugger().PushInputReader (reader_sp);
1927 }
1928 reader_sp->WaitOnReaderIsDone();
1929 }
1930 return response;
1931}
1932
1933
Chris Lattner24943d22010-06-08 16:52:24 +00001934void
1935CommandInterpreter::CrossRegisterCommand (const char * dest_cmd, const char * object_type)
1936{
Jim Inghamd40f8a62010-07-06 22:46:59 +00001937 CommandObjectSP cmd_obj_sp = GetCommandSPExact (dest_cmd, true);
Chris Lattner24943d22010-06-08 16:52:24 +00001938
1939 if (cmd_obj_sp != NULL)
1940 {
1941 CommandObject *cmd_obj = cmd_obj_sp.get();
1942 if (cmd_obj->IsCrossRefObject ())
1943 cmd_obj->AddObject (object_type);
1944 }
1945}
1946
Chris Lattner24943d22010-06-08 16:52:24 +00001947OptionArgVectorSP
1948CommandInterpreter::GetAliasOptions (const char *alias_name)
1949{
1950 OptionArgMap::iterator pos;
1951 OptionArgVectorSP ret_val;
1952
1953 std::string alias (alias_name);
1954
1955 if (HasAliasOptions())
1956 {
1957 pos = m_alias_options.find (alias);
1958 if (pos != m_alias_options.end())
1959 ret_val = pos->second;
1960 }
1961
1962 return ret_val;
1963}
1964
1965void
1966CommandInterpreter::RemoveAliasOptions (const char *alias_name)
1967{
1968 OptionArgMap::iterator pos = m_alias_options.find(alias_name);
1969 if (pos != m_alias_options.end())
1970 {
1971 m_alias_options.erase (pos);
1972 }
1973}
1974
1975void
1976CommandInterpreter::AddOrReplaceAliasOptions (const char *alias_name, OptionArgVectorSP &option_arg_vector_sp)
1977{
1978 m_alias_options[alias_name] = option_arg_vector_sp;
1979}
1980
1981bool
1982CommandInterpreter::HasCommands ()
1983{
1984 return (!m_command_dict.empty());
1985}
1986
1987bool
1988CommandInterpreter::HasAliases ()
1989{
1990 return (!m_alias_dict.empty());
1991}
1992
1993bool
1994CommandInterpreter::HasUserCommands ()
1995{
1996 return (!m_user_dict.empty());
1997}
1998
1999bool
2000CommandInterpreter::HasAliasOptions ()
2001{
2002 return (!m_alias_options.empty());
2003}
2004
Chris Lattner24943d22010-06-08 16:52:24 +00002005void
Caroline Ticebd5c63e2010-10-12 21:57:09 +00002006CommandInterpreter::BuildAliasCommandArgs (CommandObject *alias_cmd_obj,
2007 const char *alias_name,
2008 Args &cmd_args,
Caroline Tice44c841d2010-12-07 19:58:26 +00002009 std::string &raw_input_string,
Caroline Ticebd5c63e2010-10-12 21:57:09 +00002010 CommandReturnObject &result)
Chris Lattner24943d22010-06-08 16:52:24 +00002011{
2012 OptionArgVectorSP option_arg_vector_sp = GetAliasOptions (alias_name);
Caroline Tice44c841d2010-12-07 19:58:26 +00002013
2014 bool wants_raw_input = alias_cmd_obj->WantsRawCommandString();
Chris Lattner24943d22010-06-08 16:52:24 +00002015
Caroline Tice44c841d2010-12-07 19:58:26 +00002016 // Make sure that the alias name is the 0th element in cmd_args
2017 std::string alias_name_str = alias_name;
2018 if (alias_name_str.compare (cmd_args.GetArgumentAtIndex(0)) != 0)
2019 cmd_args.Unshift (alias_name);
2020
2021 Args new_args (alias_cmd_obj->GetCommandName());
2022 if (new_args.GetArgumentCount() == 2)
2023 new_args.Shift();
2024
Chris Lattner24943d22010-06-08 16:52:24 +00002025 if (option_arg_vector_sp.get())
2026 {
Caroline Tice44c841d2010-12-07 19:58:26 +00002027 if (wants_raw_input)
2028 {
2029 // We have a command that both has command options and takes raw input. Make *sure* it has a
2030 // " -- " in the right place in the raw_input_string.
2031 size_t pos = raw_input_string.find(" -- ");
2032 if (pos == std::string::npos)
2033 {
2034 // None found; assume it goes at the beginning of the raw input string
2035 raw_input_string.insert (0, " -- ");
2036 }
2037 }
Chris Lattner24943d22010-06-08 16:52:24 +00002038
2039 OptionArgVector *option_arg_vector = option_arg_vector_sp.get();
2040 int old_size = cmd_args.GetArgumentCount();
Caroline Ticebd5c63e2010-10-12 21:57:09 +00002041 std::vector<bool> used (old_size + 1, false);
2042
2043 used[0] = true;
Chris Lattner24943d22010-06-08 16:52:24 +00002044
2045 for (int i = 0; i < option_arg_vector->size(); ++i)
2046 {
2047 OptionArgPair option_pair = (*option_arg_vector)[i];
Caroline Tice44c841d2010-12-07 19:58:26 +00002048 OptionArgValue value_pair = option_pair.second;
2049 int value_type = value_pair.first;
Chris Lattner24943d22010-06-08 16:52:24 +00002050 std::string option = option_pair.first;
Caroline Tice44c841d2010-12-07 19:58:26 +00002051 std::string value = value_pair.second;
Chris Lattner24943d22010-06-08 16:52:24 +00002052 if (option.compare ("<argument>") == 0)
Caroline Tice44c841d2010-12-07 19:58:26 +00002053 {
2054 if (!wants_raw_input
2055 || (value.compare("--") != 0)) // Since we inserted this above, make sure we don't insert it twice
2056 new_args.AppendArgument (value.c_str());
2057 }
Chris Lattner24943d22010-06-08 16:52:24 +00002058 else
2059 {
Caroline Tice44c841d2010-12-07 19:58:26 +00002060 if (value_type != optional_argument)
2061 new_args.AppendArgument (option.c_str());
Chris Lattner24943d22010-06-08 16:52:24 +00002062 if (value.compare ("<no-argument>") != 0)
2063 {
2064 int index = GetOptionArgumentPosition (value.c_str());
2065 if (index == 0)
Caroline Tice44c841d2010-12-07 19:58:26 +00002066 {
Chris Lattner24943d22010-06-08 16:52:24 +00002067 // value was NOT a positional argument; must be a real value
Caroline Tice44c841d2010-12-07 19:58:26 +00002068 if (value_type != optional_argument)
2069 new_args.AppendArgument (value.c_str());
2070 else
2071 {
2072 char buffer[255];
2073 ::snprintf (buffer, sizeof (buffer), "%s%s", option.c_str(), value.c_str());
2074 new_args.AppendArgument (buffer);
2075 }
2076
2077 }
Chris Lattner24943d22010-06-08 16:52:24 +00002078 else if (index >= cmd_args.GetArgumentCount())
2079 {
2080 result.AppendErrorWithFormat
2081 ("Not enough arguments provided; you need at least %d arguments to use this alias.\n",
2082 index);
2083 result.SetStatus (eReturnStatusFailed);
2084 return;
2085 }
2086 else
2087 {
Caroline Tice44c841d2010-12-07 19:58:26 +00002088 // Find and remove cmd_args.GetArgumentAtIndex(i) from raw_input_string
2089 size_t strpos = raw_input_string.find (cmd_args.GetArgumentAtIndex (index));
2090 if (strpos != std::string::npos)
2091 {
2092 raw_input_string = raw_input_string.erase (strpos, strlen (cmd_args.GetArgumentAtIndex (index)));
2093 }
2094
2095 if (value_type != optional_argument)
2096 new_args.AppendArgument (cmd_args.GetArgumentAtIndex (index));
2097 else
2098 {
2099 char buffer[255];
2100 ::snprintf (buffer, sizeof(buffer), "%s%s", option.c_str(),
2101 cmd_args.GetArgumentAtIndex (index));
2102 new_args.AppendArgument (buffer);
2103 }
Caroline Ticebd5c63e2010-10-12 21:57:09 +00002104 used[index] = true;
Chris Lattner24943d22010-06-08 16:52:24 +00002105 }
2106 }
2107 }
2108 }
2109
2110 for (int j = 0; j < cmd_args.GetArgumentCount(); ++j)
2111 {
Caroline Tice44c841d2010-12-07 19:58:26 +00002112 if (!used[j] && !wants_raw_input)
Chris Lattner24943d22010-06-08 16:52:24 +00002113 new_args.AppendArgument (cmd_args.GetArgumentAtIndex (j));
2114 }
2115
2116 cmd_args.Clear();
2117 cmd_args.SetArguments (new_args.GetArgumentCount(), (const char **) new_args.GetArgumentVector());
2118 }
2119 else
2120 {
2121 result.SetStatus (eReturnStatusSuccessFinishNoResult);
Caroline Tice44c841d2010-12-07 19:58:26 +00002122 // This alias was not created with any options; nothing further needs to be done, unless it is a command that
2123 // wants raw input, in which case we need to clear the rest of the data from cmd_args, since its in the raw
2124 // input string.
2125 if (wants_raw_input)
2126 {
2127 cmd_args.Clear();
2128 cmd_args.SetArguments (new_args.GetArgumentCount(), (const char **) new_args.GetArgumentVector());
2129 }
Chris Lattner24943d22010-06-08 16:52:24 +00002130 return;
2131 }
2132
2133 result.SetStatus (eReturnStatusSuccessFinishNoResult);
2134 return;
2135}
2136
2137
2138int
2139CommandInterpreter::GetOptionArgumentPosition (const char *in_string)
2140{
2141 int position = 0; // Any string that isn't an argument position, i.e. '%' followed by an integer, gets a position
2142 // of zero.
2143
2144 char *cptr = (char *) in_string;
2145
2146 // Does it start with '%'
2147 if (cptr[0] == '%')
2148 {
2149 ++cptr;
2150
2151 // Is the rest of it entirely digits?
2152 if (isdigit (cptr[0]))
2153 {
2154 const char *start = cptr;
2155 while (isdigit (cptr[0]))
2156 ++cptr;
2157
2158 // We've gotten to the end of the digits; are we at the end of the string?
2159 if (cptr[0] == '\0')
2160 position = atoi (start);
2161 }
2162 }
2163
2164 return position;
2165}
2166
2167void
2168CommandInterpreter::SourceInitFile (bool in_cwd, CommandReturnObject &result)
2169{
Jim Ingham574c3d62011-08-12 23:34:31 +00002170 FileSpec init_file;
Greg Claytond6edcb52011-09-11 00:01:44 +00002171 if (in_cwd)
Jim Ingham574c3d62011-08-12 23:34:31 +00002172 {
Greg Claytond6edcb52011-09-11 00:01:44 +00002173 // In the current working directory we don't load any program specific
2174 // .lldbinit files, we only look for a "./.lldbinit" file.
2175 if (m_skip_lldbinit_files)
2176 return;
2177
2178 init_file.SetFile ("./.lldbinit", true);
Jim Ingham574c3d62011-08-12 23:34:31 +00002179 }
Greg Claytond6edcb52011-09-11 00:01:44 +00002180 else
Jim Ingham574c3d62011-08-12 23:34:31 +00002181 {
Greg Claytond6edcb52011-09-11 00:01:44 +00002182 // If we aren't looking in the current working directory we are looking
2183 // in the home directory. We will first see if there is an application
2184 // specific ".lldbinit" file whose name is "~/.lldbinit" followed by a
2185 // "-" and the name of the program. If this file doesn't exist, we fall
2186 // back to just the "~/.lldbinit" file. We also obey any requests to not
2187 // load the init files.
2188 const char *init_file_path = "~/.lldbinit";
2189
2190 if (m_skip_app_init_files == false)
2191 {
2192 FileSpec program_file_spec (Host::GetProgramFileSpec());
2193 const char *program_name = program_file_spec.GetFilename().AsCString();
Jim Ingham574c3d62011-08-12 23:34:31 +00002194
Greg Claytond6edcb52011-09-11 00:01:44 +00002195 if (program_name)
2196 {
2197 char program_init_file_name[PATH_MAX];
2198 ::snprintf (program_init_file_name, sizeof(program_init_file_name), "%s-%s", init_file_path, program_name);
2199 init_file.SetFile (program_init_file_name, true);
2200 if (!init_file.Exists())
2201 init_file.Clear();
2202 }
2203 }
2204
2205 if (!init_file && !m_skip_lldbinit_files)
2206 init_file.SetFile (init_file_path, true);
2207 }
2208
Chris Lattner24943d22010-06-08 16:52:24 +00002209 // If the file exists, tell HandleCommand to 'source' it; this will do the actual broadcasting
2210 // of the commands back to any appropriate listener (see CommandObjectSource::Execute for more details).
2211
2212 if (init_file.Exists())
2213 {
Jim Ingham949d5ac2011-02-18 00:54:25 +00002214 ExecutionContext *exe_ctx = NULL; // We don't have any context yet.
2215 bool stop_on_continue = true;
2216 bool stop_on_error = false;
2217 bool echo_commands = false;
2218 bool print_results = false;
2219
Enrico Granata01bc2d42012-05-31 01:09:06 +00002220 HandleCommandsFromFile (init_file, exe_ctx, stop_on_continue, stop_on_error, echo_commands, print_results, eLazyBoolNo, result);
Chris Lattner24943d22010-06-08 16:52:24 +00002221 }
2222 else
2223 {
2224 // nothing to be done if the file doesn't exist
2225 result.SetStatus(eReturnStatusSuccessFinishNoResult);
2226 }
2227}
2228
Greg Claytonb72d0f02011-04-12 05:54:46 +00002229PlatformSP
2230CommandInterpreter::GetPlatform (bool prefer_target_platform)
2231{
2232 PlatformSP platform_sp;
Greg Clayton567e7f32011-09-22 04:58:26 +00002233 if (prefer_target_platform)
2234 {
Greg Claytonbcaf99a2012-07-12 20:32:19 +00002235 ExecutionContext exe_ctx(GetExecutionContext());
2236 Target *target = exe_ctx.GetTargetPtr();
Greg Clayton567e7f32011-09-22 04:58:26 +00002237 if (target)
2238 platform_sp = target->GetPlatform();
2239 }
Greg Claytonb72d0f02011-04-12 05:54:46 +00002240
2241 if (!platform_sp)
2242 platform_sp = m_debugger.GetPlatformList().GetSelectedPlatform();
2243 return platform_sp;
2244}
2245
Jim Ingham949d5ac2011-02-18 00:54:25 +00002246void
Jim Inghama4fede32011-03-11 01:51:49 +00002247CommandInterpreter::HandleCommands (const StringList &commands,
Jim Ingham949d5ac2011-02-18 00:54:25 +00002248 ExecutionContext *override_context,
2249 bool stop_on_continue,
2250 bool stop_on_error,
2251 bool echo_commands,
2252 bool print_results,
Enrico Granata01bc2d42012-05-31 01:09:06 +00002253 LazyBool add_to_history,
Jim Ingham949d5ac2011-02-18 00:54:25 +00002254 CommandReturnObject &result)
2255{
2256 size_t num_lines = commands.GetSize();
Jim Ingham949d5ac2011-02-18 00:54:25 +00002257
2258 // If we are going to continue past a "continue" then we need to run the commands synchronously.
2259 // Make sure you reset this value anywhere you return from the function.
2260
2261 bool old_async_execution = m_debugger.GetAsyncExecution();
2262
2263 // If we've been given an execution context, set it at the start, but don't keep resetting it or we will
2264 // cause series of commands that change the context, then do an operation that relies on that context to fail.
2265
2266 if (override_context != NULL)
Greg Claytonb72d0f02011-04-12 05:54:46 +00002267 UpdateExecutionContext (override_context);
Jim Ingham949d5ac2011-02-18 00:54:25 +00002268
2269 if (!stop_on_continue)
2270 {
2271 m_debugger.SetAsyncExecution (false);
2272 }
2273
2274 for (int idx = 0; idx < num_lines; idx++)
2275 {
2276 const char *cmd = commands.GetStringAtIndex(idx);
2277 if (cmd[0] == '\0')
2278 continue;
2279
Jim Ingham949d5ac2011-02-18 00:54:25 +00002280 if (echo_commands)
2281 {
2282 result.AppendMessageWithFormat ("%s %s\n",
2283 GetPrompt(),
2284 cmd);
2285 }
2286
Greg Claytonaa378b12011-02-20 02:15:07 +00002287 CommandReturnObject tmp_result;
Johnny Chen8bdf57c2011-10-05 00:42:59 +00002288 // If override_context is not NULL, pass no_context_switching = true for
2289 // HandleCommand() since we updated our context already.
Enrico Granata01bc2d42012-05-31 01:09:06 +00002290 bool success = HandleCommand(cmd, add_to_history, tmp_result,
Johnny Chen8bdf57c2011-10-05 00:42:59 +00002291 NULL, /* override_context */
2292 true, /* repeat_on_empty_command */
2293 override_context != NULL /* no_context_switching */);
Jim Ingham949d5ac2011-02-18 00:54:25 +00002294
2295 if (print_results)
2296 {
2297 if (tmp_result.Succeeded())
Jim Ingham2e8cb8a2011-02-19 02:53:09 +00002298 result.AppendMessageWithFormat("%s", tmp_result.GetOutputData());
Jim Ingham949d5ac2011-02-18 00:54:25 +00002299 }
2300
2301 if (!success || !tmp_result.Succeeded())
2302 {
Jim Ingham862fd5c2012-04-24 02:25:07 +00002303 const char *error_msg = tmp_result.GetErrorData();
2304 if (error_msg == NULL || error_msg[0] == '\0')
2305 error_msg = "<unknown error>.\n";
Jim Ingham949d5ac2011-02-18 00:54:25 +00002306 if (stop_on_error)
2307 {
Jim Ingham862fd5c2012-04-24 02:25:07 +00002308 result.AppendErrorWithFormat("Aborting reading of commands after command #%d: '%s' failed with %s",
2309 idx, cmd, error_msg);
Jim Ingham949d5ac2011-02-18 00:54:25 +00002310 result.SetStatus (eReturnStatusFailed);
2311 m_debugger.SetAsyncExecution (old_async_execution);
2312 return;
2313 }
2314 else if (print_results)
2315 {
Jim Ingham862fd5c2012-04-24 02:25:07 +00002316 result.AppendMessageWithFormat ("Command #%d '%s' failed with %s",
Jim Ingham949d5ac2011-02-18 00:54:25 +00002317 idx + 1,
2318 cmd,
Jim Ingham862fd5c2012-04-24 02:25:07 +00002319 error_msg);
Jim Ingham949d5ac2011-02-18 00:54:25 +00002320 }
2321 }
2322
Caroline Tice4a348082011-05-02 20:41:46 +00002323 if (result.GetImmediateOutputStream())
2324 result.GetImmediateOutputStream()->Flush();
2325
2326 if (result.GetImmediateErrorStream())
2327 result.GetImmediateErrorStream()->Flush();
2328
Jim Ingham949d5ac2011-02-18 00:54:25 +00002329 // N.B. Can't depend on DidChangeProcessState, because the state coming into the command execution
2330 // could be running (for instance in Breakpoint Commands.
2331 // So we check the return value to see if it is has running in it.
2332 if ((tmp_result.GetStatus() == eReturnStatusSuccessContinuingNoResult)
2333 || (tmp_result.GetStatus() == eReturnStatusSuccessContinuingResult))
2334 {
2335 if (stop_on_continue)
2336 {
2337 // If we caused the target to proceed, and we're going to stop in that case, set the
2338 // status in our real result before returning. This is an error if the continue was not the
2339 // last command in the set of commands to be run.
2340 if (idx != num_lines - 1)
2341 result.AppendErrorWithFormat("Aborting reading of commands after command #%d: '%s' continued the target.\n",
2342 idx + 1, cmd);
2343 else
2344 result.AppendMessageWithFormat ("Command #%d '%s' continued the target.\n", idx + 1, cmd);
2345
2346 result.SetStatus(tmp_result.GetStatus());
2347 m_debugger.SetAsyncExecution (old_async_execution);
2348
2349 return;
2350 }
2351 }
2352
2353 }
2354
2355 result.SetStatus (eReturnStatusSuccessFinishResult);
2356 m_debugger.SetAsyncExecution (old_async_execution);
2357
2358 return;
2359}
2360
2361void
2362CommandInterpreter::HandleCommandsFromFile (FileSpec &cmd_file,
2363 ExecutionContext *context,
2364 bool stop_on_continue,
2365 bool stop_on_error,
2366 bool echo_command,
2367 bool print_result,
Enrico Granata01bc2d42012-05-31 01:09:06 +00002368 LazyBool add_to_history,
Jim Ingham949d5ac2011-02-18 00:54:25 +00002369 CommandReturnObject &result)
2370{
2371 if (cmd_file.Exists())
2372 {
2373 bool success;
2374 StringList commands;
2375 success = commands.ReadFileLines(cmd_file);
2376 if (!success)
2377 {
2378 result.AppendErrorWithFormat ("Error reading commands from file: %s.\n", cmd_file.GetFilename().AsCString());
2379 result.SetStatus (eReturnStatusFailed);
2380 return;
2381 }
Enrico Granata01bc2d42012-05-31 01:09:06 +00002382 m_command_source_depth++;
2383 HandleCommands (commands, context, stop_on_continue, stop_on_error, echo_command, print_result, add_to_history, result);
2384 m_command_source_depth--;
Jim Ingham949d5ac2011-02-18 00:54:25 +00002385 }
2386 else
2387 {
2388 result.AppendErrorWithFormat ("Error reading commands from file %s - file not found.\n",
2389 cmd_file.GetFilename().AsCString());
2390 result.SetStatus (eReturnStatusFailed);
2391 return;
2392 }
2393}
2394
Chris Lattner24943d22010-06-08 16:52:24 +00002395ScriptInterpreter *
2396CommandInterpreter::GetScriptInterpreter ()
2397{
Enrico Granatac5c10a42012-07-10 18:23:48 +00002398 // <rdar://problem/11751427>
2399 // we need to protect the initialization of the script interpreter
2400 // otherwise we could end up with two threads both trying to create
2401 // their instance of it, and for some languages (e.g. Python)
2402 // this is a bulletproof recipe for disaster!
2403 // this needs to be a function-level static because multiple Debugger instances living in the same process
2404 // still need to be isolated and not try to initialize Python concurrently
Enrico Granatab88c0a92012-07-10 19:04:14 +00002405 static Mutex g_interpreter_mutex(Mutex::eMutexTypeRecursive);
2406 Mutex::Locker interpreter_lock(g_interpreter_mutex);
Enrico Granatac5c10a42012-07-10 18:23:48 +00002407
Caroline Tice0aa2e552011-01-14 00:29:16 +00002408 if (m_script_interpreter_ap.get() != NULL)
2409 return m_script_interpreter_ap.get();
Greg Clayton63094e02010-06-23 01:19:29 +00002410
Caroline Tice0aa2e552011-01-14 00:29:16 +00002411 lldb::ScriptLanguage script_lang = GetDebugger().GetScriptLanguage();
2412 switch (script_lang)
Chris Lattner24943d22010-06-08 16:52:24 +00002413 {
Greg Clayton3e4238d2011-11-04 03:34:56 +00002414 case eScriptLanguagePython:
2415#ifndef LLDB_DISABLE_PYTHON
2416 m_script_interpreter_ap.reset (new ScriptInterpreterPython (*this));
2417 break;
2418#else
2419 // Fall through to the None case when python is disabled
2420#endif
Caroline Tice0aa2e552011-01-14 00:29:16 +00002421 case eScriptLanguageNone:
2422 m_script_interpreter_ap.reset (new ScriptInterpreterNone (*this));
2423 break;
Caroline Tice0aa2e552011-01-14 00:29:16 +00002424 default:
2425 break;
2426 };
2427
2428 return m_script_interpreter_ap.get();
Chris Lattner24943d22010-06-08 16:52:24 +00002429}
2430
2431
2432
2433bool
2434CommandInterpreter::GetSynchronous ()
2435{
2436 return m_synchronous_execution;
2437}
2438
2439void
2440CommandInterpreter::SetSynchronous (bool value)
2441{
Johnny Chend7a4eb02010-10-14 01:22:03 +00002442 m_synchronous_execution = value;
Chris Lattner24943d22010-06-08 16:52:24 +00002443}
2444
2445void
2446CommandInterpreter::OutputFormattedHelpText (Stream &strm,
2447 const char *word_text,
2448 const char *separator,
2449 const char *help_text,
2450 uint32_t max_word_len)
2451{
Greg Clayton238c0a12010-09-18 01:14:36 +00002452 const uint32_t max_columns = m_debugger.GetTerminalWidth();
2453
Chris Lattner24943d22010-06-08 16:52:24 +00002454 int indent_size = max_word_len + strlen (separator) + 2;
2455
2456 strm.IndentMore (indent_size);
Greg Claytond284b662011-02-18 01:44:25 +00002457
2458 StreamString text_strm;
2459 text_strm.Printf ("%-*s %s %s", max_word_len, word_text, separator, help_text);
2460
2461 size_t len = text_strm.GetSize();
2462 const char *text = text_strm.GetData();
Chris Lattner24943d22010-06-08 16:52:24 +00002463 if (text[len - 1] == '\n')
Greg Claytond284b662011-02-18 01:44:25 +00002464 {
2465 text_strm.EOL();
2466 len = text_strm.GetSize();
2467 }
Chris Lattner24943d22010-06-08 16:52:24 +00002468
2469 if (len < max_columns)
2470 {
2471 // Output it as a single line.
2472 strm.Printf ("%s", text);
2473 }
2474 else
2475 {
2476 // We need to break it up into multiple lines.
2477 bool first_line = true;
2478 int text_width;
2479 int start = 0;
2480 int end = start;
2481 int final_end = strlen (text);
2482 int sub_len;
2483
2484 while (end < final_end)
2485 {
2486 if (first_line)
2487 text_width = max_columns - 1;
2488 else
2489 text_width = max_columns - indent_size - 1;
2490
2491 // Don't start the 'text' on a space, since we're already outputting the indentation.
2492 if (!first_line)
2493 {
2494 while ((start < final_end) && (text[start] == ' '))
2495 start++;
2496 }
2497
2498 end = start + text_width;
2499 if (end > final_end)
2500 end = final_end;
2501 else
2502 {
2503 // If we're not at the end of the text, make sure we break the line on white space.
2504 while (end > start
2505 && text[end] != ' ' && text[end] != '\t' && text[end] != '\n')
2506 end--;
2507 }
2508
2509 sub_len = end - start;
2510 if (start != 0)
2511 strm.EOL();
2512 if (!first_line)
2513 strm.Indent();
2514 else
2515 first_line = false;
2516 assert (start <= final_end);
2517 assert (start + sub_len <= final_end);
2518 if (sub_len > 0)
2519 strm.Write (text + start, sub_len);
2520 start = end + 1;
2521 }
2522 }
2523 strm.EOL();
2524 strm.IndentLess(indent_size);
Chris Lattner24943d22010-06-08 16:52:24 +00002525}
2526
2527void
Enrico Granata1bba6e52011-07-07 00:38:40 +00002528CommandInterpreter::OutputHelpText (Stream &strm,
2529 const char *word_text,
2530 const char *separator,
2531 const char *help_text,
2532 uint32_t max_word_len)
2533{
2534 int indent_size = max_word_len + strlen (separator) + 2;
2535
2536 strm.IndentMore (indent_size);
2537
2538 StreamString text_strm;
2539 text_strm.Printf ("%-*s %s %s", max_word_len, word_text, separator, help_text);
2540
2541 const uint32_t max_columns = m_debugger.GetTerminalWidth();
Enrico Granata1bba6e52011-07-07 00:38:40 +00002542
2543 size_t len = text_strm.GetSize();
2544 const char *text = text_strm.GetData();
2545
2546 uint32_t chars_left = max_columns;
2547
2548 for (uint32_t i = 0; i < len; i++)
2549 {
2550 if ((text[i] == ' ' && ::strchr((text+i+1), ' ') && chars_left < ::strchr((text+i+1), ' ')-(text+i)) || text[i] == '\n')
2551 {
Enrico Granata1bba6e52011-07-07 00:38:40 +00002552 chars_left = max_columns - indent_size;
2553 strm.EOL();
2554 strm.Indent();
2555 }
2556 else
2557 {
2558 strm.PutChar(text[i]);
2559 chars_left--;
2560 }
2561
2562 }
2563
2564 strm.EOL();
2565 strm.IndentLess(indent_size);
2566}
2567
2568void
Chris Lattner24943d22010-06-08 16:52:24 +00002569CommandInterpreter::AproposAllSubCommands (CommandObject *cmd_obj, const char *prefix, const char *search_word,
2570 StringList &commands_found, StringList &commands_help)
2571{
2572 CommandObject::CommandMap::const_iterator pos;
2573 CommandObject::CommandMap sub_cmd_dict = ((CommandObjectMultiword *) cmd_obj)->m_subcommand_dict;
2574 CommandObject *sub_cmd_obj;
2575
2576 for (pos = sub_cmd_dict.begin(); pos != sub_cmd_dict.end(); ++pos)
2577 {
2578 const char * command_name = pos->first.c_str();
2579 sub_cmd_obj = pos->second.get();
2580 StreamString complete_command_name;
2581
2582 complete_command_name.Printf ("%s %s", prefix, command_name);
2583
Greg Clayton238c0a12010-09-18 01:14:36 +00002584 if (sub_cmd_obj->HelpTextContainsWord (search_word))
Chris Lattner24943d22010-06-08 16:52:24 +00002585 {
2586 commands_found.AppendString (complete_command_name.GetData());
2587 commands_help.AppendString (sub_cmd_obj->GetHelp());
2588 }
2589
2590 if (sub_cmd_obj->IsMultiwordObject())
2591 AproposAllSubCommands (sub_cmd_obj, complete_command_name.GetData(), search_word, commands_found,
2592 commands_help);
2593 }
2594
2595}
2596
2597void
2598CommandInterpreter::FindCommandsForApropos (const char *search_word, StringList &commands_found,
2599 StringList &commands_help)
2600{
2601 CommandObject::CommandMap::const_iterator pos;
2602
2603 for (pos = m_command_dict.begin(); pos != m_command_dict.end(); ++pos)
2604 {
2605 const char *command_name = pos->first.c_str();
2606 CommandObject *cmd_obj = pos->second.get();
2607
Greg Clayton238c0a12010-09-18 01:14:36 +00002608 if (cmd_obj->HelpTextContainsWord (search_word))
Chris Lattner24943d22010-06-08 16:52:24 +00002609 {
2610 commands_found.AppendString (command_name);
2611 commands_help.AppendString (cmd_obj->GetHelp());
2612 }
2613
2614 if (cmd_obj->IsMultiwordObject())
2615 AproposAllSubCommands (cmd_obj, command_name, search_word, commands_found, commands_help);
2616
2617 }
2618}
Greg Claytonb72d0f02011-04-12 05:54:46 +00002619
2620
2621void
2622CommandInterpreter::UpdateExecutionContext (ExecutionContext *override_context)
2623{
Greg Claytonb72d0f02011-04-12 05:54:46 +00002624 if (override_context != NULL)
2625 {
Greg Claytonbcaf99a2012-07-12 20:32:19 +00002626 m_exe_ctx_ref = *override_context;
Greg Claytonb72d0f02011-04-12 05:54:46 +00002627 }
2628 else
2629 {
Greg Claytonbcaf99a2012-07-12 20:32:19 +00002630 const bool adopt_selected = true;
2631 m_exe_ctx_ref.SetTargetPtr (m_debugger.GetSelectedTarget().get(), adopt_selected);
Greg Claytonb72d0f02011-04-12 05:54:46 +00002632 }
2633}
2634
Jim Ingham6247dbe2011-07-12 03:12:18 +00002635void
2636CommandInterpreter::DumpHistory (Stream &stream, uint32_t count) const
2637{
2638 DumpHistory (stream, 0, count - 1);
2639}
2640
2641void
2642CommandInterpreter::DumpHistory (Stream &stream, uint32_t start, uint32_t end) const
2643{
Greg Clayton7268b4c2011-10-28 21:38:01 +00002644 const size_t last_idx = std::min<size_t>(m_command_history.size(), end + 1);
2645 for (size_t i = start; i < last_idx; i++)
Jim Ingham6247dbe2011-07-12 03:12:18 +00002646 {
2647 if (!m_command_history[i].empty())
2648 {
2649 stream.Indent();
Greg Clayton7268b4c2011-10-28 21:38:01 +00002650 stream.Printf ("%4zu: %s\n", i, m_command_history[i].c_str());
Jim Ingham6247dbe2011-07-12 03:12:18 +00002651 }
2652 }
2653}
2654
2655const char *
2656CommandInterpreter::FindHistoryString (const char *input_str) const
2657{
2658 if (input_str[0] != m_repeat_char)
2659 return NULL;
2660 if (input_str[1] == '-')
2661 {
2662 bool success;
2663 uint32_t idx = Args::StringToUInt32 (input_str+2, 0, 0, &success);
2664 if (!success)
2665 return NULL;
2666 if (idx > m_command_history.size())
2667 return NULL;
2668 idx = m_command_history.size() - idx;
2669 return m_command_history[idx].c_str();
2670
2671 }
2672 else if (input_str[1] == m_repeat_char)
2673 {
2674 if (m_command_history.empty())
2675 return NULL;
2676 else
2677 return m_command_history.back().c_str();
2678 }
2679 else
2680 {
2681 bool success;
2682 uint32_t idx = Args::StringToUInt32 (input_str+1, 0, 0, &success);
2683 if (!success)
2684 return NULL;
2685 if (idx >= m_command_history.size())
2686 return NULL;
2687 return m_command_history[idx].c_str();
2688 }
2689}