blob: a5e192f472a01d737947f9df620b0fb294a100fe [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
15#include <getopt.h>
16#include <stdlib.h>
17
Greg Clayton4a33d312011-06-23 17:59:56 +000018#include "CommandObjectScript.h"
Peter Collingbourne08405b62011-06-23 20:37:26 +000019#include "lldb/Interpreter/CommandObjectRegexCommand.h"
Greg Clayton4a33d312011-06-23 17:59:56 +000020
Eli Friedman3afb70c2010-06-13 02:17:17 +000021#include "../Commands/CommandObjectApropos.h"
22#include "../Commands/CommandObjectArgs.h"
23#include "../Commands/CommandObjectBreakpoint.h"
Eli Friedman3afb70c2010-06-13 02:17:17 +000024#include "../Commands/CommandObjectDisassemble.h"
25#include "../Commands/CommandObjectExpression.h"
Eli Friedman3afb70c2010-06-13 02:17:17 +000026#include "../Commands/CommandObjectFrame.h"
27#include "../Commands/CommandObjectHelp.h"
Eli Friedman3afb70c2010-06-13 02:17:17 +000028#include "../Commands/CommandObjectLog.h"
29#include "../Commands/CommandObjectMemory.h"
Greg Claytonded470d2011-03-19 01:12:21 +000030#include "../Commands/CommandObjectPlatform.h"
Enrico Granata21dfcd92012-09-28 23:57:51 +000031#include "../Commands/CommandObjectPlugin.h"
Eli Friedman3afb70c2010-06-13 02:17:17 +000032#include "../Commands/CommandObjectProcess.h"
33#include "../Commands/CommandObjectQuit.h"
Eli Friedman3afb70c2010-06-13 02:17:17 +000034#include "../Commands/CommandObjectRegister.h"
Eli Friedman3afb70c2010-06-13 02:17:17 +000035#include "../Commands/CommandObjectSettings.h"
Eli Friedman3afb70c2010-06-13 02:17:17 +000036#include "../Commands/CommandObjectSource.h"
Jim Inghamebc09c32010-07-07 03:36:20 +000037#include "../Commands/CommandObjectCommands.h"
Eli Friedman3afb70c2010-06-13 02:17:17 +000038#include "../Commands/CommandObjectSyntax.h"
39#include "../Commands/CommandObjectTarget.h"
40#include "../Commands/CommandObjectThread.h"
Greg Clayton4a33d312011-06-23 17:59:56 +000041#include "../Commands/CommandObjectType.h"
Johnny Chen31c39da2010-12-23 20:21:44 +000042#include "../Commands/CommandObjectVersion.h"
Johnny Chenf04ee932011-09-22 18:04:58 +000043#include "../Commands/CommandObjectWatchpoint.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000044
Greg Clayton7d2ef162013-03-29 17:03:23 +000045
Chris Lattner30fdc8d2010-06-08 16:52:24 +000046#include "lldb/Core/Debugger.h"
Jim Ingham97a6dc72010-10-04 19:49:29 +000047#include "lldb/Core/InputReader.h"
Enrico Granatab5887262012-10-29 21:18:03 +000048#include "lldb/Core/Log.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000049#include "lldb/Core/Stream.h"
50#include "lldb/Core/Timer.h"
Enrico Granatab5887262012-10-29 21:18:03 +000051
Greg Clayton7fb56d02011-02-01 01:31:41 +000052#include "lldb/Host/Host.h"
Enrico Granatab5887262012-10-29 21:18:03 +000053
54#include "lldb/Interpreter/Args.h"
Greg Clayton7d2ef162013-03-29 17:03:23 +000055#include "lldb/Interpreter/CommandCompletions.h"
Enrico Granatab5887262012-10-29 21:18:03 +000056#include "lldb/Interpreter/CommandInterpreter.h"
Greg Clayton7d2ef162013-03-29 17:03:23 +000057#include "lldb/Interpreter/CommandReturnObject.h"
Enrico Granatab5887262012-10-29 21:18:03 +000058#include "lldb/Interpreter/Options.h"
59#include "lldb/Interpreter/ScriptInterpreterNone.h"
60#include "lldb/Interpreter/ScriptInterpreterPython.h"
61
62
Chris Lattner30fdc8d2010-06-08 16:52:24 +000063#include "lldb/Target/Process.h"
64#include "lldb/Target/Thread.h"
65#include "lldb/Target/TargetList.h"
66
Enrico Granatab5887262012-10-29 21:18:03 +000067#include "lldb/Utility/CleanUp.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000068
69using namespace lldb;
70using namespace lldb_private;
71
Greg Clayton754a9362012-08-23 00:22:02 +000072
73static PropertyDefinition
74g_properties[] =
75{
76 { "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 +000077 { "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." },
Greg Clayton754a9362012-08-23 00:22:02 +000078 { NULL , OptionValue::eTypeInvalid, true, 0 , NULL, NULL, NULL }
79};
80
81enum
82{
Enrico Granatabcba2b22013-01-17 21:36:19 +000083 ePropertyExpandRegexAliases = 0,
84 ePropertyPromptOnQuit = 1
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 ('#'),
Jim Inghama5a97eb2011-07-12 03:12:18 +0000108 m_repeat_char ('!'),
Johnny Chen4ac1d9e2012-08-09 22:06:10 +0000109 m_batch_command_mode (false),
Enrico Granata5f5ab602012-05-31 01:09:06 +0000110 m_truncation_warning(eNoTruncation),
111 m_command_source_depth (0)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000112{
Greg Clayton67cc0632012-08-22 17:17:09 +0000113 debugger.SetScriptLanguage (script_language);
Greg Claytoncfd1ace2010-10-31 03:01:06 +0000114 SetEventName (eBroadcastBitThreadShouldExit, "thread-should-exit");
115 SetEventName (eBroadcastBitResetPrompt, "reset-prompt");
Greg Clayton67cc0632012-08-22 17:17:09 +0000116 SetEventName (eBroadcastBitQuitCommandReceived, "quit");
Jim Ingham4bddaeb2012-02-16 06:50:00 +0000117 CheckInWithManager ();
Greg Clayton754a9362012-08-23 00:22:02 +0000118 m_collection_sp->Initialize (g_properties);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000119}
120
Greg Clayton754a9362012-08-23 00:22:02 +0000121bool
122CommandInterpreter::GetExpandRegexAliases () const
123{
124 const uint32_t idx = ePropertyExpandRegexAliases;
125 return m_collection_sp->GetPropertyAtIndexAsBoolean (NULL, idx, g_properties[idx].default_uint_value != 0);
126}
127
Enrico Granatabcba2b22013-01-17 21:36:19 +0000128bool
129CommandInterpreter::GetPromptOnQuit () const
130{
131 const uint32_t idx = ePropertyPromptOnQuit;
132 return m_collection_sp->GetPropertyAtIndexAsBoolean (NULL, idx, g_properties[idx].default_uint_value != 0);
133}
Greg Clayton754a9362012-08-23 00:22:02 +0000134
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000135void
136CommandInterpreter::Initialize ()
137{
138 Timer scoped_timer (__PRETTY_FUNCTION__, __PRETTY_FUNCTION__);
139
140 CommandReturnObject result;
141
142 LoadCommandDictionary ();
143
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000144 // Set up some initial aliases.
Caroline Ticeca90c472011-05-06 21:37:15 +0000145 CommandObjectSP cmd_obj_sp = GetCommandSPExact ("quit", false);
146 if (cmd_obj_sp)
147 {
148 AddAlias ("q", cmd_obj_sp);
149 AddAlias ("exit", cmd_obj_sp);
150 }
Sean Callanan247e62a2012-05-04 23:15:02 +0000151
Johnny Chen6d675242012-08-24 18:15:45 +0000152 cmd_obj_sp = GetCommandSPExact ("_regexp-attach",false);
Sean Callanan247e62a2012-05-04 23:15:02 +0000153 if (cmd_obj_sp)
154 {
155 AddAlias ("attach", cmd_obj_sp);
156 }
Caroline Ticeca90c472011-05-06 21:37:15 +0000157
Johnny Chen6d675242012-08-24 18:15:45 +0000158 cmd_obj_sp = GetCommandSPExact ("process detach",false);
159 if (cmd_obj_sp)
160 {
161 AddAlias ("detach", cmd_obj_sp);
162 }
163
Caroline Ticeca90c472011-05-06 21:37:15 +0000164 cmd_obj_sp = GetCommandSPExact ("process continue", false);
165 if (cmd_obj_sp)
166 {
167 AddAlias ("c", cmd_obj_sp);
168 AddAlias ("continue", cmd_obj_sp);
169 }
170
171 cmd_obj_sp = GetCommandSPExact ("_regexp-break",false);
172 if (cmd_obj_sp)
173 AddAlias ("b", cmd_obj_sp);
174
Jim Inghamca36cd12012-10-05 19:16:31 +0000175 cmd_obj_sp = GetCommandSPExact ("_regexp-tbreak",false);
176 if (cmd_obj_sp)
177 AddAlias ("tbreak", cmd_obj_sp);
178
Caroline Ticeca90c472011-05-06 21:37:15 +0000179 cmd_obj_sp = GetCommandSPExact ("thread step-inst", false);
180 if (cmd_obj_sp)
Jason Molendaf385f122011-10-22 00:47:41 +0000181 {
182 AddAlias ("stepi", cmd_obj_sp);
Caroline Ticeca90c472011-05-06 21:37:15 +0000183 AddAlias ("si", cmd_obj_sp);
Jason Molendaf385f122011-10-22 00:47:41 +0000184 }
185
186 cmd_obj_sp = GetCommandSPExact ("thread step-inst-over", false);
187 if (cmd_obj_sp)
188 {
189 AddAlias ("nexti", cmd_obj_sp);
190 AddAlias ("ni", cmd_obj_sp);
191 }
Caroline Ticeca90c472011-05-06 21:37:15 +0000192
193 cmd_obj_sp = GetCommandSPExact ("thread step-in", false);
194 if (cmd_obj_sp)
195 {
196 AddAlias ("s", cmd_obj_sp);
197 AddAlias ("step", cmd_obj_sp);
198 }
199
200 cmd_obj_sp = GetCommandSPExact ("thread step-over", false);
201 if (cmd_obj_sp)
202 {
203 AddAlias ("n", cmd_obj_sp);
204 AddAlias ("next", cmd_obj_sp);
205 }
206
207 cmd_obj_sp = GetCommandSPExact ("thread step-out", false);
208 if (cmd_obj_sp)
209 {
Caroline Ticeca90c472011-05-06 21:37:15 +0000210 AddAlias ("finish", cmd_obj_sp);
211 }
212
Jim Ingham6d6d1072011-12-02 01:12:59 +0000213 cmd_obj_sp = GetCommandSPExact ("frame select", false);
214 if (cmd_obj_sp)
215 {
216 AddAlias ("f", cmd_obj_sp);
217 }
218
Jim Inghamca36cd12012-10-05 19:16:31 +0000219 cmd_obj_sp = GetCommandSPExact ("thread select", false);
220 if (cmd_obj_sp)
221 {
222 AddAlias ("t", cmd_obj_sp);
223 }
224
Greg Clayton6bade322013-02-01 23:33:03 +0000225 cmd_obj_sp = GetCommandSPExact ("_regexp-list", false);
Caroline Ticeca90c472011-05-06 21:37:15 +0000226 if (cmd_obj_sp)
227 {
228 AddAlias ("l", cmd_obj_sp);
229 AddAlias ("list", cmd_obj_sp);
230 }
231
Greg Claytonef5651d2013-02-12 18:52:24 +0000232 cmd_obj_sp = GetCommandSPExact ("_regexp-env", false);
233 if (cmd_obj_sp)
234 {
235 AddAlias ("env", cmd_obj_sp);
236 }
237
Caroline Ticeca90c472011-05-06 21:37:15 +0000238 cmd_obj_sp = GetCommandSPExact ("memory read", false);
239 if (cmd_obj_sp)
240 AddAlias ("x", cmd_obj_sp);
241
242 cmd_obj_sp = GetCommandSPExact ("_regexp-up", false);
243 if (cmd_obj_sp)
244 AddAlias ("up", cmd_obj_sp);
245
246 cmd_obj_sp = GetCommandSPExact ("_regexp-down", false);
247 if (cmd_obj_sp)
248 AddAlias ("down", cmd_obj_sp);
249
Jason Molenda0c8e0062011-10-25 02:11:20 +0000250 cmd_obj_sp = GetCommandSPExact ("_regexp-display", false);
Jason Molendabc7748b2011-10-22 01:30:52 +0000251 if (cmd_obj_sp)
252 AddAlias ("display", cmd_obj_sp);
Jim Ingham7e18e422011-10-24 18:37:00 +0000253
254 cmd_obj_sp = GetCommandSPExact ("disassemble", false);
255 if (cmd_obj_sp)
256 AddAlias ("dis", cmd_obj_sp);
257
258 cmd_obj_sp = GetCommandSPExact ("disassemble", false);
259 if (cmd_obj_sp)
260 AddAlias ("di", cmd_obj_sp);
261
262
Jason Molendabc7748b2011-10-22 01:30:52 +0000263
Jason Molenda0c8e0062011-10-25 02:11:20 +0000264 cmd_obj_sp = GetCommandSPExact ("_regexp-undisplay", false);
Jason Molendabc7748b2011-10-22 01:30:52 +0000265 if (cmd_obj_sp)
266 AddAlias ("undisplay", cmd_obj_sp);
267
Jim Ingham71bf2992012-10-10 16:51:31 +0000268 cmd_obj_sp = GetCommandSPExact ("_regexp-bt", false);
269 if (cmd_obj_sp)
270 AddAlias ("bt", cmd_obj_sp);
271
Caroline Ticeca90c472011-05-06 21:37:15 +0000272 cmd_obj_sp = GetCommandSPExact ("target create", false);
273 if (cmd_obj_sp)
274 AddAlias ("file", cmd_obj_sp);
275
276 cmd_obj_sp = GetCommandSPExact ("target modules", false);
277 if (cmd_obj_sp)
278 AddAlias ("image", cmd_obj_sp);
279
280
281 OptionArgVectorSP alias_arguments_vector_sp (new OptionArgVector);
Jim Inghamffba2292011-03-22 02:29:32 +0000282
Caroline Ticeca90c472011-05-06 21:37:15 +0000283 cmd_obj_sp = GetCommandSPExact ("expression", false);
284 if (cmd_obj_sp)
Sean Callanan90e579f2013-04-17 17:23:58 +0000285 {
Caroline Ticeca90c472011-05-06 21:37:15 +0000286 ProcessAliasOptionsArgs (cmd_obj_sp, "--", alias_arguments_vector_sp);
287 AddAlias ("p", cmd_obj_sp);
288 AddAlias ("print", cmd_obj_sp);
Sean Callanan316d5e42012-08-08 01:30:34 +0000289 AddAlias ("call", cmd_obj_sp);
Caroline Ticeca90c472011-05-06 21:37:15 +0000290 AddOrReplaceAliasOptions ("p", alias_arguments_vector_sp);
291 AddOrReplaceAliasOptions ("print", alias_arguments_vector_sp);
Sean Callanan316d5e42012-08-08 01:30:34 +0000292 AddOrReplaceAliasOptions ("call", alias_arguments_vector_sp);
Caroline Ticeca90c472011-05-06 21:37:15 +0000293
294 alias_arguments_vector_sp.reset (new OptionArgVector);
Enrico Granata7b8c5132012-12-12 03:23:37 +0000295 ProcessAliasOptionsArgs (cmd_obj_sp, "-O --", alias_arguments_vector_sp);
Caroline Ticeca90c472011-05-06 21:37:15 +0000296 AddAlias ("po", cmd_obj_sp);
297 AddOrReplaceAliasOptions ("po", alias_arguments_vector_sp);
298 }
299
Sean Callanan2e1d9ba2012-06-01 23:29:32 +0000300 cmd_obj_sp = GetCommandSPExact ("process kill", false);
301 if (cmd_obj_sp)
Greg Claytone86fd742012-09-27 00:02:27 +0000302 {
Sean Callanan2e1d9ba2012-06-01 23:29:32 +0000303 AddAlias ("kill", cmd_obj_sp);
Greg Claytone86fd742012-09-27 00:02:27 +0000304 }
Sean Callanan2e1d9ba2012-06-01 23:29:32 +0000305
Caroline Ticeca90c472011-05-06 21:37:15 +0000306 cmd_obj_sp = GetCommandSPExact ("process launch", false);
307 if (cmd_obj_sp)
308 {
309 alias_arguments_vector_sp.reset (new OptionArgVector);
Jason Molenda85da3122012-07-06 02:46:23 +0000310#if defined (__arm__)
311 ProcessAliasOptionsArgs (cmd_obj_sp, "--", alias_arguments_vector_sp);
312#else
Greg Clayton0ca92a12012-05-18 00:04:38 +0000313 ProcessAliasOptionsArgs (cmd_obj_sp, "--shell=/bin/bash --", alias_arguments_vector_sp);
Jason Molenda85da3122012-07-06 02:46:23 +0000314#endif
Caroline Ticeca90c472011-05-06 21:37:15 +0000315 AddAlias ("r", cmd_obj_sp);
316 AddAlias ("run", cmd_obj_sp);
317 AddOrReplaceAliasOptions ("r", alias_arguments_vector_sp);
318 AddOrReplaceAliasOptions ("run", alias_arguments_vector_sp);
319 }
Greg Clayton843d62d2012-03-29 21:47:51 +0000320
321 cmd_obj_sp = GetCommandSPExact ("target symbols add", false);
322 if (cmd_obj_sp)
323 {
324 AddAlias ("add-dsym", cmd_obj_sp);
325 }
Sean Callananfc732752012-05-21 18:25:19 +0000326
327 cmd_obj_sp = GetCommandSPExact ("breakpoint set", false);
328 if (cmd_obj_sp)
329 {
330 alias_arguments_vector_sp.reset (new OptionArgVector);
331 ProcessAliasOptionsArgs (cmd_obj_sp, "--func-regex %1", alias_arguments_vector_sp);
Jim Ingham06d282d2012-10-18 23:24:12 +0000332 AddAlias ("rbreak", cmd_obj_sp);
333 AddOrReplaceAliasOptions("rbreak", alias_arguments_vector_sp);
Sean Callananfc732752012-05-21 18:25:19 +0000334 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000335}
336
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000337const char *
338CommandInterpreter::ProcessEmbeddedScriptCommands (const char *arg)
339{
340 // This function has not yet been implemented.
341
342 // Look for any embedded script command
343 // If found,
344 // get interpreter object from the command dictionary,
345 // call execute_one_command on it,
346 // get the results as a string,
347 // substitute that string for current stuff.
348
349 return arg;
350}
351
352
353void
354CommandInterpreter::LoadCommandDictionary ()
355{
356 Timer scoped_timer (__PRETTY_FUNCTION__, __PRETTY_FUNCTION__);
357
Caroline Ticedaccaa92010-09-20 20:44:43 +0000358 lldb::ScriptLanguage script_language = m_debugger.GetScriptLanguage();
Caroline Tice3df9a8d2010-09-04 00:03:46 +0000359
Greg Claytona7015092010-09-18 01:14:36 +0000360 m_command_dict["apropos"] = CommandObjectSP (new CommandObjectApropos (*this));
Greg Clayton66111032010-06-23 01:19:29 +0000361 m_command_dict["breakpoint"]= CommandObjectSP (new CommandObjectMultiwordBreakpoint (*this));
Johnny Chenb89982d2011-04-21 00:39:18 +0000362 m_command_dict["command"] = CommandObjectSP (new CommandObjectMultiwordCommands (*this));
Greg Claytona7015092010-09-18 01:14:36 +0000363 m_command_dict["disassemble"] = CommandObjectSP (new CommandObjectDisassemble (*this));
364 m_command_dict["expression"]= CommandObjectSP (new CommandObjectExpression (*this));
Greg Clayton66111032010-06-23 01:19:29 +0000365 m_command_dict["frame"] = CommandObjectSP (new CommandObjectMultiwordFrame (*this));
Greg Claytona7015092010-09-18 01:14:36 +0000366 m_command_dict["help"] = CommandObjectSP (new CommandObjectHelp (*this));
Greg Clayton66111032010-06-23 01:19:29 +0000367 m_command_dict["log"] = CommandObjectSP (new CommandObjectLog (*this));
368 m_command_dict["memory"] = CommandObjectSP (new CommandObjectMemory (*this));
Greg Claytonded470d2011-03-19 01:12:21 +0000369 m_command_dict["platform"] = CommandObjectSP (new CommandObjectPlatform (*this));
Enrico Granata21dfcd92012-09-28 23:57:51 +0000370 m_command_dict["plugin"] = CommandObjectSP (new CommandObjectPlugin (*this));
Greg Clayton66111032010-06-23 01:19:29 +0000371 m_command_dict["process"] = CommandObjectSP (new CommandObjectMultiwordProcess (*this));
Greg Claytona7015092010-09-18 01:14:36 +0000372 m_command_dict["quit"] = CommandObjectSP (new CommandObjectQuit (*this));
Greg Clayton66111032010-06-23 01:19:29 +0000373 m_command_dict["register"] = CommandObjectSP (new CommandObjectRegister (*this));
Greg Claytona7015092010-09-18 01:14:36 +0000374 m_command_dict["script"] = CommandObjectSP (new CommandObjectScript (*this, script_language));
Caroline Tice3df9a8d2010-09-04 00:03:46 +0000375 m_command_dict["settings"] = CommandObjectSP (new CommandObjectMultiwordSettings (*this));
Jim Inghamebc09c32010-07-07 03:36:20 +0000376 m_command_dict["source"] = CommandObjectSP (new CommandObjectMultiwordSource (*this));
Greg Clayton66111032010-06-23 01:19:29 +0000377 m_command_dict["target"] = CommandObjectSP (new CommandObjectMultiwordTarget (*this));
378 m_command_dict["thread"] = CommandObjectSP (new CommandObjectMultiwordThread (*this));
Enrico Granata223383e2011-08-16 23:24:13 +0000379 m_command_dict["type"] = CommandObjectSP (new CommandObjectType (*this));
Johnny Chen31c39da2010-12-23 20:21:44 +0000380 m_command_dict["version"] = CommandObjectSP (new CommandObjectVersion (*this));
Johnny Chenf04ee932011-09-22 18:04:58 +0000381 m_command_dict["watchpoint"]= CommandObjectSP (new CommandObjectMultiwordWatchpoint (*this));
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000382
Jim Inghamca36cd12012-10-05 19:16:31 +0000383 const char *break_regexes[][2] = {{"^(.*[^[:space:]])[[:space:]]*:[[:space:]]*([[:digit:]]+)[[:space:]]*$", "breakpoint set --file '%1' --line %2"},
384 {"^([[:digit:]]+)[[:space:]]*$", "breakpoint set --line %1"},
Greg Clayton722e8852013-02-08 02:54:24 +0000385 {"^\\*?(0x[[:xdigit:]]+)[[:space:]]*$", "breakpoint set --address %1"},
Greg Clayton1b3815c2013-01-30 00:18:29 +0000386 {"^[\"']?([-+]?\\[.*\\])[\"']?[[:space:]]*$", "breakpoint set --name '%1'"},
Jim Inghamca36cd12012-10-05 19:16:31 +0000387 {"^(-.*)$", "breakpoint set %1"},
388 {"^(.*[^[:space:]])`(.*[^[:space:]])[[:space:]]*$", "breakpoint set --name '%2' --shlib '%1'"},
Greg Clayton722e8852013-02-08 02:54:24 +0000389 {"^\\&(.*[^[:space:]])[[:space:]]*$", "breakpoint set --name '%1' --skip-prologue=0"},
Jim Inghamca36cd12012-10-05 19:16:31 +0000390 {"^(.*[^[:space:]])[[:space:]]*$", "breakpoint set --name '%1'"}};
391
392 size_t num_regexes = sizeof break_regexes/sizeof(char *[2]);
393
Greg Clayton7b0992d2013-04-18 22:45:39 +0000394 std::unique_ptr<CommandObjectRegexCommand>
Greg Claytona7015092010-09-18 01:14:36 +0000395 break_regex_cmd_ap(new CommandObjectRegexCommand (*this,
Greg Clayton8b82f082011-04-12 05:54:46 +0000396 "_regexp-break",
Johnny Chenb417dcd2012-08-23 00:32:22 +0000397 "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 +0000398 "_regexp-break [<filename>:<linenum>]\n_regexp-break [<linenum>]\n_regexp-break [<address>]\n_regexp-break <...>",
399 2,
400 CommandCompletions::eSymbolCompletion |
401 CommandCompletions::eSourceFileCompletion));
Jim Inghamca36cd12012-10-05 19:16:31 +0000402
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000403 if (break_regex_cmd_ap.get())
404 {
Jim Inghamca36cd12012-10-05 19:16:31 +0000405 bool success = true;
406 for (size_t i = 0; i < num_regexes; i++)
407 {
408 success = break_regex_cmd_ap->AddRegexCommand (break_regexes[i][0], break_regexes[i][1]);
409 if (!success)
410 break;
411 }
412 success = break_regex_cmd_ap->AddRegexCommand("^$", "breakpoint list --full");
413
414 if (success)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000415 {
416 CommandObjectSP break_regex_cmd_sp(break_regex_cmd_ap.release());
417 m_command_dict[break_regex_cmd_sp->GetCommandName ()] = break_regex_cmd_sp;
418 }
419 }
Jim Inghamffba2292011-03-22 02:29:32 +0000420
Greg Clayton7b0992d2013-04-18 22:45:39 +0000421 std::unique_ptr<CommandObjectRegexCommand>
Jim Inghamca36cd12012-10-05 19:16:31 +0000422 tbreak_regex_cmd_ap(new CommandObjectRegexCommand (*this,
423 "_regexp-tbreak",
424 "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 +0000425 "_regexp-tbreak [<filename>:<linenum>]\n_regexp-break [<linenum>]\n_regexp-break [<address>]\n_regexp-break <...>",
426 2,
427 CommandCompletions::eSymbolCompletion |
428 CommandCompletions::eSourceFileCompletion));
Jim Inghamca36cd12012-10-05 19:16:31 +0000429
430 if (tbreak_regex_cmd_ap.get())
431 {
432 bool success = true;
433 for (size_t i = 0; i < num_regexes; i++)
434 {
435 // If you add a resultant command string longer than 1024 characters be sure to increase the size of this buffer.
436 char buffer[1024];
437 int num_printed = snprintf(buffer, 1024, "%s %s", break_regexes[i][1], "-o");
438 assert (num_printed < 1024);
439 success = tbreak_regex_cmd_ap->AddRegexCommand (break_regexes[i][0], buffer);
440 if (!success)
441 break;
442 }
443 success = tbreak_regex_cmd_ap->AddRegexCommand("^$", "breakpoint list --full");
444
445 if (success)
446 {
447 CommandObjectSP tbreak_regex_cmd_sp(tbreak_regex_cmd_ap.release());
448 m_command_dict[tbreak_regex_cmd_sp->GetCommandName ()] = tbreak_regex_cmd_sp;
449 }
450 }
451
Greg Clayton7b0992d2013-04-18 22:45:39 +0000452 std::unique_ptr<CommandObjectRegexCommand>
Johnny Chen6d675242012-08-24 18:15:45 +0000453 attach_regex_cmd_ap(new CommandObjectRegexCommand (*this,
454 "_regexp-attach",
455 "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 +0000456 "_regexp-attach [<pid>]\n_regexp-attach [<process-name>]",
457 2));
Johnny Chen6d675242012-08-24 18:15:45 +0000458 if (attach_regex_cmd_ap.get())
459 {
Greg Clayton3cb4c7d2012-12-15 01:19:07 +0000460 if (attach_regex_cmd_ap->AddRegexCommand("^([0-9]+)[[:space:]]*$", "process attach --pid %1") &&
461 attach_regex_cmd_ap->AddRegexCommand("^(-.*|.* -.*)$", "process attach %1") && // Any options that are specified get passed to 'process attach'
462 attach_regex_cmd_ap->AddRegexCommand("^(.+)$", "process attach --name '%1'") &&
463 attach_regex_cmd_ap->AddRegexCommand("^$", "process attach"))
Johnny Chen6d675242012-08-24 18:15:45 +0000464 {
465 CommandObjectSP attach_regex_cmd_sp(attach_regex_cmd_ap.release());
466 m_command_dict[attach_regex_cmd_sp->GetCommandName ()] = attach_regex_cmd_sp;
467 }
468 }
469
Greg Clayton7b0992d2013-04-18 22:45:39 +0000470 std::unique_ptr<CommandObjectRegexCommand>
Jim Inghamffba2292011-03-22 02:29:32 +0000471 down_regex_cmd_ap(new CommandObjectRegexCommand (*this,
Greg Clayton8b82f082011-04-12 05:54:46 +0000472 "_regexp-down",
473 "Go down \"n\" frames in the stack (1 frame by default).",
474 "_regexp-down [n]", 2));
Jim Inghamffba2292011-03-22 02:29:32 +0000475 if (down_regex_cmd_ap.get())
476 {
477 if (down_regex_cmd_ap->AddRegexCommand("^$", "frame select -r -1") &&
478 down_regex_cmd_ap->AddRegexCommand("^([0-9]+)$", "frame select -r -%1"))
479 {
480 CommandObjectSP down_regex_cmd_sp(down_regex_cmd_ap.release());
481 m_command_dict[down_regex_cmd_sp->GetCommandName ()] = down_regex_cmd_sp;
482 }
483 }
484
Greg Clayton7b0992d2013-04-18 22:45:39 +0000485 std::unique_ptr<CommandObjectRegexCommand>
Jim Inghamffba2292011-03-22 02:29:32 +0000486 up_regex_cmd_ap(new CommandObjectRegexCommand (*this,
Greg Clayton8b82f082011-04-12 05:54:46 +0000487 "_regexp-up",
488 "Go up \"n\" frames in the stack (1 frame by default).",
489 "_regexp-up [n]", 2));
Jim Inghamffba2292011-03-22 02:29:32 +0000490 if (up_regex_cmd_ap.get())
491 {
492 if (up_regex_cmd_ap->AddRegexCommand("^$", "frame select -r 1") &&
493 up_regex_cmd_ap->AddRegexCommand("^([0-9]+)$", "frame select -r %1"))
494 {
495 CommandObjectSP up_regex_cmd_sp(up_regex_cmd_ap.release());
496 m_command_dict[up_regex_cmd_sp->GetCommandName ()] = up_regex_cmd_sp;
497 }
498 }
Jason Molendabc7748b2011-10-22 01:30:52 +0000499
Greg Clayton7b0992d2013-04-18 22:45:39 +0000500 std::unique_ptr<CommandObjectRegexCommand>
Jason Molendabc7748b2011-10-22 01:30:52 +0000501 display_regex_cmd_ap(new CommandObjectRegexCommand (*this,
Greg Clayton7d2ef162013-03-29 17:03:23 +0000502 "_regexp-display",
503 "Add an expression evaluation stop-hook.",
504 "_regexp-display expression", 2));
Jason Molendabc7748b2011-10-22 01:30:52 +0000505 if (display_regex_cmd_ap.get())
506 {
507 if (display_regex_cmd_ap->AddRegexCommand("^(.+)$", "target stop-hook add -o \"expr -- %1\""))
508 {
509 CommandObjectSP display_regex_cmd_sp(display_regex_cmd_ap.release());
510 m_command_dict[display_regex_cmd_sp->GetCommandName ()] = display_regex_cmd_sp;
511 }
512 }
513
Greg Clayton7b0992d2013-04-18 22:45:39 +0000514 std::unique_ptr<CommandObjectRegexCommand>
Jason Molendabc7748b2011-10-22 01:30:52 +0000515 undisplay_regex_cmd_ap(new CommandObjectRegexCommand (*this,
Greg Clayton7d2ef162013-03-29 17:03:23 +0000516 "_regexp-undisplay",
517 "Remove an expression evaluation stop-hook.",
518 "_regexp-undisplay stop-hook-number", 2));
Jason Molendabc7748b2011-10-22 01:30:52 +0000519 if (undisplay_regex_cmd_ap.get())
520 {
521 if (undisplay_regex_cmd_ap->AddRegexCommand("^([0-9]+)$", "target stop-hook delete %1"))
522 {
523 CommandObjectSP undisplay_regex_cmd_sp(undisplay_regex_cmd_ap.release());
524 m_command_dict[undisplay_regex_cmd_sp->GetCommandName ()] = undisplay_regex_cmd_sp;
525 }
526 }
527
Greg Clayton7b0992d2013-04-18 22:45:39 +0000528 std::unique_ptr<CommandObjectRegexCommand>
Greg Clayton30c0a1c2012-09-26 22:26:47 +0000529 connect_gdb_remote_cmd_ap(new CommandObjectRegexCommand (*this,
Greg Clayton7d2ef162013-03-29 17:03:23 +0000530 "gdb-remote",
531 "Connect to a remote GDB server. If no hostname is provided, localhost is assumed.",
532 "gdb-remote [<hostname>:]<portnum>", 2));
Greg Clayton30c0a1c2012-09-26 22:26:47 +0000533 if (connect_gdb_remote_cmd_ap.get())
534 {
535 if (connect_gdb_remote_cmd_ap->AddRegexCommand("^([^:]+:[[:digit:]]+)$", "process connect --plugin gdb-remote connect://%1") &&
536 connect_gdb_remote_cmd_ap->AddRegexCommand("^([[:digit:]]+)$", "process connect --plugin gdb-remote connect://localhost:%1"))
537 {
538 CommandObjectSP command_sp(connect_gdb_remote_cmd_ap.release());
539 m_command_dict[command_sp->GetCommandName ()] = command_sp;
540 }
541 }
542
Greg Clayton7b0992d2013-04-18 22:45:39 +0000543 std::unique_ptr<CommandObjectRegexCommand>
Greg Clayton30c0a1c2012-09-26 22:26:47 +0000544 connect_kdp_remote_cmd_ap(new CommandObjectRegexCommand (*this,
545 "kdp-remote",
Jason Molendaa7dcb332012-10-23 03:05:16 +0000546 "Connect to a remote KDP server. udp port 41139 is the default port number.",
547 "kdp-remote <hostname>[:<portnum>]", 2));
Greg Clayton30c0a1c2012-09-26 22:26:47 +0000548 if (connect_kdp_remote_cmd_ap.get())
549 {
550 if (connect_kdp_remote_cmd_ap->AddRegexCommand("^([^:]+:[[:digit:]]+)$", "process connect --plugin kdp-remote udp://%1") &&
Jason Molendac36b1842012-09-27 02:47:55 +0000551 connect_kdp_remote_cmd_ap->AddRegexCommand("^(.+)$", "process connect --plugin kdp-remote udp://%1:41139"))
Greg Clayton30c0a1c2012-09-26 22:26:47 +0000552 {
553 CommandObjectSP command_sp(connect_kdp_remote_cmd_ap.release());
554 m_command_dict[command_sp->GetCommandName ()] = command_sp;
555 }
556 }
557
Greg Clayton7b0992d2013-04-18 22:45:39 +0000558 std::unique_ptr<CommandObjectRegexCommand>
Jason Molenda4cddfed2012-10-05 05:29:32 +0000559 bt_regex_cmd_ap(new CommandObjectRegexCommand (*this,
Jim Ingham71bf2992012-10-10 16:51:31 +0000560 "_regexp-bt",
Jason Molenda4cddfed2012-10-05 05:29:32 +0000561 "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.",
562 "bt [<digit>|all]", 2));
563 if (bt_regex_cmd_ap.get())
564 {
565 // accept but don't document "bt -c <number>" -- before bt was a regex command if you wanted to backtrace
566 // three frames you would do "bt -c 3" but the intention is to have this emulate the gdb "bt" command and
567 // so now "bt 3" is the preferred form, in line with gdb.
568 if (bt_regex_cmd_ap->AddRegexCommand("^([[:digit:]]+)$", "thread backtrace -c %1") &&
569 bt_regex_cmd_ap->AddRegexCommand("^-c ([[:digit:]]+)$", "thread backtrace -c %1") &&
570 bt_regex_cmd_ap->AddRegexCommand("^all$", "thread backtrace all") &&
571 bt_regex_cmd_ap->AddRegexCommand("^$", "thread backtrace"))
572 {
573 CommandObjectSP command_sp(bt_regex_cmd_ap.release());
574 m_command_dict[command_sp->GetCommandName ()] = command_sp;
575 }
576 }
577
Greg Clayton7b0992d2013-04-18 22:45:39 +0000578 std::unique_ptr<CommandObjectRegexCommand>
Greg Clayton6bade322013-02-01 23:33:03 +0000579 list_regex_cmd_ap(new CommandObjectRegexCommand (*this,
580 "_regexp-list",
581 "Implements the GDB 'list' command in all of its forms except FILE:FUNCTION and maps them to the appropriate 'source list' commands.",
Greg Clayton7d2ef162013-03-29 17:03:23 +0000582 "_regexp-list [<line>]\n_regexp-attach [<file>:<line>]\n_regexp-attach [<file>:<line>]",
583 2,
584 CommandCompletions::eSourceFileCompletion));
Greg Clayton6bade322013-02-01 23:33:03 +0000585 if (list_regex_cmd_ap.get())
586 {
587 if (list_regex_cmd_ap->AddRegexCommand("^([0-9]+)[[:space:]]*$", "source list --line %1") &&
588 list_regex_cmd_ap->AddRegexCommand("^(.*[^[:space:]])[[:space:]]*:[[:space:]]*([[:digit:]]+)[[:space:]]*$", "source list --file '%1' --line %2") &&
589 list_regex_cmd_ap->AddRegexCommand("^\\*?(0x[[:xdigit:]]+)[[:space:]]*$", "source list --address %1") &&
Greg Claytond9010962013-02-12 18:42:05 +0000590 list_regex_cmd_ap->AddRegexCommand("^-[[:space:]]*$", "source list --reverse") &&
Greg Claytone4ca5152013-03-13 18:25:49 +0000591 list_regex_cmd_ap->AddRegexCommand("^-([[:digit:]]+)[[:space:]]*$", "source list --reverse --count %1") &&
Greg Clayton6bade322013-02-01 23:33:03 +0000592 list_regex_cmd_ap->AddRegexCommand("^(.+)$", "source list --name \"%1\"") &&
593 list_regex_cmd_ap->AddRegexCommand("^$", "source list"))
594 {
595 CommandObjectSP list_regex_cmd_sp(list_regex_cmd_ap.release());
596 m_command_dict[list_regex_cmd_sp->GetCommandName ()] = list_regex_cmd_sp;
597 }
598 }
599
Greg Clayton7b0992d2013-04-18 22:45:39 +0000600 std::unique_ptr<CommandObjectRegexCommand>
Greg Claytonef5651d2013-02-12 18:52:24 +0000601 env_regex_cmd_ap(new CommandObjectRegexCommand (*this,
Greg Clayton7d2ef162013-03-29 17:03:23 +0000602 "_regexp-env",
603 "Implements a shortcut to viewing and setting environment variables.",
604 "_regexp-env\n_regexp-env FOO=BAR", 2));
Greg Claytonef5651d2013-02-12 18:52:24 +0000605 if (env_regex_cmd_ap.get())
606 {
607 if (env_regex_cmd_ap->AddRegexCommand("^$", "settings show target.env-vars") &&
608 env_regex_cmd_ap->AddRegexCommand("^([A-Za-z_][A-Za-z_0-9]*=.*)$", "settings set target.env-vars %1"))
609 {
610 CommandObjectSP env_regex_cmd_sp(env_regex_cmd_ap.release());
611 m_command_dict[env_regex_cmd_sp->GetCommandName ()] = env_regex_cmd_sp;
612 }
613 }
614
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000615}
616
617int
618CommandInterpreter::GetCommandNamesMatchingPartialString (const char *cmd_str, bool include_aliases,
619 StringList &matches)
620{
621 CommandObject::AddNamesMatchingPartialString (m_command_dict, cmd_str, matches);
622
623 if (include_aliases)
624 {
625 CommandObject::AddNamesMatchingPartialString (m_alias_dict, cmd_str, matches);
626 }
627
628 return matches.GetSize();
629}
630
631CommandObjectSP
632CommandInterpreter::GetCommandSP (const char *cmd_cstr, bool include_aliases, bool exact, StringList *matches)
633{
634 CommandObject::CommandMap::iterator pos;
Greg Claytonc7bece562013-01-25 18:06:21 +0000635 CommandObjectSP command_sp;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000636
637 std::string cmd(cmd_cstr);
638
639 if (HasCommands())
640 {
641 pos = m_command_dict.find(cmd);
642 if (pos != m_command_dict.end())
Greg Claytonc7bece562013-01-25 18:06:21 +0000643 command_sp = pos->second;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000644 }
645
646 if (include_aliases && HasAliases())
647 {
648 pos = m_alias_dict.find(cmd);
649 if (pos != m_alias_dict.end())
Greg Claytonc7bece562013-01-25 18:06:21 +0000650 command_sp = pos->second;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000651 }
652
653 if (HasUserCommands())
654 {
655 pos = m_user_dict.find(cmd);
656 if (pos != m_user_dict.end())
Greg Claytonc7bece562013-01-25 18:06:21 +0000657 command_sp = pos->second;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000658 }
659
Greg Claytonc7bece562013-01-25 18:06:21 +0000660 if (!exact && !command_sp)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000661 {
Jim Ingham279a6c22010-07-06 22:46:59 +0000662 // We will only get into here if we didn't find any exact matches.
663
664 CommandObjectSP user_match_sp, alias_match_sp, real_match_sp;
665
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000666 StringList local_matches;
667 if (matches == NULL)
668 matches = &local_matches;
669
Jim Ingham279a6c22010-07-06 22:46:59 +0000670 unsigned int num_cmd_matches = 0;
671 unsigned int num_alias_matches = 0;
672 unsigned int num_user_matches = 0;
673
674 // Look through the command dictionaries one by one, and if we get only one match from any of
675 // them in toto, then return that, otherwise return an empty CommandObjectSP and the list of matches.
676
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000677 if (HasCommands())
678 {
679 num_cmd_matches = CommandObject::AddNamesMatchingPartialString (m_command_dict, cmd_cstr, *matches);
680 }
681
682 if (num_cmd_matches == 1)
683 {
684 cmd.assign(matches->GetStringAtIndex(0));
685 pos = m_command_dict.find(cmd);
686 if (pos != m_command_dict.end())
Jim Ingham279a6c22010-07-06 22:46:59 +0000687 real_match_sp = pos->second;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000688 }
689
Jim Ingham490ac552010-06-24 20:28:42 +0000690 if (include_aliases && HasAliases())
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000691 {
692 num_alias_matches = CommandObject::AddNamesMatchingPartialString (m_alias_dict, cmd_cstr, *matches);
693
694 }
695
Jim Ingham279a6c22010-07-06 22:46:59 +0000696 if (num_alias_matches == 1)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000697 {
698 cmd.assign(matches->GetStringAtIndex (num_cmd_matches));
699 pos = m_alias_dict.find(cmd);
700 if (pos != m_alias_dict.end())
Jim Ingham279a6c22010-07-06 22:46:59 +0000701 alias_match_sp = pos->second;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000702 }
703
Jim Ingham490ac552010-06-24 20:28:42 +0000704 if (HasUserCommands())
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000705 {
706 num_user_matches = CommandObject::AddNamesMatchingPartialString (m_user_dict, cmd_cstr, *matches);
707 }
708
Jim Ingham279a6c22010-07-06 22:46:59 +0000709 if (num_user_matches == 1)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000710 {
711 cmd.assign (matches->GetStringAtIndex (num_cmd_matches + num_alias_matches));
712
713 pos = m_user_dict.find (cmd);
714 if (pos != m_user_dict.end())
Jim Ingham279a6c22010-07-06 22:46:59 +0000715 user_match_sp = pos->second;
716 }
717
718 // If we got exactly one match, return that, otherwise return the match list.
719
720 if (num_user_matches + num_cmd_matches + num_alias_matches == 1)
721 {
722 if (num_cmd_matches)
723 return real_match_sp;
724 else if (num_alias_matches)
725 return alias_match_sp;
726 else
727 return user_match_sp;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000728 }
729 }
Greg Claytonc7bece562013-01-25 18:06:21 +0000730 else if (matches && command_sp)
Jim Ingham279a6c22010-07-06 22:46:59 +0000731 {
732 matches->AppendString (cmd_cstr);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000733 }
734
735
Greg Claytonc7bece562013-01-25 18:06:21 +0000736 return command_sp;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000737}
738
Greg Claytonde164aa2011-04-20 16:37:46 +0000739bool
740CommandInterpreter::AddCommand (const char *name, const lldb::CommandObjectSP &cmd_sp, bool can_replace)
741{
742 if (name && name[0])
743 {
744 std::string name_sstr(name);
Enrico Granatae00af802012-10-01 17:19:37 +0000745 bool found = (m_command_dict.find (name_sstr) != m_command_dict.end());
746 if (found && !can_replace)
747 return false;
748 if (found && m_command_dict[name_sstr]->IsRemovable() == false)
Enrico Granata21dfcd92012-09-28 23:57:51 +0000749 return false;
Greg Claytonde164aa2011-04-20 16:37:46 +0000750 m_command_dict[name_sstr] = cmd_sp;
751 return true;
752 }
753 return false;
754}
755
Enrico Granata223383e2011-08-16 23:24:13 +0000756bool
Enrico Granata0a305db2011-11-07 22:57:04 +0000757CommandInterpreter::AddUserCommand (std::string name,
Enrico Granata223383e2011-08-16 23:24:13 +0000758 const lldb::CommandObjectSP &cmd_sp,
759 bool can_replace)
760{
Enrico Granata0a305db2011-11-07 22:57:04 +0000761 if (!name.empty())
Enrico Granata223383e2011-08-16 23:24:13 +0000762 {
Enrico Granata0a305db2011-11-07 22:57:04 +0000763
764 const char* name_cstr = name.c_str();
765
766 // do not allow replacement of internal commands
767 if (CommandExists(name_cstr))
Enrico Granata21dfcd92012-09-28 23:57:51 +0000768 {
769 if (can_replace == false)
770 return false;
771 if (m_command_dict[name]->IsRemovable() == false)
772 return false;
773 }
Enrico Granata0a305db2011-11-07 22:57:04 +0000774
Enrico Granata21dfcd92012-09-28 23:57:51 +0000775 if (UserCommandExists(name_cstr))
776 {
777 if (can_replace == false)
778 return false;
779 if (m_user_dict[name]->IsRemovable() == false)
780 return false;
781 }
782
Enrico Granata0a305db2011-11-07 22:57:04 +0000783 m_user_dict[name] = cmd_sp;
Enrico Granata223383e2011-08-16 23:24:13 +0000784 return true;
785 }
786 return false;
787}
Greg Claytonde164aa2011-04-20 16:37:46 +0000788
Jim Ingham279a6c22010-07-06 22:46:59 +0000789CommandObjectSP
790CommandInterpreter::GetCommandSPExact (const char *cmd_cstr, bool include_aliases)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000791{
Caroline Tice472362e2010-12-14 18:51:39 +0000792 Args cmd_words (cmd_cstr); // Break up the command string into words, in case it's a multi-word command.
793 CommandObjectSP ret_val; // Possibly empty return value.
794
795 if (cmd_cstr == NULL)
796 return ret_val;
797
798 if (cmd_words.GetArgumentCount() == 1)
799 return GetCommandSP(cmd_cstr, include_aliases, true, NULL);
800 else
801 {
802 // We have a multi-word command (seemingly), so we need to do more work.
803 // First, get the cmd_obj_sp for the first word in the command.
804 CommandObjectSP cmd_obj_sp = GetCommandSP (cmd_words.GetArgumentAtIndex (0), include_aliases, true, NULL);
805 if (cmd_obj_sp.get() != NULL)
806 {
807 // Loop through the rest of the words in the command (everything passed in was supposed to be part of a
808 // command name), and find the appropriate sub-command SP for each command word....
809 size_t end = cmd_words.GetArgumentCount();
810 for (size_t j= 1; j < end; ++j)
811 {
812 if (cmd_obj_sp->IsMultiwordObject())
813 {
Greg Clayton998255b2012-10-13 02:07:45 +0000814 cmd_obj_sp = cmd_obj_sp->GetSubcommandSP (cmd_words.GetArgumentAtIndex (j));
Caroline Tice472362e2010-12-14 18:51:39 +0000815 if (cmd_obj_sp.get() == NULL)
816 // The sub-command name was invalid. Fail and return the empty 'ret_val'.
817 return ret_val;
818 }
819 else
820 // We have more words in the command name, but we don't have a multiword object. Fail and return
821 // empty 'ret_val'.
822 return ret_val;
823 }
824 // We successfully looped through all the command words and got valid command objects for them. Assign the
825 // last object retrieved to 'ret_val'.
826 ret_val = cmd_obj_sp;
827 }
828 }
829 return ret_val;
Jim Ingham279a6c22010-07-06 22:46:59 +0000830}
831
832CommandObject *
833CommandInterpreter::GetCommandObjectExact (const char *cmd_cstr, bool include_aliases)
834{
835 return GetCommandSPExact (cmd_cstr, include_aliases).get();
836}
837
838CommandObject *
839CommandInterpreter::GetCommandObject (const char *cmd_cstr, StringList *matches)
840{
841 CommandObject *command_obj = GetCommandSP (cmd_cstr, false, true, matches).get();
842
843 // If we didn't find an exact match to the command string in the commands, look in
844 // the aliases.
845
846 if (command_obj == NULL)
847 {
848 command_obj = GetCommandSP (cmd_cstr, true, true, matches).get();
849 }
850
Matt Kopec038ff812013-04-23 16:17:32 +0000851 // If there wasn't an exact match among the aliases, look for an inexact match
852 // in just the commands.
Jim Ingham279a6c22010-07-06 22:46:59 +0000853
854 if (command_obj == NULL)
Matt Kopec038ff812013-04-23 16:17:32 +0000855 command_obj = GetCommandSP(cmd_cstr, false, false, matches).get();
856
857 // Finally, if there wasn't an inexact match among the commands, look for an inexact
858 // match in both the commands and aliases.
859 if (command_obj == NULL)
Jim Ingham279a6c22010-07-06 22:46:59 +0000860 command_obj = GetCommandSP(cmd_cstr, true, false, matches).get();
861
862 return command_obj;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000863}
864
865bool
866CommandInterpreter::CommandExists (const char *cmd)
867{
868 return m_command_dict.find(cmd) != m_command_dict.end();
869}
870
871bool
Caroline Ticeca90c472011-05-06 21:37:15 +0000872CommandInterpreter::ProcessAliasOptionsArgs (lldb::CommandObjectSP &cmd_obj_sp,
873 const char *options_args,
874 OptionArgVectorSP &option_arg_vector_sp)
875{
876 bool success = true;
877 OptionArgVector *option_arg_vector = option_arg_vector_sp.get();
878
879 if (!options_args || (strlen (options_args) < 1))
880 return true;
881
882 std::string options_string (options_args);
883 Args args (options_args);
884 CommandReturnObject result;
885 // Check to see if the command being aliased can take any command options.
886 Options *options = cmd_obj_sp->GetOptions ();
887 if (options)
888 {
889 // See if any options were specified as part of the alias; if so, handle them appropriately.
890 options->NotifyOptionParsingStarting ();
891 args.Unshift ("dummy_arg");
892 args.ParseAliasOptions (*options, result, option_arg_vector, options_string);
893 args.Shift ();
894 if (result.Succeeded())
895 options->VerifyPartialOptions (result);
896 if (!result.Succeeded() && result.GetStatus() != lldb::eReturnStatusStarted)
897 {
898 result.AppendError ("Unable to create requested alias.\n");
899 return false;
900 }
901 }
902
Greg Clayton5521f992011-10-28 21:38:01 +0000903 if (!options_string.empty())
Caroline Ticeca90c472011-05-06 21:37:15 +0000904 {
905 if (cmd_obj_sp->WantsRawCommandString ())
906 option_arg_vector->push_back (OptionArgPair ("<argument>",
907 OptionArgValue (-1,
908 options_string)));
909 else
910 {
Greg Claytonc7bece562013-01-25 18:06:21 +0000911 const size_t argc = args.GetArgumentCount();
Caroline Ticeca90c472011-05-06 21:37:15 +0000912 for (size_t i = 0; i < argc; ++i)
913 if (strcmp (args.GetArgumentAtIndex (i), "") != 0)
914 option_arg_vector->push_back
915 (OptionArgPair ("<argument>",
916 OptionArgValue (-1,
917 std::string (args.GetArgumentAtIndex (i)))));
918 }
919 }
920
921 return success;
922}
923
924bool
Jim Ingham298f3782013-04-03 00:25:49 +0000925CommandInterpreter::GetAliasFullName (const char *cmd, std::string &full_name)
926{
927 bool exact_match = (m_alias_dict.find(cmd) != m_alias_dict.end());
928 if (exact_match)
929 {
930 full_name.assign(cmd);
931 return exact_match;
932 }
933 else
934 {
935 StringList matches;
936 size_t num_alias_matches;
937 num_alias_matches = CommandObject::AddNamesMatchingPartialString (m_alias_dict, cmd, matches);
938 if (num_alias_matches == 1)
939 {
940 // Make sure this isn't shadowing a command in the regular command space:
941 StringList regular_matches;
942 const bool include_aliases = false;
943 const bool exact = false;
944 CommandObjectSP cmd_obj_sp(GetCommandSP (cmd, include_aliases, exact, &regular_matches));
945 if (cmd_obj_sp || regular_matches.GetSize() > 0)
946 return false;
947 else
948 {
949 full_name.assign (matches.GetStringAtIndex(0));
950 return true;
951 }
952 }
953 else
954 return false;
955 }
956}
957
958bool
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000959CommandInterpreter::AliasExists (const char *cmd)
960{
961 return m_alias_dict.find(cmd) != m_alias_dict.end();
962}
963
964bool
965CommandInterpreter::UserCommandExists (const char *cmd)
966{
967 return m_user_dict.find(cmd) != m_user_dict.end();
968}
969
970void
971CommandInterpreter::AddAlias (const char *alias_name, CommandObjectSP& command_obj_sp)
972{
Jim Ingham279a6c22010-07-06 22:46:59 +0000973 command_obj_sp->SetIsAlias (true);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000974 m_alias_dict[alias_name] = command_obj_sp;
975}
976
977bool
978CommandInterpreter::RemoveAlias (const char *alias_name)
979{
980 CommandObject::CommandMap::iterator pos = m_alias_dict.find(alias_name);
981 if (pos != m_alias_dict.end())
982 {
983 m_alias_dict.erase(pos);
984 return true;
985 }
986 return false;
987}
988bool
989CommandInterpreter::RemoveUser (const char *alias_name)
990{
991 CommandObject::CommandMap::iterator pos = m_user_dict.find(alias_name);
992 if (pos != m_user_dict.end())
993 {
994 m_user_dict.erase(pos);
995 return true;
996 }
997 return false;
998}
999
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001000void
1001CommandInterpreter::GetAliasHelp (const char *alias_name, const char *command_name, StreamString &help_string)
1002{
1003 help_string.Printf ("'%s", command_name);
1004 OptionArgVectorSP option_arg_vector_sp = GetAliasOptions (alias_name);
1005
Sean Callanan9a028512012-08-09 00:50:26 +00001006 if (option_arg_vector_sp)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001007 {
1008 OptionArgVector *options = option_arg_vector_sp.get();
1009 for (int i = 0; i < options->size(); ++i)
1010 {
1011 OptionArgPair cur_option = (*options)[i];
1012 std::string opt = cur_option.first;
Caroline Ticed9d63362010-12-07 19:58:26 +00001013 OptionArgValue value_pair = cur_option.second;
1014 std::string value = value_pair.second;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001015 if (opt.compare("<argument>") == 0)
1016 {
1017 help_string.Printf (" %s", value.c_str());
1018 }
1019 else
1020 {
1021 help_string.Printf (" %s", opt.c_str());
1022 if ((value.compare ("<no-argument>") != 0)
1023 && (value.compare ("<need-argument") != 0))
1024 {
1025 help_string.Printf (" %s", value.c_str());
1026 }
1027 }
1028 }
1029 }
1030
1031 help_string.Printf ("'");
1032}
1033
Greg Clayton12fc3e02010-08-26 22:05:43 +00001034size_t
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001035CommandInterpreter::FindLongestCommandWord (CommandObject::CommandMap &dict)
1036{
1037 CommandObject::CommandMap::const_iterator pos;
Greg Clayton12fc3e02010-08-26 22:05:43 +00001038 CommandObject::CommandMap::const_iterator end = dict.end();
1039 size_t max_len = 0;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001040
Greg Clayton12fc3e02010-08-26 22:05:43 +00001041 for (pos = dict.begin(); pos != end; ++pos)
1042 {
1043 size_t len = pos->first.size();
1044 if (max_len < len)
1045 max_len = len;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001046 }
Greg Clayton12fc3e02010-08-26 22:05:43 +00001047 return max_len;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001048}
1049
1050void
Enrico Granata223383e2011-08-16 23:24:13 +00001051CommandInterpreter::GetHelp (CommandReturnObject &result,
Enrico Granata08633ee2011-09-09 17:49:36 +00001052 uint32_t cmd_types)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001053{
1054 CommandObject::CommandMap::const_iterator pos;
Greg Claytonc7bece562013-01-25 18:06:21 +00001055 size_t max_len = FindLongestCommandWord (m_command_dict);
Enrico Granata223383e2011-08-16 23:24:13 +00001056
1057 if ( (cmd_types & eCommandTypesBuiltin) == eCommandTypesBuiltin )
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001058 {
Enrico Granata223383e2011-08-16 23:24:13 +00001059
1060 result.AppendMessage("The following is a list of built-in, permanent debugger commands:");
1061 result.AppendMessage("");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001062
Enrico Granata223383e2011-08-16 23:24:13 +00001063 for (pos = m_command_dict.begin(); pos != m_command_dict.end(); ++pos)
1064 {
1065 OutputFormattedHelpText (result.GetOutputStream(), pos->first.c_str(), "--", pos->second->GetHelp(),
1066 max_len);
1067 }
1068 result.AppendMessage("");
1069
1070 }
1071
Greg Clayton5521f992011-10-28 21:38:01 +00001072 if (!m_alias_dict.empty() && ( (cmd_types & eCommandTypesAliases) == eCommandTypesAliases ))
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001073 {
Jim Ingham49e80a12010-10-22 18:47:16 +00001074 result.AppendMessage("The following is a list of your current command abbreviations "
Johnny Chenb89982d2011-04-21 00:39:18 +00001075 "(see 'help command alias' for more info):");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001076 result.AppendMessage("");
Greg Clayton12fc3e02010-08-26 22:05:43 +00001077 max_len = FindLongestCommandWord (m_alias_dict);
1078
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001079 for (pos = m_alias_dict.begin(); pos != m_alias_dict.end(); ++pos)
1080 {
1081 StreamString sstr;
1082 StreamString translation_and_help;
1083 std::string entry_name = pos->first;
1084 std::string second_entry = pos->second.get()->GetCommandName();
1085 GetAliasHelp (pos->first.c_str(), pos->second->GetCommandName(), sstr);
1086
1087 translation_and_help.Printf ("(%s) %s", sstr.GetData(), pos->second->GetHelp());
1088 OutputFormattedHelpText (result.GetOutputStream(), pos->first.c_str(), "--",
1089 translation_and_help.GetData(), max_len);
1090 }
1091 result.AppendMessage("");
1092 }
1093
Greg Clayton5521f992011-10-28 21:38:01 +00001094 if (!m_user_dict.empty() && ( (cmd_types & eCommandTypesUserDef) == eCommandTypesUserDef ))
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001095 {
1096 result.AppendMessage ("The following is a list of your current user-defined commands:");
1097 result.AppendMessage("");
Enrico Granata223383e2011-08-16 23:24:13 +00001098 max_len = FindLongestCommandWord (m_user_dict);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001099 for (pos = m_user_dict.begin(); pos != m_user_dict.end(); ++pos)
1100 {
Enrico Granata223383e2011-08-16 23:24:13 +00001101 OutputFormattedHelpText (result.GetOutputStream(), pos->first.c_str(), "--", pos->second->GetHelp(),
1102 max_len);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001103 }
1104 result.AppendMessage("");
1105 }
1106
1107 result.AppendMessage("For more information on any particular command, try 'help <command-name>'.");
1108}
1109
Caroline Tice844d2302010-12-09 22:52:49 +00001110CommandObject *
1111CommandInterpreter::GetCommandObjectForCommand (std::string &command_string)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001112{
Caroline Tice844d2302010-12-09 22:52:49 +00001113 // This function finds the final, lowest-level, alias-resolved command object whose 'Execute' function will
1114 // eventually be invoked by the given command line.
1115
1116 CommandObject *cmd_obj = NULL;
1117 std::string white_space (" \t\v");
1118 size_t start = command_string.find_first_not_of (white_space);
1119 size_t end = 0;
1120 bool done = false;
1121 while (!done)
1122 {
1123 if (start != std::string::npos)
1124 {
1125 // Get the next word from command_string.
1126 end = command_string.find_first_of (white_space, start);
1127 if (end == std::string::npos)
1128 end = command_string.size();
1129 std::string cmd_word = command_string.substr (start, end - start);
1130
1131 if (cmd_obj == NULL)
1132 // Since cmd_obj is NULL we are on our first time through this loop. Check to see if cmd_word is a valid
1133 // command or alias.
1134 cmd_obj = GetCommandObject (cmd_word.c_str());
1135 else if (cmd_obj->IsMultiwordObject ())
1136 {
1137 // 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 +00001138 CommandObject *sub_cmd_obj = cmd_obj->GetSubcommandObject (cmd_word.c_str());
Caroline Tice844d2302010-12-09 22:52:49 +00001139 if (sub_cmd_obj)
1140 cmd_obj = sub_cmd_obj;
1141 else // cmd_word was not a valid sub-command word, so we are donee
1142 done = true;
1143 }
1144 else
1145 // We have a cmd_obj and it is not a multi-word object, so we are done.
1146 done = true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001147
Caroline Tice844d2302010-12-09 22:52:49 +00001148 // If we didn't find a valid command object, or our command object is not a multi-word object, or
1149 // we are at the end of the command_string, then we are done. Otherwise, find the start of the
1150 // next word.
1151
1152 if (!cmd_obj || !cmd_obj->IsMultiwordObject() || end >= command_string.size())
1153 done = true;
1154 else
1155 start = command_string.find_first_not_of (white_space, end);
1156 }
1157 else
1158 // Unable to find any more words.
1159 done = true;
1160 }
1161
1162 if (end == command_string.size())
1163 command_string.clear();
1164 else
1165 command_string = command_string.substr(end);
1166
1167 return cmd_obj;
1168}
1169
Greg Clayton51964162011-10-25 00:36:27 +00001170static const char *k_white_space = " \t\v";
Greg Clayton5521f992011-10-28 21:38:01 +00001171static const char *k_valid_command_chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_";
Greg Clayton51964162011-10-25 00:36:27 +00001172static void
1173StripLeadingSpaces (std::string &s)
Caroline Tice844d2302010-12-09 22:52:49 +00001174{
Greg Clayton51964162011-10-25 00:36:27 +00001175 if (!s.empty())
Caroline Tice844d2302010-12-09 22:52:49 +00001176 {
Greg Clayton51964162011-10-25 00:36:27 +00001177 size_t pos = s.find_first_not_of (k_white_space);
1178 if (pos == std::string::npos)
1179 s.clear();
1180 else if (pos == 0)
1181 return;
1182 s.erase (0, pos);
1183 }
1184}
1185
Greg Clayton93c62e62011-11-09 23:25:03 +00001186static size_t
1187FindArgumentTerminator (const std::string &s)
1188{
Greg Clayton93c62e62011-11-09 23:25:03 +00001189 const size_t s_len = s.size();
1190 size_t offset = 0;
1191 while (offset < s_len)
1192 {
1193 size_t pos = s.find ("--", offset);
1194 if (pos == std::string::npos)
1195 break;
1196 if (pos > 0)
1197 {
1198 if (isspace(s[pos-1]))
1199 {
1200 // Check if the string ends "\s--" (where \s is a space character)
1201 // or if we have "\s--\s".
1202 if ((pos + 2 >= s_len) || isspace(s[pos+2]))
1203 {
Greg Clayton93c62e62011-11-09 23:25:03 +00001204 return pos;
1205 }
1206 }
1207 }
1208 offset = pos + 2;
1209 }
Greg Clayton93c62e62011-11-09 23:25:03 +00001210 return std::string::npos;
1211}
1212
Greg Clayton51964162011-10-25 00:36:27 +00001213static bool
Greg Clayton5521f992011-10-28 21:38:01 +00001214ExtractCommand (std::string &command_string, std::string &command, std::string &suffix, char &quote_char)
Greg Clayton51964162011-10-25 00:36:27 +00001215{
Greg Clayton5521f992011-10-28 21:38:01 +00001216 command.clear();
1217 suffix.clear();
Greg Clayton51964162011-10-25 00:36:27 +00001218 StripLeadingSpaces (command_string);
1219
1220 bool result = false;
1221 quote_char = '\0';
1222
1223 if (!command_string.empty())
1224 {
1225 const char first_char = command_string[0];
1226 if (first_char == '\'' || first_char == '"')
Caroline Tice844d2302010-12-09 22:52:49 +00001227 {
Greg Clayton51964162011-10-25 00:36:27 +00001228 quote_char = first_char;
1229 const size_t end_quote_pos = command_string.find (quote_char, 1);
1230 if (end_quote_pos == std::string::npos)
Caroline Tice2b5e8502011-05-11 16:07:06 +00001231 {
Greg Clayton5521f992011-10-28 21:38:01 +00001232 command.swap (command_string);
Greg Clayton51964162011-10-25 00:36:27 +00001233 command_string.erase ();
Caroline Tice2b5e8502011-05-11 16:07:06 +00001234 }
1235 else
1236 {
Greg Clayton5521f992011-10-28 21:38:01 +00001237 command.assign (command_string, 1, end_quote_pos - 1);
Greg Clayton51964162011-10-25 00:36:27 +00001238 if (end_quote_pos + 1 < command_string.size())
1239 command_string.erase (0, command_string.find_first_not_of (k_white_space, end_quote_pos + 1));
1240 else
1241 command_string.erase ();
Caroline Tice2b5e8502011-05-11 16:07:06 +00001242 }
Caroline Tice844d2302010-12-09 22:52:49 +00001243 }
1244 else
1245 {
Greg Clayton51964162011-10-25 00:36:27 +00001246 const size_t first_space_pos = command_string.find_first_of (k_white_space);
1247 if (first_space_pos == std::string::npos)
Caroline Tice2b5e8502011-05-11 16:07:06 +00001248 {
Greg Clayton5521f992011-10-28 21:38:01 +00001249 command.swap (command_string);
Greg Clayton51964162011-10-25 00:36:27 +00001250 command_string.erase();
Caroline Tice2b5e8502011-05-11 16:07:06 +00001251 }
1252 else
1253 {
Greg Clayton5521f992011-10-28 21:38:01 +00001254 command.assign (command_string, 0, first_space_pos);
1255 command_string.erase(0, command_string.find_first_not_of (k_white_space, first_space_pos));
Caroline Tice2b5e8502011-05-11 16:07:06 +00001256 }
Caroline Tice844d2302010-12-09 22:52:49 +00001257 }
Greg Clayton51964162011-10-25 00:36:27 +00001258 result = true;
Caroline Tice844d2302010-12-09 22:52:49 +00001259 }
Greg Clayton5521f992011-10-28 21:38:01 +00001260
1261
1262 if (!command.empty())
1263 {
1264 // actual commands can't start with '-' or '_'
1265 if (command[0] != '-' && command[0] != '_')
1266 {
1267 size_t pos = command.find_first_not_of(k_valid_command_chars);
1268 if (pos > 0 && pos != std::string::npos)
1269 {
1270 suffix.assign (command.begin() + pos, command.end());
1271 command.erase (pos);
1272 }
1273 }
1274 }
Greg Clayton51964162011-10-25 00:36:27 +00001275
1276 return result;
Caroline Tice844d2302010-12-09 22:52:49 +00001277}
1278
Greg Clayton5521f992011-10-28 21:38:01 +00001279CommandObject *
1280CommandInterpreter::BuildAliasResult (const char *alias_name,
1281 std::string &raw_input_string,
1282 std::string &alias_result,
1283 CommandReturnObject &result)
Caroline Tice844d2302010-12-09 22:52:49 +00001284{
Greg Clayton5521f992011-10-28 21:38:01 +00001285 CommandObject *alias_cmd_obj = NULL;
Caroline Tice844d2302010-12-09 22:52:49 +00001286 Args cmd_args (raw_input_string.c_str());
1287 alias_cmd_obj = GetCommandObject (alias_name);
1288 StreamString result_str;
1289
1290 if (alias_cmd_obj)
1291 {
1292 std::string alias_name_str = alias_name;
1293 if ((cmd_args.GetArgumentCount() == 0)
1294 || (alias_name_str.compare (cmd_args.GetArgumentAtIndex(0)) != 0))
1295 cmd_args.Unshift (alias_name);
1296
1297 result_str.Printf ("%s", alias_cmd_obj->GetCommandName ());
1298 OptionArgVectorSP option_arg_vector_sp = GetAliasOptions (alias_name);
1299
1300 if (option_arg_vector_sp.get())
1301 {
1302 OptionArgVector *option_arg_vector = option_arg_vector_sp.get();
1303
1304 for (int i = 0; i < option_arg_vector->size(); ++i)
1305 {
1306 OptionArgPair option_pair = (*option_arg_vector)[i];
1307 OptionArgValue value_pair = option_pair.second;
1308 int value_type = value_pair.first;
1309 std::string option = option_pair.first;
1310 std::string value = value_pair.second;
1311 if (option.compare ("<argument>") == 0)
1312 result_str.Printf (" %s", value.c_str());
1313 else
1314 {
1315 result_str.Printf (" %s", option.c_str());
1316 if (value_type != optional_argument)
1317 result_str.Printf (" ");
1318 if (value.compare ("<no_argument>") != 0)
1319 {
1320 int index = GetOptionArgumentPosition (value.c_str());
1321 if (index == 0)
1322 result_str.Printf ("%s", value.c_str());
1323 else if (index >= cmd_args.GetArgumentCount())
1324 {
1325
1326 result.AppendErrorWithFormat
1327 ("Not enough arguments provided; you need at least %d arguments to use this alias.\n",
1328 index);
1329 result.SetStatus (eReturnStatusFailed);
Greg Clayton5521f992011-10-28 21:38:01 +00001330 return alias_cmd_obj;
Caroline Tice844d2302010-12-09 22:52:49 +00001331 }
1332 else
1333 {
1334 size_t strpos = raw_input_string.find (cmd_args.GetArgumentAtIndex (index));
1335 if (strpos != std::string::npos)
1336 raw_input_string = raw_input_string.erase (strpos,
1337 strlen (cmd_args.GetArgumentAtIndex (index)));
1338 result_str.Printf ("%s", cmd_args.GetArgumentAtIndex (index));
1339 }
1340 }
1341 }
1342 }
1343 }
1344
1345 alias_result = result_str.GetData();
1346 }
Greg Clayton5521f992011-10-28 21:38:01 +00001347 return alias_cmd_obj;
Caroline Tice844d2302010-12-09 22:52:49 +00001348}
1349
Greg Clayton5a314712011-10-14 07:41:33 +00001350Error
1351CommandInterpreter::PreprocessCommand (std::string &command)
1352{
1353 // The command preprocessor needs to do things to the command
1354 // line before any parsing of arguments or anything else is done.
1355 // The only current stuff that gets proprocessed is anyting enclosed
1356 // in backtick ('`') characters is evaluated as an expression and
1357 // the result of the expression must be a scalar that can be substituted
1358 // into the command. An example would be:
1359 // (lldb) memory read `$rsp + 20`
1360 Error error; // Error for any expressions that might not evaluate
1361 size_t start_backtick;
1362 size_t pos = 0;
1363 while ((start_backtick = command.find ('`', pos)) != std::string::npos)
1364 {
1365 if (start_backtick > 0 && command[start_backtick-1] == '\\')
1366 {
1367 // The backtick was preceeded by a '\' character, remove the slash
1368 // and don't treat the backtick as the start of an expression
1369 command.erase(start_backtick-1, 1);
1370 // No need to add one to start_backtick since we just deleted a char
1371 pos = start_backtick;
1372 }
1373 else
1374 {
1375 const size_t expr_content_start = start_backtick + 1;
1376 const size_t end_backtick = command.find ('`', expr_content_start);
1377 if (end_backtick == std::string::npos)
1378 return error;
1379 else if (end_backtick == expr_content_start)
1380 {
1381 // Empty expression (two backticks in a row)
1382 command.erase (start_backtick, 2);
1383 }
1384 else
1385 {
1386 std::string expr_str (command, expr_content_start, end_backtick - expr_content_start);
1387
Greg Clayton4e0fe8a2012-07-12 20:32:19 +00001388 ExecutionContext exe_ctx(GetExecutionContext());
1389 Target *target = exe_ctx.GetTargetPtr();
Johnny Chen51ea0ad2011-10-29 00:21:50 +00001390 // Get a dummy target to allow for calculator mode while processing backticks.
1391 // This also helps break the infinite loop caused when target is null.
1392 if (!target)
1393 target = Host::GetDummyTarget(GetDebugger()).get();
Greg Clayton5a314712011-10-14 07:41:33 +00001394 if (target)
1395 {
Greg Clayton5a314712011-10-14 07:41:33 +00001396 ValueObjectSP expr_result_valobj_sp;
Enrico Granatad4439aa2012-09-05 20:41:26 +00001397
Jim Ingham35e1bda2012-10-16 21:41:58 +00001398 EvaluateExpressionOptions options;
Enrico Granatad4439aa2012-09-05 20:41:26 +00001399 options.SetCoerceToId(false)
1400 .SetUnwindOnError(true)
Jim Ingham184e9812013-01-15 02:47:48 +00001401 .SetIgnoreBreakpoints(true)
Enrico Granatad4439aa2012-09-05 20:41:26 +00001402 .SetKeepInMemory(false)
Jim Ingham35e1bda2012-10-16 21:41:58 +00001403 .SetRunOthers(true)
1404 .SetTimeoutUsec(0);
Enrico Granatad4439aa2012-09-05 20:41:26 +00001405
Greg Clayton5a314712011-10-14 07:41:33 +00001406 ExecutionResults expr_result = target->EvaluateExpression (expr_str.c_str(),
Enrico Granatad4439aa2012-09-05 20:41:26 +00001407 exe_ctx.GetFramePtr(),
Enrico Granata3372f582012-07-16 23:10:35 +00001408 expr_result_valobj_sp,
Enrico Granatad4439aa2012-09-05 20:41:26 +00001409 options);
1410
Greg Clayton5a314712011-10-14 07:41:33 +00001411 if (expr_result == eExecutionCompleted)
1412 {
1413 Scalar scalar;
1414 if (expr_result_valobj_sp->ResolveValue (scalar))
1415 {
1416 command.erase (start_backtick, end_backtick - start_backtick + 1);
1417 StreamString value_strm;
1418 const bool show_type = false;
1419 scalar.GetValue (&value_strm, show_type);
1420 size_t value_string_size = value_strm.GetSize();
1421 if (value_string_size)
1422 {
1423 command.insert (start_backtick, value_strm.GetData(), value_string_size);
1424 pos = start_backtick + value_string_size;
1425 continue;
1426 }
1427 else
1428 {
1429 error.SetErrorStringWithFormat("expression value didn't result in a scalar value for the expression '%s'", expr_str.c_str());
1430 }
1431 }
1432 else
1433 {
1434 error.SetErrorStringWithFormat("expression value didn't result in a scalar value for the expression '%s'", expr_str.c_str());
1435 }
1436 }
1437 else
1438 {
1439 if (expr_result_valobj_sp)
1440 error = expr_result_valobj_sp->GetError();
1441 if (error.Success())
1442 {
1443
1444 switch (expr_result)
1445 {
1446 case eExecutionSetupError:
1447 error.SetErrorStringWithFormat("expression setup error for the expression '%s'", expr_str.c_str());
1448 break;
1449 case eExecutionCompleted:
1450 break;
1451 case eExecutionDiscarded:
1452 error.SetErrorStringWithFormat("expression discarded for the expression '%s'", expr_str.c_str());
1453 break;
1454 case eExecutionInterrupted:
1455 error.SetErrorStringWithFormat("expression interrupted for the expression '%s'", expr_str.c_str());
1456 break;
Jim Ingham184e9812013-01-15 02:47:48 +00001457 case eExecutionHitBreakpoint:
1458 error.SetErrorStringWithFormat("expression hit breakpoint for the expression '%s'", expr_str.c_str());
1459 break;
Greg Clayton5a314712011-10-14 07:41:33 +00001460 case eExecutionTimedOut:
1461 error.SetErrorStringWithFormat("expression timed out for the expression '%s'", expr_str.c_str());
1462 break;
1463 }
1464 }
1465 }
1466 }
1467 }
1468 if (error.Fail())
1469 break;
1470 }
1471 }
1472 return error;
1473}
1474
1475
Caroline Tice844d2302010-12-09 22:52:49 +00001476bool
1477CommandInterpreter::HandleCommand (const char *command_line,
Enrico Granata5f5ab602012-05-31 01:09:06 +00001478 LazyBool lazy_add_to_history,
Caroline Tice844d2302010-12-09 22:52:49 +00001479 CommandReturnObject &result,
Jim Inghame16c50a2011-02-18 00:54:25 +00001480 ExecutionContext *override_context,
Johnny Chen80fdd7c2011-10-05 00:42:59 +00001481 bool repeat_on_empty_command,
1482 bool no_context_switching)
Jim Inghame16c50a2011-02-18 00:54:25 +00001483
Caroline Tice844d2302010-12-09 22:52:49 +00001484{
Jim Inghame16c50a2011-02-18 00:54:25 +00001485
Caroline Tice844d2302010-12-09 22:52:49 +00001486 bool done = false;
1487 CommandObject *cmd_obj = NULL;
Caroline Tice844d2302010-12-09 22:52:49 +00001488 bool wants_raw_input = false;
1489 std::string command_string (command_line);
Jim Inghama5a97eb2011-07-12 03:12:18 +00001490 std::string original_command_string (command_line);
Caroline Tice844d2302010-12-09 22:52:49 +00001491
Greg Clayton5160ce52013-03-27 23:08:40 +00001492 Log *log (lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_COMMANDS));
Greg Clayton2d95dc9b2010-11-10 04:57:04 +00001493 Host::SetCrashDescriptionWithFormat ("HandleCommand(command = \"%s\")", command_line);
1494
1495 // Make a scoped cleanup object that will clear the crash description string
1496 // on exit of this function.
Enrico Granataf9fa6ee2011-07-12 00:18:11 +00001497 lldb_utility::CleanUp <const char *> crash_description_cleanup(NULL, Host::SetCrashDescription);
Greg Clayton2d95dc9b2010-11-10 04:57:04 +00001498
Caroline Tice844d2302010-12-09 22:52:49 +00001499 if (log)
1500 log->Printf ("Processing command: %s", command_line);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001501
Jim Ingham30244832010-11-04 23:08:45 +00001502 Timer scoped_timer (__PRETTY_FUNCTION__, "Handling command: %s.", command_line);
1503
Johnny Chen80fdd7c2011-10-05 00:42:59 +00001504 if (!no_context_switching)
1505 UpdateExecutionContext (override_context);
Enrico Granata5f5ab602012-05-31 01:09:06 +00001506
1507 // <rdar://problem/11328896>
1508 bool add_to_history;
1509 if (lazy_add_to_history == eLazyBoolCalculate)
1510 add_to_history = (m_command_source_depth == 0);
1511 else
1512 add_to_history = (lazy_add_to_history == eLazyBoolYes);
1513
Jim Inghame16c50a2011-02-18 00:54:25 +00001514 bool empty_command = false;
1515 bool comment_command = false;
1516 if (command_string.empty())
1517 empty_command = true;
1518 else
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001519 {
Jim Inghame16c50a2011-02-18 00:54:25 +00001520 const char *k_space_characters = "\t\n\v\f\r ";
1521
1522 size_t non_space = command_string.find_first_not_of (k_space_characters);
1523 // Check for empty line or comment line (lines whose first
1524 // non-space character is the comment character for this interpreter)
1525 if (non_space == std::string::npos)
1526 empty_command = true;
1527 else if (command_string[non_space] == m_comment_char)
1528 comment_command = true;
Jim Inghama5a97eb2011-07-12 03:12:18 +00001529 else if (command_string[non_space] == m_repeat_char)
1530 {
1531 const char *history_string = FindHistoryString (command_string.c_str() + non_space);
1532 if (history_string == NULL)
1533 {
1534 result.AppendErrorWithFormat ("Could not find entry: %s in history", command_string.c_str());
1535 result.SetStatus(eReturnStatusFailed);
1536 return false;
1537 }
1538 add_to_history = false;
1539 command_string = history_string;
1540 original_command_string = history_string;
1541 }
Jim Inghame16c50a2011-02-18 00:54:25 +00001542 }
1543
1544 if (empty_command)
1545 {
1546 if (repeat_on_empty_command)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001547 {
Jim Inghame16c50a2011-02-18 00:54:25 +00001548 if (m_command_history.empty())
1549 {
1550 result.AppendError ("empty command");
1551 result.SetStatus(eReturnStatusFailed);
1552 return false;
1553 }
1554 else
1555 {
1556 command_line = m_repeat_command.c_str();
1557 command_string = command_line;
Jim Inghama5a97eb2011-07-12 03:12:18 +00001558 original_command_string = command_line;
Jim Inghame16c50a2011-02-18 00:54:25 +00001559 if (m_repeat_command.empty())
1560 {
1561 result.AppendErrorWithFormat("No auto repeat.\n");
1562 result.SetStatus (eReturnStatusFailed);
1563 return false;
1564 }
1565 }
1566 add_to_history = false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001567 }
1568 else
1569 {
Jim Inghame16c50a2011-02-18 00:54:25 +00001570 result.SetStatus (eReturnStatusSuccessFinishNoResult);
1571 return true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001572 }
Jim Inghame16c50a2011-02-18 00:54:25 +00001573 }
1574 else if (comment_command)
1575 {
1576 result.SetStatus (eReturnStatusSuccessFinishNoResult);
1577 return true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001578 }
Caroline Tice2b5e8502011-05-11 16:07:06 +00001579
Greg Clayton5a314712011-10-14 07:41:33 +00001580
1581 Error error (PreprocessCommand (command_string));
1582
1583 if (error.Fail())
1584 {
1585 result.AppendError (error.AsCString());
1586 result.SetStatus(eReturnStatusFailed);
1587 return false;
1588 }
Caroline Tice844d2302010-12-09 22:52:49 +00001589 // Phase 1.
1590
1591 // Before we do ANY kind of argument processing, etc. we need to figure out what the real/final command object
1592 // is for the specified command, and whether or not it wants raw input. This gets complicated by the fact that
1593 // the user could have specified an alias, and in translating the alias there may also be command options and/or
1594 // even data (including raw text strings) that need to be found and inserted into the command line as part of
1595 // 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 +00001596 // object whose Execute method will actually be called; 2). a revised command string, with all substitutions &
Caroline Tice844d2302010-12-09 22:52:49 +00001597 // replacements taken care of; 3). whether or not the Execute function wants raw input or not.
Caroline Ticed9d63362010-12-07 19:58:26 +00001598
Caroline Tice844d2302010-12-09 22:52:49 +00001599 StreamString revised_command_line;
Caroline Tice01274c02010-12-11 08:16:56 +00001600 size_t actual_cmd_name_len = 0;
Greg Clayton5521f992011-10-28 21:38:01 +00001601 std::string next_word;
Filipe Cabecinhasaf1537f2012-05-16 23:25:54 +00001602 StringList matches;
Caroline Tice844d2302010-12-09 22:52:49 +00001603 while (!done)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001604 {
Caroline Tice2b5e8502011-05-11 16:07:06 +00001605 char quote_char = '\0';
Greg Clayton5521f992011-10-28 21:38:01 +00001606 std::string suffix;
1607 ExtractCommand (command_string, next_word, suffix, quote_char);
1608 if (cmd_obj == NULL)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001609 {
Jim Ingham298f3782013-04-03 00:25:49 +00001610 std::string full_name;
1611 if (GetAliasFullName(next_word.c_str(), full_name))
Caroline Tice472362e2010-12-14 18:51:39 +00001612 {
Greg Clayton5521f992011-10-28 21:38:01 +00001613 std::string alias_result;
Jim Ingham298f3782013-04-03 00:25:49 +00001614 cmd_obj = BuildAliasResult (full_name.c_str(), command_string, alias_result, result);
Greg Clayton5521f992011-10-28 21:38:01 +00001615 revised_command_line.Printf ("%s", alias_result.c_str());
1616 if (cmd_obj)
1617 {
1618 wants_raw_input = cmd_obj->WantsRawCommandString ();
1619 actual_cmd_name_len = strlen (cmd_obj->GetCommandName());
1620 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001621 }
1622 else
1623 {
Filipe Cabecinhasaf1537f2012-05-16 23:25:54 +00001624 cmd_obj = GetCommandObject (next_word.c_str(), &matches);
Greg Clayton5521f992011-10-28 21:38:01 +00001625 if (cmd_obj)
1626 {
1627 actual_cmd_name_len += next_word.length();
1628 revised_command_line.Printf ("%s", next_word.c_str());
1629 wants_raw_input = cmd_obj->WantsRawCommandString ();
1630 }
Caroline Tice2b5e8502011-05-11 16:07:06 +00001631 else
Greg Clayton5521f992011-10-28 21:38:01 +00001632 {
1633 revised_command_line.Printf ("%s", next_word.c_str());
1634 }
Caroline Tice844d2302010-12-09 22:52:49 +00001635 }
1636 }
1637 else
1638 {
Greg Clayton5521f992011-10-28 21:38:01 +00001639 if (cmd_obj->IsMultiwordObject ())
1640 {
Greg Clayton998255b2012-10-13 02:07:45 +00001641 CommandObject *sub_cmd_obj = cmd_obj->GetSubcommandObject (next_word.c_str());
Greg Clayton5521f992011-10-28 21:38:01 +00001642 if (sub_cmd_obj)
1643 {
1644 actual_cmd_name_len += next_word.length() + 1;
1645 revised_command_line.Printf (" %s", next_word.c_str());
1646 cmd_obj = sub_cmd_obj;
1647 wants_raw_input = cmd_obj->WantsRawCommandString ();
1648 }
1649 else
1650 {
1651 if (quote_char)
1652 revised_command_line.Printf (" %c%s%s%c", quote_char, next_word.c_str(), suffix.c_str(), quote_char);
1653 else
1654 revised_command_line.Printf (" %s%s", next_word.c_str(), suffix.c_str());
1655 done = true;
1656 }
1657 }
Caroline Tice2b5e8502011-05-11 16:07:06 +00001658 else
Greg Clayton5521f992011-10-28 21:38:01 +00001659 {
1660 if (quote_char)
1661 revised_command_line.Printf (" %c%s%s%c", quote_char, next_word.c_str(), suffix.c_str(), quote_char);
1662 else
1663 revised_command_line.Printf (" %s%s", next_word.c_str(), suffix.c_str());
1664 done = true;
1665 }
Caroline Tice844d2302010-12-09 22:52:49 +00001666 }
1667
1668 if (cmd_obj == NULL)
1669 {
Greg Claytonc7bece562013-01-25 18:06:21 +00001670 const size_t num_matches = matches.GetSize();
Filipe Cabecinhasaf1537f2012-05-16 23:25:54 +00001671 if (matches.GetSize() > 1) {
Greg Claytonc7bece562013-01-25 18:06:21 +00001672 StreamString error_msg;
1673 error_msg.Printf ("Ambiguous command '%s'. Possible matches:\n", next_word.c_str());
Filipe Cabecinhasaf1537f2012-05-16 23:25:54 +00001674
1675 for (uint32_t i = 0; i < num_matches; ++i) {
Greg Claytonc7bece562013-01-25 18:06:21 +00001676 error_msg.Printf ("\t%s\n", matches.GetStringAtIndex(i));
Filipe Cabecinhasaf1537f2012-05-16 23:25:54 +00001677 }
Greg Claytonc7bece562013-01-25 18:06:21 +00001678 result.AppendRawError (error_msg.GetString().c_str());
Filipe Cabecinhasaf1537f2012-05-16 23:25:54 +00001679 } else {
1680 // We didn't have only one match, otherwise we wouldn't get here.
1681 assert(num_matches == 0);
1682 result.AppendErrorWithFormat ("'%s' is not a valid command.\n", next_word.c_str());
1683 }
Caroline Tice844d2302010-12-09 22:52:49 +00001684 result.SetStatus (eReturnStatusFailed);
1685 return false;
1686 }
1687
Greg Clayton5521f992011-10-28 21:38:01 +00001688 if (cmd_obj->IsMultiwordObject ())
1689 {
1690 if (!suffix.empty())
1691 {
1692
1693 result.AppendErrorWithFormat ("multi-word commands ('%s') can't have shorthand suffixes: '%s'\n",
1694 next_word.c_str(),
1695 suffix.c_str());
1696 result.SetStatus (eReturnStatusFailed);
1697 return false;
1698 }
1699 }
1700 else
1701 {
1702 // If we found a normal command, we are done
1703 done = true;
1704 if (!suffix.empty())
1705 {
1706 switch (suffix[0])
1707 {
1708 case '/':
1709 // GDB format suffixes
Greg Clayton52ec56c2011-10-29 00:57:28 +00001710 {
1711 Options *command_options = cmd_obj->GetOptions();
1712 if (command_options && command_options->SupportsLongOption("gdb-format"))
1713 {
Greg Clayton93c62e62011-11-09 23:25:03 +00001714 std::string gdb_format_option ("--gdb-format=");
1715 gdb_format_option += (suffix.c_str() + 1);
1716
1717 bool inserted = false;
1718 std::string &cmd = revised_command_line.GetString();
1719 size_t arg_terminator_idx = FindArgumentTerminator (cmd);
1720 if (arg_terminator_idx != std::string::npos)
1721 {
1722 // Insert the gdb format option before the "--" that terminates options
1723 gdb_format_option.append(1,' ');
1724 cmd.insert(arg_terminator_idx, gdb_format_option);
1725 inserted = true;
1726 }
1727
1728 if (!inserted)
1729 revised_command_line.Printf (" %s", gdb_format_option.c_str());
1730
1731 if (wants_raw_input && FindArgumentTerminator(cmd) == std::string::npos)
1732 revised_command_line.PutCString (" --");
Greg Clayton52ec56c2011-10-29 00:57:28 +00001733 }
1734 else
1735 {
1736 result.AppendErrorWithFormat ("the '%s' command doesn't support the --gdb-format option\n",
1737 cmd_obj->GetCommandName());
1738 result.SetStatus (eReturnStatusFailed);
1739 return false;
1740 }
1741 }
Greg Clayton5521f992011-10-28 21:38:01 +00001742 break;
Johnny Chen8e9383d2011-10-31 22:22:06 +00001743
1744 default:
1745 result.AppendErrorWithFormat ("unknown command shorthand suffix: '%s'\n",
1746 suffix.c_str());
1747 result.SetStatus (eReturnStatusFailed);
1748 return false;
1749
Greg Clayton5521f992011-10-28 21:38:01 +00001750 }
1751 }
1752 }
Caroline Tice844d2302010-12-09 22:52:49 +00001753 if (command_string.length() == 0)
1754 done = true;
1755
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001756 }
Caroline Tice844d2302010-12-09 22:52:49 +00001757
Greg Clayton5521f992011-10-28 21:38:01 +00001758 if (!command_string.empty())
Caroline Tice844d2302010-12-09 22:52:49 +00001759 revised_command_line.Printf (" %s", command_string.c_str());
1760
1761 // End of Phase 1.
1762 // At this point cmd_obj should contain the CommandObject whose Execute method will be called, if the command
1763 // specified was valid; revised_command_line contains the complete command line (including command name(s)),
1764 // fully translated with all substitutions & translations taken care of (still in raw text format); and
1765 // wants_raw_input specifies whether the Execute method expects raw input or not.
1766
1767
1768 if (log)
1769 {
1770 log->Printf ("HandleCommand, cmd_obj : '%s'", cmd_obj ? cmd_obj->GetCommandName() : "<not found>");
1771 log->Printf ("HandleCommand, revised_command_line: '%s'", revised_command_line.GetData());
1772 log->Printf ("HandleCommand, wants_raw_input:'%s'", wants_raw_input ? "True" : "False");
1773 }
1774
1775 // Phase 2.
1776 // Take care of things like setting up the history command & calling the appropriate Execute method on the
1777 // CommandObject, with the appropriate arguments.
1778
1779 if (cmd_obj != NULL)
1780 {
1781 if (add_to_history)
1782 {
1783 Args command_args (revised_command_line.GetData());
1784 const char *repeat_command = cmd_obj->GetRepeatCommand(command_args, 0);
1785 if (repeat_command != NULL)
1786 m_repeat_command.assign(repeat_command);
1787 else
Jim Inghama5a97eb2011-07-12 03:12:18 +00001788 m_repeat_command.assign(original_command_string.c_str());
Caroline Tice844d2302010-12-09 22:52:49 +00001789
Jim Inghama5a97eb2011-07-12 03:12:18 +00001790 // Don't keep pushing the same command onto the history...
Greg Clayton5521f992011-10-28 21:38:01 +00001791 if (m_command_history.empty() || m_command_history.back() != original_command_string)
Jim Inghama5a97eb2011-07-12 03:12:18 +00001792 m_command_history.push_back (original_command_string);
Caroline Tice844d2302010-12-09 22:52:49 +00001793 }
1794
1795 command_string = revised_command_line.GetData();
1796 std::string command_name (cmd_obj->GetCommandName());
Caroline Tice01274c02010-12-11 08:16:56 +00001797 std::string remainder;
1798 if (actual_cmd_name_len < command_string.length())
1799 remainder = command_string.substr (actual_cmd_name_len); // Note: 'actual_cmd_name_len' may be considerably shorter
1800 // than cmd_obj->GetCommandName(), because name completion
1801 // allows users to enter short versions of the names,
1802 // e.g. 'br s' for 'breakpoint set'.
Caroline Tice844d2302010-12-09 22:52:49 +00001803
1804 // Remove any initial spaces
1805 std::string white_space (" \t\v");
1806 size_t pos = remainder.find_first_not_of (white_space);
1807 if (pos != 0 && pos != std::string::npos)
Greg Claytona3482592011-04-22 20:58:45 +00001808 remainder.erase(0, pos);
Caroline Tice844d2302010-12-09 22:52:49 +00001809
1810 if (log)
Jason Molendabfb36ff2011-08-25 00:20:04 +00001811 log->Printf ("HandleCommand, command line after removing command name(s): '%s'", remainder.c_str());
Caroline Tice844d2302010-12-09 22:52:49 +00001812
Jim Ingham5a988412012-06-08 21:56:10 +00001813 cmd_obj->Execute (remainder.c_str(), result);
Caroline Tice844d2302010-12-09 22:52:49 +00001814 }
1815 else
1816 {
1817 // We didn't find the first command object, so complete the first argument.
1818 Args command_args (revised_command_line.GetData());
1819 StringList matches;
1820 int num_matches;
1821 int cursor_index = 0;
1822 int cursor_char_position = strlen (command_args.GetArgumentAtIndex(0));
1823 bool word_complete;
1824 num_matches = HandleCompletionMatches (command_args,
1825 cursor_index,
1826 cursor_char_position,
1827 0,
1828 -1,
1829 word_complete,
1830 matches);
1831
1832 if (num_matches > 0)
1833 {
1834 std::string error_msg;
1835 error_msg.assign ("ambiguous command '");
1836 error_msg.append(command_args.GetArgumentAtIndex(0));
1837 error_msg.append ("'.");
1838
1839 error_msg.append (" Possible completions:");
1840 for (int i = 0; i < num_matches; i++)
1841 {
1842 error_msg.append ("\n\t");
1843 error_msg.append (matches.GetStringAtIndex (i));
1844 }
1845 error_msg.append ("\n");
Greg Claytonc7bece562013-01-25 18:06:21 +00001846 result.AppendRawError (error_msg.c_str());
Caroline Tice844d2302010-12-09 22:52:49 +00001847 }
1848 else
1849 result.AppendErrorWithFormat ("Unrecognized command '%s'.\n", command_args.GetArgumentAtIndex (0));
1850
1851 result.SetStatus (eReturnStatusFailed);
1852 }
1853
Jason Molendabfb36ff2011-08-25 00:20:04 +00001854 if (log)
1855 log->Printf ("HandleCommand, command %s", (result.Succeeded() ? "succeeded" : "did not succeed"));
1856
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001857 return result.Succeeded();
1858}
1859
1860int
1861CommandInterpreter::HandleCompletionMatches (Args &parsed_line,
1862 int &cursor_index,
1863 int &cursor_char_position,
1864 int match_start_point,
1865 int max_return_elements,
Jim Ingham558ce122010-06-30 05:02:46 +00001866 bool &word_complete,
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001867 StringList &matches)
1868{
1869 int num_command_matches = 0;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001870 bool look_for_subcommand = false;
Jim Ingham558ce122010-06-30 05:02:46 +00001871
1872 // For any of the command completions a unique match will be a complete word.
1873 word_complete = true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001874
1875 if (cursor_index == -1)
1876 {
1877 // We got nothing on the command line, so return the list of commands
Jim Ingham279a6c22010-07-06 22:46:59 +00001878 bool include_aliases = true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001879 num_command_matches = GetCommandNamesMatchingPartialString ("", include_aliases, matches);
1880 }
1881 else if (cursor_index == 0)
1882 {
1883 // The cursor is in the first argument, so just do a lookup in the dictionary.
Jim Ingham279a6c22010-07-06 22:46:59 +00001884 CommandObject *cmd_obj = GetCommandObject (parsed_line.GetArgumentAtIndex(0), &matches);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001885 num_command_matches = matches.GetSize();
1886
1887 if (num_command_matches == 1
1888 && cmd_obj && cmd_obj->IsMultiwordObject()
1889 && matches.GetStringAtIndex(0) != NULL
1890 && strcmp (parsed_line.GetArgumentAtIndex(0), matches.GetStringAtIndex(0)) == 0)
1891 {
1892 look_for_subcommand = true;
1893 num_command_matches = 0;
1894 matches.DeleteStringAtIndex(0);
1895 parsed_line.AppendArgument ("");
1896 cursor_index++;
1897 cursor_char_position = 0;
1898 }
1899 }
1900
1901 if (cursor_index > 0 || look_for_subcommand)
1902 {
1903 // We are completing further on into a commands arguments, so find the command and tell it
1904 // to complete the command.
1905 // First see if there is a matching initial command:
Jim Ingham279a6c22010-07-06 22:46:59 +00001906 CommandObject *command_object = GetCommandObject (parsed_line.GetArgumentAtIndex(0));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001907 if (command_object == NULL)
1908 {
1909 return 0;
1910 }
1911 else
1912 {
1913 parsed_line.Shift();
1914 cursor_index--;
Greg Claytona7015092010-09-18 01:14:36 +00001915 num_command_matches = command_object->HandleCompletion (parsed_line,
Greg Clayton66111032010-06-23 01:19:29 +00001916 cursor_index,
1917 cursor_char_position,
1918 match_start_point,
Jim Ingham558ce122010-06-30 05:02:46 +00001919 max_return_elements,
1920 word_complete,
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001921 matches);
1922 }
1923 }
1924
1925 return num_command_matches;
1926
1927}
1928
1929int
1930CommandInterpreter::HandleCompletion (const char *current_line,
1931 const char *cursor,
1932 const char *last_char,
1933 int match_start_point,
1934 int max_return_elements,
1935 StringList &matches)
1936{
1937 // We parse the argument up to the cursor, so the last argument in parsed_line is
1938 // the one containing the cursor, and the cursor is after the last character.
1939
1940 Args parsed_line(current_line, last_char - current_line);
1941 Args partial_parsed_line(current_line, cursor - current_line);
1942
Jim Inghama5a97eb2011-07-12 03:12:18 +00001943 // Don't complete comments, and if the line we are completing is just the history repeat character,
1944 // substitute the appropriate history line.
1945 const char *first_arg = parsed_line.GetArgumentAtIndex(0);
1946 if (first_arg)
1947 {
1948 if (first_arg[0] == m_comment_char)
1949 return 0;
1950 else if (first_arg[0] == m_repeat_char)
1951 {
1952 const char *history_string = FindHistoryString (first_arg);
1953 if (history_string != NULL)
1954 {
1955 matches.Clear();
1956 matches.InsertStringAtIndex(0, history_string);
1957 return -2;
1958 }
1959 else
1960 return 0;
1961
1962 }
1963 }
1964
1965
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001966 int num_args = partial_parsed_line.GetArgumentCount();
1967 int cursor_index = partial_parsed_line.GetArgumentCount() - 1;
1968 int cursor_char_position;
1969
1970 if (cursor_index == -1)
1971 cursor_char_position = 0;
1972 else
1973 cursor_char_position = strlen (partial_parsed_line.GetArgumentAtIndex(cursor_index));
Jim Inghamfe0c4252010-12-14 19:56:01 +00001974
1975 if (cursor > current_line && cursor[-1] == ' ')
1976 {
1977 // We are just after a space. If we are in an argument, then we will continue
1978 // parsing, but if we are between arguments, then we have to complete whatever the next
1979 // element would be.
1980 // We can distinguish the two cases because if we are in an argument (e.g. because the space is
1981 // protected by a quote) then the space will also be in the parsed argument...
1982
1983 const char *current_elem = partial_parsed_line.GetArgumentAtIndex(cursor_index);
1984 if (cursor_char_position == 0 || current_elem[cursor_char_position - 1] != ' ')
1985 {
1986 parsed_line.InsertArgumentAtIndex(cursor_index + 1, "", '"');
1987 cursor_index++;
1988 cursor_char_position = 0;
1989 }
1990 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001991
1992 int num_command_matches;
1993
1994 matches.Clear();
1995
1996 // Only max_return_elements == -1 is supported at present:
1997 assert (max_return_elements == -1);
Jim Ingham558ce122010-06-30 05:02:46 +00001998 bool word_complete;
Greg Clayton66111032010-06-23 01:19:29 +00001999 num_command_matches = HandleCompletionMatches (parsed_line,
2000 cursor_index,
2001 cursor_char_position,
2002 match_start_point,
Jim Ingham558ce122010-06-30 05:02:46 +00002003 max_return_elements,
2004 word_complete,
Greg Clayton66111032010-06-23 01:19:29 +00002005 matches);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002006
2007 if (num_command_matches <= 0)
2008 return num_command_matches;
2009
2010 if (num_args == 0)
2011 {
2012 // If we got an empty string, insert nothing.
2013 matches.InsertStringAtIndex(0, "");
2014 }
2015 else
2016 {
2017 // Now figure out if there is a common substring, and if so put that in element 0, otherwise
2018 // put an empty string in element 0.
2019 std::string command_partial_str;
2020 if (cursor_index >= 0)
Jim Ingham49e80a12010-10-22 18:47:16 +00002021 command_partial_str.assign(parsed_line.GetArgumentAtIndex(cursor_index),
2022 parsed_line.GetArgumentAtIndex(cursor_index) + cursor_char_position);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002023
2024 std::string common_prefix;
2025 matches.LongestCommonPrefix (common_prefix);
Greg Claytonc7bece562013-01-25 18:06:21 +00002026 const size_t partial_name_len = command_partial_str.size();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002027
2028 // If we matched a unique single command, add a space...
Jim Ingham558ce122010-06-30 05:02:46 +00002029 // Only do this if the completer told us this was a complete word, however...
2030 if (num_command_matches == 1 && word_complete)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002031 {
2032 char quote_char = parsed_line.GetArgumentQuoteCharAtIndex(cursor_index);
2033 if (quote_char != '\0')
2034 common_prefix.push_back(quote_char);
2035
2036 common_prefix.push_back(' ');
2037 }
2038 common_prefix.erase (0, partial_name_len);
2039 matches.InsertStringAtIndex(0, common_prefix.c_str());
2040 }
2041 return num_command_matches;
2042}
2043
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002044
2045CommandInterpreter::~CommandInterpreter ()
2046{
2047}
2048
2049const char *
2050CommandInterpreter::GetPrompt ()
2051{
Caroline Ticedaccaa92010-09-20 20:44:43 +00002052 return m_debugger.GetPrompt();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002053}
2054
2055void
2056CommandInterpreter::SetPrompt (const char *new_prompt)
2057{
Caroline Ticedaccaa92010-09-20 20:44:43 +00002058 m_debugger.SetPrompt (new_prompt);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002059}
2060
Jim Ingham97a6dc72010-10-04 19:49:29 +00002061size_t
Greg Clayton51b1e2d2011-02-09 01:08:52 +00002062CommandInterpreter::GetConfirmationInputReaderCallback
2063(
2064 void *baton,
2065 InputReader &reader,
2066 lldb::InputReaderAction action,
2067 const char *bytes,
2068 size_t bytes_len
2069)
Jim Ingham97a6dc72010-10-04 19:49:29 +00002070{
Greg Clayton51b1e2d2011-02-09 01:08:52 +00002071 File &out_file = reader.GetDebugger().GetOutputFile();
Jim Ingham97a6dc72010-10-04 19:49:29 +00002072 bool *response_ptr = (bool *) baton;
2073
2074 switch (action)
2075 {
2076 case eInputReaderActivate:
Greg Clayton51b1e2d2011-02-09 01:08:52 +00002077 if (out_file.IsValid())
Jim Ingham97a6dc72010-10-04 19:49:29 +00002078 {
2079 if (reader.GetPrompt())
Caroline Tice31f7d462011-02-02 01:17:56 +00002080 {
Greg Clayton51b1e2d2011-02-09 01:08:52 +00002081 out_file.Printf ("%s", reader.GetPrompt());
2082 out_file.Flush ();
Caroline Tice31f7d462011-02-02 01:17:56 +00002083 }
Jim Ingham97a6dc72010-10-04 19:49:29 +00002084 }
2085 break;
2086
2087 case eInputReaderDeactivate:
2088 break;
2089
2090 case eInputReaderReactivate:
Greg Clayton51b1e2d2011-02-09 01:08:52 +00002091 if (out_file.IsValid() && reader.GetPrompt())
Caroline Tice31f7d462011-02-02 01:17:56 +00002092 {
Greg Clayton51b1e2d2011-02-09 01:08:52 +00002093 out_file.Printf ("%s", reader.GetPrompt());
2094 out_file.Flush ();
Caroline Tice31f7d462011-02-02 01:17:56 +00002095 }
Jim Ingham97a6dc72010-10-04 19:49:29 +00002096 break;
Caroline Tice969ed3d2011-05-02 20:41:46 +00002097
2098 case eInputReaderAsynchronousOutputWritten:
2099 break;
2100
Jim Ingham97a6dc72010-10-04 19:49:29 +00002101 case eInputReaderGotToken:
2102 if (bytes_len == 0)
2103 {
2104 reader.SetIsDone(true);
2105 }
Jim Inghamc8b47582011-11-14 20:02:01 +00002106 else if (bytes[0] == 'y' || bytes[0] == 'Y')
Jim Ingham97a6dc72010-10-04 19:49:29 +00002107 {
2108 *response_ptr = true;
2109 reader.SetIsDone(true);
2110 }
Jim Inghamc8b47582011-11-14 20:02:01 +00002111 else if (bytes[0] == 'n' || bytes[0] == 'N')
Jim Ingham97a6dc72010-10-04 19:49:29 +00002112 {
2113 *response_ptr = false;
2114 reader.SetIsDone(true);
2115 }
2116 else
2117 {
Greg Clayton51b1e2d2011-02-09 01:08:52 +00002118 if (out_file.IsValid() && !reader.IsDone() && reader.GetPrompt())
Jim Ingham97a6dc72010-10-04 19:49:29 +00002119 {
Jim Ingham78d61482011-11-17 01:22:00 +00002120 out_file.Printf ("Please answer \"y\" or \"n\".\n%s", reader.GetPrompt());
Greg Clayton51b1e2d2011-02-09 01:08:52 +00002121 out_file.Flush ();
Jim Ingham97a6dc72010-10-04 19:49:29 +00002122 }
2123 }
2124 break;
2125
Caroline Ticeefed6132010-11-19 20:47:54 +00002126 case eInputReaderInterrupt:
2127 case eInputReaderEndOfFile:
2128 *response_ptr = false; // Assume ^C or ^D means cancel the proposed action
2129 reader.SetIsDone (true);
2130 break;
2131
Jim Ingham97a6dc72010-10-04 19:49:29 +00002132 case eInputReaderDone:
2133 break;
2134 }
2135
2136 return bytes_len;
2137
2138}
2139
2140bool
2141CommandInterpreter::Confirm (const char *message, bool default_answer)
2142{
Jim Ingham3bcdb292010-10-04 22:44:14 +00002143 // Check AutoConfirm first:
2144 if (m_debugger.GetAutoConfirm())
2145 return default_answer;
2146
Jim Ingham97a6dc72010-10-04 19:49:29 +00002147 InputReaderSP reader_sp (new InputReader(GetDebugger()));
2148 bool response = default_answer;
2149 if (reader_sp)
2150 {
2151 std::string prompt(message);
2152 prompt.append(": [");
2153 if (default_answer)
2154 prompt.append ("Y/n] ");
2155 else
2156 prompt.append ("y/N] ");
2157
2158 Error err (reader_sp->Initialize (CommandInterpreter::GetConfirmationInputReaderCallback,
2159 &response, // baton
2160 eInputReaderGranularityLine, // token size, to pass to callback function
2161 NULL, // end token
2162 prompt.c_str(), // prompt
2163 true)); // echo input
2164 if (err.Success())
2165 {
2166 GetDebugger().PushInputReader (reader_sp);
2167 }
2168 reader_sp->WaitOnReaderIsDone();
2169 }
2170 return response;
2171}
2172
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002173OptionArgVectorSP
2174CommandInterpreter::GetAliasOptions (const char *alias_name)
2175{
2176 OptionArgMap::iterator pos;
2177 OptionArgVectorSP ret_val;
2178
2179 std::string alias (alias_name);
2180
2181 if (HasAliasOptions())
2182 {
2183 pos = m_alias_options.find (alias);
2184 if (pos != m_alias_options.end())
2185 ret_val = pos->second;
2186 }
2187
2188 return ret_val;
2189}
2190
2191void
2192CommandInterpreter::RemoveAliasOptions (const char *alias_name)
2193{
2194 OptionArgMap::iterator pos = m_alias_options.find(alias_name);
2195 if (pos != m_alias_options.end())
2196 {
2197 m_alias_options.erase (pos);
2198 }
2199}
2200
2201void
2202CommandInterpreter::AddOrReplaceAliasOptions (const char *alias_name, OptionArgVectorSP &option_arg_vector_sp)
2203{
2204 m_alias_options[alias_name] = option_arg_vector_sp;
2205}
2206
2207bool
2208CommandInterpreter::HasCommands ()
2209{
2210 return (!m_command_dict.empty());
2211}
2212
2213bool
2214CommandInterpreter::HasAliases ()
2215{
2216 return (!m_alias_dict.empty());
2217}
2218
2219bool
2220CommandInterpreter::HasUserCommands ()
2221{
2222 return (!m_user_dict.empty());
2223}
2224
2225bool
2226CommandInterpreter::HasAliasOptions ()
2227{
2228 return (!m_alias_options.empty());
2229}
2230
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002231void
Caroline Tice4ab31c92010-10-12 21:57:09 +00002232CommandInterpreter::BuildAliasCommandArgs (CommandObject *alias_cmd_obj,
2233 const char *alias_name,
2234 Args &cmd_args,
Caroline Ticed9d63362010-12-07 19:58:26 +00002235 std::string &raw_input_string,
Caroline Tice4ab31c92010-10-12 21:57:09 +00002236 CommandReturnObject &result)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002237{
2238 OptionArgVectorSP option_arg_vector_sp = GetAliasOptions (alias_name);
Caroline Ticed9d63362010-12-07 19:58:26 +00002239
2240 bool wants_raw_input = alias_cmd_obj->WantsRawCommandString();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002241
Caroline Ticed9d63362010-12-07 19:58:26 +00002242 // Make sure that the alias name is the 0th element in cmd_args
2243 std::string alias_name_str = alias_name;
2244 if (alias_name_str.compare (cmd_args.GetArgumentAtIndex(0)) != 0)
2245 cmd_args.Unshift (alias_name);
2246
2247 Args new_args (alias_cmd_obj->GetCommandName());
2248 if (new_args.GetArgumentCount() == 2)
2249 new_args.Shift();
2250
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002251 if (option_arg_vector_sp.get())
2252 {
Caroline Ticed9d63362010-12-07 19:58:26 +00002253 if (wants_raw_input)
2254 {
2255 // We have a command that both has command options and takes raw input. Make *sure* it has a
2256 // " -- " in the right place in the raw_input_string.
2257 size_t pos = raw_input_string.find(" -- ");
2258 if (pos == std::string::npos)
2259 {
2260 // None found; assume it goes at the beginning of the raw input string
2261 raw_input_string.insert (0, " -- ");
2262 }
2263 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002264
2265 OptionArgVector *option_arg_vector = option_arg_vector_sp.get();
Greg Claytonc7bece562013-01-25 18:06:21 +00002266 const size_t old_size = cmd_args.GetArgumentCount();
Caroline Tice4ab31c92010-10-12 21:57:09 +00002267 std::vector<bool> used (old_size + 1, false);
2268
2269 used[0] = true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002270
2271 for (int i = 0; i < option_arg_vector->size(); ++i)
2272 {
2273 OptionArgPair option_pair = (*option_arg_vector)[i];
Caroline Ticed9d63362010-12-07 19:58:26 +00002274 OptionArgValue value_pair = option_pair.second;
2275 int value_type = value_pair.first;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002276 std::string option = option_pair.first;
Caroline Ticed9d63362010-12-07 19:58:26 +00002277 std::string value = value_pair.second;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002278 if (option.compare ("<argument>") == 0)
Caroline Ticed9d63362010-12-07 19:58:26 +00002279 {
2280 if (!wants_raw_input
2281 || (value.compare("--") != 0)) // Since we inserted this above, make sure we don't insert it twice
2282 new_args.AppendArgument (value.c_str());
2283 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002284 else
2285 {
Caroline Ticed9d63362010-12-07 19:58:26 +00002286 if (value_type != optional_argument)
2287 new_args.AppendArgument (option.c_str());
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002288 if (value.compare ("<no-argument>") != 0)
2289 {
2290 int index = GetOptionArgumentPosition (value.c_str());
2291 if (index == 0)
Caroline Ticed9d63362010-12-07 19:58:26 +00002292 {
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002293 // value was NOT a positional argument; must be a real value
Caroline Ticed9d63362010-12-07 19:58:26 +00002294 if (value_type != optional_argument)
2295 new_args.AppendArgument (value.c_str());
2296 else
2297 {
2298 char buffer[255];
2299 ::snprintf (buffer, sizeof (buffer), "%s%s", option.c_str(), value.c_str());
2300 new_args.AppendArgument (buffer);
2301 }
2302
2303 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002304 else if (index >= cmd_args.GetArgumentCount())
2305 {
2306 result.AppendErrorWithFormat
2307 ("Not enough arguments provided; you need at least %d arguments to use this alias.\n",
2308 index);
2309 result.SetStatus (eReturnStatusFailed);
2310 return;
2311 }
2312 else
2313 {
Caroline Ticed9d63362010-12-07 19:58:26 +00002314 // Find and remove cmd_args.GetArgumentAtIndex(i) from raw_input_string
2315 size_t strpos = raw_input_string.find (cmd_args.GetArgumentAtIndex (index));
2316 if (strpos != std::string::npos)
2317 {
2318 raw_input_string = raw_input_string.erase (strpos, strlen (cmd_args.GetArgumentAtIndex (index)));
2319 }
2320
2321 if (value_type != optional_argument)
2322 new_args.AppendArgument (cmd_args.GetArgumentAtIndex (index));
2323 else
2324 {
2325 char buffer[255];
2326 ::snprintf (buffer, sizeof(buffer), "%s%s", option.c_str(),
2327 cmd_args.GetArgumentAtIndex (index));
2328 new_args.AppendArgument (buffer);
2329 }
Caroline Tice4ab31c92010-10-12 21:57:09 +00002330 used[index] = true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002331 }
2332 }
2333 }
2334 }
2335
2336 for (int j = 0; j < cmd_args.GetArgumentCount(); ++j)
2337 {
Caroline Ticed9d63362010-12-07 19:58:26 +00002338 if (!used[j] && !wants_raw_input)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002339 new_args.AppendArgument (cmd_args.GetArgumentAtIndex (j));
2340 }
2341
2342 cmd_args.Clear();
2343 cmd_args.SetArguments (new_args.GetArgumentCount(), (const char **) new_args.GetArgumentVector());
2344 }
2345 else
2346 {
2347 result.SetStatus (eReturnStatusSuccessFinishNoResult);
Caroline Ticed9d63362010-12-07 19:58:26 +00002348 // This alias was not created with any options; nothing further needs to be done, unless it is a command that
2349 // wants raw input, in which case we need to clear the rest of the data from cmd_args, since its in the raw
2350 // input string.
2351 if (wants_raw_input)
2352 {
2353 cmd_args.Clear();
2354 cmd_args.SetArguments (new_args.GetArgumentCount(), (const char **) new_args.GetArgumentVector());
2355 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002356 return;
2357 }
2358
2359 result.SetStatus (eReturnStatusSuccessFinishNoResult);
2360 return;
2361}
2362
2363
2364int
2365CommandInterpreter::GetOptionArgumentPosition (const char *in_string)
2366{
2367 int position = 0; // Any string that isn't an argument position, i.e. '%' followed by an integer, gets a position
2368 // of zero.
2369
2370 char *cptr = (char *) in_string;
2371
2372 // Does it start with '%'
2373 if (cptr[0] == '%')
2374 {
2375 ++cptr;
2376
2377 // Is the rest of it entirely digits?
2378 if (isdigit (cptr[0]))
2379 {
2380 const char *start = cptr;
2381 while (isdigit (cptr[0]))
2382 ++cptr;
2383
2384 // We've gotten to the end of the digits; are we at the end of the string?
2385 if (cptr[0] == '\0')
2386 position = atoi (start);
2387 }
2388 }
2389
2390 return position;
2391}
2392
2393void
2394CommandInterpreter::SourceInitFile (bool in_cwd, CommandReturnObject &result)
2395{
Jim Ingham16e0c682011-08-12 23:34:31 +00002396 FileSpec init_file;
Greg Clayton14a35512011-09-11 00:01:44 +00002397 if (in_cwd)
Jim Ingham16e0c682011-08-12 23:34:31 +00002398 {
Greg Clayton14a35512011-09-11 00:01:44 +00002399 // In the current working directory we don't load any program specific
2400 // .lldbinit files, we only look for a "./.lldbinit" file.
2401 if (m_skip_lldbinit_files)
2402 return;
2403
2404 init_file.SetFile ("./.lldbinit", true);
Jim Ingham16e0c682011-08-12 23:34:31 +00002405 }
Greg Clayton14a35512011-09-11 00:01:44 +00002406 else
Jim Ingham16e0c682011-08-12 23:34:31 +00002407 {
Greg Clayton14a35512011-09-11 00:01:44 +00002408 // If we aren't looking in the current working directory we are looking
2409 // in the home directory. We will first see if there is an application
2410 // specific ".lldbinit" file whose name is "~/.lldbinit" followed by a
2411 // "-" and the name of the program. If this file doesn't exist, we fall
2412 // back to just the "~/.lldbinit" file. We also obey any requests to not
2413 // load the init files.
2414 const char *init_file_path = "~/.lldbinit";
2415
2416 if (m_skip_app_init_files == false)
2417 {
2418 FileSpec program_file_spec (Host::GetProgramFileSpec());
2419 const char *program_name = program_file_spec.GetFilename().AsCString();
Jim Ingham16e0c682011-08-12 23:34:31 +00002420
Greg Clayton14a35512011-09-11 00:01:44 +00002421 if (program_name)
2422 {
2423 char program_init_file_name[PATH_MAX];
2424 ::snprintf (program_init_file_name, sizeof(program_init_file_name), "%s-%s", init_file_path, program_name);
2425 init_file.SetFile (program_init_file_name, true);
2426 if (!init_file.Exists())
2427 init_file.Clear();
2428 }
2429 }
2430
2431 if (!init_file && !m_skip_lldbinit_files)
2432 init_file.SetFile (init_file_path, true);
2433 }
2434
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002435 // If the file exists, tell HandleCommand to 'source' it; this will do the actual broadcasting
2436 // of the commands back to any appropriate listener (see CommandObjectSource::Execute for more details).
2437
2438 if (init_file.Exists())
2439 {
Jim Inghame16c50a2011-02-18 00:54:25 +00002440 ExecutionContext *exe_ctx = NULL; // We don't have any context yet.
2441 bool stop_on_continue = true;
2442 bool stop_on_error = false;
2443 bool echo_commands = false;
2444 bool print_results = false;
2445
Enrico Granata5f5ab602012-05-31 01:09:06 +00002446 HandleCommandsFromFile (init_file, exe_ctx, stop_on_continue, stop_on_error, echo_commands, print_results, eLazyBoolNo, result);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002447 }
2448 else
2449 {
2450 // nothing to be done if the file doesn't exist
2451 result.SetStatus(eReturnStatusSuccessFinishNoResult);
2452 }
2453}
2454
Greg Clayton8b82f082011-04-12 05:54:46 +00002455PlatformSP
2456CommandInterpreter::GetPlatform (bool prefer_target_platform)
2457{
2458 PlatformSP platform_sp;
Greg Claytonc14ee322011-09-22 04:58:26 +00002459 if (prefer_target_platform)
2460 {
Greg Clayton4e0fe8a2012-07-12 20:32:19 +00002461 ExecutionContext exe_ctx(GetExecutionContext());
2462 Target *target = exe_ctx.GetTargetPtr();
Greg Claytonc14ee322011-09-22 04:58:26 +00002463 if (target)
2464 platform_sp = target->GetPlatform();
2465 }
Greg Clayton8b82f082011-04-12 05:54:46 +00002466
2467 if (!platform_sp)
2468 platform_sp = m_debugger.GetPlatformList().GetSelectedPlatform();
2469 return platform_sp;
2470}
2471
Jim Inghame16c50a2011-02-18 00:54:25 +00002472void
Jim Inghambad87fe2011-03-11 01:51:49 +00002473CommandInterpreter::HandleCommands (const StringList &commands,
Jim Inghame16c50a2011-02-18 00:54:25 +00002474 ExecutionContext *override_context,
2475 bool stop_on_continue,
2476 bool stop_on_error,
2477 bool echo_commands,
2478 bool print_results,
Enrico Granata5f5ab602012-05-31 01:09:06 +00002479 LazyBool add_to_history,
Jim Inghame16c50a2011-02-18 00:54:25 +00002480 CommandReturnObject &result)
2481{
2482 size_t num_lines = commands.GetSize();
Jim Inghame16c50a2011-02-18 00:54:25 +00002483
2484 // If we are going to continue past a "continue" then we need to run the commands synchronously.
2485 // Make sure you reset this value anywhere you return from the function.
2486
2487 bool old_async_execution = m_debugger.GetAsyncExecution();
2488
2489 // If we've been given an execution context, set it at the start, but don't keep resetting it or we will
2490 // cause series of commands that change the context, then do an operation that relies on that context to fail.
2491
2492 if (override_context != NULL)
Greg Clayton8b82f082011-04-12 05:54:46 +00002493 UpdateExecutionContext (override_context);
Jim Inghame16c50a2011-02-18 00:54:25 +00002494
2495 if (!stop_on_continue)
2496 {
2497 m_debugger.SetAsyncExecution (false);
2498 }
2499
2500 for (int idx = 0; idx < num_lines; idx++)
2501 {
2502 const char *cmd = commands.GetStringAtIndex(idx);
2503 if (cmd[0] == '\0')
2504 continue;
2505
Jim Inghame16c50a2011-02-18 00:54:25 +00002506 if (echo_commands)
2507 {
2508 result.AppendMessageWithFormat ("%s %s\n",
2509 GetPrompt(),
2510 cmd);
2511 }
2512
Greg Clayton9d0402b2011-02-20 02:15:07 +00002513 CommandReturnObject tmp_result;
Johnny Chen80fdd7c2011-10-05 00:42:59 +00002514 // If override_context is not NULL, pass no_context_switching = true for
2515 // HandleCommand() since we updated our context already.
Enrico Granata5f5ab602012-05-31 01:09:06 +00002516 bool success = HandleCommand(cmd, add_to_history, tmp_result,
Johnny Chen80fdd7c2011-10-05 00:42:59 +00002517 NULL, /* override_context */
2518 true, /* repeat_on_empty_command */
2519 override_context != NULL /* no_context_switching */);
Jim Inghame16c50a2011-02-18 00:54:25 +00002520
2521 if (print_results)
2522 {
2523 if (tmp_result.Succeeded())
Jim Ingham85e8b812011-02-19 02:53:09 +00002524 result.AppendMessageWithFormat("%s", tmp_result.GetOutputData());
Jim Inghame16c50a2011-02-18 00:54:25 +00002525 }
2526
2527 if (!success || !tmp_result.Succeeded())
2528 {
Jim Inghama5038812012-04-24 02:25:07 +00002529 const char *error_msg = tmp_result.GetErrorData();
2530 if (error_msg == NULL || error_msg[0] == '\0')
2531 error_msg = "<unknown error>.\n";
Jim Inghame16c50a2011-02-18 00:54:25 +00002532 if (stop_on_error)
2533 {
Jim Inghama5038812012-04-24 02:25:07 +00002534 result.AppendErrorWithFormat("Aborting reading of commands after command #%d: '%s' failed with %s",
2535 idx, cmd, error_msg);
Jim Inghame16c50a2011-02-18 00:54:25 +00002536 result.SetStatus (eReturnStatusFailed);
2537 m_debugger.SetAsyncExecution (old_async_execution);
2538 return;
2539 }
2540 else if (print_results)
2541 {
Jim Inghama5038812012-04-24 02:25:07 +00002542 result.AppendMessageWithFormat ("Command #%d '%s' failed with %s",
Jim Inghame16c50a2011-02-18 00:54:25 +00002543 idx + 1,
2544 cmd,
Jim Inghama5038812012-04-24 02:25:07 +00002545 error_msg);
Jim Inghame16c50a2011-02-18 00:54:25 +00002546 }
2547 }
2548
Caroline Tice969ed3d2011-05-02 20:41:46 +00002549 if (result.GetImmediateOutputStream())
2550 result.GetImmediateOutputStream()->Flush();
2551
2552 if (result.GetImmediateErrorStream())
2553 result.GetImmediateErrorStream()->Flush();
2554
Jim Inghame16c50a2011-02-18 00:54:25 +00002555 // N.B. Can't depend on DidChangeProcessState, because the state coming into the command execution
2556 // could be running (for instance in Breakpoint Commands.
2557 // So we check the return value to see if it is has running in it.
2558 if ((tmp_result.GetStatus() == eReturnStatusSuccessContinuingNoResult)
2559 || (tmp_result.GetStatus() == eReturnStatusSuccessContinuingResult))
2560 {
2561 if (stop_on_continue)
2562 {
2563 // If we caused the target to proceed, and we're going to stop in that case, set the
2564 // status in our real result before returning. This is an error if the continue was not the
2565 // last command in the set of commands to be run.
2566 if (idx != num_lines - 1)
2567 result.AppendErrorWithFormat("Aborting reading of commands after command #%d: '%s' continued the target.\n",
2568 idx + 1, cmd);
2569 else
2570 result.AppendMessageWithFormat ("Command #%d '%s' continued the target.\n", idx + 1, cmd);
2571
2572 result.SetStatus(tmp_result.GetStatus());
2573 m_debugger.SetAsyncExecution (old_async_execution);
2574
2575 return;
2576 }
2577 }
2578
2579 }
2580
2581 result.SetStatus (eReturnStatusSuccessFinishResult);
2582 m_debugger.SetAsyncExecution (old_async_execution);
2583
2584 return;
2585}
2586
2587void
2588CommandInterpreter::HandleCommandsFromFile (FileSpec &cmd_file,
2589 ExecutionContext *context,
2590 bool stop_on_continue,
2591 bool stop_on_error,
2592 bool echo_command,
2593 bool print_result,
Enrico Granata5f5ab602012-05-31 01:09:06 +00002594 LazyBool add_to_history,
Jim Inghame16c50a2011-02-18 00:54:25 +00002595 CommandReturnObject &result)
2596{
2597 if (cmd_file.Exists())
2598 {
2599 bool success;
2600 StringList commands;
2601 success = commands.ReadFileLines(cmd_file);
2602 if (!success)
2603 {
2604 result.AppendErrorWithFormat ("Error reading commands from file: %s.\n", cmd_file.GetFilename().AsCString());
2605 result.SetStatus (eReturnStatusFailed);
2606 return;
2607 }
Enrico Granata5f5ab602012-05-31 01:09:06 +00002608 m_command_source_depth++;
2609 HandleCommands (commands, context, stop_on_continue, stop_on_error, echo_command, print_result, add_to_history, result);
2610 m_command_source_depth--;
Jim Inghame16c50a2011-02-18 00:54:25 +00002611 }
2612 else
2613 {
2614 result.AppendErrorWithFormat ("Error reading commands from file %s - file not found.\n",
2615 cmd_file.GetFilename().AsCString());
2616 result.SetStatus (eReturnStatusFailed);
2617 return;
2618 }
2619}
2620
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002621ScriptInterpreter *
Enrico Granatab5887262012-10-29 21:18:03 +00002622CommandInterpreter::GetScriptInterpreter (bool can_create)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002623{
Enrico Granatab5887262012-10-29 21:18:03 +00002624 if (m_script_interpreter_ap.get() != NULL)
2625 return m_script_interpreter_ap.get();
2626
2627 if (!can_create)
2628 return NULL;
2629
Enrico Granataa29bdad2012-07-10 18:23:48 +00002630 // <rdar://problem/11751427>
2631 // we need to protect the initialization of the script interpreter
2632 // otherwise we could end up with two threads both trying to create
2633 // their instance of it, and for some languages (e.g. Python)
2634 // this is a bulletproof recipe for disaster!
2635 // this needs to be a function-level static because multiple Debugger instances living in the same process
2636 // still need to be isolated and not try to initialize Python concurrently
Enrico Granata8b95df22012-07-10 19:04:14 +00002637 static Mutex g_interpreter_mutex(Mutex::eMutexTypeRecursive);
2638 Mutex::Locker interpreter_lock(g_interpreter_mutex);
Enrico Granataa29bdad2012-07-10 18:23:48 +00002639
Greg Clayton5160ce52013-03-27 23:08:40 +00002640 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_OBJECT));
Enrico Granatab5887262012-10-29 21:18:03 +00002641 if (log)
2642 log->Printf("Initializing the ScriptInterpreter now\n");
Greg Clayton66111032010-06-23 01:19:29 +00002643
Caroline Tice2f88aad2011-01-14 00:29:16 +00002644 lldb::ScriptLanguage script_lang = GetDebugger().GetScriptLanguage();
2645 switch (script_lang)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002646 {
Greg Claytondce502e2011-11-04 03:34:56 +00002647 case eScriptLanguagePython:
2648#ifndef LLDB_DISABLE_PYTHON
2649 m_script_interpreter_ap.reset (new ScriptInterpreterPython (*this));
2650 break;
2651#else
2652 // Fall through to the None case when python is disabled
2653#endif
Caroline Tice2f88aad2011-01-14 00:29:16 +00002654 case eScriptLanguageNone:
2655 m_script_interpreter_ap.reset (new ScriptInterpreterNone (*this));
2656 break;
Caroline Tice2f88aad2011-01-14 00:29:16 +00002657 };
2658
2659 return m_script_interpreter_ap.get();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002660}
2661
2662
2663
2664bool
2665CommandInterpreter::GetSynchronous ()
2666{
2667 return m_synchronous_execution;
2668}
2669
2670void
2671CommandInterpreter::SetSynchronous (bool value)
2672{
Johnny Chenc066ab42010-10-14 01:22:03 +00002673 m_synchronous_execution = value;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002674}
2675
2676void
2677CommandInterpreter::OutputFormattedHelpText (Stream &strm,
2678 const char *word_text,
2679 const char *separator,
2680 const char *help_text,
Greg Claytonc7bece562013-01-25 18:06:21 +00002681 size_t max_word_len)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002682{
Greg Claytona7015092010-09-18 01:14:36 +00002683 const uint32_t max_columns = m_debugger.GetTerminalWidth();
2684
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002685 int indent_size = max_word_len + strlen (separator) + 2;
2686
2687 strm.IndentMore (indent_size);
Greg Claytonbfe5f3b2011-02-18 01:44:25 +00002688
2689 StreamString text_strm;
Greg Claytonc7bece562013-01-25 18:06:21 +00002690 text_strm.Printf ("%-*s %s %s", (int)max_word_len, word_text, separator, help_text);
Greg Claytonbfe5f3b2011-02-18 01:44:25 +00002691
2692 size_t len = text_strm.GetSize();
2693 const char *text = text_strm.GetData();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002694 if (text[len - 1] == '\n')
Greg Claytonbfe5f3b2011-02-18 01:44:25 +00002695 {
2696 text_strm.EOL();
2697 len = text_strm.GetSize();
2698 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002699
2700 if (len < max_columns)
2701 {
2702 // Output it as a single line.
2703 strm.Printf ("%s", text);
2704 }
2705 else
2706 {
2707 // We need to break it up into multiple lines.
2708 bool first_line = true;
2709 int text_width;
Greg Claytonc7bece562013-01-25 18:06:21 +00002710 size_t start = 0;
2711 size_t end = start;
2712 const size_t final_end = strlen (text);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002713
2714 while (end < final_end)
2715 {
2716 if (first_line)
2717 text_width = max_columns - 1;
2718 else
2719 text_width = max_columns - indent_size - 1;
2720
2721 // Don't start the 'text' on a space, since we're already outputting the indentation.
2722 if (!first_line)
2723 {
2724 while ((start < final_end) && (text[start] == ' '))
2725 start++;
2726 }
2727
2728 end = start + text_width;
2729 if (end > final_end)
2730 end = final_end;
2731 else
2732 {
2733 // If we're not at the end of the text, make sure we break the line on white space.
2734 while (end > start
2735 && text[end] != ' ' && text[end] != '\t' && text[end] != '\n')
2736 end--;
Greg Clayton67cc0632012-08-22 17:17:09 +00002737 assert (end > 0);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002738 }
2739
Greg Claytonc7bece562013-01-25 18:06:21 +00002740 const size_t sub_len = end - start;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002741 if (start != 0)
2742 strm.EOL();
2743 if (!first_line)
2744 strm.Indent();
2745 else
2746 first_line = false;
2747 assert (start <= final_end);
2748 assert (start + sub_len <= final_end);
2749 if (sub_len > 0)
2750 strm.Write (text + start, sub_len);
2751 start = end + 1;
2752 }
2753 }
2754 strm.EOL();
2755 strm.IndentLess(indent_size);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002756}
2757
2758void
Enrico Granata82a7d982011-07-07 00:38:40 +00002759CommandInterpreter::OutputHelpText (Stream &strm,
2760 const char *word_text,
2761 const char *separator,
2762 const char *help_text,
2763 uint32_t max_word_len)
2764{
2765 int indent_size = max_word_len + strlen (separator) + 2;
2766
2767 strm.IndentMore (indent_size);
2768
2769 StreamString text_strm;
2770 text_strm.Printf ("%-*s %s %s", max_word_len, word_text, separator, help_text);
2771
2772 const uint32_t max_columns = m_debugger.GetTerminalWidth();
Enrico Granata82a7d982011-07-07 00:38:40 +00002773
2774 size_t len = text_strm.GetSize();
2775 const char *text = text_strm.GetData();
2776
2777 uint32_t chars_left = max_columns;
2778
2779 for (uint32_t i = 0; i < len; i++)
2780 {
2781 if ((text[i] == ' ' && ::strchr((text+i+1), ' ') && chars_left < ::strchr((text+i+1), ' ')-(text+i)) || text[i] == '\n')
2782 {
Enrico Granata82a7d982011-07-07 00:38:40 +00002783 chars_left = max_columns - indent_size;
2784 strm.EOL();
2785 strm.Indent();
2786 }
2787 else
2788 {
2789 strm.PutChar(text[i]);
2790 chars_left--;
2791 }
2792
2793 }
2794
2795 strm.EOL();
2796 strm.IndentLess(indent_size);
2797}
2798
2799void
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002800CommandInterpreter::FindCommandsForApropos (const char *search_word, StringList &commands_found,
2801 StringList &commands_help)
2802{
2803 CommandObject::CommandMap::const_iterator pos;
2804
2805 for (pos = m_command_dict.begin(); pos != m_command_dict.end(); ++pos)
2806 {
2807 const char *command_name = pos->first.c_str();
2808 CommandObject *cmd_obj = pos->second.get();
2809
Greg Claytona7015092010-09-18 01:14:36 +00002810 if (cmd_obj->HelpTextContainsWord (search_word))
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002811 {
2812 commands_found.AppendString (command_name);
2813 commands_help.AppendString (cmd_obj->GetHelp());
2814 }
2815
2816 if (cmd_obj->IsMultiwordObject())
Greg Clayton998255b2012-10-13 02:07:45 +00002817 cmd_obj->AproposAllSubCommands (command_name,
2818 search_word,
2819 commands_found,
2820 commands_help);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002821
2822 }
2823}
Greg Clayton8b82f082011-04-12 05:54:46 +00002824
2825
2826void
2827CommandInterpreter::UpdateExecutionContext (ExecutionContext *override_context)
2828{
Greg Clayton8b82f082011-04-12 05:54:46 +00002829 if (override_context != NULL)
2830 {
Greg Clayton4e0fe8a2012-07-12 20:32:19 +00002831 m_exe_ctx_ref = *override_context;
Greg Clayton8b82f082011-04-12 05:54:46 +00002832 }
2833 else
2834 {
Greg Clayton4e0fe8a2012-07-12 20:32:19 +00002835 const bool adopt_selected = true;
2836 m_exe_ctx_ref.SetTargetPtr (m_debugger.GetSelectedTarget().get(), adopt_selected);
Greg Clayton8b82f082011-04-12 05:54:46 +00002837 }
2838}
2839
Jim Inghama5a97eb2011-07-12 03:12:18 +00002840void
2841CommandInterpreter::DumpHistory (Stream &stream, uint32_t count) const
2842{
2843 DumpHistory (stream, 0, count - 1);
2844}
2845
2846void
2847CommandInterpreter::DumpHistory (Stream &stream, uint32_t start, uint32_t end) const
2848{
Jim Inghamd1715e12013-02-22 23:23:42 +00002849 const size_t last_idx = std::min<size_t>(m_command_history.size(), end==UINT32_MAX ? UINT32_MAX : end + 1);
Greg Clayton5521f992011-10-28 21:38:01 +00002850 for (size_t i = start; i < last_idx; i++)
Jim Inghama5a97eb2011-07-12 03:12:18 +00002851 {
2852 if (!m_command_history[i].empty())
2853 {
2854 stream.Indent();
Greg Clayton5521f992011-10-28 21:38:01 +00002855 stream.Printf ("%4zu: %s\n", i, m_command_history[i].c_str());
Jim Inghama5a97eb2011-07-12 03:12:18 +00002856 }
2857 }
2858}
2859
2860const char *
2861CommandInterpreter::FindHistoryString (const char *input_str) const
2862{
2863 if (input_str[0] != m_repeat_char)
2864 return NULL;
2865 if (input_str[1] == '-')
2866 {
2867 bool success;
Greg Claytonc7bece562013-01-25 18:06:21 +00002868 size_t idx = Args::StringToUInt32 (input_str+2, 0, 0, &success);
Jim Inghama5a97eb2011-07-12 03:12:18 +00002869 if (!success)
2870 return NULL;
2871 if (idx > m_command_history.size())
2872 return NULL;
2873 idx = m_command_history.size() - idx;
2874 return m_command_history[idx].c_str();
2875
2876 }
2877 else if (input_str[1] == m_repeat_char)
2878 {
2879 if (m_command_history.empty())
2880 return NULL;
2881 else
2882 return m_command_history.back().c_str();
2883 }
2884 else
2885 {
2886 bool success;
2887 uint32_t idx = Args::StringToUInt32 (input_str+1, 0, 0, &success);
2888 if (!success)
2889 return NULL;
2890 if (idx >= m_command_history.size())
2891 return NULL;
2892 return m_command_history[idx].c_str();
2893 }
2894}