blob: b7cc607e80701d93a83b5c9311763ea9a6e7a4d7 [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
10#include <string>
Caroline Tice4ab31c92010-10-12 21:57:09 +000011#include <vector>
Chris Lattner30fdc8d2010-06-08 16:52:24 +000012#include <stdlib.h>
13
Greg Clayton4a33d312011-06-23 17:59:56 +000014#include "CommandObjectScript.h"
Peter Collingbourne08405b62011-06-23 20:37:26 +000015#include "lldb/Interpreter/CommandObjectRegexCommand.h"
Greg Clayton4a33d312011-06-23 17:59:56 +000016
Eli Friedman3afb70c2010-06-13 02:17:17 +000017#include "../Commands/CommandObjectApropos.h"
18#include "../Commands/CommandObjectArgs.h"
19#include "../Commands/CommandObjectBreakpoint.h"
Tamas Berghammer3937bc62015-07-02 10:03:37 +000020#include "../Commands/CommandObjectBugreport.h"
Eli Friedman3afb70c2010-06-13 02:17:17 +000021#include "../Commands/CommandObjectDisassemble.h"
22#include "../Commands/CommandObjectExpression.h"
Eli Friedman3afb70c2010-06-13 02:17:17 +000023#include "../Commands/CommandObjectFrame.h"
Greg Clayton44d93782014-01-27 23:43:24 +000024#include "../Commands/CommandObjectGUI.h"
Eli Friedman3afb70c2010-06-13 02:17:17 +000025#include "../Commands/CommandObjectHelp.h"
Eli Friedman3afb70c2010-06-13 02:17:17 +000026#include "../Commands/CommandObjectLog.h"
27#include "../Commands/CommandObjectMemory.h"
Greg Claytonded470d2011-03-19 01:12:21 +000028#include "../Commands/CommandObjectPlatform.h"
Enrico Granata21dfcd92012-09-28 23:57:51 +000029#include "../Commands/CommandObjectPlugin.h"
Eli Friedman3afb70c2010-06-13 02:17:17 +000030#include "../Commands/CommandObjectProcess.h"
31#include "../Commands/CommandObjectQuit.h"
Eli Friedman3afb70c2010-06-13 02:17:17 +000032#include "../Commands/CommandObjectRegister.h"
Eli Friedman3afb70c2010-06-13 02:17:17 +000033#include "../Commands/CommandObjectSettings.h"
Eli Friedman3afb70c2010-06-13 02:17:17 +000034#include "../Commands/CommandObjectSource.h"
Jim Inghamebc09c32010-07-07 03:36:20 +000035#include "../Commands/CommandObjectCommands.h"
Eli Friedman3afb70c2010-06-13 02:17:17 +000036#include "../Commands/CommandObjectSyntax.h"
37#include "../Commands/CommandObjectTarget.h"
38#include "../Commands/CommandObjectThread.h"
Greg Clayton4a33d312011-06-23 17:59:56 +000039#include "../Commands/CommandObjectType.h"
Johnny Chen31c39da2010-12-23 20:21:44 +000040#include "../Commands/CommandObjectVersion.h"
Johnny Chenf04ee932011-09-22 18:04:58 +000041#include "../Commands/CommandObjectWatchpoint.h"
Colin Rileyc9c55a22015-05-04 18:39:38 +000042#include "../Commands/CommandObjectLanguage.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000043
Chris Lattner30fdc8d2010-06-08 16:52:24 +000044#include "lldb/Core/Debugger.h"
Enrico Granatab5887262012-10-29 21:18:03 +000045#include "lldb/Core/Log.h"
Zachary Turner2c1f46d2015-07-30 20:28:07 +000046#include "lldb/Core/PluginManager.h"
Greg Claytonf0066ad2014-05-02 00:45:31 +000047#include "lldb/Core/State.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000048#include "lldb/Core/Stream.h"
Greg Clayton44d93782014-01-27 23:43:24 +000049#include "lldb/Core/StreamFile.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000050#include "lldb/Core/Timer.h"
Enrico Granatab5887262012-10-29 21:18:03 +000051
Todd Fialacacde7d2014-09-27 16:54:22 +000052#ifndef LLDB_DISABLE_LIBEDIT
Greg Clayton44d93782014-01-27 23:43:24 +000053#include "lldb/Host/Editline.h"
Todd Fialacacde7d2014-09-27 16:54:22 +000054#endif
Greg Clayton7fb56d02011-02-01 01:31:41 +000055#include "lldb/Host/Host.h"
Zachary Turnera21fee02014-08-21 21:49:24 +000056#include "lldb/Host/HostInfo.h"
Enrico Granatab5887262012-10-29 21:18:03 +000057
58#include "lldb/Interpreter/Args.h"
Greg Clayton7d2ef162013-03-29 17:03:23 +000059#include "lldb/Interpreter/CommandCompletions.h"
Enrico Granatab5887262012-10-29 21:18:03 +000060#include "lldb/Interpreter/CommandInterpreter.h"
Greg Clayton7d2ef162013-03-29 17:03:23 +000061#include "lldb/Interpreter/CommandReturnObject.h"
Enrico Granatab5887262012-10-29 21:18:03 +000062#include "lldb/Interpreter/Options.h"
Zachary Turner633a29c2015-03-04 01:58:01 +000063#include "lldb/Interpreter/OptionValueProperties.h"
64#include "lldb/Interpreter/Property.h"
Enrico Granatab5887262012-10-29 21:18:03 +000065
66
Chris Lattner30fdc8d2010-06-08 16:52:24 +000067#include "lldb/Target/Process.h"
68#include "lldb/Target/Thread.h"
69#include "lldb/Target/TargetList.h"
70
Enrico Granatab5887262012-10-29 21:18:03 +000071#include "lldb/Utility/CleanUp.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000072
Zachary Turnera21fee02014-08-21 21:49:24 +000073#include "llvm/ADT/SmallString.h"
Saleem Abdulrasool28606952014-06-27 05:17:41 +000074#include "llvm/ADT/STLExtras.h"
Zachary Turnera21fee02014-08-21 21:49:24 +000075#include "llvm/Support/Path.h"
Saleem Abdulrasool28606952014-06-27 05:17:41 +000076
Chris Lattner30fdc8d2010-06-08 16:52:24 +000077using namespace lldb;
78using namespace lldb_private;
79
Adrian McCarthy2304b6f2015-04-23 20:00:25 +000080static const char *k_white_space = " \t\v";
Greg Clayton754a9362012-08-23 00:22:02 +000081
82static PropertyDefinition
83g_properties[] =
84{
Ed Masted78c9572014-04-20 00:31:37 +000085 { "expand-regex-aliases", OptionValue::eTypeBoolean, true, false, nullptr, nullptr, "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." },
86 { "prompt-on-quit", OptionValue::eTypeBoolean, true, true, nullptr, nullptr, "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." },
87 { "stop-command-source-on-error", OptionValue::eTypeBoolean, true, true, nullptr, nullptr, "If true, LLDB will stop running a 'command source' script upon encountering an error." },
Sean Callanan66810412015-10-19 23:11:07 +000088 { "space-repl-prompts", OptionValue::eTypeBoolean, true, false, nullptr, nullptr, "If true, blank lines will be printed between between REPL submissions." },
Ed Masted78c9572014-04-20 00:31:37 +000089 { nullptr , OptionValue::eTypeInvalid, true, 0 , nullptr, nullptr, nullptr }
Greg Clayton754a9362012-08-23 00:22:02 +000090};
91
92enum
93{
Enrico Granatabcba2b22013-01-17 21:36:19 +000094 ePropertyExpandRegexAliases = 0,
Enrico Granata012d4fc2013-06-11 01:26:35 +000095 ePropertyPromptOnQuit = 1,
Sean Callanan66810412015-10-19 23:11:07 +000096 ePropertyStopCmdSourceOnError = 2,
97 eSpaceReplPrompts = 3
Greg Clayton754a9362012-08-23 00:22:02 +000098};
99
Jim Ingham4bddaeb2012-02-16 06:50:00 +0000100ConstString &
101CommandInterpreter::GetStaticBroadcasterClass ()
102{
103 static ConstString class_name ("lldb.commandInterpreter");
104 return class_name;
105}
106
Zachary Turner2c1f46d2015-07-30 20:28:07 +0000107CommandInterpreter::CommandInterpreter(Debugger &debugger, ScriptLanguage script_language, bool synchronous_execution)
108 : Broadcaster(&debugger, CommandInterpreter::GetStaticBroadcasterClass().AsCString()),
109 Properties(OptionValuePropertiesSP(new OptionValueProperties(ConstString("interpreter")))),
110 IOHandlerDelegate(IOHandlerDelegate::Completion::LLDBCommand),
111 m_debugger(debugger),
112 m_synchronous_execution(synchronous_execution),
113 m_skip_lldbinit_files(false),
114 m_skip_app_init_files(false),
115 m_script_interpreter_sp(),
116 m_command_io_handler_sp(),
117 m_comment_char('#'),
118 m_batch_command_mode(false),
119 m_truncation_warning(eNoTruncation),
120 m_command_source_depth(0),
121 m_num_errors(0),
122 m_quit_requested(false),
123 m_stopped_for_crash(false)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000124{
Greg Clayton67cc0632012-08-22 17:17:09 +0000125 debugger.SetScriptLanguage (script_language);
Greg Claytoncfd1ace2010-10-31 03:01:06 +0000126 SetEventName (eBroadcastBitThreadShouldExit, "thread-should-exit");
127 SetEventName (eBroadcastBitResetPrompt, "reset-prompt");
Greg Clayton67cc0632012-08-22 17:17:09 +0000128 SetEventName (eBroadcastBitQuitCommandReceived, "quit");
Jim Ingham4bddaeb2012-02-16 06:50:00 +0000129 CheckInWithManager ();
Greg Clayton754a9362012-08-23 00:22:02 +0000130 m_collection_sp->Initialize (g_properties);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000131}
132
Greg Clayton754a9362012-08-23 00:22:02 +0000133bool
134CommandInterpreter::GetExpandRegexAliases () const
135{
136 const uint32_t idx = ePropertyExpandRegexAliases;
Ed Masted78c9572014-04-20 00:31:37 +0000137 return m_collection_sp->GetPropertyAtIndexAsBoolean (nullptr, idx, g_properties[idx].default_uint_value != 0);
Greg Clayton754a9362012-08-23 00:22:02 +0000138}
139
Enrico Granatabcba2b22013-01-17 21:36:19 +0000140bool
141CommandInterpreter::GetPromptOnQuit () const
142{
143 const uint32_t idx = ePropertyPromptOnQuit;
Ed Masted78c9572014-04-20 00:31:37 +0000144 return m_collection_sp->GetPropertyAtIndexAsBoolean (nullptr, idx, g_properties[idx].default_uint_value != 0);
Enrico Granatabcba2b22013-01-17 21:36:19 +0000145}
Greg Clayton754a9362012-08-23 00:22:02 +0000146
Ilia Kacf28be2015-03-23 22:45:13 +0000147void
148CommandInterpreter::SetPromptOnQuit (bool b)
149{
150 const uint32_t idx = ePropertyPromptOnQuit;
151 m_collection_sp->SetPropertyAtIndexAsBoolean (nullptr, idx, b);
152}
153
Adrian McCarthy2304b6f2015-04-23 20:00:25 +0000154void
155CommandInterpreter::ResolveCommand(const char *command_line, CommandReturnObject &result)
156{
157 std::string command = command_line;
158 if (ResolveCommandImpl(command, result) != nullptr) {
159 result.AppendMessageWithFormat("%s", command.c_str());
160 result.SetStatus(eReturnStatusSuccessFinishResult);
161 }
162}
163
164
Enrico Granata012d4fc2013-06-11 01:26:35 +0000165bool
166CommandInterpreter::GetStopCmdSourceOnError () const
167{
168 const uint32_t idx = ePropertyStopCmdSourceOnError;
Ed Masted78c9572014-04-20 00:31:37 +0000169 return m_collection_sp->GetPropertyAtIndexAsBoolean (nullptr, idx, g_properties[idx].default_uint_value != 0);
Enrico Granata012d4fc2013-06-11 01:26:35 +0000170}
171
Sean Callanan66810412015-10-19 23:11:07 +0000172bool
173CommandInterpreter::GetSpaceReplPrompts () const
174{
175 const uint32_t idx = eSpaceReplPrompts;
176 return m_collection_sp->GetPropertyAtIndexAsBoolean (nullptr, idx, g_properties[idx].default_uint_value != 0);
177}
178
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000179void
180CommandInterpreter::Initialize ()
181{
182 Timer scoped_timer (__PRETTY_FUNCTION__, __PRETTY_FUNCTION__);
183
184 CommandReturnObject result;
185
186 LoadCommandDictionary ();
187
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000188 // Set up some initial aliases.
Caroline Ticeca90c472011-05-06 21:37:15 +0000189 CommandObjectSP cmd_obj_sp = GetCommandSPExact ("quit", false);
190 if (cmd_obj_sp)
191 {
192 AddAlias ("q", cmd_obj_sp);
193 AddAlias ("exit", cmd_obj_sp);
194 }
Sean Callanan247e62a2012-05-04 23:15:02 +0000195
Johnny Chen6d675242012-08-24 18:15:45 +0000196 cmd_obj_sp = GetCommandSPExact ("_regexp-attach",false);
Sean Callanan247e62a2012-05-04 23:15:02 +0000197 if (cmd_obj_sp)
198 {
199 AddAlias ("attach", cmd_obj_sp);
200 }
Caroline Ticeca90c472011-05-06 21:37:15 +0000201
Johnny Chen6d675242012-08-24 18:15:45 +0000202 cmd_obj_sp = GetCommandSPExact ("process detach",false);
203 if (cmd_obj_sp)
204 {
205 AddAlias ("detach", cmd_obj_sp);
206 }
207
Caroline Ticeca90c472011-05-06 21:37:15 +0000208 cmd_obj_sp = GetCommandSPExact ("process continue", false);
209 if (cmd_obj_sp)
210 {
211 AddAlias ("c", cmd_obj_sp);
212 AddAlias ("continue", cmd_obj_sp);
213 }
214
215 cmd_obj_sp = GetCommandSPExact ("_regexp-break",false);
216 if (cmd_obj_sp)
217 AddAlias ("b", cmd_obj_sp);
218
Jim Inghamca36cd12012-10-05 19:16:31 +0000219 cmd_obj_sp = GetCommandSPExact ("_regexp-tbreak",false);
220 if (cmd_obj_sp)
221 AddAlias ("tbreak", cmd_obj_sp);
222
Caroline Ticeca90c472011-05-06 21:37:15 +0000223 cmd_obj_sp = GetCommandSPExact ("thread step-inst", false);
224 if (cmd_obj_sp)
Jason Molendaf385f122011-10-22 00:47:41 +0000225 {
226 AddAlias ("stepi", cmd_obj_sp);
Caroline Ticeca90c472011-05-06 21:37:15 +0000227 AddAlias ("si", cmd_obj_sp);
Jason Molendaf385f122011-10-22 00:47:41 +0000228 }
229
230 cmd_obj_sp = GetCommandSPExact ("thread step-inst-over", false);
231 if (cmd_obj_sp)
232 {
233 AddAlias ("nexti", cmd_obj_sp);
234 AddAlias ("ni", cmd_obj_sp);
235 }
Caroline Ticeca90c472011-05-06 21:37:15 +0000236
237 cmd_obj_sp = GetCommandSPExact ("thread step-in", false);
238 if (cmd_obj_sp)
239 {
240 AddAlias ("s", cmd_obj_sp);
241 AddAlias ("step", cmd_obj_sp);
242 }
243
244 cmd_obj_sp = GetCommandSPExact ("thread step-over", false);
245 if (cmd_obj_sp)
246 {
247 AddAlias ("n", cmd_obj_sp);
248 AddAlias ("next", cmd_obj_sp);
249 }
250
251 cmd_obj_sp = GetCommandSPExact ("thread step-out", false);
252 if (cmd_obj_sp)
253 {
Caroline Ticeca90c472011-05-06 21:37:15 +0000254 AddAlias ("finish", cmd_obj_sp);
255 }
256
Jim Ingham6d6d1072011-12-02 01:12:59 +0000257 cmd_obj_sp = GetCommandSPExact ("frame select", false);
258 if (cmd_obj_sp)
259 {
260 AddAlias ("f", cmd_obj_sp);
261 }
262
Jim Inghamca36cd12012-10-05 19:16:31 +0000263 cmd_obj_sp = GetCommandSPExact ("thread select", false);
264 if (cmd_obj_sp)
265 {
266 AddAlias ("t", cmd_obj_sp);
267 }
268
Richard Mittonf86248d2013-09-12 02:20:34 +0000269 cmd_obj_sp = GetCommandSPExact ("_regexp-jump",false);
270 if (cmd_obj_sp)
271 {
272 AddAlias ("j", cmd_obj_sp);
273 AddAlias ("jump", cmd_obj_sp);
274 }
275
Greg Clayton6bade322013-02-01 23:33:03 +0000276 cmd_obj_sp = GetCommandSPExact ("_regexp-list", false);
Caroline Ticeca90c472011-05-06 21:37:15 +0000277 if (cmd_obj_sp)
278 {
279 AddAlias ("l", cmd_obj_sp);
280 AddAlias ("list", cmd_obj_sp);
281 }
282
Greg Claytonef5651d2013-02-12 18:52:24 +0000283 cmd_obj_sp = GetCommandSPExact ("_regexp-env", false);
284 if (cmd_obj_sp)
285 {
286 AddAlias ("env", cmd_obj_sp);
287 }
288
Caroline Ticeca90c472011-05-06 21:37:15 +0000289 cmd_obj_sp = GetCommandSPExact ("memory read", false);
290 if (cmd_obj_sp)
291 AddAlias ("x", cmd_obj_sp);
292
293 cmd_obj_sp = GetCommandSPExact ("_regexp-up", false);
294 if (cmd_obj_sp)
295 AddAlias ("up", cmd_obj_sp);
296
297 cmd_obj_sp = GetCommandSPExact ("_regexp-down", false);
298 if (cmd_obj_sp)
299 AddAlias ("down", cmd_obj_sp);
300
Jason Molenda0c8e0062011-10-25 02:11:20 +0000301 cmd_obj_sp = GetCommandSPExact ("_regexp-display", false);
Jason Molendabc7748b2011-10-22 01:30:52 +0000302 if (cmd_obj_sp)
303 AddAlias ("display", cmd_obj_sp);
Jim Ingham7e18e422011-10-24 18:37:00 +0000304
305 cmd_obj_sp = GetCommandSPExact ("disassemble", false);
306 if (cmd_obj_sp)
307 AddAlias ("dis", cmd_obj_sp);
308
309 cmd_obj_sp = GetCommandSPExact ("disassemble", false);
310 if (cmd_obj_sp)
311 AddAlias ("di", cmd_obj_sp);
312
313
Jason Molendabc7748b2011-10-22 01:30:52 +0000314
Jason Molenda0c8e0062011-10-25 02:11:20 +0000315 cmd_obj_sp = GetCommandSPExact ("_regexp-undisplay", false);
Jason Molendabc7748b2011-10-22 01:30:52 +0000316 if (cmd_obj_sp)
317 AddAlias ("undisplay", cmd_obj_sp);
318
Jim Ingham71bf2992012-10-10 16:51:31 +0000319 cmd_obj_sp = GetCommandSPExact ("_regexp-bt", false);
320 if (cmd_obj_sp)
321 AddAlias ("bt", cmd_obj_sp);
322
Caroline Ticeca90c472011-05-06 21:37:15 +0000323 cmd_obj_sp = GetCommandSPExact ("target create", false);
324 if (cmd_obj_sp)
325 AddAlias ("file", cmd_obj_sp);
326
327 cmd_obj_sp = GetCommandSPExact ("target modules", false);
328 if (cmd_obj_sp)
329 AddAlias ("image", cmd_obj_sp);
330
331
332 OptionArgVectorSP alias_arguments_vector_sp (new OptionArgVector);
Jim Inghamffba2292011-03-22 02:29:32 +0000333
Caroline Ticeca90c472011-05-06 21:37:15 +0000334 cmd_obj_sp = GetCommandSPExact ("expression", false);
335 if (cmd_obj_sp)
Sean Callanan90e579f2013-04-17 17:23:58 +0000336 {
Caroline Ticeca90c472011-05-06 21:37:15 +0000337 ProcessAliasOptionsArgs (cmd_obj_sp, "--", alias_arguments_vector_sp);
338 AddAlias ("p", cmd_obj_sp);
339 AddAlias ("print", cmd_obj_sp);
Sean Callanan316d5e42012-08-08 01:30:34 +0000340 AddAlias ("call", cmd_obj_sp);
Caroline Ticeca90c472011-05-06 21:37:15 +0000341 AddOrReplaceAliasOptions ("p", alias_arguments_vector_sp);
342 AddOrReplaceAliasOptions ("print", alias_arguments_vector_sp);
Sean Callanan316d5e42012-08-08 01:30:34 +0000343 AddOrReplaceAliasOptions ("call", alias_arguments_vector_sp);
Caroline Ticeca90c472011-05-06 21:37:15 +0000344
345 alias_arguments_vector_sp.reset (new OptionArgVector);
Greg Clayton9e57dcd2013-05-15 01:03:08 +0000346 ProcessAliasOptionsArgs (cmd_obj_sp, "-O -- ", alias_arguments_vector_sp);
Caroline Ticeca90c472011-05-06 21:37:15 +0000347 AddAlias ("po", cmd_obj_sp);
348 AddOrReplaceAliasOptions ("po", alias_arguments_vector_sp);
349 }
350
Sean Callanan2e1d9ba2012-06-01 23:29:32 +0000351 cmd_obj_sp = GetCommandSPExact ("process kill", false);
352 if (cmd_obj_sp)
Greg Claytone86fd742012-09-27 00:02:27 +0000353 {
Sean Callanan2e1d9ba2012-06-01 23:29:32 +0000354 AddAlias ("kill", cmd_obj_sp);
Greg Claytone86fd742012-09-27 00:02:27 +0000355 }
Sean Callanan2e1d9ba2012-06-01 23:29:32 +0000356
Caroline Ticeca90c472011-05-06 21:37:15 +0000357 cmd_obj_sp = GetCommandSPExact ("process launch", false);
358 if (cmd_obj_sp)
359 {
360 alias_arguments_vector_sp.reset (new OptionArgVector);
Todd Fiala013434e2014-07-09 01:29:05 +0000361#if defined (__arm__) || defined (__arm64__) || defined (__aarch64__)
Jason Molenda85da3122012-07-06 02:46:23 +0000362 ProcessAliasOptionsArgs (cmd_obj_sp, "--", alias_arguments_vector_sp);
363#else
Enrico Granataf5157292015-09-22 22:57:12 +0000364 #if defined(__APPLE__)
365 std::string shell_option;
366 shell_option.append("--shell-expand-args");
367 shell_option.append(" true");
368 shell_option.append(" --");
369 ProcessAliasOptionsArgs (cmd_obj_sp, shell_option.c_str(), alias_arguments_vector_sp);
370 #else
Zachary Turner10687b02014-10-20 17:46:43 +0000371 std::string shell_option;
372 shell_option.append("--shell=");
373 shell_option.append(HostInfo::GetDefaultShell().GetPath());
374 shell_option.append(" --");
375 ProcessAliasOptionsArgs (cmd_obj_sp, shell_option.c_str(), alias_arguments_vector_sp);
Enrico Granataf5157292015-09-22 22:57:12 +0000376 #endif
Jason Molenda85da3122012-07-06 02:46:23 +0000377#endif
Caroline Ticeca90c472011-05-06 21:37:15 +0000378 AddAlias ("r", cmd_obj_sp);
379 AddAlias ("run", cmd_obj_sp);
380 AddOrReplaceAliasOptions ("r", alias_arguments_vector_sp);
381 AddOrReplaceAliasOptions ("run", alias_arguments_vector_sp);
382 }
Greg Clayton843d62d2012-03-29 21:47:51 +0000383
384 cmd_obj_sp = GetCommandSPExact ("target symbols add", false);
385 if (cmd_obj_sp)
386 {
387 AddAlias ("add-dsym", cmd_obj_sp);
388 }
Sean Callananfc732752012-05-21 18:25:19 +0000389
390 cmd_obj_sp = GetCommandSPExact ("breakpoint set", false);
391 if (cmd_obj_sp)
392 {
393 alias_arguments_vector_sp.reset (new OptionArgVector);
394 ProcessAliasOptionsArgs (cmd_obj_sp, "--func-regex %1", alias_arguments_vector_sp);
Jim Ingham06d282d2012-10-18 23:24:12 +0000395 AddAlias ("rbreak", cmd_obj_sp);
396 AddOrReplaceAliasOptions("rbreak", alias_arguments_vector_sp);
Sean Callananfc732752012-05-21 18:25:19 +0000397 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000398}
399
Greg Clayton0c4129f2014-04-25 00:35:14 +0000400void
401CommandInterpreter::Clear()
402{
403 m_command_io_handler_sp.reset();
Zachary Turner2c1f46d2015-07-30 20:28:07 +0000404
405 if (m_script_interpreter_sp)
406 m_script_interpreter_sp->Clear();
Greg Clayton0c4129f2014-04-25 00:35:14 +0000407}
408
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000409const char *
410CommandInterpreter::ProcessEmbeddedScriptCommands (const char *arg)
411{
412 // This function has not yet been implemented.
413
414 // Look for any embedded script command
415 // If found,
416 // get interpreter object from the command dictionary,
417 // call execute_one_command on it,
418 // get the results as a string,
419 // substitute that string for current stuff.
420
421 return arg;
422}
423
424
425void
426CommandInterpreter::LoadCommandDictionary ()
427{
428 Timer scoped_timer (__PRETTY_FUNCTION__, __PRETTY_FUNCTION__);
429
Caroline Ticedaccaa92010-09-20 20:44:43 +0000430 lldb::ScriptLanguage script_language = m_debugger.GetScriptLanguage();
Caroline Tice3df9a8d2010-09-04 00:03:46 +0000431
Greg Claytona7015092010-09-18 01:14:36 +0000432 m_command_dict["apropos"] = CommandObjectSP (new CommandObjectApropos (*this));
Greg Clayton66111032010-06-23 01:19:29 +0000433 m_command_dict["breakpoint"]= CommandObjectSP (new CommandObjectMultiwordBreakpoint (*this));
Tamas Berghammer3937bc62015-07-02 10:03:37 +0000434 m_command_dict["bugreport"] = CommandObjectSP (new CommandObjectMultiwordBugreport (*this));
Johnny Chenb89982d2011-04-21 00:39:18 +0000435 m_command_dict["command"] = CommandObjectSP (new CommandObjectMultiwordCommands (*this));
Greg Claytona7015092010-09-18 01:14:36 +0000436 m_command_dict["disassemble"] = CommandObjectSP (new CommandObjectDisassemble (*this));
437 m_command_dict["expression"]= CommandObjectSP (new CommandObjectExpression (*this));
Greg Clayton66111032010-06-23 01:19:29 +0000438 m_command_dict["frame"] = CommandObjectSP (new CommandObjectMultiwordFrame (*this));
Greg Clayton44d93782014-01-27 23:43:24 +0000439 m_command_dict["gui"] = CommandObjectSP (new CommandObjectGUI (*this));
Greg Claytona7015092010-09-18 01:14:36 +0000440 m_command_dict["help"] = CommandObjectSP (new CommandObjectHelp (*this));
Greg Clayton66111032010-06-23 01:19:29 +0000441 m_command_dict["log"] = CommandObjectSP (new CommandObjectLog (*this));
442 m_command_dict["memory"] = CommandObjectSP (new CommandObjectMemory (*this));
Greg Claytonded470d2011-03-19 01:12:21 +0000443 m_command_dict["platform"] = CommandObjectSP (new CommandObjectPlatform (*this));
Enrico Granata21dfcd92012-09-28 23:57:51 +0000444 m_command_dict["plugin"] = CommandObjectSP (new CommandObjectPlugin (*this));
Greg Clayton66111032010-06-23 01:19:29 +0000445 m_command_dict["process"] = CommandObjectSP (new CommandObjectMultiwordProcess (*this));
Greg Claytona7015092010-09-18 01:14:36 +0000446 m_command_dict["quit"] = CommandObjectSP (new CommandObjectQuit (*this));
Greg Clayton66111032010-06-23 01:19:29 +0000447 m_command_dict["register"] = CommandObjectSP (new CommandObjectRegister (*this));
Greg Claytona7015092010-09-18 01:14:36 +0000448 m_command_dict["script"] = CommandObjectSP (new CommandObjectScript (*this, script_language));
Caroline Tice3df9a8d2010-09-04 00:03:46 +0000449 m_command_dict["settings"] = CommandObjectSP (new CommandObjectMultiwordSettings (*this));
Jim Inghamebc09c32010-07-07 03:36:20 +0000450 m_command_dict["source"] = CommandObjectSP (new CommandObjectMultiwordSource (*this));
Greg Clayton66111032010-06-23 01:19:29 +0000451 m_command_dict["target"] = CommandObjectSP (new CommandObjectMultiwordTarget (*this));
452 m_command_dict["thread"] = CommandObjectSP (new CommandObjectMultiwordThread (*this));
Enrico Granata223383e2011-08-16 23:24:13 +0000453 m_command_dict["type"] = CommandObjectSP (new CommandObjectType (*this));
Johnny Chen31c39da2010-12-23 20:21:44 +0000454 m_command_dict["version"] = CommandObjectSP (new CommandObjectVersion (*this));
Johnny Chenf04ee932011-09-22 18:04:58 +0000455 m_command_dict["watchpoint"]= CommandObjectSP (new CommandObjectMultiwordWatchpoint (*this));
Colin Rileyc9c55a22015-05-04 18:39:38 +0000456 m_command_dict["language"] = CommandObjectSP (new CommandObjectLanguage(*this));
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000457
Jim Inghamca36cd12012-10-05 19:16:31 +0000458 const char *break_regexes[][2] = {{"^(.*[^[:space:]])[[:space:]]*:[[:space:]]*([[:digit:]]+)[[:space:]]*$", "breakpoint set --file '%1' --line %2"},
Greg Claytond90ac932014-12-01 22:34:03 +0000459 {"^/([^/]+)/$", "breakpoint set --source-pattern-regexp '%1'"},
Jim Inghamca36cd12012-10-05 19:16:31 +0000460 {"^([[:digit:]]+)[[:space:]]*$", "breakpoint set --line %1"},
Greg Clayton722e8852013-02-08 02:54:24 +0000461 {"^\\*?(0x[[:xdigit:]]+)[[:space:]]*$", "breakpoint set --address %1"},
Greg Clayton1b3815c2013-01-30 00:18:29 +0000462 {"^[\"']?([-+]?\\[.*\\])[\"']?[[:space:]]*$", "breakpoint set --name '%1'"},
Jim Inghamca36cd12012-10-05 19:16:31 +0000463 {"^(-.*)$", "breakpoint set %1"},
464 {"^(.*[^[:space:]])`(.*[^[:space:]])[[:space:]]*$", "breakpoint set --name '%2' --shlib '%1'"},
Greg Clayton722e8852013-02-08 02:54:24 +0000465 {"^\\&(.*[^[:space:]])[[:space:]]*$", "breakpoint set --name '%1' --skip-prologue=0"},
Greg Clayton2d4b5122014-08-14 17:58:33 +0000466 {"^[\"']?(.*[^[:space:]\"'])[\"']?[[:space:]]*$", "breakpoint set --name '%1'"}};
Jim Inghamca36cd12012-10-05 19:16:31 +0000467
Saleem Abdulrasool28606952014-06-27 05:17:41 +0000468 size_t num_regexes = llvm::array_lengthof(break_regexes);
Jim Inghamca36cd12012-10-05 19:16:31 +0000469
Greg Clayton7b0992d2013-04-18 22:45:39 +0000470 std::unique_ptr<CommandObjectRegexCommand>
Greg Claytona7015092010-09-18 01:14:36 +0000471 break_regex_cmd_ap(new CommandObjectRegexCommand (*this,
Greg Clayton8b82f082011-04-12 05:54:46 +0000472 "_regexp-break",
Greg Clayton910db5c2015-03-07 00:01:46 +0000473 "Set a breakpoint using a regular expression to specify the location, where <linenum> is in decimal and <address> is in hex.\n",
474 "\n_regexp-break <filename>:<linenum> # _regexp-break main.c:12 // Break on line 12 of main.c\n"
475 "_regexp-break <linenum> # _regexp-break 12 // Break on line 12 of current file\n"
476 "_regexp-break <address> # _regexp-break 0x1234000 // Break on address 0x1234000\n"
477 "_regexp-break <name> # _regexp-break main // Break in 'main' after the prologue\n"
478 "_regexp-break &<name> # _regexp-break &main // Break on the first instruction in 'main'\n"
479 "_regexp-break <module>`<name> # _regexp-break libc.so`malloc // Break in 'malloc' only in the 'libc.so' shared library\n"
480 "_regexp-break /<source-regex>/ # _regexp-break /break here/ // Break on all lines that match the regular expression 'break here' in the current file.\n",
Greg Clayton7d2ef162013-03-29 17:03:23 +0000481 2,
482 CommandCompletions::eSymbolCompletion |
Greg Claytonb5472782015-01-09 19:08:20 +0000483 CommandCompletions::eSourceFileCompletion,
484 false));
Jim Inghamca36cd12012-10-05 19:16:31 +0000485
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000486 if (break_regex_cmd_ap.get())
487 {
Jim Inghamca36cd12012-10-05 19:16:31 +0000488 bool success = true;
489 for (size_t i = 0; i < num_regexes; i++)
490 {
491 success = break_regex_cmd_ap->AddRegexCommand (break_regexes[i][0], break_regexes[i][1]);
492 if (!success)
493 break;
494 }
495 success = break_regex_cmd_ap->AddRegexCommand("^$", "breakpoint list --full");
496
497 if (success)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000498 {
499 CommandObjectSP break_regex_cmd_sp(break_regex_cmd_ap.release());
500 m_command_dict[break_regex_cmd_sp->GetCommandName ()] = break_regex_cmd_sp;
501 }
502 }
Jim Inghamffba2292011-03-22 02:29:32 +0000503
Greg Clayton7b0992d2013-04-18 22:45:39 +0000504 std::unique_ptr<CommandObjectRegexCommand>
Jim Inghamca36cd12012-10-05 19:16:31 +0000505 tbreak_regex_cmd_ap(new CommandObjectRegexCommand (*this,
506 "_regexp-tbreak",
507 "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 +0000508 "_regexp-tbreak [<filename>:<linenum>]\n_regexp-break [<linenum>]\n_regexp-break [<address>]\n_regexp-break <...>",
509 2,
510 CommandCompletions::eSymbolCompletion |
Greg Claytonb5472782015-01-09 19:08:20 +0000511 CommandCompletions::eSourceFileCompletion,
512 false));
Jim Inghamca36cd12012-10-05 19:16:31 +0000513
514 if (tbreak_regex_cmd_ap.get())
515 {
516 bool success = true;
517 for (size_t i = 0; i < num_regexes; i++)
518 {
519 // If you add a resultant command string longer than 1024 characters be sure to increase the size of this buffer.
520 char buffer[1024];
521 int num_printed = snprintf(buffer, 1024, "%s %s", break_regexes[i][1], "-o");
522 assert (num_printed < 1024);
Bruce Mitchener8a67bf72015-07-24 00:23:29 +0000523 UNUSED_IF_ASSERT_DISABLED(num_printed);
Jim Inghamca36cd12012-10-05 19:16:31 +0000524 success = tbreak_regex_cmd_ap->AddRegexCommand (break_regexes[i][0], buffer);
525 if (!success)
526 break;
527 }
528 success = tbreak_regex_cmd_ap->AddRegexCommand("^$", "breakpoint list --full");
529
530 if (success)
531 {
532 CommandObjectSP tbreak_regex_cmd_sp(tbreak_regex_cmd_ap.release());
533 m_command_dict[tbreak_regex_cmd_sp->GetCommandName ()] = tbreak_regex_cmd_sp;
534 }
535 }
536
Greg Clayton7b0992d2013-04-18 22:45:39 +0000537 std::unique_ptr<CommandObjectRegexCommand>
Johnny Chen6d675242012-08-24 18:15:45 +0000538 attach_regex_cmd_ap(new CommandObjectRegexCommand (*this,
539 "_regexp-attach",
540 "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 +0000541 "_regexp-attach [<pid>]\n_regexp-attach [<process-name>]",
Greg Claytonb5472782015-01-09 19:08:20 +0000542 2,
543 0,
544 false));
Johnny Chen6d675242012-08-24 18:15:45 +0000545 if (attach_regex_cmd_ap.get())
546 {
Greg Clayton3cb4c7d2012-12-15 01:19:07 +0000547 if (attach_regex_cmd_ap->AddRegexCommand("^([0-9]+)[[:space:]]*$", "process attach --pid %1") &&
548 attach_regex_cmd_ap->AddRegexCommand("^(-.*|.* -.*)$", "process attach %1") && // Any options that are specified get passed to 'process attach'
549 attach_regex_cmd_ap->AddRegexCommand("^(.+)$", "process attach --name '%1'") &&
550 attach_regex_cmd_ap->AddRegexCommand("^$", "process attach"))
Johnny Chen6d675242012-08-24 18:15:45 +0000551 {
552 CommandObjectSP attach_regex_cmd_sp(attach_regex_cmd_ap.release());
553 m_command_dict[attach_regex_cmd_sp->GetCommandName ()] = attach_regex_cmd_sp;
554 }
555 }
556
Greg Clayton7b0992d2013-04-18 22:45:39 +0000557 std::unique_ptr<CommandObjectRegexCommand>
Jim Inghamffba2292011-03-22 02:29:32 +0000558 down_regex_cmd_ap(new CommandObjectRegexCommand (*this,
Greg Clayton8b82f082011-04-12 05:54:46 +0000559 "_regexp-down",
560 "Go down \"n\" frames in the stack (1 frame by default).",
Greg Claytonb5472782015-01-09 19:08:20 +0000561 "_regexp-down [n]",
562 2,
563 0,
564 false));
Jim Inghamffba2292011-03-22 02:29:32 +0000565 if (down_regex_cmd_ap.get())
566 {
567 if (down_regex_cmd_ap->AddRegexCommand("^$", "frame select -r -1") &&
568 down_regex_cmd_ap->AddRegexCommand("^([0-9]+)$", "frame select -r -%1"))
569 {
570 CommandObjectSP down_regex_cmd_sp(down_regex_cmd_ap.release());
571 m_command_dict[down_regex_cmd_sp->GetCommandName ()] = down_regex_cmd_sp;
572 }
573 }
574
Greg Clayton7b0992d2013-04-18 22:45:39 +0000575 std::unique_ptr<CommandObjectRegexCommand>
Jim Inghamffba2292011-03-22 02:29:32 +0000576 up_regex_cmd_ap(new CommandObjectRegexCommand (*this,
Greg Clayton8b82f082011-04-12 05:54:46 +0000577 "_regexp-up",
578 "Go up \"n\" frames in the stack (1 frame by default).",
Greg Claytonb5472782015-01-09 19:08:20 +0000579 "_regexp-up [n]",
580 2,
581 0,
582 false));
Jim Inghamffba2292011-03-22 02:29:32 +0000583 if (up_regex_cmd_ap.get())
584 {
585 if (up_regex_cmd_ap->AddRegexCommand("^$", "frame select -r 1") &&
586 up_regex_cmd_ap->AddRegexCommand("^([0-9]+)$", "frame select -r %1"))
587 {
588 CommandObjectSP up_regex_cmd_sp(up_regex_cmd_ap.release());
589 m_command_dict[up_regex_cmd_sp->GetCommandName ()] = up_regex_cmd_sp;
590 }
591 }
Jason Molendabc7748b2011-10-22 01:30:52 +0000592
Greg Clayton7b0992d2013-04-18 22:45:39 +0000593 std::unique_ptr<CommandObjectRegexCommand>
Jason Molendabc7748b2011-10-22 01:30:52 +0000594 display_regex_cmd_ap(new CommandObjectRegexCommand (*this,
Greg Clayton7d2ef162013-03-29 17:03:23 +0000595 "_regexp-display",
596 "Add an expression evaluation stop-hook.",
Greg Claytonb5472782015-01-09 19:08:20 +0000597 "_regexp-display expression",
598 2,
599 0,
600 false));
Jason Molendabc7748b2011-10-22 01:30:52 +0000601 if (display_regex_cmd_ap.get())
602 {
603 if (display_regex_cmd_ap->AddRegexCommand("^(.+)$", "target stop-hook add -o \"expr -- %1\""))
604 {
605 CommandObjectSP display_regex_cmd_sp(display_regex_cmd_ap.release());
606 m_command_dict[display_regex_cmd_sp->GetCommandName ()] = display_regex_cmd_sp;
607 }
608 }
609
Greg Clayton7b0992d2013-04-18 22:45:39 +0000610 std::unique_ptr<CommandObjectRegexCommand>
Jason Molendabc7748b2011-10-22 01:30:52 +0000611 undisplay_regex_cmd_ap(new CommandObjectRegexCommand (*this,
Greg Clayton7d2ef162013-03-29 17:03:23 +0000612 "_regexp-undisplay",
613 "Remove an expression evaluation stop-hook.",
Greg Claytonb5472782015-01-09 19:08:20 +0000614 "_regexp-undisplay stop-hook-number",
615 2,
616 0,
617 false));
Jason Molendabc7748b2011-10-22 01:30:52 +0000618 if (undisplay_regex_cmd_ap.get())
619 {
620 if (undisplay_regex_cmd_ap->AddRegexCommand("^([0-9]+)$", "target stop-hook delete %1"))
621 {
622 CommandObjectSP undisplay_regex_cmd_sp(undisplay_regex_cmd_ap.release());
623 m_command_dict[undisplay_regex_cmd_sp->GetCommandName ()] = undisplay_regex_cmd_sp;
624 }
625 }
626
Greg Clayton7b0992d2013-04-18 22:45:39 +0000627 std::unique_ptr<CommandObjectRegexCommand>
Greg Clayton30c0a1c2012-09-26 22:26:47 +0000628 connect_gdb_remote_cmd_ap(new CommandObjectRegexCommand (*this,
Greg Clayton7d2ef162013-03-29 17:03:23 +0000629 "gdb-remote",
630 "Connect to a remote GDB server. If no hostname is provided, localhost is assumed.",
Greg Claytonb5472782015-01-09 19:08:20 +0000631 "gdb-remote [<hostname>:]<portnum>",
632 2,
633 0,
634 false));
Greg Clayton30c0a1c2012-09-26 22:26:47 +0000635 if (connect_gdb_remote_cmd_ap.get())
636 {
637 if (connect_gdb_remote_cmd_ap->AddRegexCommand("^([^:]+:[[:digit:]]+)$", "process connect --plugin gdb-remote connect://%1") &&
638 connect_gdb_remote_cmd_ap->AddRegexCommand("^([[:digit:]]+)$", "process connect --plugin gdb-remote connect://localhost:%1"))
639 {
640 CommandObjectSP command_sp(connect_gdb_remote_cmd_ap.release());
641 m_command_dict[command_sp->GetCommandName ()] = command_sp;
642 }
643 }
644
Greg Clayton7b0992d2013-04-18 22:45:39 +0000645 std::unique_ptr<CommandObjectRegexCommand>
Greg Clayton30c0a1c2012-09-26 22:26:47 +0000646 connect_kdp_remote_cmd_ap(new CommandObjectRegexCommand (*this,
647 "kdp-remote",
Jason Molendaa7dcb332012-10-23 03:05:16 +0000648 "Connect to a remote KDP server. udp port 41139 is the default port number.",
Greg Claytonb5472782015-01-09 19:08:20 +0000649 "kdp-remote <hostname>[:<portnum>]",
650 2,
651 0,
652 false));
Greg Clayton30c0a1c2012-09-26 22:26:47 +0000653 if (connect_kdp_remote_cmd_ap.get())
654 {
655 if (connect_kdp_remote_cmd_ap->AddRegexCommand("^([^:]+:[[:digit:]]+)$", "process connect --plugin kdp-remote udp://%1") &&
Jason Molendac36b1842012-09-27 02:47:55 +0000656 connect_kdp_remote_cmd_ap->AddRegexCommand("^(.+)$", "process connect --plugin kdp-remote udp://%1:41139"))
Greg Clayton30c0a1c2012-09-26 22:26:47 +0000657 {
658 CommandObjectSP command_sp(connect_kdp_remote_cmd_ap.release());
659 m_command_dict[command_sp->GetCommandName ()] = command_sp;
660 }
661 }
662
Greg Clayton7b0992d2013-04-18 22:45:39 +0000663 std::unique_ptr<CommandObjectRegexCommand>
Jason Molenda4cddfed2012-10-05 05:29:32 +0000664 bt_regex_cmd_ap(new CommandObjectRegexCommand (*this,
Greg Claytonb5472782015-01-09 19:08:20 +0000665 "_regexp-bt",
666 "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.",
667 "bt [<digit>|all]",
668 2,
669 0,
670 false));
Jason Molenda4cddfed2012-10-05 05:29:32 +0000671 if (bt_regex_cmd_ap.get())
672 {
673 // accept but don't document "bt -c <number>" -- before bt was a regex command if you wanted to backtrace
674 // three frames you would do "bt -c 3" but the intention is to have this emulate the gdb "bt" command and
675 // so now "bt 3" is the preferred form, in line with gdb.
676 if (bt_regex_cmd_ap->AddRegexCommand("^([[:digit:]]+)$", "thread backtrace -c %1") &&
677 bt_regex_cmd_ap->AddRegexCommand("^-c ([[:digit:]]+)$", "thread backtrace -c %1") &&
678 bt_regex_cmd_ap->AddRegexCommand("^all$", "thread backtrace all") &&
679 bt_regex_cmd_ap->AddRegexCommand("^$", "thread backtrace"))
680 {
681 CommandObjectSP command_sp(bt_regex_cmd_ap.release());
682 m_command_dict[command_sp->GetCommandName ()] = command_sp;
683 }
684 }
685
Greg Clayton7b0992d2013-04-18 22:45:39 +0000686 std::unique_ptr<CommandObjectRegexCommand>
Greg Clayton6bade322013-02-01 23:33:03 +0000687 list_regex_cmd_ap(new CommandObjectRegexCommand (*this,
688 "_regexp-list",
689 "Implements the GDB 'list' command in all of its forms except FILE:FUNCTION and maps them to the appropriate 'source list' commands.",
Ben Langmuiredb3b212013-09-26 20:00:01 +0000690 "_regexp-list [<line>]\n_regexp-list [<file>:<line>]\n_regexp-list [<file>:<line>]",
Greg Clayton7d2ef162013-03-29 17:03:23 +0000691 2,
Greg Claytonb5472782015-01-09 19:08:20 +0000692 CommandCompletions::eSourceFileCompletion,
693 false));
Greg Clayton6bade322013-02-01 23:33:03 +0000694 if (list_regex_cmd_ap.get())
695 {
696 if (list_regex_cmd_ap->AddRegexCommand("^([0-9]+)[[:space:]]*$", "source list --line %1") &&
697 list_regex_cmd_ap->AddRegexCommand("^(.*[^[:space:]])[[:space:]]*:[[:space:]]*([[:digit:]]+)[[:space:]]*$", "source list --file '%1' --line %2") &&
698 list_regex_cmd_ap->AddRegexCommand("^\\*?(0x[[:xdigit:]]+)[[:space:]]*$", "source list --address %1") &&
Greg Claytond9010962013-02-12 18:42:05 +0000699 list_regex_cmd_ap->AddRegexCommand("^-[[:space:]]*$", "source list --reverse") &&
Greg Claytone4ca5152013-03-13 18:25:49 +0000700 list_regex_cmd_ap->AddRegexCommand("^-([[:digit:]]+)[[:space:]]*$", "source list --reverse --count %1") &&
Greg Clayton6bade322013-02-01 23:33:03 +0000701 list_regex_cmd_ap->AddRegexCommand("^(.+)$", "source list --name \"%1\"") &&
702 list_regex_cmd_ap->AddRegexCommand("^$", "source list"))
703 {
704 CommandObjectSP list_regex_cmd_sp(list_regex_cmd_ap.release());
705 m_command_dict[list_regex_cmd_sp->GetCommandName ()] = list_regex_cmd_sp;
706 }
707 }
708
Greg Clayton7b0992d2013-04-18 22:45:39 +0000709 std::unique_ptr<CommandObjectRegexCommand>
Greg Claytonef5651d2013-02-12 18:52:24 +0000710 env_regex_cmd_ap(new CommandObjectRegexCommand (*this,
Greg Clayton7d2ef162013-03-29 17:03:23 +0000711 "_regexp-env",
712 "Implements a shortcut to viewing and setting environment variables.",
Greg Claytonb5472782015-01-09 19:08:20 +0000713 "_regexp-env\n_regexp-env FOO=BAR",
714 2,
715 0,
716 false));
Greg Claytonef5651d2013-02-12 18:52:24 +0000717 if (env_regex_cmd_ap.get())
718 {
719 if (env_regex_cmd_ap->AddRegexCommand("^$", "settings show target.env-vars") &&
720 env_regex_cmd_ap->AddRegexCommand("^([A-Za-z_][A-Za-z_0-9]*=.*)$", "settings set target.env-vars %1"))
721 {
722 CommandObjectSP env_regex_cmd_sp(env_regex_cmd_ap.release());
723 m_command_dict[env_regex_cmd_sp->GetCommandName ()] = env_regex_cmd_sp;
724 }
725 }
726
Richard Mittonf86248d2013-09-12 02:20:34 +0000727 std::unique_ptr<CommandObjectRegexCommand>
728 jump_regex_cmd_ap(new CommandObjectRegexCommand (*this,
729 "_regexp-jump",
730 "Sets the program counter to a new address.",
731 "_regexp-jump [<line>]\n"
732 "_regexp-jump [<+-lineoffset>]\n"
733 "_regexp-jump [<file>:<line>]\n"
Greg Claytonb5472782015-01-09 19:08:20 +0000734 "_regexp-jump [*<addr>]\n",
735 2,
736 0,
737 false));
Richard Mittonf86248d2013-09-12 02:20:34 +0000738 if (jump_regex_cmd_ap.get())
739 {
740 if (jump_regex_cmd_ap->AddRegexCommand("^\\*(.*)$", "thread jump --addr %1") &&
741 jump_regex_cmd_ap->AddRegexCommand("^([0-9]+)$", "thread jump --line %1") &&
742 jump_regex_cmd_ap->AddRegexCommand("^([^:]+):([0-9]+)$", "thread jump --file %1 --line %2") &&
743 jump_regex_cmd_ap->AddRegexCommand("^([+\\-][0-9]+)$", "thread jump --by %1"))
744 {
745 CommandObjectSP jump_regex_cmd_sp(jump_regex_cmd_ap.release());
746 m_command_dict[jump_regex_cmd_sp->GetCommandName ()] = jump_regex_cmd_sp;
747 }
748 }
749
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000750}
751
752int
753CommandInterpreter::GetCommandNamesMatchingPartialString (const char *cmd_str, bool include_aliases,
754 StringList &matches)
755{
756 CommandObject::AddNamesMatchingPartialString (m_command_dict, cmd_str, matches);
757
758 if (include_aliases)
759 {
760 CommandObject::AddNamesMatchingPartialString (m_alias_dict, cmd_str, matches);
761 }
762
763 return matches.GetSize();
764}
765
766CommandObjectSP
767CommandInterpreter::GetCommandSP (const char *cmd_cstr, bool include_aliases, bool exact, StringList *matches)
768{
769 CommandObject::CommandMap::iterator pos;
Greg Claytonc7bece562013-01-25 18:06:21 +0000770 CommandObjectSP command_sp;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000771
772 std::string cmd(cmd_cstr);
773
774 if (HasCommands())
775 {
776 pos = m_command_dict.find(cmd);
777 if (pos != m_command_dict.end())
Greg Claytonc7bece562013-01-25 18:06:21 +0000778 command_sp = pos->second;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000779 }
780
781 if (include_aliases && HasAliases())
782 {
783 pos = m_alias_dict.find(cmd);
784 if (pos != m_alias_dict.end())
Greg Claytonc7bece562013-01-25 18:06:21 +0000785 command_sp = pos->second;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000786 }
787
788 if (HasUserCommands())
789 {
790 pos = m_user_dict.find(cmd);
791 if (pos != m_user_dict.end())
Greg Claytonc7bece562013-01-25 18:06:21 +0000792 command_sp = pos->second;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000793 }
794
Greg Claytonc7bece562013-01-25 18:06:21 +0000795 if (!exact && !command_sp)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000796 {
Jim Ingham279a6c22010-07-06 22:46:59 +0000797 // We will only get into here if we didn't find any exact matches.
798
799 CommandObjectSP user_match_sp, alias_match_sp, real_match_sp;
800
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000801 StringList local_matches;
Ed Masted78c9572014-04-20 00:31:37 +0000802 if (matches == nullptr)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000803 matches = &local_matches;
804
Jim Ingham279a6c22010-07-06 22:46:59 +0000805 unsigned int num_cmd_matches = 0;
806 unsigned int num_alias_matches = 0;
807 unsigned int num_user_matches = 0;
808
809 // Look through the command dictionaries one by one, and if we get only one match from any of
810 // them in toto, then return that, otherwise return an empty CommandObjectSP and the list of matches.
811
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000812 if (HasCommands())
813 {
814 num_cmd_matches = CommandObject::AddNamesMatchingPartialString (m_command_dict, cmd_cstr, *matches);
815 }
816
817 if (num_cmd_matches == 1)
818 {
819 cmd.assign(matches->GetStringAtIndex(0));
820 pos = m_command_dict.find(cmd);
821 if (pos != m_command_dict.end())
Jim Ingham279a6c22010-07-06 22:46:59 +0000822 real_match_sp = pos->second;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000823 }
824
Jim Ingham490ac552010-06-24 20:28:42 +0000825 if (include_aliases && HasAliases())
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000826 {
827 num_alias_matches = CommandObject::AddNamesMatchingPartialString (m_alias_dict, cmd_cstr, *matches);
828
829 }
830
Jim Ingham279a6c22010-07-06 22:46:59 +0000831 if (num_alias_matches == 1)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000832 {
833 cmd.assign(matches->GetStringAtIndex (num_cmd_matches));
834 pos = m_alias_dict.find(cmd);
835 if (pos != m_alias_dict.end())
Jim Ingham279a6c22010-07-06 22:46:59 +0000836 alias_match_sp = pos->second;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000837 }
838
Jim Ingham490ac552010-06-24 20:28:42 +0000839 if (HasUserCommands())
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000840 {
841 num_user_matches = CommandObject::AddNamesMatchingPartialString (m_user_dict, cmd_cstr, *matches);
842 }
843
Jim Ingham279a6c22010-07-06 22:46:59 +0000844 if (num_user_matches == 1)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000845 {
846 cmd.assign (matches->GetStringAtIndex (num_cmd_matches + num_alias_matches));
847
848 pos = m_user_dict.find (cmd);
849 if (pos != m_user_dict.end())
Jim Ingham279a6c22010-07-06 22:46:59 +0000850 user_match_sp = pos->second;
851 }
852
853 // If we got exactly one match, return that, otherwise return the match list.
854
855 if (num_user_matches + num_cmd_matches + num_alias_matches == 1)
856 {
857 if (num_cmd_matches)
858 return real_match_sp;
859 else if (num_alias_matches)
860 return alias_match_sp;
861 else
862 return user_match_sp;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000863 }
864 }
Greg Claytonc7bece562013-01-25 18:06:21 +0000865 else if (matches && command_sp)
Jim Ingham279a6c22010-07-06 22:46:59 +0000866 {
867 matches->AppendString (cmd_cstr);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000868 }
869
870
Greg Claytonc7bece562013-01-25 18:06:21 +0000871 return command_sp;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000872}
873
Greg Claytonde164aa2011-04-20 16:37:46 +0000874bool
875CommandInterpreter::AddCommand (const char *name, const lldb::CommandObjectSP &cmd_sp, bool can_replace)
876{
877 if (name && name[0])
878 {
879 std::string name_sstr(name);
Enrico Granatae00af802012-10-01 17:19:37 +0000880 bool found = (m_command_dict.find (name_sstr) != m_command_dict.end());
881 if (found && !can_replace)
882 return false;
883 if (found && m_command_dict[name_sstr]->IsRemovable() == false)
Enrico Granata21dfcd92012-09-28 23:57:51 +0000884 return false;
Greg Claytonde164aa2011-04-20 16:37:46 +0000885 m_command_dict[name_sstr] = cmd_sp;
886 return true;
887 }
888 return false;
889}
890
Enrico Granata223383e2011-08-16 23:24:13 +0000891bool
Enrico Granata0a305db2011-11-07 22:57:04 +0000892CommandInterpreter::AddUserCommand (std::string name,
Enrico Granata223383e2011-08-16 23:24:13 +0000893 const lldb::CommandObjectSP &cmd_sp,
894 bool can_replace)
895{
Enrico Granata0a305db2011-11-07 22:57:04 +0000896 if (!name.empty())
Enrico Granata223383e2011-08-16 23:24:13 +0000897 {
Enrico Granata0a305db2011-11-07 22:57:04 +0000898
899 const char* name_cstr = name.c_str();
900
901 // do not allow replacement of internal commands
902 if (CommandExists(name_cstr))
Enrico Granata21dfcd92012-09-28 23:57:51 +0000903 {
904 if (can_replace == false)
905 return false;
906 if (m_command_dict[name]->IsRemovable() == false)
907 return false;
908 }
Enrico Granata0a305db2011-11-07 22:57:04 +0000909
Enrico Granata21dfcd92012-09-28 23:57:51 +0000910 if (UserCommandExists(name_cstr))
911 {
912 if (can_replace == false)
913 return false;
914 if (m_user_dict[name]->IsRemovable() == false)
915 return false;
916 }
917
Enrico Granata0a305db2011-11-07 22:57:04 +0000918 m_user_dict[name] = cmd_sp;
Enrico Granata223383e2011-08-16 23:24:13 +0000919 return true;
920 }
921 return false;
922}
Greg Claytonde164aa2011-04-20 16:37:46 +0000923
Jim Ingham279a6c22010-07-06 22:46:59 +0000924CommandObjectSP
925CommandInterpreter::GetCommandSPExact (const char *cmd_cstr, bool include_aliases)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000926{
Caroline Tice472362e2010-12-14 18:51:39 +0000927 Args cmd_words (cmd_cstr); // Break up the command string into words, in case it's a multi-word command.
928 CommandObjectSP ret_val; // Possibly empty return value.
929
Ed Masted78c9572014-04-20 00:31:37 +0000930 if (cmd_cstr == nullptr)
Caroline Tice472362e2010-12-14 18:51:39 +0000931 return ret_val;
932
933 if (cmd_words.GetArgumentCount() == 1)
Ed Masted78c9572014-04-20 00:31:37 +0000934 return GetCommandSP(cmd_cstr, include_aliases, true, nullptr);
Caroline Tice472362e2010-12-14 18:51:39 +0000935 else
936 {
937 // We have a multi-word command (seemingly), so we need to do more work.
938 // First, get the cmd_obj_sp for the first word in the command.
Ed Masted78c9572014-04-20 00:31:37 +0000939 CommandObjectSP cmd_obj_sp = GetCommandSP (cmd_words.GetArgumentAtIndex (0), include_aliases, true, nullptr);
940 if (cmd_obj_sp.get() != nullptr)
Caroline Tice472362e2010-12-14 18:51:39 +0000941 {
942 // Loop through the rest of the words in the command (everything passed in was supposed to be part of a
943 // command name), and find the appropriate sub-command SP for each command word....
944 size_t end = cmd_words.GetArgumentCount();
945 for (size_t j= 1; j < end; ++j)
946 {
947 if (cmd_obj_sp->IsMultiwordObject())
948 {
Greg Clayton998255b2012-10-13 02:07:45 +0000949 cmd_obj_sp = cmd_obj_sp->GetSubcommandSP (cmd_words.GetArgumentAtIndex (j));
Ed Masted78c9572014-04-20 00:31:37 +0000950 if (cmd_obj_sp.get() == nullptr)
Caroline Tice472362e2010-12-14 18:51:39 +0000951 // The sub-command name was invalid. Fail and return the empty 'ret_val'.
952 return ret_val;
953 }
954 else
955 // We have more words in the command name, but we don't have a multiword object. Fail and return
956 // empty 'ret_val'.
957 return ret_val;
958 }
959 // We successfully looped through all the command words and got valid command objects for them. Assign the
960 // last object retrieved to 'ret_val'.
961 ret_val = cmd_obj_sp;
962 }
963 }
964 return ret_val;
Jim Ingham279a6c22010-07-06 22:46:59 +0000965}
966
967CommandObject *
968CommandInterpreter::GetCommandObjectExact (const char *cmd_cstr, bool include_aliases)
969{
970 return GetCommandSPExact (cmd_cstr, include_aliases).get();
971}
972
973CommandObject *
974CommandInterpreter::GetCommandObject (const char *cmd_cstr, StringList *matches)
975{
976 CommandObject *command_obj = GetCommandSP (cmd_cstr, false, true, matches).get();
977
978 // If we didn't find an exact match to the command string in the commands, look in
979 // the aliases.
Enrico Granata5342c442013-06-18 18:01:08 +0000980
981 if (command_obj)
982 return command_obj;
Jim Ingham279a6c22010-07-06 22:46:59 +0000983
Enrico Granata5342c442013-06-18 18:01:08 +0000984 command_obj = GetCommandSP (cmd_cstr, true, true, matches).get();
Jim Ingham279a6c22010-07-06 22:46:59 +0000985
Enrico Granata5342c442013-06-18 18:01:08 +0000986 if (command_obj)
987 return command_obj;
988
989 // If there wasn't an exact match then look for an inexact one in just the commands
Ed Masted78c9572014-04-20 00:31:37 +0000990 command_obj = GetCommandSP(cmd_cstr, false, false, nullptr).get();
Matt Kopec038ff812013-04-23 16:17:32 +0000991
992 // Finally, if there wasn't an inexact match among the commands, look for an inexact
993 // match in both the commands and aliases.
Enrico Granata5342c442013-06-18 18:01:08 +0000994
995 if (command_obj)
996 {
997 if (matches)
998 matches->AppendString(command_obj->GetCommandName());
999 return command_obj;
1000 }
1001
1002 return GetCommandSP(cmd_cstr, true, false, matches).get();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001003}
1004
1005bool
1006CommandInterpreter::CommandExists (const char *cmd)
1007{
1008 return m_command_dict.find(cmd) != m_command_dict.end();
1009}
1010
1011bool
Caroline Ticeca90c472011-05-06 21:37:15 +00001012CommandInterpreter::ProcessAliasOptionsArgs (lldb::CommandObjectSP &cmd_obj_sp,
1013 const char *options_args,
1014 OptionArgVectorSP &option_arg_vector_sp)
1015{
1016 bool success = true;
1017 OptionArgVector *option_arg_vector = option_arg_vector_sp.get();
1018
1019 if (!options_args || (strlen (options_args) < 1))
1020 return true;
1021
1022 std::string options_string (options_args);
1023 Args args (options_args);
1024 CommandReturnObject result;
1025 // Check to see if the command being aliased can take any command options.
1026 Options *options = cmd_obj_sp->GetOptions ();
1027 if (options)
1028 {
1029 // See if any options were specified as part of the alias; if so, handle them appropriately.
1030 options->NotifyOptionParsingStarting ();
1031 args.Unshift ("dummy_arg");
1032 args.ParseAliasOptions (*options, result, option_arg_vector, options_string);
1033 args.Shift ();
1034 if (result.Succeeded())
1035 options->VerifyPartialOptions (result);
1036 if (!result.Succeeded() && result.GetStatus() != lldb::eReturnStatusStarted)
1037 {
1038 result.AppendError ("Unable to create requested alias.\n");
1039 return false;
1040 }
1041 }
1042
Greg Clayton5521f992011-10-28 21:38:01 +00001043 if (!options_string.empty())
Caroline Ticeca90c472011-05-06 21:37:15 +00001044 {
1045 if (cmd_obj_sp->WantsRawCommandString ())
1046 option_arg_vector->push_back (OptionArgPair ("<argument>",
1047 OptionArgValue (-1,
1048 options_string)));
1049 else
1050 {
Greg Claytonc7bece562013-01-25 18:06:21 +00001051 const size_t argc = args.GetArgumentCount();
Caroline Ticeca90c472011-05-06 21:37:15 +00001052 for (size_t i = 0; i < argc; ++i)
1053 if (strcmp (args.GetArgumentAtIndex (i), "") != 0)
1054 option_arg_vector->push_back
1055 (OptionArgPair ("<argument>",
1056 OptionArgValue (-1,
1057 std::string (args.GetArgumentAtIndex (i)))));
1058 }
1059 }
1060
1061 return success;
1062}
1063
1064bool
Jim Ingham298f3782013-04-03 00:25:49 +00001065CommandInterpreter::GetAliasFullName (const char *cmd, std::string &full_name)
1066{
1067 bool exact_match = (m_alias_dict.find(cmd) != m_alias_dict.end());
1068 if (exact_match)
1069 {
1070 full_name.assign(cmd);
1071 return exact_match;
1072 }
1073 else
1074 {
1075 StringList matches;
1076 size_t num_alias_matches;
1077 num_alias_matches = CommandObject::AddNamesMatchingPartialString (m_alias_dict, cmd, matches);
1078 if (num_alias_matches == 1)
1079 {
1080 // Make sure this isn't shadowing a command in the regular command space:
1081 StringList regular_matches;
1082 const bool include_aliases = false;
1083 const bool exact = false;
1084 CommandObjectSP cmd_obj_sp(GetCommandSP (cmd, include_aliases, exact, &regular_matches));
1085 if (cmd_obj_sp || regular_matches.GetSize() > 0)
1086 return false;
1087 else
1088 {
1089 full_name.assign (matches.GetStringAtIndex(0));
1090 return true;
1091 }
1092 }
1093 else
1094 return false;
1095 }
1096}
1097
1098bool
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001099CommandInterpreter::AliasExists (const char *cmd)
1100{
1101 return m_alias_dict.find(cmd) != m_alias_dict.end();
1102}
1103
1104bool
1105CommandInterpreter::UserCommandExists (const char *cmd)
1106{
1107 return m_user_dict.find(cmd) != m_user_dict.end();
1108}
1109
1110void
1111CommandInterpreter::AddAlias (const char *alias_name, CommandObjectSP& command_obj_sp)
1112{
Jim Ingham279a6c22010-07-06 22:46:59 +00001113 command_obj_sp->SetIsAlias (true);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001114 m_alias_dict[alias_name] = command_obj_sp;
1115}
1116
1117bool
1118CommandInterpreter::RemoveAlias (const char *alias_name)
1119{
1120 CommandObject::CommandMap::iterator pos = m_alias_dict.find(alias_name);
1121 if (pos != m_alias_dict.end())
1122 {
1123 m_alias_dict.erase(pos);
1124 return true;
1125 }
1126 return false;
1127}
Greg Claytonb5472782015-01-09 19:08:20 +00001128
1129bool
1130CommandInterpreter::RemoveCommand (const char *cmd)
1131{
1132 auto pos = m_command_dict.find(cmd);
1133 if (pos != m_command_dict.end())
1134 {
1135 if (pos->second->IsRemovable())
1136 {
1137 // Only regular expression objects or python commands are removable
1138 m_command_dict.erase(pos);
1139 return true;
1140 }
1141 }
1142 return false;
1143}
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001144bool
1145CommandInterpreter::RemoveUser (const char *alias_name)
1146{
1147 CommandObject::CommandMap::iterator pos = m_user_dict.find(alias_name);
1148 if (pos != m_user_dict.end())
1149 {
1150 m_user_dict.erase(pos);
1151 return true;
1152 }
1153 return false;
1154}
1155
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001156void
1157CommandInterpreter::GetAliasHelp (const char *alias_name, const char *command_name, StreamString &help_string)
1158{
1159 help_string.Printf ("'%s", command_name);
1160 OptionArgVectorSP option_arg_vector_sp = GetAliasOptions (alias_name);
1161
Sean Callanan9a028512012-08-09 00:50:26 +00001162 if (option_arg_vector_sp)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001163 {
1164 OptionArgVector *options = option_arg_vector_sp.get();
Andy Gibbsa297a972013-06-19 19:04:53 +00001165 for (size_t i = 0; i < options->size(); ++i)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001166 {
1167 OptionArgPair cur_option = (*options)[i];
1168 std::string opt = cur_option.first;
Caroline Ticed9d63362010-12-07 19:58:26 +00001169 OptionArgValue value_pair = cur_option.second;
1170 std::string value = value_pair.second;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001171 if (opt.compare("<argument>") == 0)
1172 {
1173 help_string.Printf (" %s", value.c_str());
1174 }
1175 else
1176 {
1177 help_string.Printf (" %s", opt.c_str());
1178 if ((value.compare ("<no-argument>") != 0)
1179 && (value.compare ("<need-argument") != 0))
1180 {
1181 help_string.Printf (" %s", value.c_str());
1182 }
1183 }
1184 }
1185 }
1186
1187 help_string.Printf ("'");
1188}
1189
Greg Clayton12fc3e02010-08-26 22:05:43 +00001190size_t
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001191CommandInterpreter::FindLongestCommandWord (CommandObject::CommandMap &dict)
1192{
1193 CommandObject::CommandMap::const_iterator pos;
Greg Clayton12fc3e02010-08-26 22:05:43 +00001194 CommandObject::CommandMap::const_iterator end = dict.end();
1195 size_t max_len = 0;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001196
Greg Clayton12fc3e02010-08-26 22:05:43 +00001197 for (pos = dict.begin(); pos != end; ++pos)
1198 {
1199 size_t len = pos->first.size();
1200 if (max_len < len)
1201 max_len = len;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001202 }
Greg Clayton12fc3e02010-08-26 22:05:43 +00001203 return max_len;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001204}
1205
1206void
Enrico Granata223383e2011-08-16 23:24:13 +00001207CommandInterpreter::GetHelp (CommandReturnObject &result,
Enrico Granata08633ee2011-09-09 17:49:36 +00001208 uint32_t cmd_types)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001209{
Kate Stonea487aa42015-01-15 00:52:41 +00001210 const char * help_prologue = GetDebugger().GetIOHandlerHelpPrologue();
1211 if (help_prologue != NULL)
1212 {
1213 OutputFormattedHelpText(result.GetOutputStream(), NULL, help_prologue);
1214 }
1215
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001216 CommandObject::CommandMap::const_iterator pos;
Greg Claytonc7bece562013-01-25 18:06:21 +00001217 size_t max_len = FindLongestCommandWord (m_command_dict);
Enrico Granata223383e2011-08-16 23:24:13 +00001218
1219 if ( (cmd_types & eCommandTypesBuiltin) == eCommandTypesBuiltin )
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001220 {
Kate Stonea487aa42015-01-15 00:52:41 +00001221 result.AppendMessage("Debugger commands:");
Enrico Granata223383e2011-08-16 23:24:13 +00001222 result.AppendMessage("");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001223
Enrico Granata223383e2011-08-16 23:24:13 +00001224 for (pos = m_command_dict.begin(); pos != m_command_dict.end(); ++pos)
1225 {
Kate Stonea487aa42015-01-15 00:52:41 +00001226 if (!(cmd_types & eCommandTypesHidden) && (pos->first.compare(0, 1, "_") == 0))
1227 continue;
1228
Enrico Granata223383e2011-08-16 23:24:13 +00001229 OutputFormattedHelpText (result.GetOutputStream(), pos->first.c_str(), "--", pos->second->GetHelp(),
1230 max_len);
1231 }
1232 result.AppendMessage("");
1233
1234 }
1235
Greg Clayton5521f992011-10-28 21:38:01 +00001236 if (!m_alias_dict.empty() && ( (cmd_types & eCommandTypesAliases) == eCommandTypesAliases ))
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001237 {
Kate Stonea487aa42015-01-15 00:52:41 +00001238 result.AppendMessageWithFormat("Current command abbreviations "
1239 "(type '%shelp command alias' for more info):\n",
1240 GetCommandPrefix());
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001241 result.AppendMessage("");
Greg Clayton12fc3e02010-08-26 22:05:43 +00001242 max_len = FindLongestCommandWord (m_alias_dict);
1243
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001244 for (pos = m_alias_dict.begin(); pos != m_alias_dict.end(); ++pos)
1245 {
1246 StreamString sstr;
1247 StreamString translation_and_help;
1248 std::string entry_name = pos->first;
1249 std::string second_entry = pos->second.get()->GetCommandName();
1250 GetAliasHelp (pos->first.c_str(), pos->second->GetCommandName(), sstr);
1251
1252 translation_and_help.Printf ("(%s) %s", sstr.GetData(), pos->second->GetHelp());
1253 OutputFormattedHelpText (result.GetOutputStream(), pos->first.c_str(), "--",
1254 translation_and_help.GetData(), max_len);
1255 }
1256 result.AppendMessage("");
1257 }
1258
Greg Clayton5521f992011-10-28 21:38:01 +00001259 if (!m_user_dict.empty() && ( (cmd_types & eCommandTypesUserDef) == eCommandTypesUserDef ))
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001260 {
Kate Stonea487aa42015-01-15 00:52:41 +00001261 result.AppendMessage ("Current user-defined commands:");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001262 result.AppendMessage("");
Enrico Granata223383e2011-08-16 23:24:13 +00001263 max_len = FindLongestCommandWord (m_user_dict);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001264 for (pos = m_user_dict.begin(); pos != m_user_dict.end(); ++pos)
1265 {
Enrico Granata223383e2011-08-16 23:24:13 +00001266 OutputFormattedHelpText (result.GetOutputStream(), pos->first.c_str(), "--", pos->second->GetHelp(),
1267 max_len);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001268 }
1269 result.AppendMessage("");
1270 }
1271
Kate Stonea487aa42015-01-15 00:52:41 +00001272 result.AppendMessageWithFormat("For more information on any command, type '%shelp <command-name>'.\n",
1273 GetCommandPrefix());
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001274}
1275
Caroline Tice844d2302010-12-09 22:52:49 +00001276CommandObject *
1277CommandInterpreter::GetCommandObjectForCommand (std::string &command_string)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001278{
Caroline Tice844d2302010-12-09 22:52:49 +00001279 // This function finds the final, lowest-level, alias-resolved command object whose 'Execute' function will
1280 // eventually be invoked by the given command line.
1281
Ed Masted78c9572014-04-20 00:31:37 +00001282 CommandObject *cmd_obj = nullptr;
Adrian McCarthy2304b6f2015-04-23 20:00:25 +00001283 size_t start = command_string.find_first_not_of (k_white_space);
Caroline Tice844d2302010-12-09 22:52:49 +00001284 size_t end = 0;
1285 bool done = false;
1286 while (!done)
1287 {
1288 if (start != std::string::npos)
1289 {
1290 // Get the next word from command_string.
Adrian McCarthy2304b6f2015-04-23 20:00:25 +00001291 end = command_string.find_first_of (k_white_space, start);
Caroline Tice844d2302010-12-09 22:52:49 +00001292 if (end == std::string::npos)
1293 end = command_string.size();
1294 std::string cmd_word = command_string.substr (start, end - start);
1295
Ed Masted78c9572014-04-20 00:31:37 +00001296 if (cmd_obj == nullptr)
Caroline Tice844d2302010-12-09 22:52:49 +00001297 // Since cmd_obj is NULL we are on our first time through this loop. Check to see if cmd_word is a valid
1298 // command or alias.
1299 cmd_obj = GetCommandObject (cmd_word.c_str());
1300 else if (cmd_obj->IsMultiwordObject ())
1301 {
1302 // 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 +00001303 CommandObject *sub_cmd_obj = cmd_obj->GetSubcommandObject (cmd_word.c_str());
Caroline Tice844d2302010-12-09 22:52:49 +00001304 if (sub_cmd_obj)
1305 cmd_obj = sub_cmd_obj;
Bruce Mitchener58ef3912015-06-18 05:27:05 +00001306 else // cmd_word was not a valid sub-command word, so we are done
Caroline Tice844d2302010-12-09 22:52:49 +00001307 done = true;
1308 }
1309 else
1310 // We have a cmd_obj and it is not a multi-word object, so we are done.
1311 done = true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001312
Caroline Tice844d2302010-12-09 22:52:49 +00001313 // If we didn't find a valid command object, or our command object is not a multi-word object, or
1314 // we are at the end of the command_string, then we are done. Otherwise, find the start of the
1315 // next word.
1316
1317 if (!cmd_obj || !cmd_obj->IsMultiwordObject() || end >= command_string.size())
1318 done = true;
1319 else
Adrian McCarthy2304b6f2015-04-23 20:00:25 +00001320 start = command_string.find_first_not_of (k_white_space, end);
Caroline Tice844d2302010-12-09 22:52:49 +00001321 }
1322 else
1323 // Unable to find any more words.
1324 done = true;
1325 }
1326
1327 if (end == command_string.size())
1328 command_string.clear();
1329 else
1330 command_string = command_string.substr(end);
1331
1332 return cmd_obj;
1333}
1334
Greg Clayton5521f992011-10-28 21:38:01 +00001335static const char *k_valid_command_chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_";
Greg Clayton51964162011-10-25 00:36:27 +00001336static void
1337StripLeadingSpaces (std::string &s)
Caroline Tice844d2302010-12-09 22:52:49 +00001338{
Greg Clayton51964162011-10-25 00:36:27 +00001339 if (!s.empty())
Caroline Tice844d2302010-12-09 22:52:49 +00001340 {
Greg Clayton51964162011-10-25 00:36:27 +00001341 size_t pos = s.find_first_not_of (k_white_space);
1342 if (pos == std::string::npos)
1343 s.clear();
1344 else if (pos == 0)
1345 return;
1346 s.erase (0, pos);
1347 }
1348}
1349
Greg Clayton93c62e62011-11-09 23:25:03 +00001350static size_t
1351FindArgumentTerminator (const std::string &s)
1352{
Greg Clayton93c62e62011-11-09 23:25:03 +00001353 const size_t s_len = s.size();
1354 size_t offset = 0;
1355 while (offset < s_len)
1356 {
1357 size_t pos = s.find ("--", offset);
1358 if (pos == std::string::npos)
1359 break;
1360 if (pos > 0)
1361 {
1362 if (isspace(s[pos-1]))
1363 {
1364 // Check if the string ends "\s--" (where \s is a space character)
1365 // or if we have "\s--\s".
1366 if ((pos + 2 >= s_len) || isspace(s[pos+2]))
1367 {
Greg Clayton93c62e62011-11-09 23:25:03 +00001368 return pos;
1369 }
1370 }
1371 }
1372 offset = pos + 2;
1373 }
Greg Clayton93c62e62011-11-09 23:25:03 +00001374 return std::string::npos;
1375}
1376
Greg Clayton51964162011-10-25 00:36:27 +00001377static bool
Greg Clayton5521f992011-10-28 21:38:01 +00001378ExtractCommand (std::string &command_string, std::string &command, std::string &suffix, char &quote_char)
Greg Clayton51964162011-10-25 00:36:27 +00001379{
Greg Clayton5521f992011-10-28 21:38:01 +00001380 command.clear();
1381 suffix.clear();
Greg Clayton51964162011-10-25 00:36:27 +00001382 StripLeadingSpaces (command_string);
1383
1384 bool result = false;
1385 quote_char = '\0';
1386
1387 if (!command_string.empty())
1388 {
1389 const char first_char = command_string[0];
1390 if (first_char == '\'' || first_char == '"')
Caroline Tice844d2302010-12-09 22:52:49 +00001391 {
Greg Clayton51964162011-10-25 00:36:27 +00001392 quote_char = first_char;
1393 const size_t end_quote_pos = command_string.find (quote_char, 1);
1394 if (end_quote_pos == std::string::npos)
Caroline Tice2b5e8502011-05-11 16:07:06 +00001395 {
Greg Clayton5521f992011-10-28 21:38:01 +00001396 command.swap (command_string);
Greg Clayton51964162011-10-25 00:36:27 +00001397 command_string.erase ();
Caroline Tice2b5e8502011-05-11 16:07:06 +00001398 }
1399 else
1400 {
Greg Clayton5521f992011-10-28 21:38:01 +00001401 command.assign (command_string, 1, end_quote_pos - 1);
Greg Clayton51964162011-10-25 00:36:27 +00001402 if (end_quote_pos + 1 < command_string.size())
1403 command_string.erase (0, command_string.find_first_not_of (k_white_space, end_quote_pos + 1));
1404 else
1405 command_string.erase ();
Caroline Tice2b5e8502011-05-11 16:07:06 +00001406 }
Caroline Tice844d2302010-12-09 22:52:49 +00001407 }
1408 else
1409 {
Greg Clayton51964162011-10-25 00:36:27 +00001410 const size_t first_space_pos = command_string.find_first_of (k_white_space);
1411 if (first_space_pos == std::string::npos)
Caroline Tice2b5e8502011-05-11 16:07:06 +00001412 {
Greg Clayton5521f992011-10-28 21:38:01 +00001413 command.swap (command_string);
Greg Clayton51964162011-10-25 00:36:27 +00001414 command_string.erase();
Caroline Tice2b5e8502011-05-11 16:07:06 +00001415 }
1416 else
1417 {
Greg Clayton5521f992011-10-28 21:38:01 +00001418 command.assign (command_string, 0, first_space_pos);
1419 command_string.erase(0, command_string.find_first_not_of (k_white_space, first_space_pos));
Caroline Tice2b5e8502011-05-11 16:07:06 +00001420 }
Caroline Tice844d2302010-12-09 22:52:49 +00001421 }
Greg Clayton51964162011-10-25 00:36:27 +00001422 result = true;
Caroline Tice844d2302010-12-09 22:52:49 +00001423 }
Greg Clayton5521f992011-10-28 21:38:01 +00001424
1425
1426 if (!command.empty())
1427 {
1428 // actual commands can't start with '-' or '_'
1429 if (command[0] != '-' && command[0] != '_')
1430 {
1431 size_t pos = command.find_first_not_of(k_valid_command_chars);
1432 if (pos > 0 && pos != std::string::npos)
1433 {
1434 suffix.assign (command.begin() + pos, command.end());
1435 command.erase (pos);
1436 }
1437 }
1438 }
Greg Clayton51964162011-10-25 00:36:27 +00001439
1440 return result;
Caroline Tice844d2302010-12-09 22:52:49 +00001441}
1442
Greg Clayton5521f992011-10-28 21:38:01 +00001443CommandObject *
1444CommandInterpreter::BuildAliasResult (const char *alias_name,
1445 std::string &raw_input_string,
1446 std::string &alias_result,
1447 CommandReturnObject &result)
Caroline Tice844d2302010-12-09 22:52:49 +00001448{
Ed Masted78c9572014-04-20 00:31:37 +00001449 CommandObject *alias_cmd_obj = nullptr;
Pavel Labath00b7f952015-03-02 12:46:22 +00001450 Args cmd_args (raw_input_string);
Caroline Tice844d2302010-12-09 22:52:49 +00001451 alias_cmd_obj = GetCommandObject (alias_name);
1452 StreamString result_str;
1453
1454 if (alias_cmd_obj)
1455 {
1456 std::string alias_name_str = alias_name;
1457 if ((cmd_args.GetArgumentCount() == 0)
1458 || (alias_name_str.compare (cmd_args.GetArgumentAtIndex(0)) != 0))
1459 cmd_args.Unshift (alias_name);
1460
1461 result_str.Printf ("%s", alias_cmd_obj->GetCommandName ());
1462 OptionArgVectorSP option_arg_vector_sp = GetAliasOptions (alias_name);
1463
1464 if (option_arg_vector_sp.get())
1465 {
1466 OptionArgVector *option_arg_vector = option_arg_vector_sp.get();
1467
Andy Gibbsa297a972013-06-19 19:04:53 +00001468 for (size_t i = 0; i < option_arg_vector->size(); ++i)
Caroline Tice844d2302010-12-09 22:52:49 +00001469 {
1470 OptionArgPair option_pair = (*option_arg_vector)[i];
1471 OptionArgValue value_pair = option_pair.second;
1472 int value_type = value_pair.first;
1473 std::string option = option_pair.first;
1474 std::string value = value_pair.second;
1475 if (option.compare ("<argument>") == 0)
1476 result_str.Printf (" %s", value.c_str());
1477 else
1478 {
1479 result_str.Printf (" %s", option.c_str());
Ted Woodwarde7e8e3c2015-04-06 21:55:14 +00001480 if (value_type != OptionParser::eNoArgument)
Caroline Tice844d2302010-12-09 22:52:49 +00001481 {
Ted Woodwarde7e8e3c2015-04-06 21:55:14 +00001482 if (value_type != OptionParser::eOptionalArgument)
1483 result_str.Printf (" ");
Caroline Tice844d2302010-12-09 22:52:49 +00001484 int index = GetOptionArgumentPosition (value.c_str());
1485 if (index == 0)
1486 result_str.Printf ("%s", value.c_str());
Saleem Abdulrasool3985c8c2014-04-02 03:51:35 +00001487 else if (static_cast<size_t>(index) >= cmd_args.GetArgumentCount())
Caroline Tice844d2302010-12-09 22:52:49 +00001488 {
1489
1490 result.AppendErrorWithFormat
1491 ("Not enough arguments provided; you need at least %d arguments to use this alias.\n",
1492 index);
1493 result.SetStatus (eReturnStatusFailed);
Adrian McCarthy2304b6f2015-04-23 20:00:25 +00001494 return nullptr;
Caroline Tice844d2302010-12-09 22:52:49 +00001495 }
1496 else
1497 {
1498 size_t strpos = raw_input_string.find (cmd_args.GetArgumentAtIndex (index));
1499 if (strpos != std::string::npos)
1500 raw_input_string = raw_input_string.erase (strpos,
1501 strlen (cmd_args.GetArgumentAtIndex (index)));
1502 result_str.Printf ("%s", cmd_args.GetArgumentAtIndex (index));
1503 }
1504 }
1505 }
1506 }
1507 }
1508
1509 alias_result = result_str.GetData();
1510 }
Greg Clayton5521f992011-10-28 21:38:01 +00001511 return alias_cmd_obj;
Caroline Tice844d2302010-12-09 22:52:49 +00001512}
1513
Greg Clayton5a314712011-10-14 07:41:33 +00001514Error
1515CommandInterpreter::PreprocessCommand (std::string &command)
1516{
1517 // The command preprocessor needs to do things to the command
1518 // line before any parsing of arguments or anything else is done.
Adrian McCarthy2304b6f2015-04-23 20:00:25 +00001519 // The only current stuff that gets preprocessed is anything enclosed
Greg Clayton5a314712011-10-14 07:41:33 +00001520 // in backtick ('`') characters is evaluated as an expression and
1521 // the result of the expression must be a scalar that can be substituted
1522 // into the command. An example would be:
1523 // (lldb) memory read `$rsp + 20`
1524 Error error; // Error for any expressions that might not evaluate
1525 size_t start_backtick;
1526 size_t pos = 0;
1527 while ((start_backtick = command.find ('`', pos)) != std::string::npos)
1528 {
1529 if (start_backtick > 0 && command[start_backtick-1] == '\\')
1530 {
Bruce Mitchener58ef3912015-06-18 05:27:05 +00001531 // The backtick was preceded by a '\' character, remove the slash
Greg Clayton5a314712011-10-14 07:41:33 +00001532 // and don't treat the backtick as the start of an expression
1533 command.erase(start_backtick-1, 1);
1534 // No need to add one to start_backtick since we just deleted a char
1535 pos = start_backtick;
1536 }
1537 else
1538 {
1539 const size_t expr_content_start = start_backtick + 1;
1540 const size_t end_backtick = command.find ('`', expr_content_start);
1541 if (end_backtick == std::string::npos)
1542 return error;
1543 else if (end_backtick == expr_content_start)
1544 {
1545 // Empty expression (two backticks in a row)
1546 command.erase (start_backtick, 2);
1547 }
1548 else
1549 {
1550 std::string expr_str (command, expr_content_start, end_backtick - expr_content_start);
1551
Greg Clayton4e0fe8a2012-07-12 20:32:19 +00001552 ExecutionContext exe_ctx(GetExecutionContext());
1553 Target *target = exe_ctx.GetTargetPtr();
Johnny Chen51ea0ad2011-10-29 00:21:50 +00001554 // Get a dummy target to allow for calculator mode while processing backticks.
1555 // This also helps break the infinite loop caused when target is null.
1556 if (!target)
Jim Ingham893c9322014-11-22 01:42:44 +00001557 target = m_debugger.GetDummyTarget();
Greg Clayton5a314712011-10-14 07:41:33 +00001558 if (target)
1559 {
Greg Clayton5a314712011-10-14 07:41:33 +00001560 ValueObjectSP expr_result_valobj_sp;
Enrico Granatad4439aa2012-09-05 20:41:26 +00001561
Jim Ingham35e1bda2012-10-16 21:41:58 +00001562 EvaluateExpressionOptions options;
Jim Ingham6fbc48b2013-11-07 00:11:47 +00001563 options.SetCoerceToId(false);
1564 options.SetUnwindOnError(true);
1565 options.SetIgnoreBreakpoints(true);
1566 options.SetKeepInMemory(false);
1567 options.SetTryAllThreads(true);
1568 options.SetTimeoutUsec(0);
Enrico Granatad4439aa2012-09-05 20:41:26 +00001569
Jim Ingham1624a2d2014-05-05 02:26:40 +00001570 ExpressionResults expr_result = target->EvaluateExpression (expr_str.c_str(),
Enrico Granataca0e5ad2014-10-09 23:09:40 +00001571 exe_ctx.GetFramePtr(),
1572 expr_result_valobj_sp,
1573 options);
Enrico Granatad4439aa2012-09-05 20:41:26 +00001574
Jim Ingham8646d3c2014-05-05 02:47:44 +00001575 if (expr_result == eExpressionCompleted)
Greg Clayton5a314712011-10-14 07:41:33 +00001576 {
1577 Scalar scalar;
Enrico Granataca0e5ad2014-10-09 23:09:40 +00001578 if (expr_result_valobj_sp)
1579 expr_result_valobj_sp = expr_result_valobj_sp->GetQualifiedRepresentationIfAvailable(expr_result_valobj_sp->GetDynamicValueType(), true);
Greg Clayton5a314712011-10-14 07:41:33 +00001580 if (expr_result_valobj_sp->ResolveValue (scalar))
1581 {
1582 command.erase (start_backtick, end_backtick - start_backtick + 1);
1583 StreamString value_strm;
1584 const bool show_type = false;
1585 scalar.GetValue (&value_strm, show_type);
1586 size_t value_string_size = value_strm.GetSize();
1587 if (value_string_size)
1588 {
1589 command.insert (start_backtick, value_strm.GetData(), value_string_size);
1590 pos = start_backtick + value_string_size;
1591 continue;
1592 }
1593 else
1594 {
1595 error.SetErrorStringWithFormat("expression value didn't result in a scalar value for the expression '%s'", expr_str.c_str());
1596 }
1597 }
1598 else
1599 {
1600 error.SetErrorStringWithFormat("expression value didn't result in a scalar value for the expression '%s'", expr_str.c_str());
1601 }
1602 }
1603 else
1604 {
1605 if (expr_result_valobj_sp)
1606 error = expr_result_valobj_sp->GetError();
1607 if (error.Success())
1608 {
1609
1610 switch (expr_result)
1611 {
Jim Ingham8646d3c2014-05-05 02:47:44 +00001612 case eExpressionSetupError:
Greg Clayton5a314712011-10-14 07:41:33 +00001613 error.SetErrorStringWithFormat("expression setup error for the expression '%s'", expr_str.c_str());
1614 break;
Jim Ingham8646d3c2014-05-05 02:47:44 +00001615 case eExpressionParseError:
Jim Ingham1624a2d2014-05-05 02:26:40 +00001616 error.SetErrorStringWithFormat ("expression parse error for the expression '%s'", expr_str.c_str());
1617 break;
Jim Ingham8646d3c2014-05-05 02:47:44 +00001618 case eExpressionResultUnavailable:
Jim Ingham1624a2d2014-05-05 02:26:40 +00001619 error.SetErrorStringWithFormat ("expression error fetching result for the expression '%s'", expr_str.c_str());
Jim Ingham8646d3c2014-05-05 02:47:44 +00001620 case eExpressionCompleted:
Greg Clayton5a314712011-10-14 07:41:33 +00001621 break;
Jim Ingham8646d3c2014-05-05 02:47:44 +00001622 case eExpressionDiscarded:
Greg Clayton5a314712011-10-14 07:41:33 +00001623 error.SetErrorStringWithFormat("expression discarded for the expression '%s'", expr_str.c_str());
1624 break;
Jim Ingham8646d3c2014-05-05 02:47:44 +00001625 case eExpressionInterrupted:
Greg Clayton5a314712011-10-14 07:41:33 +00001626 error.SetErrorStringWithFormat("expression interrupted for the expression '%s'", expr_str.c_str());
1627 break;
Jim Ingham8646d3c2014-05-05 02:47:44 +00001628 case eExpressionHitBreakpoint:
Jim Ingham184e9812013-01-15 02:47:48 +00001629 error.SetErrorStringWithFormat("expression hit breakpoint for the expression '%s'", expr_str.c_str());
1630 break;
Jim Ingham8646d3c2014-05-05 02:47:44 +00001631 case eExpressionTimedOut:
Greg Clayton5a314712011-10-14 07:41:33 +00001632 error.SetErrorStringWithFormat("expression timed out for the expression '%s'", expr_str.c_str());
1633 break;
Jim Ingham8646d3c2014-05-05 02:47:44 +00001634 case eExpressionStoppedForDebug:
Greg Claytonc28ce782013-11-08 23:38:26 +00001635 error.SetErrorStringWithFormat("expression stop at entry point for debugging for the expression '%s'", expr_str.c_str());
1636 break;
Greg Clayton5a314712011-10-14 07:41:33 +00001637 }
1638 }
1639 }
1640 }
1641 }
1642 if (error.Fail())
1643 break;
1644 }
1645 }
1646 return error;
1647}
1648
1649
Caroline Tice844d2302010-12-09 22:52:49 +00001650bool
1651CommandInterpreter::HandleCommand (const char *command_line,
Enrico Granata5f5ab602012-05-31 01:09:06 +00001652 LazyBool lazy_add_to_history,
Caroline Tice844d2302010-12-09 22:52:49 +00001653 CommandReturnObject &result,
Jim Inghame16c50a2011-02-18 00:54:25 +00001654 ExecutionContext *override_context,
Johnny Chen80fdd7c2011-10-05 00:42:59 +00001655 bool repeat_on_empty_command,
1656 bool no_context_switching)
Jim Inghame16c50a2011-02-18 00:54:25 +00001657
Caroline Tice844d2302010-12-09 22:52:49 +00001658{
Jim Inghame16c50a2011-02-18 00:54:25 +00001659
Caroline Tice844d2302010-12-09 22:52:49 +00001660 std::string command_string (command_line);
Jim Inghama5a97eb2011-07-12 03:12:18 +00001661 std::string original_command_string (command_line);
Caroline Tice844d2302010-12-09 22:52:49 +00001662
Greg Clayton5160ce52013-03-27 23:08:40 +00001663 Log *log (lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_COMMANDS));
Greg Clayton2d95dc9b2010-11-10 04:57:04 +00001664 Host::SetCrashDescriptionWithFormat ("HandleCommand(command = \"%s\")", command_line);
1665
1666 // Make a scoped cleanup object that will clear the crash description string
1667 // on exit of this function.
Ed Masted78c9572014-04-20 00:31:37 +00001668 lldb_utility::CleanUp <const char *> crash_description_cleanup(nullptr, Host::SetCrashDescription);
Greg Clayton2d95dc9b2010-11-10 04:57:04 +00001669
Caroline Tice844d2302010-12-09 22:52:49 +00001670 if (log)
1671 log->Printf ("Processing command: %s", command_line);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001672
Jim Ingham30244832010-11-04 23:08:45 +00001673 Timer scoped_timer (__PRETTY_FUNCTION__, "Handling command: %s.", command_line);
1674
Johnny Chen80fdd7c2011-10-05 00:42:59 +00001675 if (!no_context_switching)
1676 UpdateExecutionContext (override_context);
Enrico Granata5f5ab602012-05-31 01:09:06 +00001677
Enrico Granata5f5ab602012-05-31 01:09:06 +00001678 bool add_to_history;
1679 if (lazy_add_to_history == eLazyBoolCalculate)
1680 add_to_history = (m_command_source_depth == 0);
1681 else
1682 add_to_history = (lazy_add_to_history == eLazyBoolYes);
1683
Jim Inghame16c50a2011-02-18 00:54:25 +00001684 bool empty_command = false;
1685 bool comment_command = false;
1686 if (command_string.empty())
1687 empty_command = true;
1688 else
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001689 {
Jim Inghame16c50a2011-02-18 00:54:25 +00001690 const char *k_space_characters = "\t\n\v\f\r ";
1691
1692 size_t non_space = command_string.find_first_not_of (k_space_characters);
1693 // Check for empty line or comment line (lines whose first
1694 // non-space character is the comment character for this interpreter)
1695 if (non_space == std::string::npos)
1696 empty_command = true;
1697 else if (command_string[non_space] == m_comment_char)
1698 comment_command = true;
Enrico Granata7594f142013-06-17 22:51:50 +00001699 else if (command_string[non_space] == CommandHistory::g_repeat_char)
Jim Inghama5a97eb2011-07-12 03:12:18 +00001700 {
Enrico Granata7594f142013-06-17 22:51:50 +00001701 const char *history_string = m_command_history.FindString(command_string.c_str() + non_space);
Ed Masted78c9572014-04-20 00:31:37 +00001702 if (history_string == nullptr)
Jim Inghama5a97eb2011-07-12 03:12:18 +00001703 {
1704 result.AppendErrorWithFormat ("Could not find entry: %s in history", command_string.c_str());
1705 result.SetStatus(eReturnStatusFailed);
1706 return false;
1707 }
1708 add_to_history = false;
1709 command_string = history_string;
1710 original_command_string = history_string;
1711 }
Jim Inghame16c50a2011-02-18 00:54:25 +00001712 }
1713
1714 if (empty_command)
1715 {
1716 if (repeat_on_empty_command)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001717 {
Enrico Granata7594f142013-06-17 22:51:50 +00001718 if (m_command_history.IsEmpty())
Jim Inghame16c50a2011-02-18 00:54:25 +00001719 {
1720 result.AppendError ("empty command");
1721 result.SetStatus(eReturnStatusFailed);
1722 return false;
1723 }
1724 else
1725 {
1726 command_line = m_repeat_command.c_str();
1727 command_string = command_line;
Jim Inghama5a97eb2011-07-12 03:12:18 +00001728 original_command_string = command_line;
Jim Inghame16c50a2011-02-18 00:54:25 +00001729 if (m_repeat_command.empty())
1730 {
1731 result.AppendErrorWithFormat("No auto repeat.\n");
1732 result.SetStatus (eReturnStatusFailed);
1733 return false;
1734 }
1735 }
1736 add_to_history = false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001737 }
1738 else
1739 {
Jim Inghame16c50a2011-02-18 00:54:25 +00001740 result.SetStatus (eReturnStatusSuccessFinishNoResult);
1741 return true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001742 }
Jim Inghame16c50a2011-02-18 00:54:25 +00001743 }
1744 else if (comment_command)
1745 {
1746 result.SetStatus (eReturnStatusSuccessFinishNoResult);
1747 return true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001748 }
Caroline Tice2b5e8502011-05-11 16:07:06 +00001749
Greg Clayton5a314712011-10-14 07:41:33 +00001750
1751 Error error (PreprocessCommand (command_string));
1752
1753 if (error.Fail())
1754 {
1755 result.AppendError (error.AsCString());
1756 result.SetStatus(eReturnStatusFailed);
1757 return false;
1758 }
Adrian McCarthy2304b6f2015-04-23 20:00:25 +00001759
Caroline Tice844d2302010-12-09 22:52:49 +00001760 // Phase 1.
1761
Adrian McCarthy2304b6f2015-04-23 20:00:25 +00001762 // Before we do ANY kind of argument processing, we need to figure out what
1763 // the real/final command object is for the specified command. This gets
1764 // complicated by the fact that the user could have specified an alias, and,
1765 // in translating the alias, there may also be command options and/or even
1766 // data (including raw text strings) that need to be found and inserted into
1767 // the command line as part of the translation. So this first step is plain
1768 // look-up and replacement, resulting in:
1769 // 1. the command object whose Execute method will actually be called
1770 // 2. a revised command string, with all substitutions and replacements
1771 // taken care of
1772 // From 1 above, we can determine whether the Execute function wants raw
1773 // input or not.
Caroline Ticed9d63362010-12-07 19:58:26 +00001774
Adrian McCarthy2304b6f2015-04-23 20:00:25 +00001775 CommandObject *cmd_obj = ResolveCommandImpl(command_string, result);
Caroline Tice844d2302010-12-09 22:52:49 +00001776
Adrian McCarthy2304b6f2015-04-23 20:00:25 +00001777 // Although the user may have abbreviated the command, the command_string now
1778 // has the command expanded to the full name. For example, if the input
1779 // was "br s -n main", command_string is now "breakpoint set -n main".
Filipe Cabecinhasaf1537f2012-05-16 23:25:54 +00001780
Caroline Tice844d2302010-12-09 22:52:49 +00001781 if (log)
1782 {
Adrian McCarthy2304b6f2015-04-23 20:00:25 +00001783 log->Printf("HandleCommand, cmd_obj : '%s'", cmd_obj ? cmd_obj->GetCommandName() : "<not found>");
1784 log->Printf("HandleCommand, (revised) command_string: '%s'", command_string.c_str());
1785 const bool wants_raw_input = (cmd_obj != NULL) ? cmd_obj->WantsRawCommandString() : false;
1786 log->Printf("HandleCommand, wants_raw_input:'%s'", wants_raw_input ? "True" : "False");
Caroline Tice844d2302010-12-09 22:52:49 +00001787 }
1788
1789 // Phase 2.
1790 // Take care of things like setting up the history command & calling the appropriate Execute method on the
1791 // CommandObject, with the appropriate arguments.
1792
Ed Masted78c9572014-04-20 00:31:37 +00001793 if (cmd_obj != nullptr)
Caroline Tice844d2302010-12-09 22:52:49 +00001794 {
1795 if (add_to_history)
1796 {
Adrian McCarthy2304b6f2015-04-23 20:00:25 +00001797 Args command_args (command_string);
Caroline Tice844d2302010-12-09 22:52:49 +00001798 const char *repeat_command = cmd_obj->GetRepeatCommand(command_args, 0);
Ed Masted78c9572014-04-20 00:31:37 +00001799 if (repeat_command != nullptr)
Caroline Tice844d2302010-12-09 22:52:49 +00001800 m_repeat_command.assign(repeat_command);
1801 else
Jim Inghama5a97eb2011-07-12 03:12:18 +00001802 m_repeat_command.assign(original_command_string.c_str());
Caroline Tice844d2302010-12-09 22:52:49 +00001803
Enrico Granata7594f142013-06-17 22:51:50 +00001804 m_command_history.AppendString (original_command_string);
Caroline Tice844d2302010-12-09 22:52:49 +00001805 }
1806
Caroline Tice01274c02010-12-11 08:16:56 +00001807 std::string remainder;
Adrian McCarthy2304b6f2015-04-23 20:00:25 +00001808 const std::size_t actual_cmd_name_len = strlen (cmd_obj->GetCommandName());
Caroline Tice01274c02010-12-11 08:16:56 +00001809 if (actual_cmd_name_len < command_string.length())
Adrian McCarthy2304b6f2015-04-23 20:00:25 +00001810 remainder = command_string.substr (actual_cmd_name_len);
Caroline Tice844d2302010-12-09 22:52:49 +00001811
1812 // Remove any initial spaces
Adrian McCarthy2304b6f2015-04-23 20:00:25 +00001813 size_t pos = remainder.find_first_not_of (k_white_space);
Caroline Tice844d2302010-12-09 22:52:49 +00001814 if (pos != 0 && pos != std::string::npos)
Greg Claytona3482592011-04-22 20:58:45 +00001815 remainder.erase(0, pos);
Caroline Tice844d2302010-12-09 22:52:49 +00001816
1817 if (log)
Jason Molendabfb36ff2011-08-25 00:20:04 +00001818 log->Printf ("HandleCommand, command line after removing command name(s): '%s'", remainder.c_str());
Caroline Tice844d2302010-12-09 22:52:49 +00001819
Jim Ingham5a988412012-06-08 21:56:10 +00001820 cmd_obj->Execute (remainder.c_str(), result);
Caroline Tice844d2302010-12-09 22:52:49 +00001821 }
1822 else
1823 {
1824 // We didn't find the first command object, so complete the first argument.
Adrian McCarthy2304b6f2015-04-23 20:00:25 +00001825 Args command_args (command_string);
Caroline Tice844d2302010-12-09 22:52:49 +00001826 StringList matches;
1827 int num_matches;
1828 int cursor_index = 0;
1829 int cursor_char_position = strlen (command_args.GetArgumentAtIndex(0));
1830 bool word_complete;
1831 num_matches = HandleCompletionMatches (command_args,
1832 cursor_index,
1833 cursor_char_position,
1834 0,
1835 -1,
1836 word_complete,
1837 matches);
1838
1839 if (num_matches > 0)
1840 {
1841 std::string error_msg;
1842 error_msg.assign ("ambiguous command '");
1843 error_msg.append(command_args.GetArgumentAtIndex(0));
1844 error_msg.append ("'.");
1845
1846 error_msg.append (" Possible completions:");
1847 for (int i = 0; i < num_matches; i++)
1848 {
1849 error_msg.append ("\n\t");
1850 error_msg.append (matches.GetStringAtIndex (i));
1851 }
1852 error_msg.append ("\n");
Greg Claytonc7bece562013-01-25 18:06:21 +00001853 result.AppendRawError (error_msg.c_str());
Caroline Tice844d2302010-12-09 22:52:49 +00001854 }
1855 else
1856 result.AppendErrorWithFormat ("Unrecognized command '%s'.\n", command_args.GetArgumentAtIndex (0));
1857
1858 result.SetStatus (eReturnStatusFailed);
1859 }
1860
Jason Molendabfb36ff2011-08-25 00:20:04 +00001861 if (log)
1862 log->Printf ("HandleCommand, command %s", (result.Succeeded() ? "succeeded" : "did not succeed"));
1863
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001864 return result.Succeeded();
1865}
1866
1867int
1868CommandInterpreter::HandleCompletionMatches (Args &parsed_line,
1869 int &cursor_index,
1870 int &cursor_char_position,
1871 int match_start_point,
1872 int max_return_elements,
Jim Ingham558ce122010-06-30 05:02:46 +00001873 bool &word_complete,
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001874 StringList &matches)
1875{
1876 int num_command_matches = 0;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001877 bool look_for_subcommand = false;
Jim Ingham558ce122010-06-30 05:02:46 +00001878
1879 // For any of the command completions a unique match will be a complete word.
1880 word_complete = true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001881
1882 if (cursor_index == -1)
1883 {
1884 // We got nothing on the command line, so return the list of commands
Jim Ingham279a6c22010-07-06 22:46:59 +00001885 bool include_aliases = true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001886 num_command_matches = GetCommandNamesMatchingPartialString ("", include_aliases, matches);
1887 }
1888 else if (cursor_index == 0)
1889 {
1890 // The cursor is in the first argument, so just do a lookup in the dictionary.
Jim Ingham279a6c22010-07-06 22:46:59 +00001891 CommandObject *cmd_obj = GetCommandObject (parsed_line.GetArgumentAtIndex(0), &matches);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001892 num_command_matches = matches.GetSize();
1893
1894 if (num_command_matches == 1
1895 && cmd_obj && cmd_obj->IsMultiwordObject()
Ed Masted78c9572014-04-20 00:31:37 +00001896 && matches.GetStringAtIndex(0) != nullptr
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001897 && strcmp (parsed_line.GetArgumentAtIndex(0), matches.GetStringAtIndex(0)) == 0)
1898 {
Greg Clayton765d2e22013-12-10 19:14:04 +00001899 if (parsed_line.GetArgumentCount() == 1)
1900 {
1901 word_complete = true;
1902 }
1903 else
1904 {
1905 look_for_subcommand = true;
1906 num_command_matches = 0;
1907 matches.DeleteStringAtIndex(0);
1908 parsed_line.AppendArgument ("");
1909 cursor_index++;
1910 cursor_char_position = 0;
1911 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001912 }
1913 }
1914
1915 if (cursor_index > 0 || look_for_subcommand)
1916 {
1917 // We are completing further on into a commands arguments, so find the command and tell it
1918 // to complete the command.
1919 // First see if there is a matching initial command:
Jim Ingham279a6c22010-07-06 22:46:59 +00001920 CommandObject *command_object = GetCommandObject (parsed_line.GetArgumentAtIndex(0));
Ed Masted78c9572014-04-20 00:31:37 +00001921 if (command_object == nullptr)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001922 {
1923 return 0;
1924 }
1925 else
1926 {
1927 parsed_line.Shift();
1928 cursor_index--;
Greg Claytona7015092010-09-18 01:14:36 +00001929 num_command_matches = command_object->HandleCompletion (parsed_line,
Greg Clayton66111032010-06-23 01:19:29 +00001930 cursor_index,
1931 cursor_char_position,
1932 match_start_point,
Jim Ingham558ce122010-06-30 05:02:46 +00001933 max_return_elements,
1934 word_complete,
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001935 matches);
1936 }
1937 }
1938
1939 return num_command_matches;
1940
1941}
1942
1943int
1944CommandInterpreter::HandleCompletion (const char *current_line,
1945 const char *cursor,
1946 const char *last_char,
1947 int match_start_point,
1948 int max_return_elements,
1949 StringList &matches)
1950{
1951 // We parse the argument up to the cursor, so the last argument in parsed_line is
1952 // the one containing the cursor, and the cursor is after the last character.
1953
Pavel Labath00b7f952015-03-02 12:46:22 +00001954 Args parsed_line(llvm::StringRef(current_line, last_char - current_line));
1955 Args partial_parsed_line(llvm::StringRef(current_line, cursor - current_line));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001956
Jim Inghama5a97eb2011-07-12 03:12:18 +00001957 // Don't complete comments, and if the line we are completing is just the history repeat character,
1958 // substitute the appropriate history line.
1959 const char *first_arg = parsed_line.GetArgumentAtIndex(0);
1960 if (first_arg)
1961 {
1962 if (first_arg[0] == m_comment_char)
1963 return 0;
Enrico Granata7594f142013-06-17 22:51:50 +00001964 else if (first_arg[0] == CommandHistory::g_repeat_char)
Jim Inghama5a97eb2011-07-12 03:12:18 +00001965 {
Enrico Granata7594f142013-06-17 22:51:50 +00001966 const char *history_string = m_command_history.FindString (first_arg);
Ed Masted78c9572014-04-20 00:31:37 +00001967 if (history_string != nullptr)
Jim Inghama5a97eb2011-07-12 03:12:18 +00001968 {
1969 matches.Clear();
1970 matches.InsertStringAtIndex(0, history_string);
1971 return -2;
1972 }
1973 else
1974 return 0;
1975
1976 }
1977 }
1978
1979
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001980 int num_args = partial_parsed_line.GetArgumentCount();
1981 int cursor_index = partial_parsed_line.GetArgumentCount() - 1;
1982 int cursor_char_position;
1983
1984 if (cursor_index == -1)
1985 cursor_char_position = 0;
1986 else
1987 cursor_char_position = strlen (partial_parsed_line.GetArgumentAtIndex(cursor_index));
Jim Inghamfe0c4252010-12-14 19:56:01 +00001988
1989 if (cursor > current_line && cursor[-1] == ' ')
1990 {
1991 // We are just after a space. If we are in an argument, then we will continue
1992 // parsing, but if we are between arguments, then we have to complete whatever the next
1993 // element would be.
1994 // We can distinguish the two cases because if we are in an argument (e.g. because the space is
1995 // protected by a quote) then the space will also be in the parsed argument...
1996
1997 const char *current_elem = partial_parsed_line.GetArgumentAtIndex(cursor_index);
1998 if (cursor_char_position == 0 || current_elem[cursor_char_position - 1] != ' ')
1999 {
Greg Clayton765d2e22013-12-10 19:14:04 +00002000 parsed_line.InsertArgumentAtIndex(cursor_index + 1, "", '\0');
Jim Inghamfe0c4252010-12-14 19:56:01 +00002001 cursor_index++;
2002 cursor_char_position = 0;
2003 }
2004 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002005
2006 int num_command_matches;
2007
2008 matches.Clear();
2009
2010 // Only max_return_elements == -1 is supported at present:
2011 assert (max_return_elements == -1);
Jim Ingham558ce122010-06-30 05:02:46 +00002012 bool word_complete;
Greg Clayton66111032010-06-23 01:19:29 +00002013 num_command_matches = HandleCompletionMatches (parsed_line,
2014 cursor_index,
2015 cursor_char_position,
2016 match_start_point,
Jim Ingham558ce122010-06-30 05:02:46 +00002017 max_return_elements,
2018 word_complete,
Greg Clayton66111032010-06-23 01:19:29 +00002019 matches);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002020
2021 if (num_command_matches <= 0)
Tamas Berghammer89d3f092015-09-02 10:35:27 +00002022 return num_command_matches;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002023
2024 if (num_args == 0)
2025 {
2026 // If we got an empty string, insert nothing.
2027 matches.InsertStringAtIndex(0, "");
2028 }
2029 else
2030 {
2031 // Now figure out if there is a common substring, and if so put that in element 0, otherwise
2032 // put an empty string in element 0.
2033 std::string command_partial_str;
2034 if (cursor_index >= 0)
Jim Ingham49e80a12010-10-22 18:47:16 +00002035 command_partial_str.assign(parsed_line.GetArgumentAtIndex(cursor_index),
2036 parsed_line.GetArgumentAtIndex(cursor_index) + cursor_char_position);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002037
2038 std::string common_prefix;
2039 matches.LongestCommonPrefix (common_prefix);
Greg Claytonc7bece562013-01-25 18:06:21 +00002040 const size_t partial_name_len = command_partial_str.size();
Tamas Berghammer89d3f092015-09-02 10:35:27 +00002041 common_prefix.erase (0, partial_name_len);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002042
2043 // If we matched a unique single command, add a space...
Jim Ingham558ce122010-06-30 05:02:46 +00002044 // Only do this if the completer told us this was a complete word, however...
2045 if (num_command_matches == 1 && word_complete)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002046 {
2047 char quote_char = parsed_line.GetArgumentQuoteCharAtIndex(cursor_index);
Tamas Berghammer89d3f092015-09-02 10:35:27 +00002048 common_prefix = Args::EscapeLLDBCommandArgument(common_prefix, quote_char);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002049 if (quote_char != '\0')
2050 common_prefix.push_back(quote_char);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002051 common_prefix.push_back(' ');
2052 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002053 matches.InsertStringAtIndex(0, common_prefix.c_str());
2054 }
2055 return num_command_matches;
2056}
2057
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002058
2059CommandInterpreter::~CommandInterpreter ()
2060{
2061}
2062
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002063void
Greg Clayton44d93782014-01-27 23:43:24 +00002064CommandInterpreter::UpdatePrompt (const char *new_prompt)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002065{
Greg Clayton44d93782014-01-27 23:43:24 +00002066 EventSP prompt_change_event_sp (new Event(eBroadcastBitResetPrompt, new EventDataBytes (new_prompt)));;
2067 BroadcastEvent (prompt_change_event_sp);
2068 if (m_command_io_handler_sp)
2069 m_command_io_handler_sp->SetPrompt(new_prompt);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002070}
2071
Jim Ingham97a6dc72010-10-04 19:49:29 +00002072
2073bool
2074CommandInterpreter::Confirm (const char *message, bool default_answer)
2075{
Jim Ingham3bcdb292010-10-04 22:44:14 +00002076 // Check AutoConfirm first:
2077 if (m_debugger.GetAutoConfirm())
2078 return default_answer;
Greg Clayton44d93782014-01-27 23:43:24 +00002079
2080 IOHandlerConfirm *confirm = new IOHandlerConfirm(m_debugger,
2081 message,
2082 default_answer);
2083 IOHandlerSP io_handler_sp (confirm);
2084 m_debugger.RunIOHandler (io_handler_sp);
2085 return confirm->GetResponse();
Jim Ingham97a6dc72010-10-04 19:49:29 +00002086}
2087
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002088OptionArgVectorSP
2089CommandInterpreter::GetAliasOptions (const char *alias_name)
2090{
2091 OptionArgMap::iterator pos;
2092 OptionArgVectorSP ret_val;
2093
2094 std::string alias (alias_name);
2095
2096 if (HasAliasOptions())
2097 {
2098 pos = m_alias_options.find (alias);
2099 if (pos != m_alias_options.end())
2100 ret_val = pos->second;
2101 }
2102
2103 return ret_val;
2104}
2105
2106void
2107CommandInterpreter::RemoveAliasOptions (const char *alias_name)
2108{
2109 OptionArgMap::iterator pos = m_alias_options.find(alias_name);
2110 if (pos != m_alias_options.end())
2111 {
2112 m_alias_options.erase (pos);
2113 }
2114}
2115
2116void
2117CommandInterpreter::AddOrReplaceAliasOptions (const char *alias_name, OptionArgVectorSP &option_arg_vector_sp)
2118{
2119 m_alias_options[alias_name] = option_arg_vector_sp;
2120}
2121
2122bool
2123CommandInterpreter::HasCommands ()
2124{
2125 return (!m_command_dict.empty());
2126}
2127
2128bool
2129CommandInterpreter::HasAliases ()
2130{
2131 return (!m_alias_dict.empty());
2132}
2133
2134bool
2135CommandInterpreter::HasUserCommands ()
2136{
2137 return (!m_user_dict.empty());
2138}
2139
2140bool
2141CommandInterpreter::HasAliasOptions ()
2142{
2143 return (!m_alias_options.empty());
2144}
2145
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002146void
Caroline Tice4ab31c92010-10-12 21:57:09 +00002147CommandInterpreter::BuildAliasCommandArgs (CommandObject *alias_cmd_obj,
2148 const char *alias_name,
2149 Args &cmd_args,
Caroline Ticed9d63362010-12-07 19:58:26 +00002150 std::string &raw_input_string,
Caroline Tice4ab31c92010-10-12 21:57:09 +00002151 CommandReturnObject &result)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002152{
2153 OptionArgVectorSP option_arg_vector_sp = GetAliasOptions (alias_name);
Caroline Ticed9d63362010-12-07 19:58:26 +00002154
2155 bool wants_raw_input = alias_cmd_obj->WantsRawCommandString();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002156
Caroline Ticed9d63362010-12-07 19:58:26 +00002157 // Make sure that the alias name is the 0th element in cmd_args
2158 std::string alias_name_str = alias_name;
2159 if (alias_name_str.compare (cmd_args.GetArgumentAtIndex(0)) != 0)
2160 cmd_args.Unshift (alias_name);
2161
2162 Args new_args (alias_cmd_obj->GetCommandName());
2163 if (new_args.GetArgumentCount() == 2)
2164 new_args.Shift();
2165
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002166 if (option_arg_vector_sp.get())
2167 {
Caroline Ticed9d63362010-12-07 19:58:26 +00002168 if (wants_raw_input)
2169 {
2170 // We have a command that both has command options and takes raw input. Make *sure* it has a
2171 // " -- " in the right place in the raw_input_string.
2172 size_t pos = raw_input_string.find(" -- ");
2173 if (pos == std::string::npos)
2174 {
2175 // None found; assume it goes at the beginning of the raw input string
2176 raw_input_string.insert (0, " -- ");
2177 }
2178 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002179
2180 OptionArgVector *option_arg_vector = option_arg_vector_sp.get();
Greg Claytonc7bece562013-01-25 18:06:21 +00002181 const size_t old_size = cmd_args.GetArgumentCount();
Caroline Tice4ab31c92010-10-12 21:57:09 +00002182 std::vector<bool> used (old_size + 1, false);
2183
2184 used[0] = true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002185
Andy Gibbsa297a972013-06-19 19:04:53 +00002186 for (size_t i = 0; i < option_arg_vector->size(); ++i)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002187 {
2188 OptionArgPair option_pair = (*option_arg_vector)[i];
Caroline Ticed9d63362010-12-07 19:58:26 +00002189 OptionArgValue value_pair = option_pair.second;
2190 int value_type = value_pair.first;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002191 std::string option = option_pair.first;
Caroline Ticed9d63362010-12-07 19:58:26 +00002192 std::string value = value_pair.second;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002193 if (option.compare ("<argument>") == 0)
Caroline Ticed9d63362010-12-07 19:58:26 +00002194 {
2195 if (!wants_raw_input
2196 || (value.compare("--") != 0)) // Since we inserted this above, make sure we don't insert it twice
2197 new_args.AppendArgument (value.c_str());
2198 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002199 else
2200 {
Virgile Belloe2607b52013-09-05 16:42:23 +00002201 if (value_type != OptionParser::eOptionalArgument)
Caroline Ticed9d63362010-12-07 19:58:26 +00002202 new_args.AppendArgument (option.c_str());
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002203 if (value.compare ("<no-argument>") != 0)
2204 {
2205 int index = GetOptionArgumentPosition (value.c_str());
2206 if (index == 0)
Caroline Ticed9d63362010-12-07 19:58:26 +00002207 {
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002208 // value was NOT a positional argument; must be a real value
Virgile Belloe2607b52013-09-05 16:42:23 +00002209 if (value_type != OptionParser::eOptionalArgument)
Caroline Ticed9d63362010-12-07 19:58:26 +00002210 new_args.AppendArgument (value.c_str());
2211 else
2212 {
2213 char buffer[255];
2214 ::snprintf (buffer, sizeof (buffer), "%s%s", option.c_str(), value.c_str());
2215 new_args.AppendArgument (buffer);
2216 }
2217
2218 }
Saleem Abdulrasool3985c8c2014-04-02 03:51:35 +00002219 else if (static_cast<size_t>(index) >= cmd_args.GetArgumentCount())
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002220 {
2221 result.AppendErrorWithFormat
2222 ("Not enough arguments provided; you need at least %d arguments to use this alias.\n",
2223 index);
2224 result.SetStatus (eReturnStatusFailed);
2225 return;
2226 }
2227 else
2228 {
Caroline Ticed9d63362010-12-07 19:58:26 +00002229 // Find and remove cmd_args.GetArgumentAtIndex(i) from raw_input_string
2230 size_t strpos = raw_input_string.find (cmd_args.GetArgumentAtIndex (index));
2231 if (strpos != std::string::npos)
2232 {
2233 raw_input_string = raw_input_string.erase (strpos, strlen (cmd_args.GetArgumentAtIndex (index)));
2234 }
2235
Virgile Belloe2607b52013-09-05 16:42:23 +00002236 if (value_type != OptionParser::eOptionalArgument)
Caroline Ticed9d63362010-12-07 19:58:26 +00002237 new_args.AppendArgument (cmd_args.GetArgumentAtIndex (index));
2238 else
2239 {
2240 char buffer[255];
2241 ::snprintf (buffer, sizeof(buffer), "%s%s", option.c_str(),
2242 cmd_args.GetArgumentAtIndex (index));
2243 new_args.AppendArgument (buffer);
2244 }
Caroline Tice4ab31c92010-10-12 21:57:09 +00002245 used[index] = true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002246 }
2247 }
2248 }
2249 }
2250
Andy Gibbsa297a972013-06-19 19:04:53 +00002251 for (size_t j = 0; j < cmd_args.GetArgumentCount(); ++j)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002252 {
Caroline Ticed9d63362010-12-07 19:58:26 +00002253 if (!used[j] && !wants_raw_input)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002254 new_args.AppendArgument (cmd_args.GetArgumentAtIndex (j));
2255 }
2256
2257 cmd_args.Clear();
Vince Harrond7e6a4f2015-05-13 00:25:54 +00002258 cmd_args.SetArguments (new_args.GetArgumentCount(), new_args.GetConstArgumentVector());
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002259 }
2260 else
2261 {
2262 result.SetStatus (eReturnStatusSuccessFinishNoResult);
Caroline Ticed9d63362010-12-07 19:58:26 +00002263 // This alias was not created with any options; nothing further needs to be done, unless it is a command that
2264 // wants raw input, in which case we need to clear the rest of the data from cmd_args, since its in the raw
2265 // input string.
2266 if (wants_raw_input)
2267 {
2268 cmd_args.Clear();
Vince Harrond7e6a4f2015-05-13 00:25:54 +00002269 cmd_args.SetArguments (new_args.GetArgumentCount(), new_args.GetConstArgumentVector());
Caroline Ticed9d63362010-12-07 19:58:26 +00002270 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002271 return;
2272 }
2273
2274 result.SetStatus (eReturnStatusSuccessFinishNoResult);
2275 return;
2276}
2277
2278
2279int
2280CommandInterpreter::GetOptionArgumentPosition (const char *in_string)
2281{
2282 int position = 0; // Any string that isn't an argument position, i.e. '%' followed by an integer, gets a position
2283 // of zero.
2284
Vince Harrond7e6a4f2015-05-13 00:25:54 +00002285 const char *cptr = in_string;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002286
2287 // Does it start with '%'
2288 if (cptr[0] == '%')
2289 {
2290 ++cptr;
2291
2292 // Is the rest of it entirely digits?
2293 if (isdigit (cptr[0]))
2294 {
2295 const char *start = cptr;
2296 while (isdigit (cptr[0]))
2297 ++cptr;
2298
2299 // We've gotten to the end of the digits; are we at the end of the string?
2300 if (cptr[0] == '\0')
2301 position = atoi (start);
2302 }
2303 }
2304
2305 return position;
2306}
2307
2308void
2309CommandInterpreter::SourceInitFile (bool in_cwd, CommandReturnObject &result)
2310{
Jim Ingham16e0c682011-08-12 23:34:31 +00002311 FileSpec init_file;
Greg Clayton14a35512011-09-11 00:01:44 +00002312 if (in_cwd)
Jim Ingham16e0c682011-08-12 23:34:31 +00002313 {
Greg Clayton14a35512011-09-11 00:01:44 +00002314 // In the current working directory we don't load any program specific
2315 // .lldbinit files, we only look for a "./.lldbinit" file.
2316 if (m_skip_lldbinit_files)
2317 return;
2318
2319 init_file.SetFile ("./.lldbinit", true);
Jim Ingham16e0c682011-08-12 23:34:31 +00002320 }
Greg Clayton14a35512011-09-11 00:01:44 +00002321 else
Jim Ingham16e0c682011-08-12 23:34:31 +00002322 {
Greg Clayton14a35512011-09-11 00:01:44 +00002323 // If we aren't looking in the current working directory we are looking
2324 // in the home directory. We will first see if there is an application
2325 // specific ".lldbinit" file whose name is "~/.lldbinit" followed by a
2326 // "-" and the name of the program. If this file doesn't exist, we fall
2327 // back to just the "~/.lldbinit" file. We also obey any requests to not
2328 // load the init files.
Zachary Turnera21fee02014-08-21 21:49:24 +00002329 llvm::SmallString<64> home_dir_path;
2330 llvm::sys::path::home_directory(home_dir_path);
2331 FileSpec profilePath(home_dir_path.c_str(), false);
Zachary Turner9e757b72014-07-28 16:45:05 +00002332 profilePath.AppendPathComponent(".lldbinit");
2333 std::string init_file_path = profilePath.GetPath();
Greg Clayton14a35512011-09-11 00:01:44 +00002334
2335 if (m_skip_app_init_files == false)
2336 {
Zachary Turnera21fee02014-08-21 21:49:24 +00002337 FileSpec program_file_spec(HostInfo::GetProgramFileSpec());
Greg Clayton14a35512011-09-11 00:01:44 +00002338 const char *program_name = program_file_spec.GetFilename().AsCString();
Jim Ingham16e0c682011-08-12 23:34:31 +00002339
Greg Clayton14a35512011-09-11 00:01:44 +00002340 if (program_name)
2341 {
2342 char program_init_file_name[PATH_MAX];
Zachary Turner9e757b72014-07-28 16:45:05 +00002343 ::snprintf (program_init_file_name, sizeof(program_init_file_name), "%s-%s", init_file_path.c_str(), program_name);
Greg Clayton14a35512011-09-11 00:01:44 +00002344 init_file.SetFile (program_init_file_name, true);
2345 if (!init_file.Exists())
2346 init_file.Clear();
2347 }
2348 }
2349
2350 if (!init_file && !m_skip_lldbinit_files)
Zachary Turner9e757b72014-07-28 16:45:05 +00002351 init_file.SetFile (init_file_path.c_str(), false);
Greg Clayton14a35512011-09-11 00:01:44 +00002352 }
2353
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002354 // If the file exists, tell HandleCommand to 'source' it; this will do the actual broadcasting
2355 // of the commands back to any appropriate listener (see CommandObjectSource::Execute for more details).
2356
2357 if (init_file.Exists())
2358 {
Greg Clayton44d93782014-01-27 23:43:24 +00002359 const bool saved_batch = SetBatchCommandMode (true);
Jim Ingham26c7bf92014-10-11 00:38:27 +00002360 CommandInterpreterRunOptions options;
2361 options.SetSilent (true);
2362 options.SetStopOnError (false);
2363 options.SetStopOnContinue (true);
2364
Greg Clayton340b0302014-02-05 17:57:57 +00002365 HandleCommandsFromFile (init_file,
Ed Masted78c9572014-04-20 00:31:37 +00002366 nullptr, // Execution context
Jim Ingham26c7bf92014-10-11 00:38:27 +00002367 options,
Greg Clayton340b0302014-02-05 17:57:57 +00002368 result);
Greg Clayton44d93782014-01-27 23:43:24 +00002369 SetBatchCommandMode (saved_batch);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002370 }
2371 else
2372 {
2373 // nothing to be done if the file doesn't exist
2374 result.SetStatus(eReturnStatusSuccessFinishNoResult);
2375 }
2376}
2377
Kate Stonea487aa42015-01-15 00:52:41 +00002378const char *
2379CommandInterpreter::GetCommandPrefix()
2380{
2381 const char * prefix = GetDebugger().GetIOHandlerCommandPrefix();
2382 return prefix == NULL ? "" : prefix;
2383}
2384
Greg Clayton8b82f082011-04-12 05:54:46 +00002385PlatformSP
2386CommandInterpreter::GetPlatform (bool prefer_target_platform)
2387{
2388 PlatformSP platform_sp;
Greg Claytonc14ee322011-09-22 04:58:26 +00002389 if (prefer_target_platform)
2390 {
Greg Clayton4e0fe8a2012-07-12 20:32:19 +00002391 ExecutionContext exe_ctx(GetExecutionContext());
2392 Target *target = exe_ctx.GetTargetPtr();
Greg Claytonc14ee322011-09-22 04:58:26 +00002393 if (target)
2394 platform_sp = target->GetPlatform();
2395 }
Greg Clayton8b82f082011-04-12 05:54:46 +00002396
2397 if (!platform_sp)
2398 platform_sp = m_debugger.GetPlatformList().GetSelectedPlatform();
2399 return platform_sp;
2400}
2401
Jim Inghame16c50a2011-02-18 00:54:25 +00002402void
Jim Inghambad87fe2011-03-11 01:51:49 +00002403CommandInterpreter::HandleCommands (const StringList &commands,
Jim Ingham26c7bf92014-10-11 00:38:27 +00002404 ExecutionContext *override_context,
2405 CommandInterpreterRunOptions &options,
Jim Inghame16c50a2011-02-18 00:54:25 +00002406 CommandReturnObject &result)
2407{
2408 size_t num_lines = commands.GetSize();
Jim Inghame16c50a2011-02-18 00:54:25 +00002409
2410 // If we are going to continue past a "continue" then we need to run the commands synchronously.
2411 // Make sure you reset this value anywhere you return from the function.
2412
2413 bool old_async_execution = m_debugger.GetAsyncExecution();
2414
2415 // If we've been given an execution context, set it at the start, but don't keep resetting it or we will
2416 // cause series of commands that change the context, then do an operation that relies on that context to fail.
2417
Ed Masted78c9572014-04-20 00:31:37 +00002418 if (override_context != nullptr)
Greg Clayton8b82f082011-04-12 05:54:46 +00002419 UpdateExecutionContext (override_context);
Jim Inghame16c50a2011-02-18 00:54:25 +00002420
Jim Ingham26c7bf92014-10-11 00:38:27 +00002421 if (!options.GetStopOnContinue())
Jim Inghame16c50a2011-02-18 00:54:25 +00002422 {
2423 m_debugger.SetAsyncExecution (false);
2424 }
2425
Andy Gibbsa297a972013-06-19 19:04:53 +00002426 for (size_t idx = 0; idx < num_lines; idx++)
Jim Inghame16c50a2011-02-18 00:54:25 +00002427 {
2428 const char *cmd = commands.GetStringAtIndex(idx);
2429 if (cmd[0] == '\0')
2430 continue;
2431
Jim Ingham26c7bf92014-10-11 00:38:27 +00002432 if (options.GetEchoCommands())
Jim Inghame16c50a2011-02-18 00:54:25 +00002433 {
2434 result.AppendMessageWithFormat ("%s %s\n",
Greg Clayton44d93782014-01-27 23:43:24 +00002435 m_debugger.GetPrompt(),
2436 cmd);
Jim Inghame16c50a2011-02-18 00:54:25 +00002437 }
2438
Greg Clayton9d0402b2011-02-20 02:15:07 +00002439 CommandReturnObject tmp_result;
Johnny Chen80fdd7c2011-10-05 00:42:59 +00002440 // If override_context is not NULL, pass no_context_switching = true for
2441 // HandleCommand() since we updated our context already.
Jim Ingham076b7fc2013-05-02 23:15:37 +00002442
2443 // We might call into a regex or alias command, in which case the add_to_history will get lost. This
2444 // m_command_source_depth dingus is the way we turn off adding to the history in that case, so set it up here.
Jim Ingham26c7bf92014-10-11 00:38:27 +00002445 if (!options.GetAddToHistory())
Jim Ingham076b7fc2013-05-02 23:15:37 +00002446 m_command_source_depth++;
Jim Ingham26c7bf92014-10-11 00:38:27 +00002447 bool success = HandleCommand(cmd, options.m_add_to_history, tmp_result,
Ed Masted78c9572014-04-20 00:31:37 +00002448 nullptr, /* override_context */
Johnny Chen80fdd7c2011-10-05 00:42:59 +00002449 true, /* repeat_on_empty_command */
Ed Masted78c9572014-04-20 00:31:37 +00002450 override_context != nullptr /* no_context_switching */);
Jim Ingham26c7bf92014-10-11 00:38:27 +00002451 if (!options.GetAddToHistory())
Jim Ingham076b7fc2013-05-02 23:15:37 +00002452 m_command_source_depth--;
Jim Inghame16c50a2011-02-18 00:54:25 +00002453
Jim Ingham26c7bf92014-10-11 00:38:27 +00002454 if (options.GetPrintResults())
Jim Inghame16c50a2011-02-18 00:54:25 +00002455 {
2456 if (tmp_result.Succeeded())
Jim Ingham85e8b812011-02-19 02:53:09 +00002457 result.AppendMessageWithFormat("%s", tmp_result.GetOutputData());
Jim Inghame16c50a2011-02-18 00:54:25 +00002458 }
2459
2460 if (!success || !tmp_result.Succeeded())
2461 {
Jim Inghama5038812012-04-24 02:25:07 +00002462 const char *error_msg = tmp_result.GetErrorData();
Ed Masted78c9572014-04-20 00:31:37 +00002463 if (error_msg == nullptr || error_msg[0] == '\0')
Jim Inghama5038812012-04-24 02:25:07 +00002464 error_msg = "<unknown error>.\n";
Jim Ingham26c7bf92014-10-11 00:38:27 +00002465 if (options.GetStopOnError())
Jim Inghame16c50a2011-02-18 00:54:25 +00002466 {
Deepak Panickal99fbc072014-03-03 15:39:47 +00002467 result.AppendErrorWithFormat("Aborting reading of commands after command #%" PRIu64 ": '%s' failed with %s",
2468 (uint64_t)idx, cmd, error_msg);
Jim Inghame16c50a2011-02-18 00:54:25 +00002469 result.SetStatus (eReturnStatusFailed);
2470 m_debugger.SetAsyncExecution (old_async_execution);
2471 return;
2472 }
Jim Ingham26c7bf92014-10-11 00:38:27 +00002473 else if (options.GetPrintResults())
Jim Inghame16c50a2011-02-18 00:54:25 +00002474 {
Deepak Panickal99fbc072014-03-03 15:39:47 +00002475 result.AppendMessageWithFormat ("Command #%" PRIu64 " '%s' failed with %s",
2476 (uint64_t)idx + 1,
Jim Inghame16c50a2011-02-18 00:54:25 +00002477 cmd,
Jim Inghama5038812012-04-24 02:25:07 +00002478 error_msg);
Jim Inghame16c50a2011-02-18 00:54:25 +00002479 }
2480 }
2481
Caroline Tice969ed3d2011-05-02 20:41:46 +00002482 if (result.GetImmediateOutputStream())
2483 result.GetImmediateOutputStream()->Flush();
2484
2485 if (result.GetImmediateErrorStream())
2486 result.GetImmediateErrorStream()->Flush();
2487
Jim Inghame16c50a2011-02-18 00:54:25 +00002488 // N.B. Can't depend on DidChangeProcessState, because the state coming into the command execution
2489 // could be running (for instance in Breakpoint Commands.
2490 // So we check the return value to see if it is has running in it.
2491 if ((tmp_result.GetStatus() == eReturnStatusSuccessContinuingNoResult)
2492 || (tmp_result.GetStatus() == eReturnStatusSuccessContinuingResult))
2493 {
Jim Ingham26c7bf92014-10-11 00:38:27 +00002494 if (options.GetStopOnContinue())
Jim Inghame16c50a2011-02-18 00:54:25 +00002495 {
2496 // If we caused the target to proceed, and we're going to stop in that case, set the
2497 // status in our real result before returning. This is an error if the continue was not the
2498 // last command in the set of commands to be run.
2499 if (idx != num_lines - 1)
Deepak Panickal99fbc072014-03-03 15:39:47 +00002500 result.AppendErrorWithFormat("Aborting reading of commands after command #%" PRIu64 ": '%s' continued the target.\n",
2501 (uint64_t)idx + 1, cmd);
Jim Inghame16c50a2011-02-18 00:54:25 +00002502 else
Deepak Panickal99fbc072014-03-03 15:39:47 +00002503 result.AppendMessageWithFormat("Command #%" PRIu64 " '%s' continued the target.\n", (uint64_t)idx + 1, cmd);
Jim Inghame16c50a2011-02-18 00:54:25 +00002504
2505 result.SetStatus(tmp_result.GetStatus());
2506 m_debugger.SetAsyncExecution (old_async_execution);
2507
2508 return;
2509 }
2510 }
Jim Inghamffc9f1d2014-10-14 01:20:07 +00002511
2512 // Also check for "stop on crash here:
2513 bool should_stop = false;
2514 if (tmp_result.GetDidChangeProcessState() && options.GetStopOnCrash())
2515 {
2516 TargetSP target_sp (m_debugger.GetTargetList().GetSelectedTarget());
2517 if (target_sp)
2518 {
2519 ProcessSP process_sp (target_sp->GetProcessSP());
2520 if (process_sp)
2521 {
2522 for (ThreadSP thread_sp : process_sp->GetThreadList().Threads())
2523 {
2524 StopReason reason = thread_sp->GetStopReason();
2525 if (reason == eStopReasonSignal || reason == eStopReasonException || reason == eStopReasonInstrumentation)
2526 {
2527 should_stop = true;
2528 break;
2529 }
2530 }
2531 }
2532 }
2533 if (should_stop)
2534 {
2535 if (idx != num_lines - 1)
2536 result.AppendErrorWithFormat("Aborting reading of commands after command #%" PRIu64 ": '%s' stopped with a signal or exception.\n",
2537 (uint64_t)idx + 1, cmd);
2538 else
2539 result.AppendMessageWithFormat("Command #%" PRIu64 " '%s' stopped with a signal or exception.\n", (uint64_t)idx + 1, cmd);
2540
2541 result.SetStatus(tmp_result.GetStatus());
2542 m_debugger.SetAsyncExecution (old_async_execution);
2543
2544 return;
2545 }
2546 }
Jim Inghame16c50a2011-02-18 00:54:25 +00002547
2548 }
2549
2550 result.SetStatus (eReturnStatusSuccessFinishResult);
2551 m_debugger.SetAsyncExecution (old_async_execution);
2552
2553 return;
2554}
2555
Greg Clayton340b0302014-02-05 17:57:57 +00002556// Make flags that we can pass into the IOHandler so our delegates can do the right thing
2557enum {
2558 eHandleCommandFlagStopOnContinue = (1u << 0),
2559 eHandleCommandFlagStopOnError = (1u << 1),
2560 eHandleCommandFlagEchoCommand = (1u << 2),
Jim Ingham26c7bf92014-10-11 00:38:27 +00002561 eHandleCommandFlagPrintResult = (1u << 3),
2562 eHandleCommandFlagStopOnCrash = (1u << 4)
Greg Clayton340b0302014-02-05 17:57:57 +00002563};
2564
Jim Inghame16c50a2011-02-18 00:54:25 +00002565void
2566CommandInterpreter::HandleCommandsFromFile (FileSpec &cmd_file,
2567 ExecutionContext *context,
Jim Ingham26c7bf92014-10-11 00:38:27 +00002568 CommandInterpreterRunOptions &options,
Jim Inghame16c50a2011-02-18 00:54:25 +00002569 CommandReturnObject &result)
2570{
2571 if (cmd_file.Exists())
2572 {
Greg Clayton44d93782014-01-27 23:43:24 +00002573 StreamFileSP input_file_sp (new StreamFile());
2574
2575 std::string cmd_file_path = cmd_file.GetPath();
2576 Error error = input_file_sp->GetFile().Open(cmd_file_path.c_str(), File::eOpenOptionRead);
2577
2578 if (error.Success())
2579 {
2580 Debugger &debugger = GetDebugger();
2581
Greg Clayton340b0302014-02-05 17:57:57 +00002582 uint32_t flags = 0;
2583
Jim Ingham26c7bf92014-10-11 00:38:27 +00002584 if (options.m_stop_on_continue == eLazyBoolCalculate)
Greg Clayton340b0302014-02-05 17:57:57 +00002585 {
2586 if (m_command_source_flags.empty())
2587 {
Greg Claytone4e462c2014-02-05 21:03:22 +00002588 // Stop on continue by default
Greg Clayton340b0302014-02-05 17:57:57 +00002589 flags |= eHandleCommandFlagStopOnContinue;
2590 }
2591 else if (m_command_source_flags.back() & eHandleCommandFlagStopOnContinue)
2592 {
2593 flags |= eHandleCommandFlagStopOnContinue;
2594 }
2595 }
Jim Ingham26c7bf92014-10-11 00:38:27 +00002596 else if (options.m_stop_on_continue == eLazyBoolYes)
Greg Clayton340b0302014-02-05 17:57:57 +00002597 {
2598 flags |= eHandleCommandFlagStopOnContinue;
2599 }
2600
Jim Ingham26c7bf92014-10-11 00:38:27 +00002601 if (options.m_stop_on_error == eLazyBoolCalculate)
Greg Clayton340b0302014-02-05 17:57:57 +00002602 {
2603 if (m_command_source_flags.empty())
2604 {
2605 if (GetStopCmdSourceOnError())
2606 flags |= eHandleCommandFlagStopOnError;
2607 }
2608 else if (m_command_source_flags.back() & eHandleCommandFlagStopOnError)
2609 {
2610 flags |= eHandleCommandFlagStopOnError;
2611 }
2612 }
Jim Ingham26c7bf92014-10-11 00:38:27 +00002613 else if (options.m_stop_on_error == eLazyBoolYes)
Greg Clayton340b0302014-02-05 17:57:57 +00002614 {
2615 flags |= eHandleCommandFlagStopOnError;
2616 }
2617
Jim Inghamffc9f1d2014-10-14 01:20:07 +00002618 if (options.GetStopOnCrash())
2619 {
2620 if (m_command_source_flags.empty())
2621 {
2622 // Echo command by default
2623 flags |= eHandleCommandFlagStopOnCrash;
2624 }
2625 else if (m_command_source_flags.back() & eHandleCommandFlagStopOnCrash)
2626 {
2627 flags |= eHandleCommandFlagStopOnCrash;
2628 }
2629 }
2630
Jim Ingham26c7bf92014-10-11 00:38:27 +00002631 if (options.m_echo_commands == eLazyBoolCalculate)
Greg Clayton340b0302014-02-05 17:57:57 +00002632 {
2633 if (m_command_source_flags.empty())
2634 {
2635 // Echo command by default
2636 flags |= eHandleCommandFlagEchoCommand;
2637 }
2638 else if (m_command_source_flags.back() & eHandleCommandFlagEchoCommand)
2639 {
2640 flags |= eHandleCommandFlagEchoCommand;
2641 }
2642 }
Jim Ingham26c7bf92014-10-11 00:38:27 +00002643 else if (options.m_echo_commands == eLazyBoolYes)
Greg Clayton340b0302014-02-05 17:57:57 +00002644 {
2645 flags |= eHandleCommandFlagEchoCommand;
2646 }
2647
Jim Ingham26c7bf92014-10-11 00:38:27 +00002648 if (options.m_print_results == eLazyBoolCalculate)
Greg Clayton340b0302014-02-05 17:57:57 +00002649 {
2650 if (m_command_source_flags.empty())
2651 {
Greg Claytone4e462c2014-02-05 21:03:22 +00002652 // Print output by default
2653 flags |= eHandleCommandFlagPrintResult;
Greg Clayton340b0302014-02-05 17:57:57 +00002654 }
Greg Claytone4e462c2014-02-05 21:03:22 +00002655 else if (m_command_source_flags.back() & eHandleCommandFlagPrintResult)
Greg Clayton340b0302014-02-05 17:57:57 +00002656 {
Greg Claytone4e462c2014-02-05 21:03:22 +00002657 flags |= eHandleCommandFlagPrintResult;
Greg Clayton340b0302014-02-05 17:57:57 +00002658 }
2659 }
Jim Ingham26c7bf92014-10-11 00:38:27 +00002660 else if (options.m_print_results == eLazyBoolYes)
Greg Clayton340b0302014-02-05 17:57:57 +00002661 {
Greg Claytone4e462c2014-02-05 21:03:22 +00002662 flags |= eHandleCommandFlagPrintResult;
2663 }
2664
2665 if (flags & eHandleCommandFlagPrintResult)
2666 {
Greg Clayton8ee67312014-02-05 21:46:20 +00002667 debugger.GetOutputFile()->Printf("Executing commands in '%s'.\n", cmd_file_path.c_str());
Greg Clayton340b0302014-02-05 17:57:57 +00002668 }
2669
2670 // Used for inheriting the right settings when "command source" might have
2671 // nested "command source" commands
Greg Claytone4e462c2014-02-05 21:03:22 +00002672 lldb::StreamFileSP empty_stream_sp;
Greg Clayton340b0302014-02-05 17:57:57 +00002673 m_command_source_flags.push_back(flags);
Greg Clayton44d93782014-01-27 23:43:24 +00002674 IOHandlerSP io_handler_sp (new IOHandlerEditline (debugger,
Kate Stonee30f11d2014-11-17 19:06:59 +00002675 IOHandler::Type::CommandInterpreter,
Greg Clayton44d93782014-01-27 23:43:24 +00002676 input_file_sp,
Greg Claytone4e462c2014-02-05 21:03:22 +00002677 empty_stream_sp, // Pass in an empty stream so we inherit the top input reader output stream
2678 empty_stream_sp, // Pass in an empty stream so we inherit the top input reader error stream
Greg Clayton340b0302014-02-05 17:57:57 +00002679 flags,
Ed Masted78c9572014-04-20 00:31:37 +00002680 nullptr, // Pass in NULL for "editline_name" so no history is saved, or written
Greg Clayton8ee67312014-02-05 21:46:20 +00002681 debugger.GetPrompt(),
Kate Stonee30f11d2014-11-17 19:06:59 +00002682 NULL,
Greg Clayton44d93782014-01-27 23:43:24 +00002683 false, // Not multi-line
Kate Stonee30f11d2014-11-17 19:06:59 +00002684 debugger.GetUseColor(),
Greg Claytonf6913cd2014-03-07 00:53:24 +00002685 0,
Greg Clayton44d93782014-01-27 23:43:24 +00002686 *this));
Greg Clayton8ee67312014-02-05 21:46:20 +00002687 const bool old_async_execution = debugger.GetAsyncExecution();
2688
Jim Inghamffc9f1d2014-10-14 01:20:07 +00002689 // Set synchronous execution if we are not stopping on continue
Greg Clayton8ee67312014-02-05 21:46:20 +00002690 if ((flags & eHandleCommandFlagStopOnContinue) == 0)
2691 debugger.SetAsyncExecution (false);
2692
Greg Clayton340b0302014-02-05 17:57:57 +00002693 m_command_source_depth++;
Greg Clayton8ee67312014-02-05 21:46:20 +00002694
2695 debugger.RunIOHandler(io_handler_sp);
Greg Clayton340b0302014-02-05 17:57:57 +00002696 if (!m_command_source_flags.empty())
2697 m_command_source_flags.pop_back();
2698 m_command_source_depth--;
Greg Clayton44d93782014-01-27 23:43:24 +00002699 result.SetStatus (eReturnStatusSuccessFinishNoResult);
Greg Clayton8ee67312014-02-05 21:46:20 +00002700 debugger.SetAsyncExecution (old_async_execution);
Greg Clayton44d93782014-01-27 23:43:24 +00002701 }
2702 else
2703 {
2704 result.AppendErrorWithFormat ("error: an error occurred read file '%s': %s\n", cmd_file_path.c_str(), error.AsCString());
2705 result.SetStatus (eReturnStatusFailed);
2706 }
Greg Clayton8ee67312014-02-05 21:46:20 +00002707
2708
Jim Inghame16c50a2011-02-18 00:54:25 +00002709 }
2710 else
2711 {
2712 result.AppendErrorWithFormat ("Error reading commands from file %s - file not found.\n",
Jim Ingham4af59612014-12-19 19:20:44 +00002713 cmd_file.GetFilename().AsCString("<Unknown>"));
Jim Inghame16c50a2011-02-18 00:54:25 +00002714 result.SetStatus (eReturnStatusFailed);
2715 return;
2716 }
2717}
2718
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002719ScriptInterpreter *
Zachary Turner2c1f46d2015-07-30 20:28:07 +00002720CommandInterpreter::GetScriptInterpreter(bool can_create)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002721{
Zachary Turner2c1f46d2015-07-30 20:28:07 +00002722 if (m_script_interpreter_sp)
2723 return m_script_interpreter_sp.get();
2724
Enrico Granatab5887262012-10-29 21:18:03 +00002725 if (!can_create)
Ed Masted78c9572014-04-20 00:31:37 +00002726 return nullptr;
Zachary Turner2c1f46d2015-07-30 20:28:07 +00002727
Caroline Tice2f88aad2011-01-14 00:29:16 +00002728 lldb::ScriptLanguage script_lang = GetDebugger().GetScriptLanguage();
Zachary Turner2c1f46d2015-07-30 20:28:07 +00002729 m_script_interpreter_sp = PluginManager::GetScriptInterpreterForLanguage(script_lang, *this);
2730 return m_script_interpreter_sp.get();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002731}
2732
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002733bool
2734CommandInterpreter::GetSynchronous ()
2735{
2736 return m_synchronous_execution;
2737}
2738
2739void
2740CommandInterpreter::SetSynchronous (bool value)
2741{
Johnny Chenc066ab42010-10-14 01:22:03 +00002742 m_synchronous_execution = value;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002743}
2744
2745void
2746CommandInterpreter::OutputFormattedHelpText (Stream &strm,
Kate Stonea487aa42015-01-15 00:52:41 +00002747 const char *prefix,
2748 const char *help_text)
2749{
2750 const uint32_t max_columns = m_debugger.GetTerminalWidth();
2751 if (prefix == NULL)
2752 prefix = "";
2753
2754 size_t prefix_width = strlen(prefix);
2755 size_t line_width_max = max_columns - prefix_width;
2756 const char *help_text_end = help_text + strlen(help_text);
2757 const char *line_start = help_text;
2758 if (line_width_max < 16)
2759 line_width_max = help_text_end - help_text + prefix_width;
2760
2761 strm.IndentMore (prefix_width);
2762 while (line_start < help_text_end)
2763 {
2764 // Break each line at the first newline or last space/tab before
2765 // the maximum number of characters that fit on a line. Lines with no
2766 // natural break are left unbroken to wrap.
2767 const char *line_end = help_text_end;
2768 const char *line_scan = line_start;
2769 const char *line_scan_end = help_text_end;
2770 while (line_scan < line_scan_end)
2771 {
2772 char next = *line_scan;
2773 if (next == '\t' || next == ' ')
2774 {
2775 line_end = line_scan;
2776 line_scan_end = line_start + line_width_max;
2777 }
2778 else if (next == '\n' || next == '\0')
2779 {
2780 line_end = line_scan;
2781 break;
2782 }
2783 ++line_scan;
2784 }
2785
2786 // Prefix the first line, indent subsequent lines to line up
2787 if (line_start == help_text)
2788 strm.Write (prefix, prefix_width);
2789 else
2790 strm.Indent();
2791 strm.Write (line_start, line_end - line_start);
2792 strm.EOL();
2793
2794 // When a line breaks at whitespace consume it before continuing
2795 line_start = line_end;
2796 char next = *line_start;
2797 if (next == '\n')
2798 ++line_start;
2799 else while (next == ' ' || next == '\t')
2800 next = *(++line_start);
2801 }
2802 strm.IndentLess (prefix_width);
2803}
2804
2805void
2806CommandInterpreter::OutputFormattedHelpText (Stream &strm,
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002807 const char *word_text,
2808 const char *separator,
2809 const char *help_text,
Greg Claytonc7bece562013-01-25 18:06:21 +00002810 size_t max_word_len)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002811{
Kate Stonea487aa42015-01-15 00:52:41 +00002812 StreamString prefix_stream;
2813 prefix_stream.Printf (" %-*s %s ", (int)max_word_len, word_text, separator);
2814 OutputFormattedHelpText (strm, prefix_stream.GetData(), help_text);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002815}
2816
2817void
Enrico Granata82a7d982011-07-07 00:38:40 +00002818CommandInterpreter::OutputHelpText (Stream &strm,
2819 const char *word_text,
2820 const char *separator,
2821 const char *help_text,
2822 uint32_t max_word_len)
2823{
2824 int indent_size = max_word_len + strlen (separator) + 2;
2825
2826 strm.IndentMore (indent_size);
2827
2828 StreamString text_strm;
2829 text_strm.Printf ("%-*s %s %s", max_word_len, word_text, separator, help_text);
2830
2831 const uint32_t max_columns = m_debugger.GetTerminalWidth();
Enrico Granata82a7d982011-07-07 00:38:40 +00002832
2833 size_t len = text_strm.GetSize();
2834 const char *text = text_strm.GetData();
2835
2836 uint32_t chars_left = max_columns;
2837
2838 for (uint32_t i = 0; i < len; i++)
2839 {
2840 if ((text[i] == ' ' && ::strchr((text+i+1), ' ') && chars_left < ::strchr((text+i+1), ' ')-(text+i)) || text[i] == '\n')
2841 {
Enrico Granata82a7d982011-07-07 00:38:40 +00002842 chars_left = max_columns - indent_size;
2843 strm.EOL();
2844 strm.Indent();
2845 }
2846 else
2847 {
2848 strm.PutChar(text[i]);
2849 chars_left--;
2850 }
2851
2852 }
2853
2854 strm.EOL();
2855 strm.IndentLess(indent_size);
2856}
2857
2858void
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002859CommandInterpreter::FindCommandsForApropos (const char *search_word, StringList &commands_found,
Jim Inghamaf3753e2013-05-17 01:30:37 +00002860 StringList &commands_help, bool search_builtin_commands, bool search_user_commands)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002861{
2862 CommandObject::CommandMap::const_iterator pos;
2863
Jim Inghamaf3753e2013-05-17 01:30:37 +00002864 if (search_builtin_commands)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002865 {
Jim Inghamaf3753e2013-05-17 01:30:37 +00002866 for (pos = m_command_dict.begin(); pos != m_command_dict.end(); ++pos)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002867 {
Jim Inghamaf3753e2013-05-17 01:30:37 +00002868 const char *command_name = pos->first.c_str();
2869 CommandObject *cmd_obj = pos->second.get();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002870
Jim Inghamaf3753e2013-05-17 01:30:37 +00002871 if (cmd_obj->HelpTextContainsWord (search_word))
2872 {
2873 commands_found.AppendString (command_name);
2874 commands_help.AppendString (cmd_obj->GetHelp());
2875 }
2876
2877 if (cmd_obj->IsMultiwordObject())
2878 cmd_obj->AproposAllSubCommands (command_name,
2879 search_word,
2880 commands_found,
2881 commands_help);
2882
2883 }
2884 }
2885
2886 if (search_user_commands)
2887 {
2888 for (pos = m_user_dict.begin(); pos != m_user_dict.end(); ++pos)
2889 {
2890 const char *command_name = pos->first.c_str();
2891 CommandObject *cmd_obj = pos->second.get();
2892
2893 if (cmd_obj->HelpTextContainsWord (search_word))
2894 {
2895 commands_found.AppendString (command_name);
2896 commands_help.AppendString (cmd_obj->GetHelp());
2897 }
2898
2899 if (cmd_obj->IsMultiwordObject())
2900 cmd_obj->AproposAllSubCommands (command_name,
2901 search_word,
2902 commands_found,
2903 commands_help);
2904
2905 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002906 }
2907}
Greg Clayton8b82f082011-04-12 05:54:46 +00002908
Greg Clayton8b82f082011-04-12 05:54:46 +00002909void
2910CommandInterpreter::UpdateExecutionContext (ExecutionContext *override_context)
2911{
Ed Masted78c9572014-04-20 00:31:37 +00002912 if (override_context != nullptr)
Greg Clayton8b82f082011-04-12 05:54:46 +00002913 {
Greg Clayton4e0fe8a2012-07-12 20:32:19 +00002914 m_exe_ctx_ref = *override_context;
Greg Clayton8b82f082011-04-12 05:54:46 +00002915 }
2916 else
2917 {
Greg Clayton4e0fe8a2012-07-12 20:32:19 +00002918 const bool adopt_selected = true;
2919 m_exe_ctx_ref.SetTargetPtr (m_debugger.GetSelectedTarget().get(), adopt_selected);
Greg Clayton8b82f082011-04-12 05:54:46 +00002920 }
2921}
Greg Clayton44d93782014-01-27 23:43:24 +00002922
2923
2924size_t
2925CommandInterpreter::GetProcessOutput ()
2926{
2927 // The process has stuff waiting for stderr; get it and write it out to the appropriate place.
2928 char stdio_buffer[1024];
2929 size_t len;
2930 size_t total_bytes = 0;
2931 Error error;
2932 TargetSP target_sp (m_debugger.GetTargetList().GetSelectedTarget());
2933 if (target_sp)
2934 {
2935 ProcessSP process_sp (target_sp->GetProcessSP());
2936 if (process_sp)
2937 {
2938 while ((len = process_sp->GetSTDOUT (stdio_buffer, sizeof (stdio_buffer), error)) > 0)
2939 {
2940 size_t bytes_written = len;
2941 m_debugger.GetOutputFile()->Write (stdio_buffer, bytes_written);
2942 total_bytes += len;
2943 }
2944 while ((len = process_sp->GetSTDERR (stdio_buffer, sizeof (stdio_buffer), error)) > 0)
2945 {
2946 size_t bytes_written = len;
2947 m_debugger.GetErrorFile()->Write (stdio_buffer, bytes_written);
2948 total_bytes += len;
2949 }
2950 }
2951 }
2952 return total_bytes;
2953}
2954
2955void
2956CommandInterpreter::IOHandlerInputComplete (IOHandler &io_handler, std::string &line)
2957{
Greg Clayton340b0302014-02-05 17:57:57 +00002958 const bool is_interactive = io_handler.GetIsInteractive();
2959 if (is_interactive == false)
2960 {
2961 // When we are not interactive, don't execute blank lines. This will happen
2962 // sourcing a commands file. We don't want blank lines to repeat the previous
2963 // command and cause any errors to occur (like redefining an alias, get an error
2964 // and stop parsing the commands file).
2965 if (line.empty())
2966 return;
2967
2968 // When using a non-interactive file handle (like when sourcing commands from a file)
2969 // we need to echo the command out so we don't just see the command output and no
2970 // command...
2971 if (io_handler.GetFlags().Test(eHandleCommandFlagEchoCommand))
2972 io_handler.GetOutputStreamFile()->Printf("%s%s\n", io_handler.GetPrompt(), line.c_str());
2973 }
2974
Greg Clayton44d93782014-01-27 23:43:24 +00002975 lldb_private::CommandReturnObject result;
2976 HandleCommand(line.c_str(), eLazyBoolCalculate, result);
2977
Greg Clayton44d93782014-01-27 23:43:24 +00002978 // Now emit the command output text from the command we just executed
Greg Clayton340b0302014-02-05 17:57:57 +00002979 if (io_handler.GetFlags().Test(eHandleCommandFlagPrintResult))
2980 {
2981 // Display any STDOUT/STDERR _prior_ to emitting the command result text
2982 GetProcessOutput ();
2983
Greg Clayton8ee67312014-02-05 21:46:20 +00002984 if (!result.GetImmediateOutputStream())
2985 {
2986 const char *output = result.GetOutputData();
2987 if (output && output[0])
2988 io_handler.GetOutputStreamFile()->PutCString(output);
2989 }
Greg Clayton44d93782014-01-27 23:43:24 +00002990
Greg Clayton340b0302014-02-05 17:57:57 +00002991 // Now emit the command error text from the command we just executed
Greg Clayton8ee67312014-02-05 21:46:20 +00002992 if (!result.GetImmediateErrorStream())
2993 {
2994 const char *error = result.GetErrorData();
2995 if (error && error[0])
2996 io_handler.GetErrorStreamFile()->PutCString(error);
2997 }
Greg Clayton340b0302014-02-05 17:57:57 +00002998 }
Greg Clayton44d93782014-01-27 23:43:24 +00002999
3000 switch (result.GetStatus())
3001 {
3002 case eReturnStatusInvalid:
3003 case eReturnStatusSuccessFinishNoResult:
3004 case eReturnStatusSuccessFinishResult:
Greg Clayton340b0302014-02-05 17:57:57 +00003005 case eReturnStatusStarted:
3006 break;
3007
Greg Clayton44d93782014-01-27 23:43:24 +00003008 case eReturnStatusSuccessContinuingNoResult:
3009 case eReturnStatusSuccessContinuingResult:
Greg Clayton340b0302014-02-05 17:57:57 +00003010 if (io_handler.GetFlags().Test(eHandleCommandFlagStopOnContinue))
3011 io_handler.SetIsDone(true);
3012 break;
3013
Greg Clayton44d93782014-01-27 23:43:24 +00003014 case eReturnStatusFailed:
Jim Ingham26c7bf92014-10-11 00:38:27 +00003015 m_num_errors++;
Greg Clayton340b0302014-02-05 17:57:57 +00003016 if (io_handler.GetFlags().Test(eHandleCommandFlagStopOnError))
3017 io_handler.SetIsDone(true);
Greg Clayton44d93782014-01-27 23:43:24 +00003018 break;
3019
3020 case eReturnStatusQuit:
Jim Ingham26c7bf92014-10-11 00:38:27 +00003021 m_quit_requested = true;
Greg Clayton44d93782014-01-27 23:43:24 +00003022 io_handler.SetIsDone(true);
3023 break;
3024 }
Jim Inghamffc9f1d2014-10-14 01:20:07 +00003025
3026 // Finally, if we're going to stop on crash, check that here:
3027 if (!m_quit_requested
3028 && result.GetDidChangeProcessState()
3029 && io_handler.GetFlags().Test(eHandleCommandFlagStopOnCrash))
3030 {
3031 bool should_stop = false;
3032 TargetSP target_sp (m_debugger.GetTargetList().GetSelectedTarget());
3033 if (target_sp)
3034 {
3035 ProcessSP process_sp (target_sp->GetProcessSP());
3036 if (process_sp)
3037 {
3038 for (ThreadSP thread_sp : process_sp->GetThreadList().Threads())
3039 {
3040 StopReason reason = thread_sp->GetStopReason();
3041 if (reason == eStopReasonSignal || reason == eStopReasonException || reason == eStopReasonInstrumentation)
3042 {
Jim Inghamffc9f1d2014-10-14 01:20:07 +00003043 should_stop = true;
3044 break;
3045 }
3046 }
3047 }
3048 }
3049 if (should_stop)
3050 {
3051 io_handler.SetIsDone(true);
3052 m_stopped_for_crash = true;
3053 }
3054 }
Greg Clayton44d93782014-01-27 23:43:24 +00003055}
3056
Greg Claytonf0066ad2014-05-02 00:45:31 +00003057bool
3058CommandInterpreter::IOHandlerInterrupt (IOHandler &io_handler)
3059{
3060 ExecutionContext exe_ctx (GetExecutionContext());
3061 Process *process = exe_ctx.GetProcessPtr();
3062
3063 if (process)
3064 {
3065 StateType state = process->GetState();
3066 if (StateIsRunningState(state))
3067 {
3068 process->Halt();
3069 return true; // Don't do any updating when we are running
3070 }
3071 }
Greg Claytone507bce2015-01-27 01:58:22 +00003072
3073 ScriptInterpreter *script_interpreter = GetScriptInterpreter (false);
3074 if (script_interpreter)
3075 {
3076 if (script_interpreter->Interrupt())
3077 return true;
3078 }
Greg Claytonf0066ad2014-05-02 00:45:31 +00003079 return false;
3080}
3081
Greg Clayton44d93782014-01-27 23:43:24 +00003082void
3083CommandInterpreter::GetLLDBCommandsFromIOHandler (const char *prompt,
3084 IOHandlerDelegate &delegate,
3085 bool asynchronously,
3086 void *baton)
3087{
3088 Debugger &debugger = GetDebugger();
3089 IOHandlerSP io_handler_sp (new IOHandlerEditline (debugger,
Kate Stonee30f11d2014-11-17 19:06:59 +00003090 IOHandler::Type::CommandList,
Greg Clayton44d93782014-01-27 23:43:24 +00003091 "lldb", // Name of input reader for history
3092 prompt, // Prompt
Kate Stonee30f11d2014-11-17 19:06:59 +00003093 NULL, // Continuation prompt
Greg Clayton44d93782014-01-27 23:43:24 +00003094 true, // Get multiple lines
Kate Stonee30f11d2014-11-17 19:06:59 +00003095 debugger.GetUseColor(),
Greg Claytonf6913cd2014-03-07 00:53:24 +00003096 0, // Don't show line numbers
Greg Clayton44d93782014-01-27 23:43:24 +00003097 delegate)); // IOHandlerDelegate
3098
3099 if (io_handler_sp)
3100 {
3101 io_handler_sp->SetUserData (baton);
3102 if (asynchronously)
3103 debugger.PushIOHandler(io_handler_sp);
3104 else
3105 debugger.RunIOHandler(io_handler_sp);
3106 }
3107
3108}
3109
3110
3111void
3112CommandInterpreter::GetPythonCommandsFromIOHandler (const char *prompt,
3113 IOHandlerDelegate &delegate,
3114 bool asynchronously,
3115 void *baton)
3116{
3117 Debugger &debugger = GetDebugger();
3118 IOHandlerSP io_handler_sp (new IOHandlerEditline (debugger,
Kate Stonee30f11d2014-11-17 19:06:59 +00003119 IOHandler::Type::PythonCode,
Greg Clayton44d93782014-01-27 23:43:24 +00003120 "lldb-python", // Name of input reader for history
3121 prompt, // Prompt
Kate Stonee30f11d2014-11-17 19:06:59 +00003122 NULL, // Continuation prompt
Greg Clayton44d93782014-01-27 23:43:24 +00003123 true, // Get multiple lines
Kate Stonee30f11d2014-11-17 19:06:59 +00003124 debugger.GetUseColor(),
Greg Claytonf6913cd2014-03-07 00:53:24 +00003125 0, // Don't show line numbers
Greg Clayton44d93782014-01-27 23:43:24 +00003126 delegate)); // IOHandlerDelegate
3127
3128 if (io_handler_sp)
3129 {
3130 io_handler_sp->SetUserData (baton);
3131 if (asynchronously)
3132 debugger.PushIOHandler(io_handler_sp);
3133 else
3134 debugger.RunIOHandler(io_handler_sp);
3135 }
3136
3137}
3138
3139bool
3140CommandInterpreter::IsActive ()
3141{
3142 return m_debugger.IsTopIOHandler (m_command_io_handler_sp);
3143}
3144
Kate Stonee30f11d2014-11-17 19:06:59 +00003145lldb::IOHandlerSP
3146CommandInterpreter::GetIOHandler(bool force_create, CommandInterpreterRunOptions *options)
3147{
3148 // Always re-create the IOHandlerEditline in case the input
3149 // changed. The old instance might have had a non-interactive
3150 // input and now it does or vice versa.
3151 if (force_create || !m_command_io_handler_sp)
3152 {
3153 // Always re-create the IOHandlerEditline in case the input
3154 // changed. The old instance might have had a non-interactive
3155 // input and now it does or vice versa.
3156 uint32_t flags = 0;
3157
3158 if (options)
3159 {
3160 if (options->m_stop_on_continue == eLazyBoolYes)
3161 flags |= eHandleCommandFlagStopOnContinue;
3162 if (options->m_stop_on_error == eLazyBoolYes)
3163 flags |= eHandleCommandFlagStopOnError;
3164 if (options->m_stop_on_crash == eLazyBoolYes)
3165 flags |= eHandleCommandFlagStopOnCrash;
3166 if (options->m_echo_commands != eLazyBoolNo)
3167 flags |= eHandleCommandFlagEchoCommand;
3168 if (options->m_print_results != eLazyBoolNo)
3169 flags |= eHandleCommandFlagPrintResult;
3170 }
3171 else
3172 {
3173 flags = eHandleCommandFlagEchoCommand | eHandleCommandFlagPrintResult;
3174 }
3175
3176 m_command_io_handler_sp.reset(new IOHandlerEditline (m_debugger,
3177 IOHandler::Type::CommandInterpreter,
3178 m_debugger.GetInputFile(),
3179 m_debugger.GetOutputFile(),
3180 m_debugger.GetErrorFile(),
3181 flags,
3182 "lldb",
3183 m_debugger.GetPrompt(),
3184 NULL, // Continuation prompt
3185 false, // Don't enable multiple line input, just single line commands
3186 m_debugger.GetUseColor(),
3187 0, // Don't show line numbers
3188 *this));
3189 }
3190 return m_command_io_handler_sp;
3191}
3192
Greg Clayton44d93782014-01-27 23:43:24 +00003193void
3194CommandInterpreter::RunCommandInterpreter(bool auto_handle_events,
Jim Ingham26c7bf92014-10-11 00:38:27 +00003195 bool spawn_thread,
3196 CommandInterpreterRunOptions &options)
Greg Clayton44d93782014-01-27 23:43:24 +00003197{
Bruce Mitchener58ef3912015-06-18 05:27:05 +00003198 // Always re-create the command interpreter when we run it in case
Kate Stonee30f11d2014-11-17 19:06:59 +00003199 // any file handles have changed.
3200 bool force_create = true;
3201 m_debugger.PushIOHandler(GetIOHandler(force_create, &options));
Jim Inghamffc9f1d2014-10-14 01:20:07 +00003202 m_stopped_for_crash = false;
Greg Clayton380f3d82014-07-31 19:46:19 +00003203
Greg Clayton44d93782014-01-27 23:43:24 +00003204 if (auto_handle_events)
3205 m_debugger.StartEventHandlerThread();
3206
3207 if (spawn_thread)
3208 {
3209 m_debugger.StartIOHandlerThread();
3210 }
3211 else
3212 {
Siva Chandra9aaab552015-02-26 19:26:36 +00003213 m_debugger.ExecuteIOHandlers();
Kate Stonee30f11d2014-11-17 19:06:59 +00003214
Greg Clayton44d93782014-01-27 23:43:24 +00003215 if (auto_handle_events)
3216 m_debugger.StopEventHandlerThread();
3217 }
Kate Stonee30f11d2014-11-17 19:06:59 +00003218
Greg Clayton44d93782014-01-27 23:43:24 +00003219}
3220
Adrian McCarthy2304b6f2015-04-23 20:00:25 +00003221CommandObject *
3222CommandInterpreter::ResolveCommandImpl(std::string &command_line, CommandReturnObject &result)
3223{
3224 std::string scratch_command(command_line); // working copy so we don't modify command_line unless we succeed
3225 CommandObject *cmd_obj = nullptr;
3226 StreamString revised_command_line;
3227 bool wants_raw_input = false;
3228 size_t actual_cmd_name_len = 0;
3229 std::string next_word;
3230 StringList matches;
3231 bool done = false;
3232 while (!done)
3233 {
3234 char quote_char = '\0';
3235 std::string suffix;
3236 ExtractCommand(scratch_command, next_word, suffix, quote_char);
3237 if (cmd_obj == nullptr)
3238 {
3239 std::string full_name;
3240 if (GetAliasFullName(next_word.c_str(), full_name))
3241 {
3242 std::string alias_result;
3243 cmd_obj = BuildAliasResult(full_name.c_str(), scratch_command, alias_result, result);
3244 revised_command_line.Printf("%s", alias_result.c_str());
3245 if (cmd_obj)
3246 {
3247 wants_raw_input = cmd_obj->WantsRawCommandString();
3248 actual_cmd_name_len = strlen(cmd_obj->GetCommandName());
3249 }
3250 }
3251 else
3252 {
3253 cmd_obj = GetCommandObject(next_word.c_str(), &matches);
3254 if (cmd_obj)
3255 {
3256 actual_cmd_name_len += strlen(cmd_obj->GetCommandName());
3257 revised_command_line.Printf("%s", cmd_obj->GetCommandName());
3258 wants_raw_input = cmd_obj->WantsRawCommandString();
3259 }
3260 else
3261 {
3262 revised_command_line.Printf ("%s", next_word.c_str());
3263 }
3264 }
3265 }
3266 else
3267 {
3268 if (cmd_obj->IsMultiwordObject ())
3269 {
3270 CommandObject *sub_cmd_obj = cmd_obj->GetSubcommandObject(next_word.c_str());
3271 if (sub_cmd_obj)
3272 {
3273 // The subcommand's name includes the parent command's name,
3274 // so restart rather than append to the revised_command_line.
3275 actual_cmd_name_len = strlen(sub_cmd_obj->GetCommandName()) + 1;
3276 revised_command_line.Clear();
3277 revised_command_line.Printf("%s", sub_cmd_obj->GetCommandName());
3278 cmd_obj = sub_cmd_obj;
3279 wants_raw_input = cmd_obj->WantsRawCommandString();
3280 }
3281 else
3282 {
3283 if (quote_char)
3284 revised_command_line.Printf(" %c%s%s%c", quote_char, next_word.c_str(), suffix.c_str(), quote_char);
3285 else
3286 revised_command_line.Printf(" %s%s", next_word.c_str(), suffix.c_str());
3287 done = true;
3288 }
3289 }
3290 else
3291 {
3292 if (quote_char)
3293 revised_command_line.Printf(" %c%s%s%c", quote_char, next_word.c_str(), suffix.c_str(), quote_char);
3294 else
3295 revised_command_line.Printf(" %s%s", next_word.c_str(), suffix.c_str());
3296 done = true;
3297 }
3298 }
3299
3300 if (cmd_obj == nullptr)
3301 {
3302 const size_t num_matches = matches.GetSize();
3303 if (matches.GetSize() > 1) {
3304 StreamString error_msg;
3305 error_msg.Printf("Ambiguous command '%s'. Possible matches:\n", next_word.c_str());
3306
3307 for (uint32_t i = 0; i < num_matches; ++i) {
3308 error_msg.Printf("\t%s\n", matches.GetStringAtIndex(i));
3309 }
3310 result.AppendRawError(error_msg.GetString().c_str());
3311 } else {
3312 // We didn't have only one match, otherwise we wouldn't get here.
3313 assert(num_matches == 0);
3314 result.AppendErrorWithFormat("'%s' is not a valid command.\n", next_word.c_str());
3315 }
3316 result.SetStatus(eReturnStatusFailed);
3317 return nullptr;
3318 }
3319
3320 if (cmd_obj->IsMultiwordObject())
3321 {
3322 if (!suffix.empty())
3323 {
3324 result.AppendErrorWithFormat("command '%s' did not recognize '%s%s%s' as valid (subcommand might be invalid).\n",
3325 cmd_obj->GetCommandName(),
3326 next_word.empty() ? "" : next_word.c_str(),
3327 next_word.empty() ? " -- " : " ",
3328 suffix.c_str());
3329 result.SetStatus(eReturnStatusFailed);
3330 return nullptr;
3331 }
3332 }
3333 else
3334 {
3335 // If we found a normal command, we are done
3336 done = true;
3337 if (!suffix.empty())
3338 {
3339 switch (suffix[0])
3340 {
3341 case '/':
3342 // GDB format suffixes
3343 {
3344 Options *command_options = cmd_obj->GetOptions();
3345 if (command_options && command_options->SupportsLongOption("gdb-format"))
3346 {
3347 std::string gdb_format_option("--gdb-format=");
3348 gdb_format_option += (suffix.c_str() + 1);
3349
3350 bool inserted = false;
3351 std::string &cmd = revised_command_line.GetString();
3352 size_t arg_terminator_idx = FindArgumentTerminator(cmd);
3353 if (arg_terminator_idx != std::string::npos)
3354 {
3355 // Insert the gdb format option before the "--" that terminates options
3356 gdb_format_option.append(1,' ');
3357 cmd.insert(arg_terminator_idx, gdb_format_option);
3358 inserted = true;
3359 }
3360
3361 if (!inserted)
3362 revised_command_line.Printf(" %s", gdb_format_option.c_str());
3363
3364 if (wants_raw_input && FindArgumentTerminator(cmd) == std::string::npos)
3365 revised_command_line.PutCString(" --");
3366 }
3367 else
3368 {
3369 result.AppendErrorWithFormat("the '%s' command doesn't support the --gdb-format option\n",
3370 cmd_obj->GetCommandName());
3371 result.SetStatus(eReturnStatusFailed);
3372 return nullptr;
3373 }
3374 }
3375 break;
3376
3377 default:
3378 result.AppendErrorWithFormat("unknown command shorthand suffix: '%s'\n",
3379 suffix.c_str());
3380 result.SetStatus(eReturnStatusFailed);
3381 return nullptr;
3382 }
3383 }
3384 }
3385 if (scratch_command.empty())
3386 done = true;
3387 }
3388
3389 if (!scratch_command.empty())
3390 revised_command_line.Printf(" %s", scratch_command.c_str());
3391
3392 if (cmd_obj != NULL)
3393 command_line = revised_command_line.GetData();
3394
3395 return cmd_obj;
3396}