blob: a7c892d255e839daa752589e02c95cef808a6528 [file] [log] [blame]
Chris Lattner30fdc8d2010-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
Daniel Malea93a64302012-12-05 00:20:57 +000010#include "lldb/lldb-python.h"
11
Chris Lattner30fdc8d2010-06-08 16:52:24 +000012#include <string>
Caroline Tice4ab31c92010-10-12 21:57:09 +000013#include <vector>
Chris Lattner30fdc8d2010-06-08 16:52:24 +000014#include <stdlib.h>
15
Greg Clayton4a33d312011-06-23 17:59:56 +000016#include "CommandObjectScript.h"
Peter Collingbourne08405b62011-06-23 20:37:26 +000017#include "lldb/Interpreter/CommandObjectRegexCommand.h"
Greg Clayton4a33d312011-06-23 17:59:56 +000018
Eli Friedman3afb70c2010-06-13 02:17:17 +000019#include "../Commands/CommandObjectApropos.h"
20#include "../Commands/CommandObjectArgs.h"
21#include "../Commands/CommandObjectBreakpoint.h"
Eli Friedman3afb70c2010-06-13 02:17:17 +000022#include "../Commands/CommandObjectDisassemble.h"
23#include "../Commands/CommandObjectExpression.h"
Eli Friedman3afb70c2010-06-13 02:17:17 +000024#include "../Commands/CommandObjectFrame.h"
25#include "../Commands/CommandObjectHelp.h"
Eli Friedman3afb70c2010-06-13 02:17:17 +000026#include "../Commands/CommandObjectLog.h"
27#include "../Commands/CommandObjectMemory.h"
Greg Claytonded470d2011-03-19 01:12:21 +000028#include "../Commands/CommandObjectPlatform.h"
Enrico Granata21dfcd92012-09-28 23:57:51 +000029#include "../Commands/CommandObjectPlugin.h"
Eli Friedman3afb70c2010-06-13 02:17:17 +000030#include "../Commands/CommandObjectProcess.h"
31#include "../Commands/CommandObjectQuit.h"
Eli Friedman3afb70c2010-06-13 02:17:17 +000032#include "../Commands/CommandObjectRegister.h"
Eli Friedman3afb70c2010-06-13 02:17:17 +000033#include "../Commands/CommandObjectSettings.h"
Eli Friedman3afb70c2010-06-13 02:17:17 +000034#include "../Commands/CommandObjectSource.h"
Jim Inghamebc09c32010-07-07 03:36:20 +000035#include "../Commands/CommandObjectCommands.h"
Eli Friedman3afb70c2010-06-13 02:17:17 +000036#include "../Commands/CommandObjectSyntax.h"
37#include "../Commands/CommandObjectTarget.h"
38#include "../Commands/CommandObjectThread.h"
Greg Clayton4a33d312011-06-23 17:59:56 +000039#include "../Commands/CommandObjectType.h"
Johnny Chen31c39da2010-12-23 20:21:44 +000040#include "../Commands/CommandObjectVersion.h"
Johnny Chenf04ee932011-09-22 18:04:58 +000041#include "../Commands/CommandObjectWatchpoint.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000042
Greg Clayton7d2ef162013-03-29 17:03:23 +000043
Chris Lattner30fdc8d2010-06-08 16:52:24 +000044#include "lldb/Core/Debugger.h"
Jim Ingham97a6dc72010-10-04 19:49:29 +000045#include "lldb/Core/InputReader.h"
Enrico Granatab5887262012-10-29 21:18:03 +000046#include "lldb/Core/Log.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000047#include "lldb/Core/Stream.h"
48#include "lldb/Core/Timer.h"
Enrico Granatab5887262012-10-29 21:18:03 +000049
Greg Clayton7fb56d02011-02-01 01:31:41 +000050#include "lldb/Host/Host.h"
Enrico Granatab5887262012-10-29 21:18:03 +000051
52#include "lldb/Interpreter/Args.h"
Greg Clayton7d2ef162013-03-29 17:03:23 +000053#include "lldb/Interpreter/CommandCompletions.h"
Enrico Granatab5887262012-10-29 21:18:03 +000054#include "lldb/Interpreter/CommandInterpreter.h"
Greg Clayton7d2ef162013-03-29 17:03:23 +000055#include "lldb/Interpreter/CommandReturnObject.h"
Enrico Granatab5887262012-10-29 21:18:03 +000056#include "lldb/Interpreter/Options.h"
57#include "lldb/Interpreter/ScriptInterpreterNone.h"
58#include "lldb/Interpreter/ScriptInterpreterPython.h"
59
60
Chris Lattner30fdc8d2010-06-08 16:52:24 +000061#include "lldb/Target/Process.h"
62#include "lldb/Target/Thread.h"
63#include "lldb/Target/TargetList.h"
64
Enrico Granatab5887262012-10-29 21:18:03 +000065#include "lldb/Utility/CleanUp.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000066
67using namespace lldb;
68using namespace lldb_private;
69
Greg Clayton754a9362012-08-23 00:22:02 +000070
71static PropertyDefinition
72g_properties[] =
73{
74 { "expand-regex-aliases", OptionValue::eTypeBoolean, true, false, NULL, NULL, "If true, regular expression alias commands will show the expanded command that will be executed. This can be used to debug new regular expression alias commands." },
Enrico Granatabcba2b22013-01-17 21:36:19 +000075 { "prompt-on-quit", OptionValue::eTypeBoolean, true, true, NULL, NULL, "If true, LLDB will prompt you before quitting if there are any live processes being debugged. If false, LLDB will quit without asking in any case." },
Enrico Granata012d4fc2013-06-11 01:26:35 +000076 { "stop-command-source-on-error", OptionValue::eTypeBoolean, true, true, NULL, NULL, "If true, LLDB will stop running a 'command source' script upon encountering an error." },
Greg Clayton754a9362012-08-23 00:22:02 +000077 { NULL , OptionValue::eTypeInvalid, true, 0 , NULL, NULL, NULL }
78};
79
80enum
81{
Enrico Granatabcba2b22013-01-17 21:36:19 +000082 ePropertyExpandRegexAliases = 0,
Enrico Granata012d4fc2013-06-11 01:26:35 +000083 ePropertyPromptOnQuit = 1,
84 ePropertyStopCmdSourceOnError = 2
Greg Clayton754a9362012-08-23 00:22:02 +000085};
86
Jim Ingham4bddaeb2012-02-16 06:50:00 +000087ConstString &
88CommandInterpreter::GetStaticBroadcasterClass ()
89{
90 static ConstString class_name ("lldb.commandInterpreter");
91 return class_name;
92}
93
Chris Lattner30fdc8d2010-06-08 16:52:24 +000094CommandInterpreter::CommandInterpreter
95(
Greg Clayton66111032010-06-23 01:19:29 +000096 Debugger &debugger,
Chris Lattner30fdc8d2010-06-08 16:52:24 +000097 ScriptLanguage script_language,
Greg Clayton66111032010-06-23 01:19:29 +000098 bool synchronous_execution
Chris Lattner30fdc8d2010-06-08 16:52:24 +000099) :
Jim Ingham4bddaeb2012-02-16 06:50:00 +0000100 Broadcaster (&debugger, "lldb.command-interpreter"),
Greg Clayton754a9362012-08-23 00:22:02 +0000101 Properties(OptionValuePropertiesSP(new OptionValueProperties(ConstString("interpreter")))),
Greg Clayton66111032010-06-23 01:19:29 +0000102 m_debugger (debugger),
Greg Clayton6eee5aa2010-10-11 01:05:37 +0000103 m_synchronous_execution (synchronous_execution),
Caroline Tice2f88aad2011-01-14 00:29:16 +0000104 m_skip_lldbinit_files (false),
Jim Ingham16e0c682011-08-12 23:34:31 +0000105 m_skip_app_init_files (false),
Jim Inghame16c50a2011-02-18 00:54:25 +0000106 m_script_interpreter_ap (),
Caroline Ticed61c10b2011-06-16 16:27:19 +0000107 m_comment_char ('#'),
Johnny Chen4ac1d9e2012-08-09 22:06:10 +0000108 m_batch_command_mode (false),
Enrico Granata5f5ab602012-05-31 01:09:06 +0000109 m_truncation_warning(eNoTruncation),
110 m_command_source_depth (0)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000111{
Greg Clayton67cc0632012-08-22 17:17:09 +0000112 debugger.SetScriptLanguage (script_language);
Greg Claytoncfd1ace2010-10-31 03:01:06 +0000113 SetEventName (eBroadcastBitThreadShouldExit, "thread-should-exit");
114 SetEventName (eBroadcastBitResetPrompt, "reset-prompt");
Greg Clayton67cc0632012-08-22 17:17:09 +0000115 SetEventName (eBroadcastBitQuitCommandReceived, "quit");
Jim Ingham4bddaeb2012-02-16 06:50:00 +0000116 CheckInWithManager ();
Greg Clayton754a9362012-08-23 00:22:02 +0000117 m_collection_sp->Initialize (g_properties);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000118}
119
Greg Clayton754a9362012-08-23 00:22:02 +0000120bool
121CommandInterpreter::GetExpandRegexAliases () const
122{
123 const uint32_t idx = ePropertyExpandRegexAliases;
124 return m_collection_sp->GetPropertyAtIndexAsBoolean (NULL, idx, g_properties[idx].default_uint_value != 0);
125}
126
Enrico Granatabcba2b22013-01-17 21:36:19 +0000127bool
128CommandInterpreter::GetPromptOnQuit () const
129{
130 const uint32_t idx = ePropertyPromptOnQuit;
131 return m_collection_sp->GetPropertyAtIndexAsBoolean (NULL, idx, g_properties[idx].default_uint_value != 0);
132}
Greg Clayton754a9362012-08-23 00:22:02 +0000133
Enrico Granata012d4fc2013-06-11 01:26:35 +0000134bool
135CommandInterpreter::GetStopCmdSourceOnError () const
136{
137 const uint32_t idx = ePropertyStopCmdSourceOnError;
138 return m_collection_sp->GetPropertyAtIndexAsBoolean (NULL, idx, g_properties[idx].default_uint_value != 0);
139}
140
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000141void
142CommandInterpreter::Initialize ()
143{
144 Timer scoped_timer (__PRETTY_FUNCTION__, __PRETTY_FUNCTION__);
145
146 CommandReturnObject result;
147
148 LoadCommandDictionary ();
149
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000150 // Set up some initial aliases.
Caroline Ticeca90c472011-05-06 21:37:15 +0000151 CommandObjectSP cmd_obj_sp = GetCommandSPExact ("quit", false);
152 if (cmd_obj_sp)
153 {
154 AddAlias ("q", cmd_obj_sp);
155 AddAlias ("exit", cmd_obj_sp);
156 }
Sean Callanan247e62a2012-05-04 23:15:02 +0000157
Johnny Chen6d675242012-08-24 18:15:45 +0000158 cmd_obj_sp = GetCommandSPExact ("_regexp-attach",false);
Sean Callanan247e62a2012-05-04 23:15:02 +0000159 if (cmd_obj_sp)
160 {
161 AddAlias ("attach", cmd_obj_sp);
162 }
Caroline Ticeca90c472011-05-06 21:37:15 +0000163
Johnny Chen6d675242012-08-24 18:15:45 +0000164 cmd_obj_sp = GetCommandSPExact ("process detach",false);
165 if (cmd_obj_sp)
166 {
167 AddAlias ("detach", cmd_obj_sp);
168 }
169
Caroline Ticeca90c472011-05-06 21:37:15 +0000170 cmd_obj_sp = GetCommandSPExact ("process continue", false);
171 if (cmd_obj_sp)
172 {
173 AddAlias ("c", cmd_obj_sp);
174 AddAlias ("continue", cmd_obj_sp);
175 }
176
177 cmd_obj_sp = GetCommandSPExact ("_regexp-break",false);
178 if (cmd_obj_sp)
179 AddAlias ("b", cmd_obj_sp);
180
Jim Inghamca36cd12012-10-05 19:16:31 +0000181 cmd_obj_sp = GetCommandSPExact ("_regexp-tbreak",false);
182 if (cmd_obj_sp)
183 AddAlias ("tbreak", cmd_obj_sp);
184
Caroline Ticeca90c472011-05-06 21:37:15 +0000185 cmd_obj_sp = GetCommandSPExact ("thread step-inst", false);
186 if (cmd_obj_sp)
Jason Molendaf385f122011-10-22 00:47:41 +0000187 {
188 AddAlias ("stepi", cmd_obj_sp);
Caroline Ticeca90c472011-05-06 21:37:15 +0000189 AddAlias ("si", cmd_obj_sp);
Jason Molendaf385f122011-10-22 00:47:41 +0000190 }
191
192 cmd_obj_sp = GetCommandSPExact ("thread step-inst-over", false);
193 if (cmd_obj_sp)
194 {
195 AddAlias ("nexti", cmd_obj_sp);
196 AddAlias ("ni", cmd_obj_sp);
197 }
Caroline Ticeca90c472011-05-06 21:37:15 +0000198
199 cmd_obj_sp = GetCommandSPExact ("thread step-in", false);
200 if (cmd_obj_sp)
201 {
202 AddAlias ("s", cmd_obj_sp);
203 AddAlias ("step", cmd_obj_sp);
204 }
205
206 cmd_obj_sp = GetCommandSPExact ("thread step-over", false);
207 if (cmd_obj_sp)
208 {
209 AddAlias ("n", cmd_obj_sp);
210 AddAlias ("next", cmd_obj_sp);
211 }
212
213 cmd_obj_sp = GetCommandSPExact ("thread step-out", false);
214 if (cmd_obj_sp)
215 {
Caroline Ticeca90c472011-05-06 21:37:15 +0000216 AddAlias ("finish", cmd_obj_sp);
217 }
218
Jim Ingham6d6d1072011-12-02 01:12:59 +0000219 cmd_obj_sp = GetCommandSPExact ("frame select", false);
220 if (cmd_obj_sp)
221 {
222 AddAlias ("f", cmd_obj_sp);
223 }
224
Jim Inghamca36cd12012-10-05 19:16:31 +0000225 cmd_obj_sp = GetCommandSPExact ("thread select", false);
226 if (cmd_obj_sp)
227 {
228 AddAlias ("t", cmd_obj_sp);
229 }
230
Richard Mittonf86248d2013-09-12 02:20:34 +0000231 cmd_obj_sp = GetCommandSPExact ("_regexp-jump",false);
232 if (cmd_obj_sp)
233 {
234 AddAlias ("j", cmd_obj_sp);
235 AddAlias ("jump", cmd_obj_sp);
236 }
237
Greg Clayton6bade322013-02-01 23:33:03 +0000238 cmd_obj_sp = GetCommandSPExact ("_regexp-list", false);
Caroline Ticeca90c472011-05-06 21:37:15 +0000239 if (cmd_obj_sp)
240 {
241 AddAlias ("l", cmd_obj_sp);
242 AddAlias ("list", cmd_obj_sp);
243 }
244
Greg Claytonef5651d2013-02-12 18:52:24 +0000245 cmd_obj_sp = GetCommandSPExact ("_regexp-env", false);
246 if (cmd_obj_sp)
247 {
248 AddAlias ("env", cmd_obj_sp);
249 }
250
Caroline Ticeca90c472011-05-06 21:37:15 +0000251 cmd_obj_sp = GetCommandSPExact ("memory read", false);
252 if (cmd_obj_sp)
253 AddAlias ("x", cmd_obj_sp);
254
255 cmd_obj_sp = GetCommandSPExact ("_regexp-up", false);
256 if (cmd_obj_sp)
257 AddAlias ("up", cmd_obj_sp);
258
259 cmd_obj_sp = GetCommandSPExact ("_regexp-down", false);
260 if (cmd_obj_sp)
261 AddAlias ("down", cmd_obj_sp);
262
Jason Molenda0c8e0062011-10-25 02:11:20 +0000263 cmd_obj_sp = GetCommandSPExact ("_regexp-display", false);
Jason Molendabc7748b2011-10-22 01:30:52 +0000264 if (cmd_obj_sp)
265 AddAlias ("display", cmd_obj_sp);
Jim Ingham7e18e422011-10-24 18:37:00 +0000266
267 cmd_obj_sp = GetCommandSPExact ("disassemble", false);
268 if (cmd_obj_sp)
269 AddAlias ("dis", cmd_obj_sp);
270
271 cmd_obj_sp = GetCommandSPExact ("disassemble", false);
272 if (cmd_obj_sp)
273 AddAlias ("di", cmd_obj_sp);
274
275
Jason Molendabc7748b2011-10-22 01:30:52 +0000276
Jason Molenda0c8e0062011-10-25 02:11:20 +0000277 cmd_obj_sp = GetCommandSPExact ("_regexp-undisplay", false);
Jason Molendabc7748b2011-10-22 01:30:52 +0000278 if (cmd_obj_sp)
279 AddAlias ("undisplay", cmd_obj_sp);
280
Jim Ingham71bf2992012-10-10 16:51:31 +0000281 cmd_obj_sp = GetCommandSPExact ("_regexp-bt", false);
282 if (cmd_obj_sp)
283 AddAlias ("bt", cmd_obj_sp);
284
Caroline Ticeca90c472011-05-06 21:37:15 +0000285 cmd_obj_sp = GetCommandSPExact ("target create", false);
286 if (cmd_obj_sp)
287 AddAlias ("file", cmd_obj_sp);
288
289 cmd_obj_sp = GetCommandSPExact ("target modules", false);
290 if (cmd_obj_sp)
291 AddAlias ("image", cmd_obj_sp);
292
293
294 OptionArgVectorSP alias_arguments_vector_sp (new OptionArgVector);
Jim Inghamffba2292011-03-22 02:29:32 +0000295
Caroline Ticeca90c472011-05-06 21:37:15 +0000296 cmd_obj_sp = GetCommandSPExact ("expression", false);
297 if (cmd_obj_sp)
Sean Callanan90e579f2013-04-17 17:23:58 +0000298 {
Caroline Ticeca90c472011-05-06 21:37:15 +0000299 ProcessAliasOptionsArgs (cmd_obj_sp, "--", alias_arguments_vector_sp);
300 AddAlias ("p", cmd_obj_sp);
301 AddAlias ("print", cmd_obj_sp);
Sean Callanan316d5e42012-08-08 01:30:34 +0000302 AddAlias ("call", cmd_obj_sp);
Caroline Ticeca90c472011-05-06 21:37:15 +0000303 AddOrReplaceAliasOptions ("p", alias_arguments_vector_sp);
304 AddOrReplaceAliasOptions ("print", alias_arguments_vector_sp);
Sean Callanan316d5e42012-08-08 01:30:34 +0000305 AddOrReplaceAliasOptions ("call", alias_arguments_vector_sp);
Caroline Ticeca90c472011-05-06 21:37:15 +0000306
307 alias_arguments_vector_sp.reset (new OptionArgVector);
Greg Clayton9e57dcd2013-05-15 01:03:08 +0000308 ProcessAliasOptionsArgs (cmd_obj_sp, "-O -- ", alias_arguments_vector_sp);
Caroline Ticeca90c472011-05-06 21:37:15 +0000309 AddAlias ("po", cmd_obj_sp);
310 AddOrReplaceAliasOptions ("po", alias_arguments_vector_sp);
311 }
312
Sean Callanan2e1d9ba2012-06-01 23:29:32 +0000313 cmd_obj_sp = GetCommandSPExact ("process kill", false);
314 if (cmd_obj_sp)
Greg Claytone86fd742012-09-27 00:02:27 +0000315 {
Sean Callanan2e1d9ba2012-06-01 23:29:32 +0000316 AddAlias ("kill", cmd_obj_sp);
Greg Claytone86fd742012-09-27 00:02:27 +0000317 }
Sean Callanan2e1d9ba2012-06-01 23:29:32 +0000318
Caroline Ticeca90c472011-05-06 21:37:15 +0000319 cmd_obj_sp = GetCommandSPExact ("process launch", false);
320 if (cmd_obj_sp)
321 {
322 alias_arguments_vector_sp.reset (new OptionArgVector);
Jason Molenda85da3122012-07-06 02:46:23 +0000323#if defined (__arm__)
324 ProcessAliasOptionsArgs (cmd_obj_sp, "--", alias_arguments_vector_sp);
325#else
Ed Maste7c566672013-09-05 21:38:45 +0000326 ProcessAliasOptionsArgs (cmd_obj_sp, "--shell=" LLDB_DEFAULT_SHELL " --", alias_arguments_vector_sp);
Jason Molenda85da3122012-07-06 02:46:23 +0000327#endif
Caroline Ticeca90c472011-05-06 21:37:15 +0000328 AddAlias ("r", cmd_obj_sp);
329 AddAlias ("run", cmd_obj_sp);
330 AddOrReplaceAliasOptions ("r", alias_arguments_vector_sp);
331 AddOrReplaceAliasOptions ("run", alias_arguments_vector_sp);
332 }
Greg Clayton843d62d2012-03-29 21:47:51 +0000333
334 cmd_obj_sp = GetCommandSPExact ("target symbols add", false);
335 if (cmd_obj_sp)
336 {
337 AddAlias ("add-dsym", cmd_obj_sp);
338 }
Sean Callananfc732752012-05-21 18:25:19 +0000339
340 cmd_obj_sp = GetCommandSPExact ("breakpoint set", false);
341 if (cmd_obj_sp)
342 {
343 alias_arguments_vector_sp.reset (new OptionArgVector);
344 ProcessAliasOptionsArgs (cmd_obj_sp, "--func-regex %1", alias_arguments_vector_sp);
Jim Ingham06d282d2012-10-18 23:24:12 +0000345 AddAlias ("rbreak", cmd_obj_sp);
346 AddOrReplaceAliasOptions("rbreak", alias_arguments_vector_sp);
Sean Callananfc732752012-05-21 18:25:19 +0000347 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000348}
349
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000350const char *
351CommandInterpreter::ProcessEmbeddedScriptCommands (const char *arg)
352{
353 // This function has not yet been implemented.
354
355 // Look for any embedded script command
356 // If found,
357 // get interpreter object from the command dictionary,
358 // call execute_one_command on it,
359 // get the results as a string,
360 // substitute that string for current stuff.
361
362 return arg;
363}
364
365
366void
367CommandInterpreter::LoadCommandDictionary ()
368{
369 Timer scoped_timer (__PRETTY_FUNCTION__, __PRETTY_FUNCTION__);
370
Caroline Ticedaccaa92010-09-20 20:44:43 +0000371 lldb::ScriptLanguage script_language = m_debugger.GetScriptLanguage();
Caroline Tice3df9a8d2010-09-04 00:03:46 +0000372
Greg Claytona7015092010-09-18 01:14:36 +0000373 m_command_dict["apropos"] = CommandObjectSP (new CommandObjectApropos (*this));
Greg Clayton66111032010-06-23 01:19:29 +0000374 m_command_dict["breakpoint"]= CommandObjectSP (new CommandObjectMultiwordBreakpoint (*this));
Johnny Chenb89982d2011-04-21 00:39:18 +0000375 m_command_dict["command"] = CommandObjectSP (new CommandObjectMultiwordCommands (*this));
Greg Claytona7015092010-09-18 01:14:36 +0000376 m_command_dict["disassemble"] = CommandObjectSP (new CommandObjectDisassemble (*this));
377 m_command_dict["expression"]= CommandObjectSP (new CommandObjectExpression (*this));
Greg Clayton66111032010-06-23 01:19:29 +0000378 m_command_dict["frame"] = CommandObjectSP (new CommandObjectMultiwordFrame (*this));
Greg Claytona7015092010-09-18 01:14:36 +0000379 m_command_dict["help"] = CommandObjectSP (new CommandObjectHelp (*this));
Greg Clayton66111032010-06-23 01:19:29 +0000380 m_command_dict["log"] = CommandObjectSP (new CommandObjectLog (*this));
381 m_command_dict["memory"] = CommandObjectSP (new CommandObjectMemory (*this));
Greg Claytonded470d2011-03-19 01:12:21 +0000382 m_command_dict["platform"] = CommandObjectSP (new CommandObjectPlatform (*this));
Enrico Granata21dfcd92012-09-28 23:57:51 +0000383 m_command_dict["plugin"] = CommandObjectSP (new CommandObjectPlugin (*this));
Greg Clayton66111032010-06-23 01:19:29 +0000384 m_command_dict["process"] = CommandObjectSP (new CommandObjectMultiwordProcess (*this));
Greg Claytona7015092010-09-18 01:14:36 +0000385 m_command_dict["quit"] = CommandObjectSP (new CommandObjectQuit (*this));
Greg Clayton66111032010-06-23 01:19:29 +0000386 m_command_dict["register"] = CommandObjectSP (new CommandObjectRegister (*this));
Greg Claytona7015092010-09-18 01:14:36 +0000387 m_command_dict["script"] = CommandObjectSP (new CommandObjectScript (*this, script_language));
Caroline Tice3df9a8d2010-09-04 00:03:46 +0000388 m_command_dict["settings"] = CommandObjectSP (new CommandObjectMultiwordSettings (*this));
Jim Inghamebc09c32010-07-07 03:36:20 +0000389 m_command_dict["source"] = CommandObjectSP (new CommandObjectMultiwordSource (*this));
Greg Clayton66111032010-06-23 01:19:29 +0000390 m_command_dict["target"] = CommandObjectSP (new CommandObjectMultiwordTarget (*this));
391 m_command_dict["thread"] = CommandObjectSP (new CommandObjectMultiwordThread (*this));
Enrico Granata223383e2011-08-16 23:24:13 +0000392 m_command_dict["type"] = CommandObjectSP (new CommandObjectType (*this));
Johnny Chen31c39da2010-12-23 20:21:44 +0000393 m_command_dict["version"] = CommandObjectSP (new CommandObjectVersion (*this));
Johnny Chenf04ee932011-09-22 18:04:58 +0000394 m_command_dict["watchpoint"]= CommandObjectSP (new CommandObjectMultiwordWatchpoint (*this));
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000395
Jim Inghamca36cd12012-10-05 19:16:31 +0000396 const char *break_regexes[][2] = {{"^(.*[^[:space:]])[[:space:]]*:[[:space:]]*([[:digit:]]+)[[:space:]]*$", "breakpoint set --file '%1' --line %2"},
397 {"^([[:digit:]]+)[[:space:]]*$", "breakpoint set --line %1"},
Greg Clayton722e8852013-02-08 02:54:24 +0000398 {"^\\*?(0x[[:xdigit:]]+)[[:space:]]*$", "breakpoint set --address %1"},
Greg Clayton1b3815c2013-01-30 00:18:29 +0000399 {"^[\"']?([-+]?\\[.*\\])[\"']?[[:space:]]*$", "breakpoint set --name '%1'"},
Jim Inghamca36cd12012-10-05 19:16:31 +0000400 {"^(-.*)$", "breakpoint set %1"},
401 {"^(.*[^[:space:]])`(.*[^[:space:]])[[:space:]]*$", "breakpoint set --name '%2' --shlib '%1'"},
Greg Clayton722e8852013-02-08 02:54:24 +0000402 {"^\\&(.*[^[:space:]])[[:space:]]*$", "breakpoint set --name '%1' --skip-prologue=0"},
Jim Inghamca36cd12012-10-05 19:16:31 +0000403 {"^(.*[^[:space:]])[[:space:]]*$", "breakpoint set --name '%1'"}};
404
405 size_t num_regexes = sizeof break_regexes/sizeof(char *[2]);
406
Greg Clayton7b0992d2013-04-18 22:45:39 +0000407 std::unique_ptr<CommandObjectRegexCommand>
Greg Claytona7015092010-09-18 01:14:36 +0000408 break_regex_cmd_ap(new CommandObjectRegexCommand (*this,
Greg Clayton8b82f082011-04-12 05:54:46 +0000409 "_regexp-break",
Johnny Chenb417dcd2012-08-23 00:32:22 +0000410 "Set a breakpoint using a regular expression to specify the location, where <linenum> is in decimal and <address> is in hex.",
Greg Clayton7d2ef162013-03-29 17:03:23 +0000411 "_regexp-break [<filename>:<linenum>]\n_regexp-break [<linenum>]\n_regexp-break [<address>]\n_regexp-break <...>",
412 2,
413 CommandCompletions::eSymbolCompletion |
414 CommandCompletions::eSourceFileCompletion));
Jim Inghamca36cd12012-10-05 19:16:31 +0000415
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000416 if (break_regex_cmd_ap.get())
417 {
Jim Inghamca36cd12012-10-05 19:16:31 +0000418 bool success = true;
419 for (size_t i = 0; i < num_regexes; i++)
420 {
421 success = break_regex_cmd_ap->AddRegexCommand (break_regexes[i][0], break_regexes[i][1]);
422 if (!success)
423 break;
424 }
425 success = break_regex_cmd_ap->AddRegexCommand("^$", "breakpoint list --full");
426
427 if (success)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000428 {
429 CommandObjectSP break_regex_cmd_sp(break_regex_cmd_ap.release());
430 m_command_dict[break_regex_cmd_sp->GetCommandName ()] = break_regex_cmd_sp;
431 }
432 }
Jim Inghamffba2292011-03-22 02:29:32 +0000433
Greg Clayton7b0992d2013-04-18 22:45:39 +0000434 std::unique_ptr<CommandObjectRegexCommand>
Jim Inghamca36cd12012-10-05 19:16:31 +0000435 tbreak_regex_cmd_ap(new CommandObjectRegexCommand (*this,
436 "_regexp-tbreak",
437 "Set a one shot breakpoint using a regular expression to specify the location, where <linenum> is in decimal and <address> is in hex.",
Greg Clayton7d2ef162013-03-29 17:03:23 +0000438 "_regexp-tbreak [<filename>:<linenum>]\n_regexp-break [<linenum>]\n_regexp-break [<address>]\n_regexp-break <...>",
439 2,
440 CommandCompletions::eSymbolCompletion |
441 CommandCompletions::eSourceFileCompletion));
Jim Inghamca36cd12012-10-05 19:16:31 +0000442
443 if (tbreak_regex_cmd_ap.get())
444 {
445 bool success = true;
446 for (size_t i = 0; i < num_regexes; i++)
447 {
448 // If you add a resultant command string longer than 1024 characters be sure to increase the size of this buffer.
449 char buffer[1024];
450 int num_printed = snprintf(buffer, 1024, "%s %s", break_regexes[i][1], "-o");
451 assert (num_printed < 1024);
452 success = tbreak_regex_cmd_ap->AddRegexCommand (break_regexes[i][0], buffer);
453 if (!success)
454 break;
455 }
456 success = tbreak_regex_cmd_ap->AddRegexCommand("^$", "breakpoint list --full");
457
458 if (success)
459 {
460 CommandObjectSP tbreak_regex_cmd_sp(tbreak_regex_cmd_ap.release());
461 m_command_dict[tbreak_regex_cmd_sp->GetCommandName ()] = tbreak_regex_cmd_sp;
462 }
463 }
464
Greg Clayton7b0992d2013-04-18 22:45:39 +0000465 std::unique_ptr<CommandObjectRegexCommand>
Johnny Chen6d675242012-08-24 18:15:45 +0000466 attach_regex_cmd_ap(new CommandObjectRegexCommand (*this,
467 "_regexp-attach",
468 "Attach to a process id if in decimal, otherwise treat the argument as a process name to attach to.",
Greg Clayton7d2ef162013-03-29 17:03:23 +0000469 "_regexp-attach [<pid>]\n_regexp-attach [<process-name>]",
470 2));
Johnny Chen6d675242012-08-24 18:15:45 +0000471 if (attach_regex_cmd_ap.get())
472 {
Greg Clayton3cb4c7d2012-12-15 01:19:07 +0000473 if (attach_regex_cmd_ap->AddRegexCommand("^([0-9]+)[[:space:]]*$", "process attach --pid %1") &&
474 attach_regex_cmd_ap->AddRegexCommand("^(-.*|.* -.*)$", "process attach %1") && // Any options that are specified get passed to 'process attach'
475 attach_regex_cmd_ap->AddRegexCommand("^(.+)$", "process attach --name '%1'") &&
476 attach_regex_cmd_ap->AddRegexCommand("^$", "process attach"))
Johnny Chen6d675242012-08-24 18:15:45 +0000477 {
478 CommandObjectSP attach_regex_cmd_sp(attach_regex_cmd_ap.release());
479 m_command_dict[attach_regex_cmd_sp->GetCommandName ()] = attach_regex_cmd_sp;
480 }
481 }
482
Greg Clayton7b0992d2013-04-18 22:45:39 +0000483 std::unique_ptr<CommandObjectRegexCommand>
Jim Inghamffba2292011-03-22 02:29:32 +0000484 down_regex_cmd_ap(new CommandObjectRegexCommand (*this,
Greg Clayton8b82f082011-04-12 05:54:46 +0000485 "_regexp-down",
486 "Go down \"n\" frames in the stack (1 frame by default).",
487 "_regexp-down [n]", 2));
Jim Inghamffba2292011-03-22 02:29:32 +0000488 if (down_regex_cmd_ap.get())
489 {
490 if (down_regex_cmd_ap->AddRegexCommand("^$", "frame select -r -1") &&
491 down_regex_cmd_ap->AddRegexCommand("^([0-9]+)$", "frame select -r -%1"))
492 {
493 CommandObjectSP down_regex_cmd_sp(down_regex_cmd_ap.release());
494 m_command_dict[down_regex_cmd_sp->GetCommandName ()] = down_regex_cmd_sp;
495 }
496 }
497
Greg Clayton7b0992d2013-04-18 22:45:39 +0000498 std::unique_ptr<CommandObjectRegexCommand>
Jim Inghamffba2292011-03-22 02:29:32 +0000499 up_regex_cmd_ap(new CommandObjectRegexCommand (*this,
Greg Clayton8b82f082011-04-12 05:54:46 +0000500 "_regexp-up",
501 "Go up \"n\" frames in the stack (1 frame by default).",
502 "_regexp-up [n]", 2));
Jim Inghamffba2292011-03-22 02:29:32 +0000503 if (up_regex_cmd_ap.get())
504 {
505 if (up_regex_cmd_ap->AddRegexCommand("^$", "frame select -r 1") &&
506 up_regex_cmd_ap->AddRegexCommand("^([0-9]+)$", "frame select -r %1"))
507 {
508 CommandObjectSP up_regex_cmd_sp(up_regex_cmd_ap.release());
509 m_command_dict[up_regex_cmd_sp->GetCommandName ()] = up_regex_cmd_sp;
510 }
511 }
Jason Molendabc7748b2011-10-22 01:30:52 +0000512
Greg Clayton7b0992d2013-04-18 22:45:39 +0000513 std::unique_ptr<CommandObjectRegexCommand>
Jason Molendabc7748b2011-10-22 01:30:52 +0000514 display_regex_cmd_ap(new CommandObjectRegexCommand (*this,
Greg Clayton7d2ef162013-03-29 17:03:23 +0000515 "_regexp-display",
516 "Add an expression evaluation stop-hook.",
517 "_regexp-display expression", 2));
Jason Molendabc7748b2011-10-22 01:30:52 +0000518 if (display_regex_cmd_ap.get())
519 {
520 if (display_regex_cmd_ap->AddRegexCommand("^(.+)$", "target stop-hook add -o \"expr -- %1\""))
521 {
522 CommandObjectSP display_regex_cmd_sp(display_regex_cmd_ap.release());
523 m_command_dict[display_regex_cmd_sp->GetCommandName ()] = display_regex_cmd_sp;
524 }
525 }
526
Greg Clayton7b0992d2013-04-18 22:45:39 +0000527 std::unique_ptr<CommandObjectRegexCommand>
Jason Molendabc7748b2011-10-22 01:30:52 +0000528 undisplay_regex_cmd_ap(new CommandObjectRegexCommand (*this,
Greg Clayton7d2ef162013-03-29 17:03:23 +0000529 "_regexp-undisplay",
530 "Remove an expression evaluation stop-hook.",
531 "_regexp-undisplay stop-hook-number", 2));
Jason Molendabc7748b2011-10-22 01:30:52 +0000532 if (undisplay_regex_cmd_ap.get())
533 {
534 if (undisplay_regex_cmd_ap->AddRegexCommand("^([0-9]+)$", "target stop-hook delete %1"))
535 {
536 CommandObjectSP undisplay_regex_cmd_sp(undisplay_regex_cmd_ap.release());
537 m_command_dict[undisplay_regex_cmd_sp->GetCommandName ()] = undisplay_regex_cmd_sp;
538 }
539 }
540
Greg Clayton7b0992d2013-04-18 22:45:39 +0000541 std::unique_ptr<CommandObjectRegexCommand>
Greg Clayton30c0a1c2012-09-26 22:26:47 +0000542 connect_gdb_remote_cmd_ap(new CommandObjectRegexCommand (*this,
Greg Clayton7d2ef162013-03-29 17:03:23 +0000543 "gdb-remote",
544 "Connect to a remote GDB server. If no hostname is provided, localhost is assumed.",
545 "gdb-remote [<hostname>:]<portnum>", 2));
Greg Clayton30c0a1c2012-09-26 22:26:47 +0000546 if (connect_gdb_remote_cmd_ap.get())
547 {
548 if (connect_gdb_remote_cmd_ap->AddRegexCommand("^([^:]+:[[:digit:]]+)$", "process connect --plugin gdb-remote connect://%1") &&
549 connect_gdb_remote_cmd_ap->AddRegexCommand("^([[:digit:]]+)$", "process connect --plugin gdb-remote connect://localhost:%1"))
550 {
551 CommandObjectSP command_sp(connect_gdb_remote_cmd_ap.release());
552 m_command_dict[command_sp->GetCommandName ()] = command_sp;
553 }
554 }
555
Greg Clayton7b0992d2013-04-18 22:45:39 +0000556 std::unique_ptr<CommandObjectRegexCommand>
Greg Clayton30c0a1c2012-09-26 22:26:47 +0000557 connect_kdp_remote_cmd_ap(new CommandObjectRegexCommand (*this,
558 "kdp-remote",
Jason Molendaa7dcb332012-10-23 03:05:16 +0000559 "Connect to a remote KDP server. udp port 41139 is the default port number.",
560 "kdp-remote <hostname>[:<portnum>]", 2));
Greg Clayton30c0a1c2012-09-26 22:26:47 +0000561 if (connect_kdp_remote_cmd_ap.get())
562 {
563 if (connect_kdp_remote_cmd_ap->AddRegexCommand("^([^:]+:[[:digit:]]+)$", "process connect --plugin kdp-remote udp://%1") &&
Jason Molendac36b1842012-09-27 02:47:55 +0000564 connect_kdp_remote_cmd_ap->AddRegexCommand("^(.+)$", "process connect --plugin kdp-remote udp://%1:41139"))
Greg Clayton30c0a1c2012-09-26 22:26:47 +0000565 {
566 CommandObjectSP command_sp(connect_kdp_remote_cmd_ap.release());
567 m_command_dict[command_sp->GetCommandName ()] = command_sp;
568 }
569 }
570
Greg Clayton7b0992d2013-04-18 22:45:39 +0000571 std::unique_ptr<CommandObjectRegexCommand>
Jason Molenda4cddfed2012-10-05 05:29:32 +0000572 bt_regex_cmd_ap(new CommandObjectRegexCommand (*this,
Jim Ingham71bf2992012-10-10 16:51:31 +0000573 "_regexp-bt",
Jason Molenda4cddfed2012-10-05 05:29:32 +0000574 "Show a backtrace. An optional argument is accepted; if that argument is a number, it specifies the number of frames to display. If that argument is 'all', full backtraces of all threads are displayed.",
575 "bt [<digit>|all]", 2));
576 if (bt_regex_cmd_ap.get())
577 {
578 // accept but don't document "bt -c <number>" -- before bt was a regex command if you wanted to backtrace
579 // three frames you would do "bt -c 3" but the intention is to have this emulate the gdb "bt" command and
580 // so now "bt 3" is the preferred form, in line with gdb.
581 if (bt_regex_cmd_ap->AddRegexCommand("^([[:digit:]]+)$", "thread backtrace -c %1") &&
582 bt_regex_cmd_ap->AddRegexCommand("^-c ([[:digit:]]+)$", "thread backtrace -c %1") &&
583 bt_regex_cmd_ap->AddRegexCommand("^all$", "thread backtrace all") &&
584 bt_regex_cmd_ap->AddRegexCommand("^$", "thread backtrace"))
585 {
586 CommandObjectSP command_sp(bt_regex_cmd_ap.release());
587 m_command_dict[command_sp->GetCommandName ()] = command_sp;
588 }
589 }
590
Greg Clayton7b0992d2013-04-18 22:45:39 +0000591 std::unique_ptr<CommandObjectRegexCommand>
Greg Clayton6bade322013-02-01 23:33:03 +0000592 list_regex_cmd_ap(new CommandObjectRegexCommand (*this,
593 "_regexp-list",
594 "Implements the GDB 'list' command in all of its forms except FILE:FUNCTION and maps them to the appropriate 'source list' commands.",
Ben Langmuiredb3b212013-09-26 20:00:01 +0000595 "_regexp-list [<line>]\n_regexp-list [<file>:<line>]\n_regexp-list [<file>:<line>]",
Greg Clayton7d2ef162013-03-29 17:03:23 +0000596 2,
597 CommandCompletions::eSourceFileCompletion));
Greg Clayton6bade322013-02-01 23:33:03 +0000598 if (list_regex_cmd_ap.get())
599 {
600 if (list_regex_cmd_ap->AddRegexCommand("^([0-9]+)[[:space:]]*$", "source list --line %1") &&
601 list_regex_cmd_ap->AddRegexCommand("^(.*[^[:space:]])[[:space:]]*:[[:space:]]*([[:digit:]]+)[[:space:]]*$", "source list --file '%1' --line %2") &&
602 list_regex_cmd_ap->AddRegexCommand("^\\*?(0x[[:xdigit:]]+)[[:space:]]*$", "source list --address %1") &&
Greg Claytond9010962013-02-12 18:42:05 +0000603 list_regex_cmd_ap->AddRegexCommand("^-[[:space:]]*$", "source list --reverse") &&
Greg Claytone4ca5152013-03-13 18:25:49 +0000604 list_regex_cmd_ap->AddRegexCommand("^-([[:digit:]]+)[[:space:]]*$", "source list --reverse --count %1") &&
Greg Clayton6bade322013-02-01 23:33:03 +0000605 list_regex_cmd_ap->AddRegexCommand("^(.+)$", "source list --name \"%1\"") &&
606 list_regex_cmd_ap->AddRegexCommand("^$", "source list"))
607 {
608 CommandObjectSP list_regex_cmd_sp(list_regex_cmd_ap.release());
609 m_command_dict[list_regex_cmd_sp->GetCommandName ()] = list_regex_cmd_sp;
610 }
611 }
612
Greg Clayton7b0992d2013-04-18 22:45:39 +0000613 std::unique_ptr<CommandObjectRegexCommand>
Greg Claytonef5651d2013-02-12 18:52:24 +0000614 env_regex_cmd_ap(new CommandObjectRegexCommand (*this,
Greg Clayton7d2ef162013-03-29 17:03:23 +0000615 "_regexp-env",
616 "Implements a shortcut to viewing and setting environment variables.",
617 "_regexp-env\n_regexp-env FOO=BAR", 2));
Greg Claytonef5651d2013-02-12 18:52:24 +0000618 if (env_regex_cmd_ap.get())
619 {
620 if (env_regex_cmd_ap->AddRegexCommand("^$", "settings show target.env-vars") &&
621 env_regex_cmd_ap->AddRegexCommand("^([A-Za-z_][A-Za-z_0-9]*=.*)$", "settings set target.env-vars %1"))
622 {
623 CommandObjectSP env_regex_cmd_sp(env_regex_cmd_ap.release());
624 m_command_dict[env_regex_cmd_sp->GetCommandName ()] = env_regex_cmd_sp;
625 }
626 }
627
Richard Mittonf86248d2013-09-12 02:20:34 +0000628 std::unique_ptr<CommandObjectRegexCommand>
629 jump_regex_cmd_ap(new CommandObjectRegexCommand (*this,
630 "_regexp-jump",
631 "Sets the program counter to a new address.",
632 "_regexp-jump [<line>]\n"
633 "_regexp-jump [<+-lineoffset>]\n"
634 "_regexp-jump [<file>:<line>]\n"
635 "_regexp-jump [*<addr>]\n", 2));
636 if (jump_regex_cmd_ap.get())
637 {
638 if (jump_regex_cmd_ap->AddRegexCommand("^\\*(.*)$", "thread jump --addr %1") &&
639 jump_regex_cmd_ap->AddRegexCommand("^([0-9]+)$", "thread jump --line %1") &&
640 jump_regex_cmd_ap->AddRegexCommand("^([^:]+):([0-9]+)$", "thread jump --file %1 --line %2") &&
641 jump_regex_cmd_ap->AddRegexCommand("^([+\\-][0-9]+)$", "thread jump --by %1"))
642 {
643 CommandObjectSP jump_regex_cmd_sp(jump_regex_cmd_ap.release());
644 m_command_dict[jump_regex_cmd_sp->GetCommandName ()] = jump_regex_cmd_sp;
645 }
646 }
647
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000648}
649
650int
651CommandInterpreter::GetCommandNamesMatchingPartialString (const char *cmd_str, bool include_aliases,
652 StringList &matches)
653{
654 CommandObject::AddNamesMatchingPartialString (m_command_dict, cmd_str, matches);
655
656 if (include_aliases)
657 {
658 CommandObject::AddNamesMatchingPartialString (m_alias_dict, cmd_str, matches);
659 }
660
661 return matches.GetSize();
662}
663
664CommandObjectSP
665CommandInterpreter::GetCommandSP (const char *cmd_cstr, bool include_aliases, bool exact, StringList *matches)
666{
667 CommandObject::CommandMap::iterator pos;
Greg Claytonc7bece562013-01-25 18:06:21 +0000668 CommandObjectSP command_sp;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000669
670 std::string cmd(cmd_cstr);
671
672 if (HasCommands())
673 {
674 pos = m_command_dict.find(cmd);
675 if (pos != m_command_dict.end())
Greg Claytonc7bece562013-01-25 18:06:21 +0000676 command_sp = pos->second;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000677 }
678
679 if (include_aliases && HasAliases())
680 {
681 pos = m_alias_dict.find(cmd);
682 if (pos != m_alias_dict.end())
Greg Claytonc7bece562013-01-25 18:06:21 +0000683 command_sp = pos->second;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000684 }
685
686 if (HasUserCommands())
687 {
688 pos = m_user_dict.find(cmd);
689 if (pos != m_user_dict.end())
Greg Claytonc7bece562013-01-25 18:06:21 +0000690 command_sp = pos->second;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000691 }
692
Greg Claytonc7bece562013-01-25 18:06:21 +0000693 if (!exact && !command_sp)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000694 {
Jim Ingham279a6c22010-07-06 22:46:59 +0000695 // We will only get into here if we didn't find any exact matches.
696
697 CommandObjectSP user_match_sp, alias_match_sp, real_match_sp;
698
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000699 StringList local_matches;
700 if (matches == NULL)
701 matches = &local_matches;
702
Jim Ingham279a6c22010-07-06 22:46:59 +0000703 unsigned int num_cmd_matches = 0;
704 unsigned int num_alias_matches = 0;
705 unsigned int num_user_matches = 0;
706
707 // Look through the command dictionaries one by one, and if we get only one match from any of
708 // them in toto, then return that, otherwise return an empty CommandObjectSP and the list of matches.
709
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000710 if (HasCommands())
711 {
712 num_cmd_matches = CommandObject::AddNamesMatchingPartialString (m_command_dict, cmd_cstr, *matches);
713 }
714
715 if (num_cmd_matches == 1)
716 {
717 cmd.assign(matches->GetStringAtIndex(0));
718 pos = m_command_dict.find(cmd);
719 if (pos != m_command_dict.end())
Jim Ingham279a6c22010-07-06 22:46:59 +0000720 real_match_sp = pos->second;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000721 }
722
Jim Ingham490ac552010-06-24 20:28:42 +0000723 if (include_aliases && HasAliases())
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000724 {
725 num_alias_matches = CommandObject::AddNamesMatchingPartialString (m_alias_dict, cmd_cstr, *matches);
726
727 }
728
Jim Ingham279a6c22010-07-06 22:46:59 +0000729 if (num_alias_matches == 1)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000730 {
731 cmd.assign(matches->GetStringAtIndex (num_cmd_matches));
732 pos = m_alias_dict.find(cmd);
733 if (pos != m_alias_dict.end())
Jim Ingham279a6c22010-07-06 22:46:59 +0000734 alias_match_sp = pos->second;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000735 }
736
Jim Ingham490ac552010-06-24 20:28:42 +0000737 if (HasUserCommands())
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000738 {
739 num_user_matches = CommandObject::AddNamesMatchingPartialString (m_user_dict, cmd_cstr, *matches);
740 }
741
Jim Ingham279a6c22010-07-06 22:46:59 +0000742 if (num_user_matches == 1)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000743 {
744 cmd.assign (matches->GetStringAtIndex (num_cmd_matches + num_alias_matches));
745
746 pos = m_user_dict.find (cmd);
747 if (pos != m_user_dict.end())
Jim Ingham279a6c22010-07-06 22:46:59 +0000748 user_match_sp = pos->second;
749 }
750
751 // If we got exactly one match, return that, otherwise return the match list.
752
753 if (num_user_matches + num_cmd_matches + num_alias_matches == 1)
754 {
755 if (num_cmd_matches)
756 return real_match_sp;
757 else if (num_alias_matches)
758 return alias_match_sp;
759 else
760 return user_match_sp;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000761 }
762 }
Greg Claytonc7bece562013-01-25 18:06:21 +0000763 else if (matches && command_sp)
Jim Ingham279a6c22010-07-06 22:46:59 +0000764 {
765 matches->AppendString (cmd_cstr);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000766 }
767
768
Greg Claytonc7bece562013-01-25 18:06:21 +0000769 return command_sp;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000770}
771
Greg Claytonde164aa2011-04-20 16:37:46 +0000772bool
773CommandInterpreter::AddCommand (const char *name, const lldb::CommandObjectSP &cmd_sp, bool can_replace)
774{
775 if (name && name[0])
776 {
777 std::string name_sstr(name);
Enrico Granatae00af802012-10-01 17:19:37 +0000778 bool found = (m_command_dict.find (name_sstr) != m_command_dict.end());
779 if (found && !can_replace)
780 return false;
781 if (found && m_command_dict[name_sstr]->IsRemovable() == false)
Enrico Granata21dfcd92012-09-28 23:57:51 +0000782 return false;
Greg Claytonde164aa2011-04-20 16:37:46 +0000783 m_command_dict[name_sstr] = cmd_sp;
784 return true;
785 }
786 return false;
787}
788
Enrico Granata223383e2011-08-16 23:24:13 +0000789bool
Enrico Granata0a305db2011-11-07 22:57:04 +0000790CommandInterpreter::AddUserCommand (std::string name,
Enrico Granata223383e2011-08-16 23:24:13 +0000791 const lldb::CommandObjectSP &cmd_sp,
792 bool can_replace)
793{
Enrico Granata0a305db2011-11-07 22:57:04 +0000794 if (!name.empty())
Enrico Granata223383e2011-08-16 23:24:13 +0000795 {
Enrico Granata0a305db2011-11-07 22:57:04 +0000796
797 const char* name_cstr = name.c_str();
798
799 // do not allow replacement of internal commands
800 if (CommandExists(name_cstr))
Enrico Granata21dfcd92012-09-28 23:57:51 +0000801 {
802 if (can_replace == false)
803 return false;
804 if (m_command_dict[name]->IsRemovable() == false)
805 return false;
806 }
Enrico Granata0a305db2011-11-07 22:57:04 +0000807
Enrico Granata21dfcd92012-09-28 23:57:51 +0000808 if (UserCommandExists(name_cstr))
809 {
810 if (can_replace == false)
811 return false;
812 if (m_user_dict[name]->IsRemovable() == false)
813 return false;
814 }
815
Enrico Granata0a305db2011-11-07 22:57:04 +0000816 m_user_dict[name] = cmd_sp;
Enrico Granata223383e2011-08-16 23:24:13 +0000817 return true;
818 }
819 return false;
820}
Greg Claytonde164aa2011-04-20 16:37:46 +0000821
Jim Ingham279a6c22010-07-06 22:46:59 +0000822CommandObjectSP
823CommandInterpreter::GetCommandSPExact (const char *cmd_cstr, bool include_aliases)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000824{
Caroline Tice472362e2010-12-14 18:51:39 +0000825 Args cmd_words (cmd_cstr); // Break up the command string into words, in case it's a multi-word command.
826 CommandObjectSP ret_val; // Possibly empty return value.
827
828 if (cmd_cstr == NULL)
829 return ret_val;
830
831 if (cmd_words.GetArgumentCount() == 1)
832 return GetCommandSP(cmd_cstr, include_aliases, true, NULL);
833 else
834 {
835 // We have a multi-word command (seemingly), so we need to do more work.
836 // First, get the cmd_obj_sp for the first word in the command.
837 CommandObjectSP cmd_obj_sp = GetCommandSP (cmd_words.GetArgumentAtIndex (0), include_aliases, true, NULL);
838 if (cmd_obj_sp.get() != NULL)
839 {
840 // Loop through the rest of the words in the command (everything passed in was supposed to be part of a
841 // command name), and find the appropriate sub-command SP for each command word....
842 size_t end = cmd_words.GetArgumentCount();
843 for (size_t j= 1; j < end; ++j)
844 {
845 if (cmd_obj_sp->IsMultiwordObject())
846 {
Greg Clayton998255b2012-10-13 02:07:45 +0000847 cmd_obj_sp = cmd_obj_sp->GetSubcommandSP (cmd_words.GetArgumentAtIndex (j));
Caroline Tice472362e2010-12-14 18:51:39 +0000848 if (cmd_obj_sp.get() == NULL)
849 // The sub-command name was invalid. Fail and return the empty 'ret_val'.
850 return ret_val;
851 }
852 else
853 // We have more words in the command name, but we don't have a multiword object. Fail and return
854 // empty 'ret_val'.
855 return ret_val;
856 }
857 // We successfully looped through all the command words and got valid command objects for them. Assign the
858 // last object retrieved to 'ret_val'.
859 ret_val = cmd_obj_sp;
860 }
861 }
862 return ret_val;
Jim Ingham279a6c22010-07-06 22:46:59 +0000863}
864
865CommandObject *
866CommandInterpreter::GetCommandObjectExact (const char *cmd_cstr, bool include_aliases)
867{
868 return GetCommandSPExact (cmd_cstr, include_aliases).get();
869}
870
871CommandObject *
872CommandInterpreter::GetCommandObject (const char *cmd_cstr, StringList *matches)
873{
874 CommandObject *command_obj = GetCommandSP (cmd_cstr, false, true, matches).get();
875
876 // If we didn't find an exact match to the command string in the commands, look in
877 // the aliases.
Enrico Granata5342c442013-06-18 18:01:08 +0000878
879 if (command_obj)
880 return command_obj;
Jim Ingham279a6c22010-07-06 22:46:59 +0000881
Enrico Granata5342c442013-06-18 18:01:08 +0000882 command_obj = GetCommandSP (cmd_cstr, true, true, matches).get();
Jim Ingham279a6c22010-07-06 22:46:59 +0000883
Enrico Granata5342c442013-06-18 18:01:08 +0000884 if (command_obj)
885 return command_obj;
886
887 // If there wasn't an exact match then look for an inexact one in just the commands
888 command_obj = GetCommandSP(cmd_cstr, false, false, NULL).get();
Matt Kopec038ff812013-04-23 16:17:32 +0000889
890 // Finally, if there wasn't an inexact match among the commands, look for an inexact
891 // match in both the commands and aliases.
Enrico Granata5342c442013-06-18 18:01:08 +0000892
893 if (command_obj)
894 {
895 if (matches)
896 matches->AppendString(command_obj->GetCommandName());
897 return command_obj;
898 }
899
900 return GetCommandSP(cmd_cstr, true, false, matches).get();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000901}
902
903bool
904CommandInterpreter::CommandExists (const char *cmd)
905{
906 return m_command_dict.find(cmd) != m_command_dict.end();
907}
908
909bool
Caroline Ticeca90c472011-05-06 21:37:15 +0000910CommandInterpreter::ProcessAliasOptionsArgs (lldb::CommandObjectSP &cmd_obj_sp,
911 const char *options_args,
912 OptionArgVectorSP &option_arg_vector_sp)
913{
914 bool success = true;
915 OptionArgVector *option_arg_vector = option_arg_vector_sp.get();
916
917 if (!options_args || (strlen (options_args) < 1))
918 return true;
919
920 std::string options_string (options_args);
921 Args args (options_args);
922 CommandReturnObject result;
923 // Check to see if the command being aliased can take any command options.
924 Options *options = cmd_obj_sp->GetOptions ();
925 if (options)
926 {
927 // See if any options were specified as part of the alias; if so, handle them appropriately.
928 options->NotifyOptionParsingStarting ();
929 args.Unshift ("dummy_arg");
930 args.ParseAliasOptions (*options, result, option_arg_vector, options_string);
931 args.Shift ();
932 if (result.Succeeded())
933 options->VerifyPartialOptions (result);
934 if (!result.Succeeded() && result.GetStatus() != lldb::eReturnStatusStarted)
935 {
936 result.AppendError ("Unable to create requested alias.\n");
937 return false;
938 }
939 }
940
Greg Clayton5521f992011-10-28 21:38:01 +0000941 if (!options_string.empty())
Caroline Ticeca90c472011-05-06 21:37:15 +0000942 {
943 if (cmd_obj_sp->WantsRawCommandString ())
944 option_arg_vector->push_back (OptionArgPair ("<argument>",
945 OptionArgValue (-1,
946 options_string)));
947 else
948 {
Greg Claytonc7bece562013-01-25 18:06:21 +0000949 const size_t argc = args.GetArgumentCount();
Caroline Ticeca90c472011-05-06 21:37:15 +0000950 for (size_t i = 0; i < argc; ++i)
951 if (strcmp (args.GetArgumentAtIndex (i), "") != 0)
952 option_arg_vector->push_back
953 (OptionArgPair ("<argument>",
954 OptionArgValue (-1,
955 std::string (args.GetArgumentAtIndex (i)))));
956 }
957 }
958
959 return success;
960}
961
962bool
Jim Ingham298f3782013-04-03 00:25:49 +0000963CommandInterpreter::GetAliasFullName (const char *cmd, std::string &full_name)
964{
965 bool exact_match = (m_alias_dict.find(cmd) != m_alias_dict.end());
966 if (exact_match)
967 {
968 full_name.assign(cmd);
969 return exact_match;
970 }
971 else
972 {
973 StringList matches;
974 size_t num_alias_matches;
975 num_alias_matches = CommandObject::AddNamesMatchingPartialString (m_alias_dict, cmd, matches);
976 if (num_alias_matches == 1)
977 {
978 // Make sure this isn't shadowing a command in the regular command space:
979 StringList regular_matches;
980 const bool include_aliases = false;
981 const bool exact = false;
982 CommandObjectSP cmd_obj_sp(GetCommandSP (cmd, include_aliases, exact, &regular_matches));
983 if (cmd_obj_sp || regular_matches.GetSize() > 0)
984 return false;
985 else
986 {
987 full_name.assign (matches.GetStringAtIndex(0));
988 return true;
989 }
990 }
991 else
992 return false;
993 }
994}
995
996bool
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000997CommandInterpreter::AliasExists (const char *cmd)
998{
999 return m_alias_dict.find(cmd) != m_alias_dict.end();
1000}
1001
1002bool
1003CommandInterpreter::UserCommandExists (const char *cmd)
1004{
1005 return m_user_dict.find(cmd) != m_user_dict.end();
1006}
1007
1008void
1009CommandInterpreter::AddAlias (const char *alias_name, CommandObjectSP& command_obj_sp)
1010{
Jim Ingham279a6c22010-07-06 22:46:59 +00001011 command_obj_sp->SetIsAlias (true);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001012 m_alias_dict[alias_name] = command_obj_sp;
1013}
1014
1015bool
1016CommandInterpreter::RemoveAlias (const char *alias_name)
1017{
1018 CommandObject::CommandMap::iterator pos = m_alias_dict.find(alias_name);
1019 if (pos != m_alias_dict.end())
1020 {
1021 m_alias_dict.erase(pos);
1022 return true;
1023 }
1024 return false;
1025}
1026bool
1027CommandInterpreter::RemoveUser (const char *alias_name)
1028{
1029 CommandObject::CommandMap::iterator pos = m_user_dict.find(alias_name);
1030 if (pos != m_user_dict.end())
1031 {
1032 m_user_dict.erase(pos);
1033 return true;
1034 }
1035 return false;
1036}
1037
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001038void
1039CommandInterpreter::GetAliasHelp (const char *alias_name, const char *command_name, StreamString &help_string)
1040{
1041 help_string.Printf ("'%s", command_name);
1042 OptionArgVectorSP option_arg_vector_sp = GetAliasOptions (alias_name);
1043
Sean Callanan9a028512012-08-09 00:50:26 +00001044 if (option_arg_vector_sp)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001045 {
1046 OptionArgVector *options = option_arg_vector_sp.get();
Andy Gibbsa297a972013-06-19 19:04:53 +00001047 for (size_t i = 0; i < options->size(); ++i)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001048 {
1049 OptionArgPair cur_option = (*options)[i];
1050 std::string opt = cur_option.first;
Caroline Ticed9d63362010-12-07 19:58:26 +00001051 OptionArgValue value_pair = cur_option.second;
1052 std::string value = value_pair.second;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001053 if (opt.compare("<argument>") == 0)
1054 {
1055 help_string.Printf (" %s", value.c_str());
1056 }
1057 else
1058 {
1059 help_string.Printf (" %s", opt.c_str());
1060 if ((value.compare ("<no-argument>") != 0)
1061 && (value.compare ("<need-argument") != 0))
1062 {
1063 help_string.Printf (" %s", value.c_str());
1064 }
1065 }
1066 }
1067 }
1068
1069 help_string.Printf ("'");
1070}
1071
Greg Clayton12fc3e02010-08-26 22:05:43 +00001072size_t
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001073CommandInterpreter::FindLongestCommandWord (CommandObject::CommandMap &dict)
1074{
1075 CommandObject::CommandMap::const_iterator pos;
Greg Clayton12fc3e02010-08-26 22:05:43 +00001076 CommandObject::CommandMap::const_iterator end = dict.end();
1077 size_t max_len = 0;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001078
Greg Clayton12fc3e02010-08-26 22:05:43 +00001079 for (pos = dict.begin(); pos != end; ++pos)
1080 {
1081 size_t len = pos->first.size();
1082 if (max_len < len)
1083 max_len = len;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001084 }
Greg Clayton12fc3e02010-08-26 22:05:43 +00001085 return max_len;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001086}
1087
1088void
Enrico Granata223383e2011-08-16 23:24:13 +00001089CommandInterpreter::GetHelp (CommandReturnObject &result,
Enrico Granata08633ee2011-09-09 17:49:36 +00001090 uint32_t cmd_types)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001091{
1092 CommandObject::CommandMap::const_iterator pos;
Greg Claytonc7bece562013-01-25 18:06:21 +00001093 size_t max_len = FindLongestCommandWord (m_command_dict);
Enrico Granata223383e2011-08-16 23:24:13 +00001094
1095 if ( (cmd_types & eCommandTypesBuiltin) == eCommandTypesBuiltin )
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001096 {
Enrico Granata223383e2011-08-16 23:24:13 +00001097
1098 result.AppendMessage("The following is a list of built-in, permanent debugger commands:");
1099 result.AppendMessage("");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001100
Enrico Granata223383e2011-08-16 23:24:13 +00001101 for (pos = m_command_dict.begin(); pos != m_command_dict.end(); ++pos)
1102 {
1103 OutputFormattedHelpText (result.GetOutputStream(), pos->first.c_str(), "--", pos->second->GetHelp(),
1104 max_len);
1105 }
1106 result.AppendMessage("");
1107
1108 }
1109
Greg Clayton5521f992011-10-28 21:38:01 +00001110 if (!m_alias_dict.empty() && ( (cmd_types & eCommandTypesAliases) == eCommandTypesAliases ))
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001111 {
Jim Ingham49e80a12010-10-22 18:47:16 +00001112 result.AppendMessage("The following is a list of your current command abbreviations "
Johnny Chenb89982d2011-04-21 00:39:18 +00001113 "(see 'help command alias' for more info):");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001114 result.AppendMessage("");
Greg Clayton12fc3e02010-08-26 22:05:43 +00001115 max_len = FindLongestCommandWord (m_alias_dict);
1116
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001117 for (pos = m_alias_dict.begin(); pos != m_alias_dict.end(); ++pos)
1118 {
1119 StreamString sstr;
1120 StreamString translation_and_help;
1121 std::string entry_name = pos->first;
1122 std::string second_entry = pos->second.get()->GetCommandName();
1123 GetAliasHelp (pos->first.c_str(), pos->second->GetCommandName(), sstr);
1124
1125 translation_and_help.Printf ("(%s) %s", sstr.GetData(), pos->second->GetHelp());
1126 OutputFormattedHelpText (result.GetOutputStream(), pos->first.c_str(), "--",
1127 translation_and_help.GetData(), max_len);
1128 }
1129 result.AppendMessage("");
1130 }
1131
Greg Clayton5521f992011-10-28 21:38:01 +00001132 if (!m_user_dict.empty() && ( (cmd_types & eCommandTypesUserDef) == eCommandTypesUserDef ))
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001133 {
1134 result.AppendMessage ("The following is a list of your current user-defined commands:");
1135 result.AppendMessage("");
Enrico Granata223383e2011-08-16 23:24:13 +00001136 max_len = FindLongestCommandWord (m_user_dict);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001137 for (pos = m_user_dict.begin(); pos != m_user_dict.end(); ++pos)
1138 {
Enrico Granata223383e2011-08-16 23:24:13 +00001139 OutputFormattedHelpText (result.GetOutputStream(), pos->first.c_str(), "--", pos->second->GetHelp(),
1140 max_len);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001141 }
1142 result.AppendMessage("");
1143 }
1144
1145 result.AppendMessage("For more information on any particular command, try 'help <command-name>'.");
1146}
1147
Caroline Tice844d2302010-12-09 22:52:49 +00001148CommandObject *
1149CommandInterpreter::GetCommandObjectForCommand (std::string &command_string)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001150{
Caroline Tice844d2302010-12-09 22:52:49 +00001151 // This function finds the final, lowest-level, alias-resolved command object whose 'Execute' function will
1152 // eventually be invoked by the given command line.
1153
1154 CommandObject *cmd_obj = NULL;
1155 std::string white_space (" \t\v");
1156 size_t start = command_string.find_first_not_of (white_space);
1157 size_t end = 0;
1158 bool done = false;
1159 while (!done)
1160 {
1161 if (start != std::string::npos)
1162 {
1163 // Get the next word from command_string.
1164 end = command_string.find_first_of (white_space, start);
1165 if (end == std::string::npos)
1166 end = command_string.size();
1167 std::string cmd_word = command_string.substr (start, end - start);
1168
1169 if (cmd_obj == NULL)
1170 // Since cmd_obj is NULL we are on our first time through this loop. Check to see if cmd_word is a valid
1171 // command or alias.
1172 cmd_obj = GetCommandObject (cmd_word.c_str());
1173 else if (cmd_obj->IsMultiwordObject ())
1174 {
1175 // Our current object is a multi-word object; see if the cmd_word is a valid sub-command for our object.
Greg Clayton998255b2012-10-13 02:07:45 +00001176 CommandObject *sub_cmd_obj = cmd_obj->GetSubcommandObject (cmd_word.c_str());
Caroline Tice844d2302010-12-09 22:52:49 +00001177 if (sub_cmd_obj)
1178 cmd_obj = sub_cmd_obj;
1179 else // cmd_word was not a valid sub-command word, so we are donee
1180 done = true;
1181 }
1182 else
1183 // We have a cmd_obj and it is not a multi-word object, so we are done.
1184 done = true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001185
Caroline Tice844d2302010-12-09 22:52:49 +00001186 // If we didn't find a valid command object, or our command object is not a multi-word object, or
1187 // we are at the end of the command_string, then we are done. Otherwise, find the start of the
1188 // next word.
1189
1190 if (!cmd_obj || !cmd_obj->IsMultiwordObject() || end >= command_string.size())
1191 done = true;
1192 else
1193 start = command_string.find_first_not_of (white_space, end);
1194 }
1195 else
1196 // Unable to find any more words.
1197 done = true;
1198 }
1199
1200 if (end == command_string.size())
1201 command_string.clear();
1202 else
1203 command_string = command_string.substr(end);
1204
1205 return cmd_obj;
1206}
1207
Greg Clayton51964162011-10-25 00:36:27 +00001208static const char *k_white_space = " \t\v";
Greg Clayton5521f992011-10-28 21:38:01 +00001209static const char *k_valid_command_chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_";
Greg Clayton51964162011-10-25 00:36:27 +00001210static void
1211StripLeadingSpaces (std::string &s)
Caroline Tice844d2302010-12-09 22:52:49 +00001212{
Greg Clayton51964162011-10-25 00:36:27 +00001213 if (!s.empty())
Caroline Tice844d2302010-12-09 22:52:49 +00001214 {
Greg Clayton51964162011-10-25 00:36:27 +00001215 size_t pos = s.find_first_not_of (k_white_space);
1216 if (pos == std::string::npos)
1217 s.clear();
1218 else if (pos == 0)
1219 return;
1220 s.erase (0, pos);
1221 }
1222}
1223
Greg Clayton93c62e62011-11-09 23:25:03 +00001224static size_t
1225FindArgumentTerminator (const std::string &s)
1226{
Greg Clayton93c62e62011-11-09 23:25:03 +00001227 const size_t s_len = s.size();
1228 size_t offset = 0;
1229 while (offset < s_len)
1230 {
1231 size_t pos = s.find ("--", offset);
1232 if (pos == std::string::npos)
1233 break;
1234 if (pos > 0)
1235 {
1236 if (isspace(s[pos-1]))
1237 {
1238 // Check if the string ends "\s--" (where \s is a space character)
1239 // or if we have "\s--\s".
1240 if ((pos + 2 >= s_len) || isspace(s[pos+2]))
1241 {
Greg Clayton93c62e62011-11-09 23:25:03 +00001242 return pos;
1243 }
1244 }
1245 }
1246 offset = pos + 2;
1247 }
Greg Clayton93c62e62011-11-09 23:25:03 +00001248 return std::string::npos;
1249}
1250
Greg Clayton51964162011-10-25 00:36:27 +00001251static bool
Greg Clayton5521f992011-10-28 21:38:01 +00001252ExtractCommand (std::string &command_string, std::string &command, std::string &suffix, char &quote_char)
Greg Clayton51964162011-10-25 00:36:27 +00001253{
Greg Clayton5521f992011-10-28 21:38:01 +00001254 command.clear();
1255 suffix.clear();
Greg Clayton51964162011-10-25 00:36:27 +00001256 StripLeadingSpaces (command_string);
1257
1258 bool result = false;
1259 quote_char = '\0';
1260
1261 if (!command_string.empty())
1262 {
1263 const char first_char = command_string[0];
1264 if (first_char == '\'' || first_char == '"')
Caroline Tice844d2302010-12-09 22:52:49 +00001265 {
Greg Clayton51964162011-10-25 00:36:27 +00001266 quote_char = first_char;
1267 const size_t end_quote_pos = command_string.find (quote_char, 1);
1268 if (end_quote_pos == std::string::npos)
Caroline Tice2b5e8502011-05-11 16:07:06 +00001269 {
Greg Clayton5521f992011-10-28 21:38:01 +00001270 command.swap (command_string);
Greg Clayton51964162011-10-25 00:36:27 +00001271 command_string.erase ();
Caroline Tice2b5e8502011-05-11 16:07:06 +00001272 }
1273 else
1274 {
Greg Clayton5521f992011-10-28 21:38:01 +00001275 command.assign (command_string, 1, end_quote_pos - 1);
Greg Clayton51964162011-10-25 00:36:27 +00001276 if (end_quote_pos + 1 < command_string.size())
1277 command_string.erase (0, command_string.find_first_not_of (k_white_space, end_quote_pos + 1));
1278 else
1279 command_string.erase ();
Caroline Tice2b5e8502011-05-11 16:07:06 +00001280 }
Caroline Tice844d2302010-12-09 22:52:49 +00001281 }
1282 else
1283 {
Greg Clayton51964162011-10-25 00:36:27 +00001284 const size_t first_space_pos = command_string.find_first_of (k_white_space);
1285 if (first_space_pos == std::string::npos)
Caroline Tice2b5e8502011-05-11 16:07:06 +00001286 {
Greg Clayton5521f992011-10-28 21:38:01 +00001287 command.swap (command_string);
Greg Clayton51964162011-10-25 00:36:27 +00001288 command_string.erase();
Caroline Tice2b5e8502011-05-11 16:07:06 +00001289 }
1290 else
1291 {
Greg Clayton5521f992011-10-28 21:38:01 +00001292 command.assign (command_string, 0, first_space_pos);
1293 command_string.erase(0, command_string.find_first_not_of (k_white_space, first_space_pos));
Caroline Tice2b5e8502011-05-11 16:07:06 +00001294 }
Caroline Tice844d2302010-12-09 22:52:49 +00001295 }
Greg Clayton51964162011-10-25 00:36:27 +00001296 result = true;
Caroline Tice844d2302010-12-09 22:52:49 +00001297 }
Greg Clayton5521f992011-10-28 21:38:01 +00001298
1299
1300 if (!command.empty())
1301 {
1302 // actual commands can't start with '-' or '_'
1303 if (command[0] != '-' && command[0] != '_')
1304 {
1305 size_t pos = command.find_first_not_of(k_valid_command_chars);
1306 if (pos > 0 && pos != std::string::npos)
1307 {
1308 suffix.assign (command.begin() + pos, command.end());
1309 command.erase (pos);
1310 }
1311 }
1312 }
Greg Clayton51964162011-10-25 00:36:27 +00001313
1314 return result;
Caroline Tice844d2302010-12-09 22:52:49 +00001315}
1316
Greg Clayton5521f992011-10-28 21:38:01 +00001317CommandObject *
1318CommandInterpreter::BuildAliasResult (const char *alias_name,
1319 std::string &raw_input_string,
1320 std::string &alias_result,
1321 CommandReturnObject &result)
Caroline Tice844d2302010-12-09 22:52:49 +00001322{
Greg Clayton5521f992011-10-28 21:38:01 +00001323 CommandObject *alias_cmd_obj = NULL;
Caroline Tice844d2302010-12-09 22:52:49 +00001324 Args cmd_args (raw_input_string.c_str());
1325 alias_cmd_obj = GetCommandObject (alias_name);
1326 StreamString result_str;
1327
1328 if (alias_cmd_obj)
1329 {
1330 std::string alias_name_str = alias_name;
1331 if ((cmd_args.GetArgumentCount() == 0)
1332 || (alias_name_str.compare (cmd_args.GetArgumentAtIndex(0)) != 0))
1333 cmd_args.Unshift (alias_name);
1334
1335 result_str.Printf ("%s", alias_cmd_obj->GetCommandName ());
1336 OptionArgVectorSP option_arg_vector_sp = GetAliasOptions (alias_name);
1337
1338 if (option_arg_vector_sp.get())
1339 {
1340 OptionArgVector *option_arg_vector = option_arg_vector_sp.get();
1341
Andy Gibbsa297a972013-06-19 19:04:53 +00001342 for (size_t i = 0; i < option_arg_vector->size(); ++i)
Caroline Tice844d2302010-12-09 22:52:49 +00001343 {
1344 OptionArgPair option_pair = (*option_arg_vector)[i];
1345 OptionArgValue value_pair = option_pair.second;
1346 int value_type = value_pair.first;
1347 std::string option = option_pair.first;
1348 std::string value = value_pair.second;
1349 if (option.compare ("<argument>") == 0)
1350 result_str.Printf (" %s", value.c_str());
1351 else
1352 {
1353 result_str.Printf (" %s", option.c_str());
Virgile Belloe2607b52013-09-05 16:42:23 +00001354 if (value_type != OptionParser::eOptionalArgument)
Caroline Tice844d2302010-12-09 22:52:49 +00001355 result_str.Printf (" ");
Virgile Belloe2607b52013-09-05 16:42:23 +00001356 if (value.compare ("<OptionParser::eNoArgument>") != 0)
Caroline Tice844d2302010-12-09 22:52:49 +00001357 {
1358 int index = GetOptionArgumentPosition (value.c_str());
1359 if (index == 0)
1360 result_str.Printf ("%s", value.c_str());
1361 else if (index >= cmd_args.GetArgumentCount())
1362 {
1363
1364 result.AppendErrorWithFormat
1365 ("Not enough arguments provided; you need at least %d arguments to use this alias.\n",
1366 index);
1367 result.SetStatus (eReturnStatusFailed);
Greg Clayton5521f992011-10-28 21:38:01 +00001368 return alias_cmd_obj;
Caroline Tice844d2302010-12-09 22:52:49 +00001369 }
1370 else
1371 {
1372 size_t strpos = raw_input_string.find (cmd_args.GetArgumentAtIndex (index));
1373 if (strpos != std::string::npos)
1374 raw_input_string = raw_input_string.erase (strpos,
1375 strlen (cmd_args.GetArgumentAtIndex (index)));
1376 result_str.Printf ("%s", cmd_args.GetArgumentAtIndex (index));
1377 }
1378 }
1379 }
1380 }
1381 }
1382
1383 alias_result = result_str.GetData();
1384 }
Greg Clayton5521f992011-10-28 21:38:01 +00001385 return alias_cmd_obj;
Caroline Tice844d2302010-12-09 22:52:49 +00001386}
1387
Greg Clayton5a314712011-10-14 07:41:33 +00001388Error
1389CommandInterpreter::PreprocessCommand (std::string &command)
1390{
1391 // The command preprocessor needs to do things to the command
1392 // line before any parsing of arguments or anything else is done.
1393 // The only current stuff that gets proprocessed is anyting enclosed
1394 // in backtick ('`') characters is evaluated as an expression and
1395 // the result of the expression must be a scalar that can be substituted
1396 // into the command. An example would be:
1397 // (lldb) memory read `$rsp + 20`
1398 Error error; // Error for any expressions that might not evaluate
1399 size_t start_backtick;
1400 size_t pos = 0;
1401 while ((start_backtick = command.find ('`', pos)) != std::string::npos)
1402 {
1403 if (start_backtick > 0 && command[start_backtick-1] == '\\')
1404 {
1405 // The backtick was preceeded by a '\' character, remove the slash
1406 // and don't treat the backtick as the start of an expression
1407 command.erase(start_backtick-1, 1);
1408 // No need to add one to start_backtick since we just deleted a char
1409 pos = start_backtick;
1410 }
1411 else
1412 {
1413 const size_t expr_content_start = start_backtick + 1;
1414 const size_t end_backtick = command.find ('`', expr_content_start);
1415 if (end_backtick == std::string::npos)
1416 return error;
1417 else if (end_backtick == expr_content_start)
1418 {
1419 // Empty expression (two backticks in a row)
1420 command.erase (start_backtick, 2);
1421 }
1422 else
1423 {
1424 std::string expr_str (command, expr_content_start, end_backtick - expr_content_start);
1425
Greg Clayton4e0fe8a2012-07-12 20:32:19 +00001426 ExecutionContext exe_ctx(GetExecutionContext());
1427 Target *target = exe_ctx.GetTargetPtr();
Johnny Chen51ea0ad2011-10-29 00:21:50 +00001428 // Get a dummy target to allow for calculator mode while processing backticks.
1429 // This also helps break the infinite loop caused when target is null.
1430 if (!target)
1431 target = Host::GetDummyTarget(GetDebugger()).get();
Greg Clayton5a314712011-10-14 07:41:33 +00001432 if (target)
1433 {
Greg Clayton5a314712011-10-14 07:41:33 +00001434 ValueObjectSP expr_result_valobj_sp;
Enrico Granatad4439aa2012-09-05 20:41:26 +00001435
Jim Ingham35e1bda2012-10-16 21:41:58 +00001436 EvaluateExpressionOptions options;
Jim Ingham6fbc48b2013-11-07 00:11:47 +00001437 options.SetCoerceToId(false);
1438 options.SetUnwindOnError(true);
1439 options.SetIgnoreBreakpoints(true);
1440 options.SetKeepInMemory(false);
1441 options.SetTryAllThreads(true);
1442 options.SetTimeoutUsec(0);
Enrico Granatad4439aa2012-09-05 20:41:26 +00001443
Greg Clayton5a314712011-10-14 07:41:33 +00001444 ExecutionResults expr_result = target->EvaluateExpression (expr_str.c_str(),
Enrico Granatad4439aa2012-09-05 20:41:26 +00001445 exe_ctx.GetFramePtr(),
Enrico Granata3372f582012-07-16 23:10:35 +00001446 expr_result_valobj_sp,
Enrico Granatad4439aa2012-09-05 20:41:26 +00001447 options);
1448
Greg Clayton5a314712011-10-14 07:41:33 +00001449 if (expr_result == eExecutionCompleted)
1450 {
1451 Scalar scalar;
1452 if (expr_result_valobj_sp->ResolveValue (scalar))
1453 {
1454 command.erase (start_backtick, end_backtick - start_backtick + 1);
1455 StreamString value_strm;
1456 const bool show_type = false;
1457 scalar.GetValue (&value_strm, show_type);
1458 size_t value_string_size = value_strm.GetSize();
1459 if (value_string_size)
1460 {
1461 command.insert (start_backtick, value_strm.GetData(), value_string_size);
1462 pos = start_backtick + value_string_size;
1463 continue;
1464 }
1465 else
1466 {
1467 error.SetErrorStringWithFormat("expression value didn't result in a scalar value for the expression '%s'", expr_str.c_str());
1468 }
1469 }
1470 else
1471 {
1472 error.SetErrorStringWithFormat("expression value didn't result in a scalar value for the expression '%s'", expr_str.c_str());
1473 }
1474 }
1475 else
1476 {
1477 if (expr_result_valobj_sp)
1478 error = expr_result_valobj_sp->GetError();
1479 if (error.Success())
1480 {
1481
1482 switch (expr_result)
1483 {
1484 case eExecutionSetupError:
1485 error.SetErrorStringWithFormat("expression setup error for the expression '%s'", expr_str.c_str());
1486 break;
1487 case eExecutionCompleted:
1488 break;
1489 case eExecutionDiscarded:
1490 error.SetErrorStringWithFormat("expression discarded for the expression '%s'", expr_str.c_str());
1491 break;
1492 case eExecutionInterrupted:
1493 error.SetErrorStringWithFormat("expression interrupted for the expression '%s'", expr_str.c_str());
1494 break;
Jim Ingham184e9812013-01-15 02:47:48 +00001495 case eExecutionHitBreakpoint:
1496 error.SetErrorStringWithFormat("expression hit breakpoint for the expression '%s'", expr_str.c_str());
1497 break;
Greg Clayton5a314712011-10-14 07:41:33 +00001498 case eExecutionTimedOut:
1499 error.SetErrorStringWithFormat("expression timed out for the expression '%s'", expr_str.c_str());
1500 break;
Greg Claytonc28ce782013-11-08 23:38:26 +00001501 case eExecutionStoppedForDebug:
1502 error.SetErrorStringWithFormat("expression stop at entry point for debugging for the expression '%s'", expr_str.c_str());
1503 break;
Greg Clayton5a314712011-10-14 07:41:33 +00001504 }
1505 }
1506 }
1507 }
1508 }
1509 if (error.Fail())
1510 break;
1511 }
1512 }
1513 return error;
1514}
1515
1516
Caroline Tice844d2302010-12-09 22:52:49 +00001517bool
1518CommandInterpreter::HandleCommand (const char *command_line,
Enrico Granata5f5ab602012-05-31 01:09:06 +00001519 LazyBool lazy_add_to_history,
Caroline Tice844d2302010-12-09 22:52:49 +00001520 CommandReturnObject &result,
Jim Inghame16c50a2011-02-18 00:54:25 +00001521 ExecutionContext *override_context,
Johnny Chen80fdd7c2011-10-05 00:42:59 +00001522 bool repeat_on_empty_command,
1523 bool no_context_switching)
Jim Inghame16c50a2011-02-18 00:54:25 +00001524
Caroline Tice844d2302010-12-09 22:52:49 +00001525{
Jim Inghame16c50a2011-02-18 00:54:25 +00001526
Caroline Tice844d2302010-12-09 22:52:49 +00001527 bool done = false;
1528 CommandObject *cmd_obj = NULL;
Caroline Tice844d2302010-12-09 22:52:49 +00001529 bool wants_raw_input = false;
1530 std::string command_string (command_line);
Jim Inghama5a97eb2011-07-12 03:12:18 +00001531 std::string original_command_string (command_line);
Caroline Tice844d2302010-12-09 22:52:49 +00001532
Greg Clayton5160ce52013-03-27 23:08:40 +00001533 Log *log (lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_COMMANDS));
Greg Clayton2d95dc9b2010-11-10 04:57:04 +00001534 Host::SetCrashDescriptionWithFormat ("HandleCommand(command = \"%s\")", command_line);
1535
1536 // Make a scoped cleanup object that will clear the crash description string
1537 // on exit of this function.
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00001538 lldb_utility::CleanUp <const char *> crash_description_cleanup(NULL, Host::SetCrashDescription);
Greg Clayton2d95dc9b2010-11-10 04:57:04 +00001539
Caroline Tice844d2302010-12-09 22:52:49 +00001540 if (log)
1541 log->Printf ("Processing command: %s", command_line);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001542
Jim Ingham30244832010-11-04 23:08:45 +00001543 Timer scoped_timer (__PRETTY_FUNCTION__, "Handling command: %s.", command_line);
1544
Johnny Chen80fdd7c2011-10-05 00:42:59 +00001545 if (!no_context_switching)
1546 UpdateExecutionContext (override_context);
Enrico Granata5f5ab602012-05-31 01:09:06 +00001547
Enrico Granata5f5ab602012-05-31 01:09:06 +00001548 bool add_to_history;
1549 if (lazy_add_to_history == eLazyBoolCalculate)
1550 add_to_history = (m_command_source_depth == 0);
1551 else
1552 add_to_history = (lazy_add_to_history == eLazyBoolYes);
1553
Jim Inghame16c50a2011-02-18 00:54:25 +00001554 bool empty_command = false;
1555 bool comment_command = false;
1556 if (command_string.empty())
1557 empty_command = true;
1558 else
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001559 {
Jim Inghame16c50a2011-02-18 00:54:25 +00001560 const char *k_space_characters = "\t\n\v\f\r ";
1561
1562 size_t non_space = command_string.find_first_not_of (k_space_characters);
1563 // Check for empty line or comment line (lines whose first
1564 // non-space character is the comment character for this interpreter)
1565 if (non_space == std::string::npos)
1566 empty_command = true;
1567 else if (command_string[non_space] == m_comment_char)
1568 comment_command = true;
Enrico Granata7594f142013-06-17 22:51:50 +00001569 else if (command_string[non_space] == CommandHistory::g_repeat_char)
Jim Inghama5a97eb2011-07-12 03:12:18 +00001570 {
Enrico Granata7594f142013-06-17 22:51:50 +00001571 const char *history_string = m_command_history.FindString(command_string.c_str() + non_space);
Jim Inghama5a97eb2011-07-12 03:12:18 +00001572 if (history_string == NULL)
1573 {
1574 result.AppendErrorWithFormat ("Could not find entry: %s in history", command_string.c_str());
1575 result.SetStatus(eReturnStatusFailed);
1576 return false;
1577 }
1578 add_to_history = false;
1579 command_string = history_string;
1580 original_command_string = history_string;
1581 }
Jim Inghame16c50a2011-02-18 00:54:25 +00001582 }
1583
1584 if (empty_command)
1585 {
1586 if (repeat_on_empty_command)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001587 {
Enrico Granata7594f142013-06-17 22:51:50 +00001588 if (m_command_history.IsEmpty())
Jim Inghame16c50a2011-02-18 00:54:25 +00001589 {
1590 result.AppendError ("empty command");
1591 result.SetStatus(eReturnStatusFailed);
1592 return false;
1593 }
1594 else
1595 {
1596 command_line = m_repeat_command.c_str();
1597 command_string = command_line;
Jim Inghama5a97eb2011-07-12 03:12:18 +00001598 original_command_string = command_line;
Jim Inghame16c50a2011-02-18 00:54:25 +00001599 if (m_repeat_command.empty())
1600 {
1601 result.AppendErrorWithFormat("No auto repeat.\n");
1602 result.SetStatus (eReturnStatusFailed);
1603 return false;
1604 }
1605 }
1606 add_to_history = false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001607 }
1608 else
1609 {
Jim Inghame16c50a2011-02-18 00:54:25 +00001610 result.SetStatus (eReturnStatusSuccessFinishNoResult);
1611 return true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001612 }
Jim Inghame16c50a2011-02-18 00:54:25 +00001613 }
1614 else if (comment_command)
1615 {
1616 result.SetStatus (eReturnStatusSuccessFinishNoResult);
1617 return true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001618 }
Caroline Tice2b5e8502011-05-11 16:07:06 +00001619
Greg Clayton5a314712011-10-14 07:41:33 +00001620
1621 Error error (PreprocessCommand (command_string));
1622
1623 if (error.Fail())
1624 {
1625 result.AppendError (error.AsCString());
1626 result.SetStatus(eReturnStatusFailed);
1627 return false;
1628 }
Caroline Tice844d2302010-12-09 22:52:49 +00001629 // Phase 1.
1630
1631 // Before we do ANY kind of argument processing, etc. we need to figure out what the real/final command object
1632 // is for the specified command, and whether or not it wants raw input. This gets complicated by the fact that
1633 // the user could have specified an alias, and in translating the alias there may also be command options and/or
1634 // even data (including raw text strings) that need to be found and inserted into the command line as part of
1635 // the translation. So this first step is plain look-up & replacement, resulting in three things: 1). the command
Greg Clayton710dd5a2011-01-08 20:28:42 +00001636 // object whose Execute method will actually be called; 2). a revised command string, with all substitutions &
Caroline Tice844d2302010-12-09 22:52:49 +00001637 // replacements taken care of; 3). whether or not the Execute function wants raw input or not.
Caroline Ticed9d63362010-12-07 19:58:26 +00001638
Caroline Tice844d2302010-12-09 22:52:49 +00001639 StreamString revised_command_line;
Caroline Tice01274c02010-12-11 08:16:56 +00001640 size_t actual_cmd_name_len = 0;
Greg Clayton5521f992011-10-28 21:38:01 +00001641 std::string next_word;
Filipe Cabecinhasaf1537f2012-05-16 23:25:54 +00001642 StringList matches;
Caroline Tice844d2302010-12-09 22:52:49 +00001643 while (!done)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001644 {
Caroline Tice2b5e8502011-05-11 16:07:06 +00001645 char quote_char = '\0';
Greg Clayton5521f992011-10-28 21:38:01 +00001646 std::string suffix;
1647 ExtractCommand (command_string, next_word, suffix, quote_char);
1648 if (cmd_obj == NULL)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001649 {
Jim Ingham298f3782013-04-03 00:25:49 +00001650 std::string full_name;
1651 if (GetAliasFullName(next_word.c_str(), full_name))
Caroline Tice472362e2010-12-14 18:51:39 +00001652 {
Greg Clayton5521f992011-10-28 21:38:01 +00001653 std::string alias_result;
Jim Ingham298f3782013-04-03 00:25:49 +00001654 cmd_obj = BuildAliasResult (full_name.c_str(), command_string, alias_result, result);
Greg Clayton5521f992011-10-28 21:38:01 +00001655 revised_command_line.Printf ("%s", alias_result.c_str());
1656 if (cmd_obj)
1657 {
1658 wants_raw_input = cmd_obj->WantsRawCommandString ();
1659 actual_cmd_name_len = strlen (cmd_obj->GetCommandName());
1660 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001661 }
1662 else
1663 {
Filipe Cabecinhasaf1537f2012-05-16 23:25:54 +00001664 cmd_obj = GetCommandObject (next_word.c_str(), &matches);
Greg Clayton5521f992011-10-28 21:38:01 +00001665 if (cmd_obj)
1666 {
1667 actual_cmd_name_len += next_word.length();
1668 revised_command_line.Printf ("%s", next_word.c_str());
1669 wants_raw_input = cmd_obj->WantsRawCommandString ();
1670 }
Caroline Tice2b5e8502011-05-11 16:07:06 +00001671 else
Greg Clayton5521f992011-10-28 21:38:01 +00001672 {
1673 revised_command_line.Printf ("%s", next_word.c_str());
1674 }
Caroline Tice844d2302010-12-09 22:52:49 +00001675 }
1676 }
1677 else
1678 {
Greg Clayton5521f992011-10-28 21:38:01 +00001679 if (cmd_obj->IsMultiwordObject ())
1680 {
Greg Clayton998255b2012-10-13 02:07:45 +00001681 CommandObject *sub_cmd_obj = cmd_obj->GetSubcommandObject (next_word.c_str());
Greg Clayton5521f992011-10-28 21:38:01 +00001682 if (sub_cmd_obj)
1683 {
1684 actual_cmd_name_len += next_word.length() + 1;
1685 revised_command_line.Printf (" %s", next_word.c_str());
1686 cmd_obj = sub_cmd_obj;
1687 wants_raw_input = cmd_obj->WantsRawCommandString ();
1688 }
1689 else
1690 {
1691 if (quote_char)
1692 revised_command_line.Printf (" %c%s%s%c", quote_char, next_word.c_str(), suffix.c_str(), quote_char);
1693 else
1694 revised_command_line.Printf (" %s%s", next_word.c_str(), suffix.c_str());
1695 done = true;
1696 }
1697 }
Caroline Tice2b5e8502011-05-11 16:07:06 +00001698 else
Greg Clayton5521f992011-10-28 21:38:01 +00001699 {
1700 if (quote_char)
1701 revised_command_line.Printf (" %c%s%s%c", quote_char, next_word.c_str(), suffix.c_str(), quote_char);
1702 else
1703 revised_command_line.Printf (" %s%s", next_word.c_str(), suffix.c_str());
1704 done = true;
1705 }
Caroline Tice844d2302010-12-09 22:52:49 +00001706 }
1707
1708 if (cmd_obj == NULL)
1709 {
Greg Claytonc7bece562013-01-25 18:06:21 +00001710 const size_t num_matches = matches.GetSize();
Filipe Cabecinhasaf1537f2012-05-16 23:25:54 +00001711 if (matches.GetSize() > 1) {
Greg Claytonc7bece562013-01-25 18:06:21 +00001712 StreamString error_msg;
1713 error_msg.Printf ("Ambiguous command '%s'. Possible matches:\n", next_word.c_str());
Filipe Cabecinhasaf1537f2012-05-16 23:25:54 +00001714
1715 for (uint32_t i = 0; i < num_matches; ++i) {
Greg Claytonc7bece562013-01-25 18:06:21 +00001716 error_msg.Printf ("\t%s\n", matches.GetStringAtIndex(i));
Filipe Cabecinhasaf1537f2012-05-16 23:25:54 +00001717 }
Greg Claytonc7bece562013-01-25 18:06:21 +00001718 result.AppendRawError (error_msg.GetString().c_str());
Filipe Cabecinhasaf1537f2012-05-16 23:25:54 +00001719 } else {
1720 // We didn't have only one match, otherwise we wouldn't get here.
1721 assert(num_matches == 0);
1722 result.AppendErrorWithFormat ("'%s' is not a valid command.\n", next_word.c_str());
1723 }
Caroline Tice844d2302010-12-09 22:52:49 +00001724 result.SetStatus (eReturnStatusFailed);
1725 return false;
1726 }
1727
Greg Clayton5521f992011-10-28 21:38:01 +00001728 if (cmd_obj->IsMultiwordObject ())
1729 {
1730 if (!suffix.empty())
1731 {
1732
Enrico Granataaded51d2013-06-12 00:44:43 +00001733 result.AppendErrorWithFormat ("command '%s' did not recognize '%s%s%s' as valid (subcommand might be invalid).\n",
1734 cmd_obj->GetCommandName(),
1735 next_word.empty() ? "" : next_word.c_str(),
1736 next_word.empty() ? " -- " : " ",
Greg Clayton5521f992011-10-28 21:38:01 +00001737 suffix.c_str());
1738 result.SetStatus (eReturnStatusFailed);
1739 return false;
1740 }
1741 }
1742 else
1743 {
1744 // If we found a normal command, we are done
1745 done = true;
1746 if (!suffix.empty())
1747 {
1748 switch (suffix[0])
1749 {
1750 case '/':
1751 // GDB format suffixes
Greg Clayton52ec56c2011-10-29 00:57:28 +00001752 {
1753 Options *command_options = cmd_obj->GetOptions();
1754 if (command_options && command_options->SupportsLongOption("gdb-format"))
1755 {
Greg Clayton93c62e62011-11-09 23:25:03 +00001756 std::string gdb_format_option ("--gdb-format=");
1757 gdb_format_option += (suffix.c_str() + 1);
1758
1759 bool inserted = false;
1760 std::string &cmd = revised_command_line.GetString();
1761 size_t arg_terminator_idx = FindArgumentTerminator (cmd);
1762 if (arg_terminator_idx != std::string::npos)
1763 {
1764 // Insert the gdb format option before the "--" that terminates options
1765 gdb_format_option.append(1,' ');
1766 cmd.insert(arg_terminator_idx, gdb_format_option);
1767 inserted = true;
1768 }
1769
1770 if (!inserted)
1771 revised_command_line.Printf (" %s", gdb_format_option.c_str());
1772
1773 if (wants_raw_input && FindArgumentTerminator(cmd) == std::string::npos)
1774 revised_command_line.PutCString (" --");
Greg Clayton52ec56c2011-10-29 00:57:28 +00001775 }
1776 else
1777 {
1778 result.AppendErrorWithFormat ("the '%s' command doesn't support the --gdb-format option\n",
1779 cmd_obj->GetCommandName());
1780 result.SetStatus (eReturnStatusFailed);
1781 return false;
1782 }
1783 }
Greg Clayton5521f992011-10-28 21:38:01 +00001784 break;
Johnny Chen8e9383d2011-10-31 22:22:06 +00001785
1786 default:
1787 result.AppendErrorWithFormat ("unknown command shorthand suffix: '%s'\n",
1788 suffix.c_str());
1789 result.SetStatus (eReturnStatusFailed);
1790 return false;
1791
Greg Clayton5521f992011-10-28 21:38:01 +00001792 }
1793 }
1794 }
Caroline Tice844d2302010-12-09 22:52:49 +00001795 if (command_string.length() == 0)
1796 done = true;
1797
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001798 }
Caroline Tice844d2302010-12-09 22:52:49 +00001799
Greg Clayton5521f992011-10-28 21:38:01 +00001800 if (!command_string.empty())
Caroline Tice844d2302010-12-09 22:52:49 +00001801 revised_command_line.Printf (" %s", command_string.c_str());
1802
1803 // End of Phase 1.
1804 // At this point cmd_obj should contain the CommandObject whose Execute method will be called, if the command
1805 // specified was valid; revised_command_line contains the complete command line (including command name(s)),
1806 // fully translated with all substitutions & translations taken care of (still in raw text format); and
1807 // wants_raw_input specifies whether the Execute method expects raw input or not.
1808
1809
1810 if (log)
1811 {
1812 log->Printf ("HandleCommand, cmd_obj : '%s'", cmd_obj ? cmd_obj->GetCommandName() : "<not found>");
1813 log->Printf ("HandleCommand, revised_command_line: '%s'", revised_command_line.GetData());
1814 log->Printf ("HandleCommand, wants_raw_input:'%s'", wants_raw_input ? "True" : "False");
1815 }
1816
1817 // Phase 2.
1818 // Take care of things like setting up the history command & calling the appropriate Execute method on the
1819 // CommandObject, with the appropriate arguments.
1820
1821 if (cmd_obj != NULL)
1822 {
1823 if (add_to_history)
1824 {
1825 Args command_args (revised_command_line.GetData());
1826 const char *repeat_command = cmd_obj->GetRepeatCommand(command_args, 0);
1827 if (repeat_command != NULL)
1828 m_repeat_command.assign(repeat_command);
1829 else
Jim Inghama5a97eb2011-07-12 03:12:18 +00001830 m_repeat_command.assign(original_command_string.c_str());
Caroline Tice844d2302010-12-09 22:52:49 +00001831
Enrico Granata7594f142013-06-17 22:51:50 +00001832 m_command_history.AppendString (original_command_string);
Caroline Tice844d2302010-12-09 22:52:49 +00001833 }
1834
1835 command_string = revised_command_line.GetData();
1836 std::string command_name (cmd_obj->GetCommandName());
Caroline Tice01274c02010-12-11 08:16:56 +00001837 std::string remainder;
1838 if (actual_cmd_name_len < command_string.length())
1839 remainder = command_string.substr (actual_cmd_name_len); // Note: 'actual_cmd_name_len' may be considerably shorter
1840 // than cmd_obj->GetCommandName(), because name completion
1841 // allows users to enter short versions of the names,
1842 // e.g. 'br s' for 'breakpoint set'.
Caroline Tice844d2302010-12-09 22:52:49 +00001843
1844 // Remove any initial spaces
1845 std::string white_space (" \t\v");
1846 size_t pos = remainder.find_first_not_of (white_space);
1847 if (pos != 0 && pos != std::string::npos)
Greg Claytona3482592011-04-22 20:58:45 +00001848 remainder.erase(0, pos);
Caroline Tice844d2302010-12-09 22:52:49 +00001849
1850 if (log)
Jason Molendabfb36ff2011-08-25 00:20:04 +00001851 log->Printf ("HandleCommand, command line after removing command name(s): '%s'", remainder.c_str());
Caroline Tice844d2302010-12-09 22:52:49 +00001852
Jim Ingham5a988412012-06-08 21:56:10 +00001853 cmd_obj->Execute (remainder.c_str(), result);
Caroline Tice844d2302010-12-09 22:52:49 +00001854 }
1855 else
1856 {
1857 // We didn't find the first command object, so complete the first argument.
1858 Args command_args (revised_command_line.GetData());
1859 StringList matches;
1860 int num_matches;
1861 int cursor_index = 0;
1862 int cursor_char_position = strlen (command_args.GetArgumentAtIndex(0));
1863 bool word_complete;
1864 num_matches = HandleCompletionMatches (command_args,
1865 cursor_index,
1866 cursor_char_position,
1867 0,
1868 -1,
1869 word_complete,
1870 matches);
1871
1872 if (num_matches > 0)
1873 {
1874 std::string error_msg;
1875 error_msg.assign ("ambiguous command '");
1876 error_msg.append(command_args.GetArgumentAtIndex(0));
1877 error_msg.append ("'.");
1878
1879 error_msg.append (" Possible completions:");
1880 for (int i = 0; i < num_matches; i++)
1881 {
1882 error_msg.append ("\n\t");
1883 error_msg.append (matches.GetStringAtIndex (i));
1884 }
1885 error_msg.append ("\n");
Greg Claytonc7bece562013-01-25 18:06:21 +00001886 result.AppendRawError (error_msg.c_str());
Caroline Tice844d2302010-12-09 22:52:49 +00001887 }
1888 else
1889 result.AppendErrorWithFormat ("Unrecognized command '%s'.\n", command_args.GetArgumentAtIndex (0));
1890
1891 result.SetStatus (eReturnStatusFailed);
1892 }
1893
Jason Molendabfb36ff2011-08-25 00:20:04 +00001894 if (log)
1895 log->Printf ("HandleCommand, command %s", (result.Succeeded() ? "succeeded" : "did not succeed"));
1896
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001897 return result.Succeeded();
1898}
1899
1900int
1901CommandInterpreter::HandleCompletionMatches (Args &parsed_line,
1902 int &cursor_index,
1903 int &cursor_char_position,
1904 int match_start_point,
1905 int max_return_elements,
Jim Ingham558ce122010-06-30 05:02:46 +00001906 bool &word_complete,
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001907 StringList &matches)
1908{
1909 int num_command_matches = 0;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001910 bool look_for_subcommand = false;
Jim Ingham558ce122010-06-30 05:02:46 +00001911
1912 // For any of the command completions a unique match will be a complete word.
1913 word_complete = true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001914
1915 if (cursor_index == -1)
1916 {
1917 // We got nothing on the command line, so return the list of commands
Jim Ingham279a6c22010-07-06 22:46:59 +00001918 bool include_aliases = true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001919 num_command_matches = GetCommandNamesMatchingPartialString ("", include_aliases, matches);
1920 }
1921 else if (cursor_index == 0)
1922 {
1923 // The cursor is in the first argument, so just do a lookup in the dictionary.
Jim Ingham279a6c22010-07-06 22:46:59 +00001924 CommandObject *cmd_obj = GetCommandObject (parsed_line.GetArgumentAtIndex(0), &matches);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001925 num_command_matches = matches.GetSize();
1926
1927 if (num_command_matches == 1
1928 && cmd_obj && cmd_obj->IsMultiwordObject()
1929 && matches.GetStringAtIndex(0) != NULL
1930 && strcmp (parsed_line.GetArgumentAtIndex(0), matches.GetStringAtIndex(0)) == 0)
1931 {
1932 look_for_subcommand = true;
1933 num_command_matches = 0;
1934 matches.DeleteStringAtIndex(0);
1935 parsed_line.AppendArgument ("");
1936 cursor_index++;
1937 cursor_char_position = 0;
1938 }
1939 }
1940
1941 if (cursor_index > 0 || look_for_subcommand)
1942 {
1943 // We are completing further on into a commands arguments, so find the command and tell it
1944 // to complete the command.
1945 // First see if there is a matching initial command:
Jim Ingham279a6c22010-07-06 22:46:59 +00001946 CommandObject *command_object = GetCommandObject (parsed_line.GetArgumentAtIndex(0));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001947 if (command_object == NULL)
1948 {
1949 return 0;
1950 }
1951 else
1952 {
1953 parsed_line.Shift();
1954 cursor_index--;
Greg Claytona7015092010-09-18 01:14:36 +00001955 num_command_matches = command_object->HandleCompletion (parsed_line,
Greg Clayton66111032010-06-23 01:19:29 +00001956 cursor_index,
1957 cursor_char_position,
1958 match_start_point,
Jim Ingham558ce122010-06-30 05:02:46 +00001959 max_return_elements,
1960 word_complete,
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001961 matches);
1962 }
1963 }
1964
1965 return num_command_matches;
1966
1967}
1968
1969int
1970CommandInterpreter::HandleCompletion (const char *current_line,
1971 const char *cursor,
1972 const char *last_char,
1973 int match_start_point,
1974 int max_return_elements,
1975 StringList &matches)
1976{
1977 // We parse the argument up to the cursor, so the last argument in parsed_line is
1978 // the one containing the cursor, and the cursor is after the last character.
1979
1980 Args parsed_line(current_line, last_char - current_line);
1981 Args partial_parsed_line(current_line, cursor - current_line);
1982
Jim Inghama5a97eb2011-07-12 03:12:18 +00001983 // Don't complete comments, and if the line we are completing is just the history repeat character,
1984 // substitute the appropriate history line.
1985 const char *first_arg = parsed_line.GetArgumentAtIndex(0);
1986 if (first_arg)
1987 {
1988 if (first_arg[0] == m_comment_char)
1989 return 0;
Enrico Granata7594f142013-06-17 22:51:50 +00001990 else if (first_arg[0] == CommandHistory::g_repeat_char)
Jim Inghama5a97eb2011-07-12 03:12:18 +00001991 {
Enrico Granata7594f142013-06-17 22:51:50 +00001992 const char *history_string = m_command_history.FindString (first_arg);
Jim Inghama5a97eb2011-07-12 03:12:18 +00001993 if (history_string != NULL)
1994 {
1995 matches.Clear();
1996 matches.InsertStringAtIndex(0, history_string);
1997 return -2;
1998 }
1999 else
2000 return 0;
2001
2002 }
2003 }
2004
2005
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002006 int num_args = partial_parsed_line.GetArgumentCount();
2007 int cursor_index = partial_parsed_line.GetArgumentCount() - 1;
2008 int cursor_char_position;
2009
2010 if (cursor_index == -1)
2011 cursor_char_position = 0;
2012 else
2013 cursor_char_position = strlen (partial_parsed_line.GetArgumentAtIndex(cursor_index));
Jim Inghamfe0c4252010-12-14 19:56:01 +00002014
2015 if (cursor > current_line && cursor[-1] == ' ')
2016 {
2017 // We are just after a space. If we are in an argument, then we will continue
2018 // parsing, but if we are between arguments, then we have to complete whatever the next
2019 // element would be.
2020 // We can distinguish the two cases because if we are in an argument (e.g. because the space is
2021 // protected by a quote) then the space will also be in the parsed argument...
2022
2023 const char *current_elem = partial_parsed_line.GetArgumentAtIndex(cursor_index);
2024 if (cursor_char_position == 0 || current_elem[cursor_char_position - 1] != ' ')
2025 {
2026 parsed_line.InsertArgumentAtIndex(cursor_index + 1, "", '"');
2027 cursor_index++;
2028 cursor_char_position = 0;
2029 }
2030 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002031
2032 int num_command_matches;
2033
2034 matches.Clear();
2035
2036 // Only max_return_elements == -1 is supported at present:
2037 assert (max_return_elements == -1);
Jim Ingham558ce122010-06-30 05:02:46 +00002038 bool word_complete;
Greg Clayton66111032010-06-23 01:19:29 +00002039 num_command_matches = HandleCompletionMatches (parsed_line,
2040 cursor_index,
2041 cursor_char_position,
2042 match_start_point,
Jim Ingham558ce122010-06-30 05:02:46 +00002043 max_return_elements,
2044 word_complete,
Greg Clayton66111032010-06-23 01:19:29 +00002045 matches);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002046
2047 if (num_command_matches <= 0)
2048 return num_command_matches;
2049
2050 if (num_args == 0)
2051 {
2052 // If we got an empty string, insert nothing.
2053 matches.InsertStringAtIndex(0, "");
2054 }
2055 else
2056 {
2057 // Now figure out if there is a common substring, and if so put that in element 0, otherwise
2058 // put an empty string in element 0.
2059 std::string command_partial_str;
2060 if (cursor_index >= 0)
Jim Ingham49e80a12010-10-22 18:47:16 +00002061 command_partial_str.assign(parsed_line.GetArgumentAtIndex(cursor_index),
2062 parsed_line.GetArgumentAtIndex(cursor_index) + cursor_char_position);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002063
2064 std::string common_prefix;
2065 matches.LongestCommonPrefix (common_prefix);
Greg Claytonc7bece562013-01-25 18:06:21 +00002066 const size_t partial_name_len = command_partial_str.size();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002067
2068 // If we matched a unique single command, add a space...
Jim Ingham558ce122010-06-30 05:02:46 +00002069 // Only do this if the completer told us this was a complete word, however...
2070 if (num_command_matches == 1 && word_complete)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002071 {
2072 char quote_char = parsed_line.GetArgumentQuoteCharAtIndex(cursor_index);
2073 if (quote_char != '\0')
2074 common_prefix.push_back(quote_char);
2075
2076 common_prefix.push_back(' ');
2077 }
2078 common_prefix.erase (0, partial_name_len);
2079 matches.InsertStringAtIndex(0, common_prefix.c_str());
2080 }
2081 return num_command_matches;
2082}
2083
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002084
2085CommandInterpreter::~CommandInterpreter ()
2086{
2087}
2088
2089const char *
2090CommandInterpreter::GetPrompt ()
2091{
Caroline Ticedaccaa92010-09-20 20:44:43 +00002092 return m_debugger.GetPrompt();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002093}
2094
2095void
2096CommandInterpreter::SetPrompt (const char *new_prompt)
2097{
Caroline Ticedaccaa92010-09-20 20:44:43 +00002098 m_debugger.SetPrompt (new_prompt);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002099}
2100
Jim Ingham97a6dc72010-10-04 19:49:29 +00002101size_t
Greg Clayton51b1e2d2011-02-09 01:08:52 +00002102CommandInterpreter::GetConfirmationInputReaderCallback
2103(
2104 void *baton,
2105 InputReader &reader,
2106 lldb::InputReaderAction action,
2107 const char *bytes,
2108 size_t bytes_len
2109)
Jim Ingham97a6dc72010-10-04 19:49:29 +00002110{
Greg Clayton51b1e2d2011-02-09 01:08:52 +00002111 File &out_file = reader.GetDebugger().GetOutputFile();
Jim Ingham97a6dc72010-10-04 19:49:29 +00002112 bool *response_ptr = (bool *) baton;
2113
2114 switch (action)
2115 {
2116 case eInputReaderActivate:
Greg Clayton51b1e2d2011-02-09 01:08:52 +00002117 if (out_file.IsValid())
Jim Ingham97a6dc72010-10-04 19:49:29 +00002118 {
2119 if (reader.GetPrompt())
Caroline Tice31f7d462011-02-02 01:17:56 +00002120 {
Greg Clayton51b1e2d2011-02-09 01:08:52 +00002121 out_file.Printf ("%s", reader.GetPrompt());
2122 out_file.Flush ();
Caroline Tice31f7d462011-02-02 01:17:56 +00002123 }
Jim Ingham97a6dc72010-10-04 19:49:29 +00002124 }
2125 break;
2126
2127 case eInputReaderDeactivate:
2128 break;
2129
2130 case eInputReaderReactivate:
Greg Clayton51b1e2d2011-02-09 01:08:52 +00002131 if (out_file.IsValid() && reader.GetPrompt())
Caroline Tice31f7d462011-02-02 01:17:56 +00002132 {
Greg Clayton51b1e2d2011-02-09 01:08:52 +00002133 out_file.Printf ("%s", reader.GetPrompt());
2134 out_file.Flush ();
Caroline Tice31f7d462011-02-02 01:17:56 +00002135 }
Jim Ingham97a6dc72010-10-04 19:49:29 +00002136 break;
Caroline Tice969ed3d2011-05-02 20:41:46 +00002137
2138 case eInputReaderAsynchronousOutputWritten:
2139 break;
2140
Jim Ingham97a6dc72010-10-04 19:49:29 +00002141 case eInputReaderGotToken:
2142 if (bytes_len == 0)
2143 {
2144 reader.SetIsDone(true);
2145 }
Jim Inghamc8b47582011-11-14 20:02:01 +00002146 else if (bytes[0] == 'y' || bytes[0] == 'Y')
Jim Ingham97a6dc72010-10-04 19:49:29 +00002147 {
2148 *response_ptr = true;
2149 reader.SetIsDone(true);
2150 }
Jim Inghamc8b47582011-11-14 20:02:01 +00002151 else if (bytes[0] == 'n' || bytes[0] == 'N')
Jim Ingham97a6dc72010-10-04 19:49:29 +00002152 {
2153 *response_ptr = false;
2154 reader.SetIsDone(true);
2155 }
2156 else
2157 {
Greg Clayton51b1e2d2011-02-09 01:08:52 +00002158 if (out_file.IsValid() && !reader.IsDone() && reader.GetPrompt())
Jim Ingham97a6dc72010-10-04 19:49:29 +00002159 {
Jim Ingham78d61482011-11-17 01:22:00 +00002160 out_file.Printf ("Please answer \"y\" or \"n\".\n%s", reader.GetPrompt());
Greg Clayton51b1e2d2011-02-09 01:08:52 +00002161 out_file.Flush ();
Jim Ingham97a6dc72010-10-04 19:49:29 +00002162 }
2163 }
2164 break;
2165
Caroline Ticeefed6132010-11-19 20:47:54 +00002166 case eInputReaderInterrupt:
2167 case eInputReaderEndOfFile:
2168 *response_ptr = false; // Assume ^C or ^D means cancel the proposed action
2169 reader.SetIsDone (true);
2170 break;
2171
Jim Ingham97a6dc72010-10-04 19:49:29 +00002172 case eInputReaderDone:
2173 break;
2174 }
2175
2176 return bytes_len;
2177
2178}
2179
2180bool
2181CommandInterpreter::Confirm (const char *message, bool default_answer)
2182{
Jim Ingham3bcdb292010-10-04 22:44:14 +00002183 // Check AutoConfirm first:
2184 if (m_debugger.GetAutoConfirm())
2185 return default_answer;
2186
Jim Ingham97a6dc72010-10-04 19:49:29 +00002187 InputReaderSP reader_sp (new InputReader(GetDebugger()));
2188 bool response = default_answer;
2189 if (reader_sp)
2190 {
2191 std::string prompt(message);
2192 prompt.append(": [");
2193 if (default_answer)
2194 prompt.append ("Y/n] ");
2195 else
2196 prompt.append ("y/N] ");
2197
2198 Error err (reader_sp->Initialize (CommandInterpreter::GetConfirmationInputReaderCallback,
2199 &response, // baton
2200 eInputReaderGranularityLine, // token size, to pass to callback function
2201 NULL, // end token
2202 prompt.c_str(), // prompt
2203 true)); // echo input
2204 if (err.Success())
2205 {
2206 GetDebugger().PushInputReader (reader_sp);
2207 }
2208 reader_sp->WaitOnReaderIsDone();
2209 }
2210 return response;
2211}
2212
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002213OptionArgVectorSP
2214CommandInterpreter::GetAliasOptions (const char *alias_name)
2215{
2216 OptionArgMap::iterator pos;
2217 OptionArgVectorSP ret_val;
2218
2219 std::string alias (alias_name);
2220
2221 if (HasAliasOptions())
2222 {
2223 pos = m_alias_options.find (alias);
2224 if (pos != m_alias_options.end())
2225 ret_val = pos->second;
2226 }
2227
2228 return ret_val;
2229}
2230
2231void
2232CommandInterpreter::RemoveAliasOptions (const char *alias_name)
2233{
2234 OptionArgMap::iterator pos = m_alias_options.find(alias_name);
2235 if (pos != m_alias_options.end())
2236 {
2237 m_alias_options.erase (pos);
2238 }
2239}
2240
2241void
2242CommandInterpreter::AddOrReplaceAliasOptions (const char *alias_name, OptionArgVectorSP &option_arg_vector_sp)
2243{
2244 m_alias_options[alias_name] = option_arg_vector_sp;
2245}
2246
2247bool
2248CommandInterpreter::HasCommands ()
2249{
2250 return (!m_command_dict.empty());
2251}
2252
2253bool
2254CommandInterpreter::HasAliases ()
2255{
2256 return (!m_alias_dict.empty());
2257}
2258
2259bool
2260CommandInterpreter::HasUserCommands ()
2261{
2262 return (!m_user_dict.empty());
2263}
2264
2265bool
2266CommandInterpreter::HasAliasOptions ()
2267{
2268 return (!m_alias_options.empty());
2269}
2270
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002271void
Caroline Tice4ab31c92010-10-12 21:57:09 +00002272CommandInterpreter::BuildAliasCommandArgs (CommandObject *alias_cmd_obj,
2273 const char *alias_name,
2274 Args &cmd_args,
Caroline Ticed9d63362010-12-07 19:58:26 +00002275 std::string &raw_input_string,
Caroline Tice4ab31c92010-10-12 21:57:09 +00002276 CommandReturnObject &result)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002277{
2278 OptionArgVectorSP option_arg_vector_sp = GetAliasOptions (alias_name);
Caroline Ticed9d63362010-12-07 19:58:26 +00002279
2280 bool wants_raw_input = alias_cmd_obj->WantsRawCommandString();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002281
Caroline Ticed9d63362010-12-07 19:58:26 +00002282 // Make sure that the alias name is the 0th element in cmd_args
2283 std::string alias_name_str = alias_name;
2284 if (alias_name_str.compare (cmd_args.GetArgumentAtIndex(0)) != 0)
2285 cmd_args.Unshift (alias_name);
2286
2287 Args new_args (alias_cmd_obj->GetCommandName());
2288 if (new_args.GetArgumentCount() == 2)
2289 new_args.Shift();
2290
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002291 if (option_arg_vector_sp.get())
2292 {
Caroline Ticed9d63362010-12-07 19:58:26 +00002293 if (wants_raw_input)
2294 {
2295 // We have a command that both has command options and takes raw input. Make *sure* it has a
2296 // " -- " in the right place in the raw_input_string.
2297 size_t pos = raw_input_string.find(" -- ");
2298 if (pos == std::string::npos)
2299 {
2300 // None found; assume it goes at the beginning of the raw input string
2301 raw_input_string.insert (0, " -- ");
2302 }
2303 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002304
2305 OptionArgVector *option_arg_vector = option_arg_vector_sp.get();
Greg Claytonc7bece562013-01-25 18:06:21 +00002306 const size_t old_size = cmd_args.GetArgumentCount();
Caroline Tice4ab31c92010-10-12 21:57:09 +00002307 std::vector<bool> used (old_size + 1, false);
2308
2309 used[0] = true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002310
Andy Gibbsa297a972013-06-19 19:04:53 +00002311 for (size_t i = 0; i < option_arg_vector->size(); ++i)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002312 {
2313 OptionArgPair option_pair = (*option_arg_vector)[i];
Caroline Ticed9d63362010-12-07 19:58:26 +00002314 OptionArgValue value_pair = option_pair.second;
2315 int value_type = value_pair.first;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002316 std::string option = option_pair.first;
Caroline Ticed9d63362010-12-07 19:58:26 +00002317 std::string value = value_pair.second;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002318 if (option.compare ("<argument>") == 0)
Caroline Ticed9d63362010-12-07 19:58:26 +00002319 {
2320 if (!wants_raw_input
2321 || (value.compare("--") != 0)) // Since we inserted this above, make sure we don't insert it twice
2322 new_args.AppendArgument (value.c_str());
2323 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002324 else
2325 {
Virgile Belloe2607b52013-09-05 16:42:23 +00002326 if (value_type != OptionParser::eOptionalArgument)
Caroline Ticed9d63362010-12-07 19:58:26 +00002327 new_args.AppendArgument (option.c_str());
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002328 if (value.compare ("<no-argument>") != 0)
2329 {
2330 int index = GetOptionArgumentPosition (value.c_str());
2331 if (index == 0)
Caroline Ticed9d63362010-12-07 19:58:26 +00002332 {
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002333 // value was NOT a positional argument; must be a real value
Virgile Belloe2607b52013-09-05 16:42:23 +00002334 if (value_type != OptionParser::eOptionalArgument)
Caroline Ticed9d63362010-12-07 19:58:26 +00002335 new_args.AppendArgument (value.c_str());
2336 else
2337 {
2338 char buffer[255];
2339 ::snprintf (buffer, sizeof (buffer), "%s%s", option.c_str(), value.c_str());
2340 new_args.AppendArgument (buffer);
2341 }
2342
2343 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002344 else if (index >= cmd_args.GetArgumentCount())
2345 {
2346 result.AppendErrorWithFormat
2347 ("Not enough arguments provided; you need at least %d arguments to use this alias.\n",
2348 index);
2349 result.SetStatus (eReturnStatusFailed);
2350 return;
2351 }
2352 else
2353 {
Caroline Ticed9d63362010-12-07 19:58:26 +00002354 // Find and remove cmd_args.GetArgumentAtIndex(i) from raw_input_string
2355 size_t strpos = raw_input_string.find (cmd_args.GetArgumentAtIndex (index));
2356 if (strpos != std::string::npos)
2357 {
2358 raw_input_string = raw_input_string.erase (strpos, strlen (cmd_args.GetArgumentAtIndex (index)));
2359 }
2360
Virgile Belloe2607b52013-09-05 16:42:23 +00002361 if (value_type != OptionParser::eOptionalArgument)
Caroline Ticed9d63362010-12-07 19:58:26 +00002362 new_args.AppendArgument (cmd_args.GetArgumentAtIndex (index));
2363 else
2364 {
2365 char buffer[255];
2366 ::snprintf (buffer, sizeof(buffer), "%s%s", option.c_str(),
2367 cmd_args.GetArgumentAtIndex (index));
2368 new_args.AppendArgument (buffer);
2369 }
Caroline Tice4ab31c92010-10-12 21:57:09 +00002370 used[index] = true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002371 }
2372 }
2373 }
2374 }
2375
Andy Gibbsa297a972013-06-19 19:04:53 +00002376 for (size_t j = 0; j < cmd_args.GetArgumentCount(); ++j)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002377 {
Caroline Ticed9d63362010-12-07 19:58:26 +00002378 if (!used[j] && !wants_raw_input)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002379 new_args.AppendArgument (cmd_args.GetArgumentAtIndex (j));
2380 }
2381
2382 cmd_args.Clear();
2383 cmd_args.SetArguments (new_args.GetArgumentCount(), (const char **) new_args.GetArgumentVector());
2384 }
2385 else
2386 {
2387 result.SetStatus (eReturnStatusSuccessFinishNoResult);
Caroline Ticed9d63362010-12-07 19:58:26 +00002388 // This alias was not created with any options; nothing further needs to be done, unless it is a command that
2389 // wants raw input, in which case we need to clear the rest of the data from cmd_args, since its in the raw
2390 // input string.
2391 if (wants_raw_input)
2392 {
2393 cmd_args.Clear();
2394 cmd_args.SetArguments (new_args.GetArgumentCount(), (const char **) new_args.GetArgumentVector());
2395 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002396 return;
2397 }
2398
2399 result.SetStatus (eReturnStatusSuccessFinishNoResult);
2400 return;
2401}
2402
2403
2404int
2405CommandInterpreter::GetOptionArgumentPosition (const char *in_string)
2406{
2407 int position = 0; // Any string that isn't an argument position, i.e. '%' followed by an integer, gets a position
2408 // of zero.
2409
2410 char *cptr = (char *) in_string;
2411
2412 // Does it start with '%'
2413 if (cptr[0] == '%')
2414 {
2415 ++cptr;
2416
2417 // Is the rest of it entirely digits?
2418 if (isdigit (cptr[0]))
2419 {
2420 const char *start = cptr;
2421 while (isdigit (cptr[0]))
2422 ++cptr;
2423
2424 // We've gotten to the end of the digits; are we at the end of the string?
2425 if (cptr[0] == '\0')
2426 position = atoi (start);
2427 }
2428 }
2429
2430 return position;
2431}
2432
2433void
2434CommandInterpreter::SourceInitFile (bool in_cwd, CommandReturnObject &result)
2435{
Jim Ingham16e0c682011-08-12 23:34:31 +00002436 FileSpec init_file;
Greg Clayton14a35512011-09-11 00:01:44 +00002437 if (in_cwd)
Jim Ingham16e0c682011-08-12 23:34:31 +00002438 {
Greg Clayton14a35512011-09-11 00:01:44 +00002439 // In the current working directory we don't load any program specific
2440 // .lldbinit files, we only look for a "./.lldbinit" file.
2441 if (m_skip_lldbinit_files)
2442 return;
2443
2444 init_file.SetFile ("./.lldbinit", true);
Jim Ingham16e0c682011-08-12 23:34:31 +00002445 }
Greg Clayton14a35512011-09-11 00:01:44 +00002446 else
Jim Ingham16e0c682011-08-12 23:34:31 +00002447 {
Greg Clayton14a35512011-09-11 00:01:44 +00002448 // If we aren't looking in the current working directory we are looking
2449 // in the home directory. We will first see if there is an application
2450 // specific ".lldbinit" file whose name is "~/.lldbinit" followed by a
2451 // "-" and the name of the program. If this file doesn't exist, we fall
2452 // back to just the "~/.lldbinit" file. We also obey any requests to not
2453 // load the init files.
2454 const char *init_file_path = "~/.lldbinit";
2455
2456 if (m_skip_app_init_files == false)
2457 {
2458 FileSpec program_file_spec (Host::GetProgramFileSpec());
2459 const char *program_name = program_file_spec.GetFilename().AsCString();
Jim Ingham16e0c682011-08-12 23:34:31 +00002460
Greg Clayton14a35512011-09-11 00:01:44 +00002461 if (program_name)
2462 {
2463 char program_init_file_name[PATH_MAX];
2464 ::snprintf (program_init_file_name, sizeof(program_init_file_name), "%s-%s", init_file_path, program_name);
2465 init_file.SetFile (program_init_file_name, true);
2466 if (!init_file.Exists())
2467 init_file.Clear();
2468 }
2469 }
2470
2471 if (!init_file && !m_skip_lldbinit_files)
2472 init_file.SetFile (init_file_path, true);
2473 }
2474
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002475 // If the file exists, tell HandleCommand to 'source' it; this will do the actual broadcasting
2476 // of the commands back to any appropriate listener (see CommandObjectSource::Execute for more details).
2477
2478 if (init_file.Exists())
2479 {
Jim Inghame16c50a2011-02-18 00:54:25 +00002480 ExecutionContext *exe_ctx = NULL; // We don't have any context yet.
2481 bool stop_on_continue = true;
2482 bool stop_on_error = false;
2483 bool echo_commands = false;
2484 bool print_results = false;
2485
Enrico Granata5f5ab602012-05-31 01:09:06 +00002486 HandleCommandsFromFile (init_file, exe_ctx, stop_on_continue, stop_on_error, echo_commands, print_results, eLazyBoolNo, result);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002487 }
2488 else
2489 {
2490 // nothing to be done if the file doesn't exist
2491 result.SetStatus(eReturnStatusSuccessFinishNoResult);
2492 }
2493}
2494
Greg Clayton8b82f082011-04-12 05:54:46 +00002495PlatformSP
2496CommandInterpreter::GetPlatform (bool prefer_target_platform)
2497{
2498 PlatformSP platform_sp;
Greg Claytonc14ee322011-09-22 04:58:26 +00002499 if (prefer_target_platform)
2500 {
Greg Clayton4e0fe8a2012-07-12 20:32:19 +00002501 ExecutionContext exe_ctx(GetExecutionContext());
2502 Target *target = exe_ctx.GetTargetPtr();
Greg Claytonc14ee322011-09-22 04:58:26 +00002503 if (target)
2504 platform_sp = target->GetPlatform();
2505 }
Greg Clayton8b82f082011-04-12 05:54:46 +00002506
2507 if (!platform_sp)
2508 platform_sp = m_debugger.GetPlatformList().GetSelectedPlatform();
2509 return platform_sp;
2510}
2511
Jim Inghame16c50a2011-02-18 00:54:25 +00002512void
Jim Inghambad87fe2011-03-11 01:51:49 +00002513CommandInterpreter::HandleCommands (const StringList &commands,
Jim Inghame16c50a2011-02-18 00:54:25 +00002514 ExecutionContext *override_context,
2515 bool stop_on_continue,
2516 bool stop_on_error,
2517 bool echo_commands,
2518 bool print_results,
Enrico Granata5f5ab602012-05-31 01:09:06 +00002519 LazyBool add_to_history,
Jim Inghame16c50a2011-02-18 00:54:25 +00002520 CommandReturnObject &result)
2521{
2522 size_t num_lines = commands.GetSize();
Jim Inghame16c50a2011-02-18 00:54:25 +00002523
2524 // If we are going to continue past a "continue" then we need to run the commands synchronously.
2525 // Make sure you reset this value anywhere you return from the function.
2526
2527 bool old_async_execution = m_debugger.GetAsyncExecution();
2528
2529 // If we've been given an execution context, set it at the start, but don't keep resetting it or we will
2530 // cause series of commands that change the context, then do an operation that relies on that context to fail.
2531
2532 if (override_context != NULL)
Greg Clayton8b82f082011-04-12 05:54:46 +00002533 UpdateExecutionContext (override_context);
Jim Inghame16c50a2011-02-18 00:54:25 +00002534
2535 if (!stop_on_continue)
2536 {
2537 m_debugger.SetAsyncExecution (false);
2538 }
2539
Andy Gibbsa297a972013-06-19 19:04:53 +00002540 for (size_t idx = 0; idx < num_lines; idx++)
Jim Inghame16c50a2011-02-18 00:54:25 +00002541 {
2542 const char *cmd = commands.GetStringAtIndex(idx);
2543 if (cmd[0] == '\0')
2544 continue;
2545
Jim Inghame16c50a2011-02-18 00:54:25 +00002546 if (echo_commands)
2547 {
2548 result.AppendMessageWithFormat ("%s %s\n",
2549 GetPrompt(),
2550 cmd);
2551 }
2552
Greg Clayton9d0402b2011-02-20 02:15:07 +00002553 CommandReturnObject tmp_result;
Johnny Chen80fdd7c2011-10-05 00:42:59 +00002554 // If override_context is not NULL, pass no_context_switching = true for
2555 // HandleCommand() since we updated our context already.
Jim Ingham076b7fc2013-05-02 23:15:37 +00002556
2557 // We might call into a regex or alias command, in which case the add_to_history will get lost. This
2558 // m_command_source_depth dingus is the way we turn off adding to the history in that case, so set it up here.
2559 if (!add_to_history)
2560 m_command_source_depth++;
Enrico Granata5f5ab602012-05-31 01:09:06 +00002561 bool success = HandleCommand(cmd, add_to_history, tmp_result,
Johnny Chen80fdd7c2011-10-05 00:42:59 +00002562 NULL, /* override_context */
2563 true, /* repeat_on_empty_command */
2564 override_context != NULL /* no_context_switching */);
Jim Ingham076b7fc2013-05-02 23:15:37 +00002565 if (!add_to_history)
2566 m_command_source_depth--;
Jim Inghame16c50a2011-02-18 00:54:25 +00002567
2568 if (print_results)
2569 {
2570 if (tmp_result.Succeeded())
Jim Ingham85e8b812011-02-19 02:53:09 +00002571 result.AppendMessageWithFormat("%s", tmp_result.GetOutputData());
Jim Inghame16c50a2011-02-18 00:54:25 +00002572 }
2573
2574 if (!success || !tmp_result.Succeeded())
2575 {
Jim Inghama5038812012-04-24 02:25:07 +00002576 const char *error_msg = tmp_result.GetErrorData();
2577 if (error_msg == NULL || error_msg[0] == '\0')
2578 error_msg = "<unknown error>.\n";
Jim Inghame16c50a2011-02-18 00:54:25 +00002579 if (stop_on_error)
2580 {
Andy Gibbsa297a972013-06-19 19:04:53 +00002581 result.AppendErrorWithFormat("Aborting reading of commands after command #%zu: '%s' failed with %s",
Jim Inghama5038812012-04-24 02:25:07 +00002582 idx, cmd, error_msg);
Jim Inghame16c50a2011-02-18 00:54:25 +00002583 result.SetStatus (eReturnStatusFailed);
2584 m_debugger.SetAsyncExecution (old_async_execution);
2585 return;
2586 }
2587 else if (print_results)
2588 {
Andy Gibbsa297a972013-06-19 19:04:53 +00002589 result.AppendMessageWithFormat ("Command #%zu '%s' failed with %s",
Jim Inghame16c50a2011-02-18 00:54:25 +00002590 idx + 1,
2591 cmd,
Jim Inghama5038812012-04-24 02:25:07 +00002592 error_msg);
Jim Inghame16c50a2011-02-18 00:54:25 +00002593 }
2594 }
2595
Caroline Tice969ed3d2011-05-02 20:41:46 +00002596 if (result.GetImmediateOutputStream())
2597 result.GetImmediateOutputStream()->Flush();
2598
2599 if (result.GetImmediateErrorStream())
2600 result.GetImmediateErrorStream()->Flush();
2601
Jim Inghame16c50a2011-02-18 00:54:25 +00002602 // N.B. Can't depend on DidChangeProcessState, because the state coming into the command execution
2603 // could be running (for instance in Breakpoint Commands.
2604 // So we check the return value to see if it is has running in it.
2605 if ((tmp_result.GetStatus() == eReturnStatusSuccessContinuingNoResult)
2606 || (tmp_result.GetStatus() == eReturnStatusSuccessContinuingResult))
2607 {
2608 if (stop_on_continue)
2609 {
2610 // If we caused the target to proceed, and we're going to stop in that case, set the
2611 // status in our real result before returning. This is an error if the continue was not the
2612 // last command in the set of commands to be run.
2613 if (idx != num_lines - 1)
Andy Gibbsa297a972013-06-19 19:04:53 +00002614 result.AppendErrorWithFormat("Aborting reading of commands after command #%zu: '%s' continued the target.\n",
Jim Inghame16c50a2011-02-18 00:54:25 +00002615 idx + 1, cmd);
2616 else
Andy Gibbsa297a972013-06-19 19:04:53 +00002617 result.AppendMessageWithFormat ("Command #%zu '%s' continued the target.\n", idx + 1, cmd);
Jim Inghame16c50a2011-02-18 00:54:25 +00002618
2619 result.SetStatus(tmp_result.GetStatus());
2620 m_debugger.SetAsyncExecution (old_async_execution);
2621
2622 return;
2623 }
2624 }
2625
2626 }
2627
2628 result.SetStatus (eReturnStatusSuccessFinishResult);
2629 m_debugger.SetAsyncExecution (old_async_execution);
2630
2631 return;
2632}
2633
2634void
2635CommandInterpreter::HandleCommandsFromFile (FileSpec &cmd_file,
2636 ExecutionContext *context,
2637 bool stop_on_continue,
2638 bool stop_on_error,
2639 bool echo_command,
2640 bool print_result,
Enrico Granata5f5ab602012-05-31 01:09:06 +00002641 LazyBool add_to_history,
Jim Inghame16c50a2011-02-18 00:54:25 +00002642 CommandReturnObject &result)
2643{
2644 if (cmd_file.Exists())
2645 {
2646 bool success;
2647 StringList commands;
2648 success = commands.ReadFileLines(cmd_file);
2649 if (!success)
2650 {
2651 result.AppendErrorWithFormat ("Error reading commands from file: %s.\n", cmd_file.GetFilename().AsCString());
2652 result.SetStatus (eReturnStatusFailed);
2653 return;
2654 }
Enrico Granata5f5ab602012-05-31 01:09:06 +00002655 m_command_source_depth++;
2656 HandleCommands (commands, context, stop_on_continue, stop_on_error, echo_command, print_result, add_to_history, result);
2657 m_command_source_depth--;
Jim Inghame16c50a2011-02-18 00:54:25 +00002658 }
2659 else
2660 {
2661 result.AppendErrorWithFormat ("Error reading commands from file %s - file not found.\n",
2662 cmd_file.GetFilename().AsCString());
2663 result.SetStatus (eReturnStatusFailed);
2664 return;
2665 }
2666}
2667
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002668ScriptInterpreter *
Enrico Granatab5887262012-10-29 21:18:03 +00002669CommandInterpreter::GetScriptInterpreter (bool can_create)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002670{
Enrico Granatab5887262012-10-29 21:18:03 +00002671 if (m_script_interpreter_ap.get() != NULL)
2672 return m_script_interpreter_ap.get();
2673
2674 if (!can_create)
2675 return NULL;
2676
Enrico Granataa29bdad2012-07-10 18:23:48 +00002677 // <rdar://problem/11751427>
2678 // we need to protect the initialization of the script interpreter
2679 // otherwise we could end up with two threads both trying to create
2680 // their instance of it, and for some languages (e.g. Python)
2681 // this is a bulletproof recipe for disaster!
2682 // this needs to be a function-level static because multiple Debugger instances living in the same process
2683 // still need to be isolated and not try to initialize Python concurrently
Enrico Granata8b95df22012-07-10 19:04:14 +00002684 static Mutex g_interpreter_mutex(Mutex::eMutexTypeRecursive);
2685 Mutex::Locker interpreter_lock(g_interpreter_mutex);
Enrico Granataa29bdad2012-07-10 18:23:48 +00002686
Greg Clayton5160ce52013-03-27 23:08:40 +00002687 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_OBJECT));
Enrico Granatab5887262012-10-29 21:18:03 +00002688 if (log)
2689 log->Printf("Initializing the ScriptInterpreter now\n");
Greg Clayton66111032010-06-23 01:19:29 +00002690
Caroline Tice2f88aad2011-01-14 00:29:16 +00002691 lldb::ScriptLanguage script_lang = GetDebugger().GetScriptLanguage();
2692 switch (script_lang)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002693 {
Greg Claytondce502e2011-11-04 03:34:56 +00002694 case eScriptLanguagePython:
2695#ifndef LLDB_DISABLE_PYTHON
2696 m_script_interpreter_ap.reset (new ScriptInterpreterPython (*this));
2697 break;
2698#else
2699 // Fall through to the None case when python is disabled
2700#endif
Caroline Tice2f88aad2011-01-14 00:29:16 +00002701 case eScriptLanguageNone:
2702 m_script_interpreter_ap.reset (new ScriptInterpreterNone (*this));
2703 break;
Caroline Tice2f88aad2011-01-14 00:29:16 +00002704 };
2705
2706 return m_script_interpreter_ap.get();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002707}
2708
2709
2710
2711bool
2712CommandInterpreter::GetSynchronous ()
2713{
2714 return m_synchronous_execution;
2715}
2716
2717void
2718CommandInterpreter::SetSynchronous (bool value)
2719{
Johnny Chenc066ab42010-10-14 01:22:03 +00002720 m_synchronous_execution = value;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002721}
2722
2723void
2724CommandInterpreter::OutputFormattedHelpText (Stream &strm,
2725 const char *word_text,
2726 const char *separator,
2727 const char *help_text,
Greg Claytonc7bece562013-01-25 18:06:21 +00002728 size_t max_word_len)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002729{
Greg Claytona7015092010-09-18 01:14:36 +00002730 const uint32_t max_columns = m_debugger.GetTerminalWidth();
2731
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002732 int indent_size = max_word_len + strlen (separator) + 2;
2733
2734 strm.IndentMore (indent_size);
Greg Claytonbfe5f3b2011-02-18 01:44:25 +00002735
2736 StreamString text_strm;
Greg Claytonc7bece562013-01-25 18:06:21 +00002737 text_strm.Printf ("%-*s %s %s", (int)max_word_len, word_text, separator, help_text);
Greg Claytonbfe5f3b2011-02-18 01:44:25 +00002738
2739 size_t len = text_strm.GetSize();
2740 const char *text = text_strm.GetData();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002741 if (text[len - 1] == '\n')
Greg Claytonbfe5f3b2011-02-18 01:44:25 +00002742 {
2743 text_strm.EOL();
2744 len = text_strm.GetSize();
2745 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002746
2747 if (len < max_columns)
2748 {
2749 // Output it as a single line.
2750 strm.Printf ("%s", text);
2751 }
2752 else
2753 {
2754 // We need to break it up into multiple lines.
2755 bool first_line = true;
2756 int text_width;
Greg Claytonc7bece562013-01-25 18:06:21 +00002757 size_t start = 0;
2758 size_t end = start;
2759 const size_t final_end = strlen (text);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002760
2761 while (end < final_end)
2762 {
2763 if (first_line)
2764 text_width = max_columns - 1;
2765 else
2766 text_width = max_columns - indent_size - 1;
2767
2768 // Don't start the 'text' on a space, since we're already outputting the indentation.
2769 if (!first_line)
2770 {
2771 while ((start < final_end) && (text[start] == ' '))
2772 start++;
2773 }
2774
2775 end = start + text_width;
2776 if (end > final_end)
2777 end = final_end;
2778 else
2779 {
2780 // If we're not at the end of the text, make sure we break the line on white space.
2781 while (end > start
2782 && text[end] != ' ' && text[end] != '\t' && text[end] != '\n')
2783 end--;
Greg Clayton67cc0632012-08-22 17:17:09 +00002784 assert (end > 0);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002785 }
2786
Greg Claytonc7bece562013-01-25 18:06:21 +00002787 const size_t sub_len = end - start;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002788 if (start != 0)
2789 strm.EOL();
2790 if (!first_line)
2791 strm.Indent();
2792 else
2793 first_line = false;
2794 assert (start <= final_end);
2795 assert (start + sub_len <= final_end);
2796 if (sub_len > 0)
2797 strm.Write (text + start, sub_len);
2798 start = end + 1;
2799 }
2800 }
2801 strm.EOL();
2802 strm.IndentLess(indent_size);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002803}
2804
2805void
Enrico Granata82a7d982011-07-07 00:38:40 +00002806CommandInterpreter::OutputHelpText (Stream &strm,
2807 const char *word_text,
2808 const char *separator,
2809 const char *help_text,
2810 uint32_t max_word_len)
2811{
2812 int indent_size = max_word_len + strlen (separator) + 2;
2813
2814 strm.IndentMore (indent_size);
2815
2816 StreamString text_strm;
2817 text_strm.Printf ("%-*s %s %s", max_word_len, word_text, separator, help_text);
2818
2819 const uint32_t max_columns = m_debugger.GetTerminalWidth();
Enrico Granata82a7d982011-07-07 00:38:40 +00002820
2821 size_t len = text_strm.GetSize();
2822 const char *text = text_strm.GetData();
2823
2824 uint32_t chars_left = max_columns;
2825
2826 for (uint32_t i = 0; i < len; i++)
2827 {
2828 if ((text[i] == ' ' && ::strchr((text+i+1), ' ') && chars_left < ::strchr((text+i+1), ' ')-(text+i)) || text[i] == '\n')
2829 {
Enrico Granata82a7d982011-07-07 00:38:40 +00002830 chars_left = max_columns - indent_size;
2831 strm.EOL();
2832 strm.Indent();
2833 }
2834 else
2835 {
2836 strm.PutChar(text[i]);
2837 chars_left--;
2838 }
2839
2840 }
2841
2842 strm.EOL();
2843 strm.IndentLess(indent_size);
2844}
2845
2846void
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002847CommandInterpreter::FindCommandsForApropos (const char *search_word, StringList &commands_found,
Jim Inghamaf3753e2013-05-17 01:30:37 +00002848 StringList &commands_help, bool search_builtin_commands, bool search_user_commands)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002849{
2850 CommandObject::CommandMap::const_iterator pos;
2851
Jim Inghamaf3753e2013-05-17 01:30:37 +00002852 if (search_builtin_commands)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002853 {
Jim Inghamaf3753e2013-05-17 01:30:37 +00002854 for (pos = m_command_dict.begin(); pos != m_command_dict.end(); ++pos)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002855 {
Jim Inghamaf3753e2013-05-17 01:30:37 +00002856 const char *command_name = pos->first.c_str();
2857 CommandObject *cmd_obj = pos->second.get();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002858
Jim Inghamaf3753e2013-05-17 01:30:37 +00002859 if (cmd_obj->HelpTextContainsWord (search_word))
2860 {
2861 commands_found.AppendString (command_name);
2862 commands_help.AppendString (cmd_obj->GetHelp());
2863 }
2864
2865 if (cmd_obj->IsMultiwordObject())
2866 cmd_obj->AproposAllSubCommands (command_name,
2867 search_word,
2868 commands_found,
2869 commands_help);
2870
2871 }
2872 }
2873
2874 if (search_user_commands)
2875 {
2876 for (pos = m_user_dict.begin(); pos != m_user_dict.end(); ++pos)
2877 {
2878 const char *command_name = pos->first.c_str();
2879 CommandObject *cmd_obj = pos->second.get();
2880
2881 if (cmd_obj->HelpTextContainsWord (search_word))
2882 {
2883 commands_found.AppendString (command_name);
2884 commands_help.AppendString (cmd_obj->GetHelp());
2885 }
2886
2887 if (cmd_obj->IsMultiwordObject())
2888 cmd_obj->AproposAllSubCommands (command_name,
2889 search_word,
2890 commands_found,
2891 commands_help);
2892
2893 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002894 }
2895}
Greg Clayton8b82f082011-04-12 05:54:46 +00002896
2897
2898void
2899CommandInterpreter::UpdateExecutionContext (ExecutionContext *override_context)
2900{
Greg Clayton8b82f082011-04-12 05:54:46 +00002901 if (override_context != NULL)
2902 {
Greg Clayton4e0fe8a2012-07-12 20:32:19 +00002903 m_exe_ctx_ref = *override_context;
Greg Clayton8b82f082011-04-12 05:54:46 +00002904 }
2905 else
2906 {
Greg Clayton4e0fe8a2012-07-12 20:32:19 +00002907 const bool adopt_selected = true;
2908 m_exe_ctx_ref.SetTargetPtr (m_debugger.GetSelectedTarget().get(), adopt_selected);
Greg Clayton8b82f082011-04-12 05:54:46 +00002909 }
2910}