blob: c6995366c87a0a9ac0806f1440badcf236433bc1 [file] [log] [blame]
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001//===-- CommandObject.cpp ---------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Daniel Malea93a64302012-12-05 00:20:57 +000010#include "lldb/lldb-python.h"
11
Chris Lattner30fdc8d2010-06-08 16:52:24 +000012#include "lldb/Interpreter/CommandObject.h"
13
14#include <string>
15#include <map>
16
Chris Lattner30fdc8d2010-06-08 16:52:24 +000017#include <stdlib.h>
18#include <ctype.h>
19
20#include "lldb/Core/Address.h"
Johnny Chenca7835c2012-05-26 00:32:39 +000021#include "lldb/Core/ArchSpec.h"
Jim Ingham40af72e2010-06-15 19:49:27 +000022#include "lldb/Interpreter/Options.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000023
24// These are for the Sourcename completers.
25// FIXME: Make a separate file for the completers.
Greg Clayton53239f02011-02-08 05:05:52 +000026#include "lldb/Host/FileSpec.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000027#include "lldb/Core/FileSpecList.h"
28#include "lldb/Target/Process.h"
29#include "lldb/Target/Target.h"
30
31#include "lldb/Interpreter/CommandInterpreter.h"
32#include "lldb/Interpreter/CommandReturnObject.h"
33#include "lldb/Interpreter/ScriptInterpreter.h"
34#include "lldb/Interpreter/ScriptInterpreterPython.h"
35
36using namespace lldb;
37using namespace lldb_private;
38
39//-------------------------------------------------------------------------
40// CommandObject
41//-------------------------------------------------------------------------
42
Greg Claytona7015092010-09-18 01:14:36 +000043CommandObject::CommandObject
44(
45 CommandInterpreter &interpreter,
46 const char *name,
47 const char *help,
48 const char *syntax,
49 uint32_t flags
50) :
51 m_interpreter (interpreter),
Chris Lattner30fdc8d2010-06-08 16:52:24 +000052 m_cmd_name (name),
53 m_cmd_help_short (),
54 m_cmd_help_long (),
55 m_cmd_syntax (),
Jim Ingham279a6c22010-07-06 22:46:59 +000056 m_is_alias (false),
Caroline Ticee139cf22010-10-01 17:46:38 +000057 m_flags (flags),
Greg Claytona9f7b792012-02-29 04:21:24 +000058 m_arguments(),
59 m_command_override_callback (NULL),
60 m_command_override_baton (NULL)
Chris Lattner30fdc8d2010-06-08 16:52:24 +000061{
62 if (help && help[0])
63 m_cmd_help_short = help;
64 if (syntax && syntax[0])
65 m_cmd_syntax = syntax;
66}
67
68CommandObject::~CommandObject ()
69{
70}
71
72const char *
73CommandObject::GetHelp ()
74{
75 return m_cmd_help_short.c_str();
76}
77
78const char *
79CommandObject::GetHelpLong ()
80{
81 return m_cmd_help_long.c_str();
82}
83
84const char *
85CommandObject::GetSyntax ()
86{
Caroline Ticee139cf22010-10-01 17:46:38 +000087 if (m_cmd_syntax.length() == 0)
88 {
89 StreamString syntax_str;
90 syntax_str.Printf ("%s", GetCommandName());
91 if (GetOptions() != NULL)
Caroline Tice405fe672010-10-04 22:28:36 +000092 syntax_str.Printf (" <cmd-options>");
Caroline Ticee139cf22010-10-01 17:46:38 +000093 if (m_arguments.size() > 0)
94 {
95 syntax_str.Printf (" ");
Enrico Granataca5acdb2013-06-18 01:17:46 +000096 if (WantsRawCommandString() && GetOptions() && GetOptions()->NumCommandOptions())
Sean Callanana4c6ad12012-01-04 19:11:25 +000097 syntax_str.Printf("-- ");
Caroline Ticee139cf22010-10-01 17:46:38 +000098 GetFormattedCommandArguments (syntax_str);
99 }
100 m_cmd_syntax = syntax_str.GetData ();
101 }
102
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000103 return m_cmd_syntax.c_str();
104}
105
106const char *
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000107CommandObject::GetCommandName ()
108{
109 return m_cmd_name.c_str();
110}
111
112void
113CommandObject::SetCommandName (const char *name)
114{
115 m_cmd_name = name;
116}
117
118void
119CommandObject::SetHelp (const char *cstr)
120{
121 m_cmd_help_short = cstr;
122}
123
124void
125CommandObject::SetHelpLong (const char *cstr)
126{
127 m_cmd_help_long = cstr;
128}
129
130void
Enrico Granata99f0b8f2011-08-17 01:30:04 +0000131CommandObject::SetHelpLong (std::string str)
132{
133 m_cmd_help_long = str;
134}
135
136void
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000137CommandObject::SetSyntax (const char *cstr)
138{
139 m_cmd_syntax = cstr;
140}
141
142Options *
143CommandObject::GetOptions ()
144{
145 // By default commands don't have options unless this virtual function
146 // is overridden by base classes.
147 return NULL;
148}
149
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000150bool
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000151CommandObject::ParseOptions
152(
153 Args& args,
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000154 CommandReturnObject &result
155)
156{
157 // See if the subclass has options?
158 Options *options = GetOptions();
159 if (options != NULL)
160 {
161 Error error;
Greg Claytonf6b8b582011-04-13 00:18:08 +0000162 options->NotifyOptionParsingStarting();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000163
Greg Claytonb7ad58a2013-04-04 20:35:24 +0000164 // ParseOptions calls getopt_long_only, which always skips the zero'th item in the array and starts at position 1,
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000165 // so we need to push a dummy value into position zero.
166 args.Unshift("dummy_string");
167 error = args.ParseOptions (*options);
168
169 // The "dummy_string" will have already been removed by ParseOptions,
170 // so no need to remove it.
171
Greg Claytonf6b8b582011-04-13 00:18:08 +0000172 if (error.Success())
173 error = options->NotifyOptionParsingFinished();
174
175 if (error.Success())
176 {
177 if (options->VerifyOptions (result))
178 return true;
179 }
180 else
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000181 {
182 const char *error_cstr = error.AsCString();
183 if (error_cstr)
184 {
185 // We got an error string, lets use that
Greg Clayton86edbf42011-10-26 00:56:27 +0000186 result.AppendError(error_cstr);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000187 }
188 else
189 {
190 // No error string, output the usage information into result
Greg Claytoneb0103f2011-04-07 22:46:35 +0000191 options->GenerateOptionUsage (result.GetErrorStream(), this);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000192 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000193 }
Greg Claytonf6b8b582011-04-13 00:18:08 +0000194 result.SetStatus (eReturnStatusFailed);
195 return false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000196 }
197 return true;
198}
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000199
Jim Ingham5a988412012-06-08 21:56:10 +0000200
201
202bool
Greg Claytonf9fc6092013-01-09 19:44:40 +0000203CommandObject::CheckRequirements (CommandReturnObject &result)
Jim Ingham5a988412012-06-08 21:56:10 +0000204{
Greg Claytonf9fc6092013-01-09 19:44:40 +0000205#ifdef LLDB_CONFIGURATION_DEBUG
206 // Nothing should be stored in m_exe_ctx between running commands as m_exe_ctx
207 // has shared pointers to the target, process, thread and frame and we don't
208 // want any CommandObject instances to keep any of these objects around
209 // longer than for a single command. Every command should call
210 // CommandObject::Cleanup() after it has completed
211 assert (m_exe_ctx.GetTargetPtr() == NULL);
212 assert (m_exe_ctx.GetProcessPtr() == NULL);
213 assert (m_exe_ctx.GetThreadPtr() == NULL);
214 assert (m_exe_ctx.GetFramePtr() == NULL);
215#endif
216
217 // Lock down the interpreter's execution context prior to running the
218 // command so we guarantee the selected target, process, thread and frame
219 // can't go away during the execution
220 m_exe_ctx = m_interpreter.GetExecutionContext();
221
222 const uint32_t flags = GetFlags().Get();
223 if (flags & (eFlagRequiresTarget |
224 eFlagRequiresProcess |
225 eFlagRequiresThread |
226 eFlagRequiresFrame |
227 eFlagTryTargetAPILock ))
228 {
229
230 if ((flags & eFlagRequiresTarget) && !m_exe_ctx.HasTargetScope())
231 {
232 result.AppendError (GetInvalidTargetDescription());
233 return false;
234 }
235
236 if ((flags & eFlagRequiresProcess) && !m_exe_ctx.HasProcessScope())
237 {
238 result.AppendError (GetInvalidProcessDescription());
239 return false;
240 }
241
242 if ((flags & eFlagRequiresThread) && !m_exe_ctx.HasThreadScope())
243 {
244 result.AppendError (GetInvalidThreadDescription());
245 return false;
246 }
247
248 if ((flags & eFlagRequiresFrame) && !m_exe_ctx.HasFrameScope())
249 {
250 result.AppendError (GetInvalidFrameDescription());
251 return false;
252 }
253
254 if ((flags & eFlagRequiresRegContext) && (m_exe_ctx.GetRegisterContext() == NULL))
255 {
256 result.AppendError (GetInvalidRegContextDescription());
257 return false;
258 }
259
260 if (flags & eFlagTryTargetAPILock)
261 {
262 Target *target = m_exe_ctx.GetTargetPtr();
263 if (target)
Greg Clayton9b5442a2014-02-07 22:31:20 +0000264 m_api_locker.Lock (target->GetAPIMutex());
Greg Claytonf9fc6092013-01-09 19:44:40 +0000265 }
266 }
267
Greg Claytonb766a732011-02-04 01:58:07 +0000268 if (GetFlags().AnySet (CommandObject::eFlagProcessMustBeLaunched | CommandObject::eFlagProcessMustBePaused))
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000269 {
Greg Claytonc14ee322011-09-22 04:58:26 +0000270 Process *process = m_interpreter.GetExecutionContext().GetProcessPtr();
Greg Claytonb766a732011-02-04 01:58:07 +0000271 if (process == NULL)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000272 {
Jim Inghamb8e8a5f2011-07-09 00:55:34 +0000273 // A process that is not running is considered paused.
274 if (GetFlags().Test(CommandObject::eFlagProcessMustBeLaunched))
275 {
276 result.AppendError ("Process must exist.");
277 result.SetStatus (eReturnStatusFailed);
278 return false;
279 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000280 }
Greg Claytonb766a732011-02-04 01:58:07 +0000281 else
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000282 {
Greg Claytonb766a732011-02-04 01:58:07 +0000283 StateType state = process->GetState();
Greg Claytonb766a732011-02-04 01:58:07 +0000284 switch (state)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000285 {
Greg Clayton7a5388b2011-03-20 04:57:14 +0000286 case eStateInvalid:
Greg Claytonb766a732011-02-04 01:58:07 +0000287 case eStateSuspended:
288 case eStateCrashed:
289 case eStateStopped:
290 break;
291
292 case eStateConnected:
293 case eStateAttaching:
294 case eStateLaunching:
295 case eStateDetached:
296 case eStateExited:
297 case eStateUnloaded:
298 if (GetFlags().Test(CommandObject::eFlagProcessMustBeLaunched))
299 {
300 result.AppendError ("Process must be launched.");
301 result.SetStatus (eReturnStatusFailed);
302 return false;
303 }
304 break;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000305
Greg Claytonb766a732011-02-04 01:58:07 +0000306 case eStateRunning:
307 case eStateStepping:
308 if (GetFlags().Test(CommandObject::eFlagProcessMustBePaused))
309 {
310 result.AppendError ("Process is running. Use 'process interrupt' to pause execution.");
311 result.SetStatus (eReturnStatusFailed);
312 return false;
313 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000314 }
315 }
316 }
Jim Ingham5a988412012-06-08 21:56:10 +0000317 return true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000318}
319
Greg Claytonf9fc6092013-01-09 19:44:40 +0000320void
321CommandObject::Cleanup ()
322{
323 m_exe_ctx.Clear();
324 m_api_locker.Unlock();
325}
326
327
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000328class CommandDictCommandPartialMatch
329{
330 public:
331 CommandDictCommandPartialMatch (const char *match_str)
332 {
333 m_match_str = match_str;
334 }
335 bool operator() (const std::pair<std::string, lldb::CommandObjectSP> map_element) const
336 {
337 // A NULL or empty string matches everything.
338 if (m_match_str == NULL || *m_match_str == '\0')
Greg Claytonc7bece562013-01-25 18:06:21 +0000339 return true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000340
Greg Claytonc7bece562013-01-25 18:06:21 +0000341 return map_element.first.find (m_match_str, 0) == 0;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000342 }
343
344 private:
345 const char *m_match_str;
346};
347
348int
349CommandObject::AddNamesMatchingPartialString (CommandObject::CommandMap &in_map, const char *cmd_str,
350 StringList &matches)
351{
352 int number_added = 0;
353 CommandDictCommandPartialMatch matcher(cmd_str);
354
355 CommandObject::CommandMap::iterator matching_cmds = std::find_if (in_map.begin(), in_map.end(), matcher);
356
357 while (matching_cmds != in_map.end())
358 {
359 ++number_added;
360 matches.AppendString((*matching_cmds).first.c_str());
361 matching_cmds = std::find_if (++matching_cmds, in_map.end(), matcher);;
362 }
363 return number_added;
364}
365
366int
367CommandObject::HandleCompletion
368(
369 Args &input,
370 int &cursor_index,
371 int &cursor_char_position,
372 int match_start_point,
373 int max_return_elements,
Jim Ingham558ce122010-06-30 05:02:46 +0000374 bool &word_complete,
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000375 StringList &matches
376)
377{
Johnny Chen6561d152012-01-20 00:59:19 +0000378 // Default implmentation of WantsCompletion() is !WantsRawCommandString().
379 // Subclasses who want raw command string but desire, for example,
380 // argument completion should override WantsCompletion() to return true,
381 // instead.
Johnny Chen6f99b632012-01-19 22:16:06 +0000382 if (WantsRawCommandString() && !WantsCompletion())
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000383 {
384 // FIXME: Abstract telling the completion to insert the completion character.
385 matches.Clear();
386 return -1;
387 }
388 else
389 {
390 // Can we do anything generic with the options?
391 Options *cur_options = GetOptions();
392 CommandReturnObject result;
393 OptionElementVector opt_element_vector;
394
395 if (cur_options != NULL)
396 {
397 // Re-insert the dummy command name string which will have been
398 // stripped off:
399 input.Unshift ("dummy-string");
400 cursor_index++;
401
402
403 // I stick an element on the end of the input, because if the last element is
Greg Claytonb7ad58a2013-04-04 20:35:24 +0000404 // option that requires an argument, getopt_long_only will freak out.
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000405
406 input.AppendArgument ("<FAKE-VALUE>");
407
Jim Inghamd43e0092010-06-24 20:31:04 +0000408 input.ParseArgsForCompletion (*cur_options, opt_element_vector, cursor_index);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000409
410 input.DeleteArgumentAtIndex(input.GetArgumentCount() - 1);
411
412 bool handled_by_options;
Greg Claytoneb0103f2011-04-07 22:46:35 +0000413 handled_by_options = cur_options->HandleOptionCompletion (input,
Greg Clayton66111032010-06-23 01:19:29 +0000414 opt_element_vector,
415 cursor_index,
416 cursor_char_position,
417 match_start_point,
418 max_return_elements,
Jim Ingham558ce122010-06-30 05:02:46 +0000419 word_complete,
Greg Clayton66111032010-06-23 01:19:29 +0000420 matches);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000421 if (handled_by_options)
422 return matches.GetSize();
423 }
424
425 // If we got here, the last word is not an option or an option argument.
Greg Claytona7015092010-09-18 01:14:36 +0000426 return HandleArgumentCompletion (input,
Greg Clayton66111032010-06-23 01:19:29 +0000427 cursor_index,
428 cursor_char_position,
429 opt_element_vector,
430 match_start_point,
431 max_return_elements,
Jim Ingham558ce122010-06-30 05:02:46 +0000432 word_complete,
Greg Clayton66111032010-06-23 01:19:29 +0000433 matches);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000434 }
435}
436
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000437bool
Greg Claytona7015092010-09-18 01:14:36 +0000438CommandObject::HelpTextContainsWord (const char *search_word)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000439{
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000440 std::string options_usage_help;
441
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000442 bool found_word = false;
443
Greg Clayton998255b2012-10-13 02:07:45 +0000444 const char *short_help = GetHelp();
445 const char *long_help = GetHelpLong();
446 const char *syntax_help = GetSyntax();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000447
Greg Clayton998255b2012-10-13 02:07:45 +0000448 if (short_help && strcasestr (short_help, search_word))
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000449 found_word = true;
Greg Clayton998255b2012-10-13 02:07:45 +0000450 else if (long_help && strcasestr (long_help, search_word))
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000451 found_word = true;
Greg Clayton998255b2012-10-13 02:07:45 +0000452 else if (syntax_help && strcasestr (syntax_help, search_word))
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000453 found_word = true;
454
455 if (!found_word
456 && GetOptions() != NULL)
457 {
458 StreamString usage_help;
Greg Claytoneb0103f2011-04-07 22:46:35 +0000459 GetOptions()->GenerateOptionUsage (usage_help, this);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000460 if (usage_help.GetSize() > 0)
461 {
462 const char *usage_text = usage_help.GetData();
Caroline Tice4b6fbf32010-10-12 22:16:53 +0000463 if (strcasestr (usage_text, search_word))
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000464 found_word = true;
465 }
466 }
467
468 return found_word;
469}
Caroline Ticee139cf22010-10-01 17:46:38 +0000470
471int
472CommandObject::GetNumArgumentEntries ()
473{
474 return m_arguments.size();
475}
476
477CommandObject::CommandArgumentEntry *
478CommandObject::GetArgumentEntryAtIndex (int idx)
479{
480 if (idx < m_arguments.size())
481 return &(m_arguments[idx]);
482
483 return NULL;
484}
485
486CommandObject::ArgumentTableEntry *
487CommandObject::FindArgumentDataByType (CommandArgumentType arg_type)
488{
489 const ArgumentTableEntry *table = CommandObject::GetArgumentTable();
490
491 for (int i = 0; i < eArgTypeLastArg; ++i)
492 if (table[i].arg_type == arg_type)
493 return (ArgumentTableEntry *) &(table[i]);
494
495 return NULL;
496}
497
498void
499CommandObject::GetArgumentHelp (Stream &str, CommandArgumentType arg_type, CommandInterpreter &interpreter)
500{
501 const ArgumentTableEntry* table = CommandObject::GetArgumentTable();
502 ArgumentTableEntry *entry = (ArgumentTableEntry *) &(table[arg_type]);
503
504 // The table is *supposed* to be kept in arg_type order, but someone *could* have messed it up...
505
506 if (entry->arg_type != arg_type)
507 entry = CommandObject::FindArgumentDataByType (arg_type);
508
509 if (!entry)
510 return;
511
512 StreamString name_str;
513 name_str.Printf ("<%s>", entry->arg_name);
514
Enrico Granatafc7a7f32011-07-08 02:51:01 +0000515 if (entry->help_function)
Enrico Granata82a7d982011-07-07 00:38:40 +0000516 {
Enrico Granatafc7a7f32011-07-08 02:51:01 +0000517 const char* help_text = entry->help_function();
Enrico Granata82a7d982011-07-07 00:38:40 +0000518 if (!entry->help_function.self_formatting)
519 {
520 interpreter.OutputFormattedHelpText (str, name_str.GetData(), "--", help_text,
521 name_str.GetSize());
522 }
523 else
524 {
525 interpreter.OutputHelpText(str, name_str.GetData(), "--", help_text,
526 name_str.GetSize());
527 }
528 }
Caroline Ticee139cf22010-10-01 17:46:38 +0000529 else
530 interpreter.OutputFormattedHelpText (str, name_str.GetData(), "--", entry->help_text, name_str.GetSize());
531}
532
533const char *
534CommandObject::GetArgumentName (CommandArgumentType arg_type)
535{
Caroline Ticedeaab222010-10-01 19:59:14 +0000536 ArgumentTableEntry *entry = (ArgumentTableEntry *) &(CommandObject::GetArgumentTable()[arg_type]);
537
538 // The table is *supposed* to be kept in arg_type order, but someone *could* have messed it up...
539
540 if (entry->arg_type != arg_type)
541 entry = CommandObject::FindArgumentDataByType (arg_type);
542
Johnny Chene6acf352010-10-08 22:01:52 +0000543 if (entry)
544 return entry->arg_name;
545
546 StreamString str;
547 str << "Arg name for type (" << arg_type << ") not in arg table!";
548 return str.GetData();
Caroline Ticee139cf22010-10-01 17:46:38 +0000549}
550
Caroline Tice405fe672010-10-04 22:28:36 +0000551bool
Greg Claytone0d378b2011-03-24 21:19:54 +0000552CommandObject::IsPairType (ArgumentRepetitionType arg_repeat_type)
Caroline Tice405fe672010-10-04 22:28:36 +0000553{
554 if ((arg_repeat_type == eArgRepeatPairPlain)
555 || (arg_repeat_type == eArgRepeatPairOptional)
556 || (arg_repeat_type == eArgRepeatPairPlus)
557 || (arg_repeat_type == eArgRepeatPairStar)
558 || (arg_repeat_type == eArgRepeatPairRange)
559 || (arg_repeat_type == eArgRepeatPairRangeOptional))
560 return true;
561
562 return false;
563}
564
Johnny Chen34ddc8d2012-02-08 01:13:31 +0000565static CommandObject::CommandArgumentEntry
566OptSetFiltered(uint32_t opt_set_mask, CommandObject::CommandArgumentEntry &cmd_arg_entry)
567{
568 CommandObject::CommandArgumentEntry ret_val;
569 for (unsigned i = 0; i < cmd_arg_entry.size(); ++i)
570 if (opt_set_mask & cmd_arg_entry[i].arg_opt_set_association)
571 ret_val.push_back(cmd_arg_entry[i]);
572 return ret_val;
573}
574
575// Default parameter value of opt_set_mask is LLDB_OPT_SET_ALL, which means take
576// all the argument data into account. On rare cases where some argument sticks
577// with certain option sets, this function returns the option set filtered args.
Caroline Ticee139cf22010-10-01 17:46:38 +0000578void
Johnny Chen34ddc8d2012-02-08 01:13:31 +0000579CommandObject::GetFormattedCommandArguments (Stream &str, uint32_t opt_set_mask)
Caroline Ticee139cf22010-10-01 17:46:38 +0000580{
581 int num_args = m_arguments.size();
582 for (int i = 0; i < num_args; ++i)
583 {
584 if (i > 0)
585 str.Printf (" ");
Johnny Chen34ddc8d2012-02-08 01:13:31 +0000586 CommandArgumentEntry arg_entry =
587 opt_set_mask == LLDB_OPT_SET_ALL ? m_arguments[i]
588 : OptSetFiltered(opt_set_mask, m_arguments[i]);
Caroline Ticee139cf22010-10-01 17:46:38 +0000589 int num_alternatives = arg_entry.size();
Caroline Tice405fe672010-10-04 22:28:36 +0000590
591 if ((num_alternatives == 2)
592 && IsPairType (arg_entry[0].arg_repetition))
Caroline Ticee139cf22010-10-01 17:46:38 +0000593 {
Caroline Tice405fe672010-10-04 22:28:36 +0000594 const char *first_name = GetArgumentName (arg_entry[0].arg_type);
595 const char *second_name = GetArgumentName (arg_entry[1].arg_type);
596 switch (arg_entry[0].arg_repetition)
597 {
598 case eArgRepeatPairPlain:
599 str.Printf ("<%s> <%s>", first_name, second_name);
600 break;
601 case eArgRepeatPairOptional:
602 str.Printf ("[<%s> <%s>]", first_name, second_name);
603 break;
604 case eArgRepeatPairPlus:
605 str.Printf ("<%s> <%s> [<%s> <%s> [...]]", first_name, second_name, first_name, second_name);
606 break;
607 case eArgRepeatPairStar:
608 str.Printf ("[<%s> <%s> [<%s> <%s> [...]]]", first_name, second_name, first_name, second_name);
609 break;
610 case eArgRepeatPairRange:
611 str.Printf ("<%s_1> <%s_1> ... <%s_n> <%s_n>", first_name, second_name, first_name, second_name);
612 break;
613 case eArgRepeatPairRangeOptional:
614 str.Printf ("[<%s_1> <%s_1> ... <%s_n> <%s_n>]", first_name, second_name, first_name, second_name);
615 break;
Caroline Ticeca1176a2011-03-23 22:31:13 +0000616 // Explicitly test for all the rest of the cases, so if new types get added we will notice the
617 // missing case statement(s).
618 case eArgRepeatPlain:
619 case eArgRepeatOptional:
620 case eArgRepeatPlus:
621 case eArgRepeatStar:
622 case eArgRepeatRange:
623 // These should not be reached, as they should fail the IsPairType test above.
624 break;
Caroline Tice405fe672010-10-04 22:28:36 +0000625 }
Caroline Ticee139cf22010-10-01 17:46:38 +0000626 }
Caroline Tice405fe672010-10-04 22:28:36 +0000627 else
Caroline Ticee139cf22010-10-01 17:46:38 +0000628 {
Caroline Tice405fe672010-10-04 22:28:36 +0000629 StreamString names;
630 for (int j = 0; j < num_alternatives; ++j)
631 {
632 if (j > 0)
633 names.Printf (" | ");
634 names.Printf ("%s", GetArgumentName (arg_entry[j].arg_type));
635 }
636 switch (arg_entry[0].arg_repetition)
637 {
638 case eArgRepeatPlain:
639 str.Printf ("<%s>", names.GetData());
640 break;
641 case eArgRepeatPlus:
642 str.Printf ("<%s> [<%s> [...]]", names.GetData(), names.GetData());
643 break;
644 case eArgRepeatStar:
645 str.Printf ("[<%s> [<%s> [...]]]", names.GetData(), names.GetData());
646 break;
647 case eArgRepeatOptional:
648 str.Printf ("[<%s>]", names.GetData());
649 break;
650 case eArgRepeatRange:
Jason Molendafd54b362011-09-20 21:44:10 +0000651 str.Printf ("<%s_1> .. <%s_n>", names.GetData(), names.GetData());
Caroline Ticeca1176a2011-03-23 22:31:13 +0000652 break;
653 // Explicitly test for all the rest of the cases, so if new types get added we will notice the
654 // missing case statement(s).
655 case eArgRepeatPairPlain:
656 case eArgRepeatPairOptional:
657 case eArgRepeatPairPlus:
658 case eArgRepeatPairStar:
659 case eArgRepeatPairRange:
660 case eArgRepeatPairRangeOptional:
661 // These should not be hit, as they should pass the IsPairType test above, and control should
662 // have gone into the other branch of the if statement.
663 break;
Caroline Tice405fe672010-10-04 22:28:36 +0000664 }
Caroline Ticee139cf22010-10-01 17:46:38 +0000665 }
666 }
667}
668
Stephen Wilson0c16aa62011-03-23 02:12:10 +0000669CommandArgumentType
Caroline Ticee139cf22010-10-01 17:46:38 +0000670CommandObject::LookupArgumentName (const char *arg_name)
671{
672 CommandArgumentType return_type = eArgTypeLastArg;
673
674 std::string arg_name_str (arg_name);
675 size_t len = arg_name_str.length();
676 if (arg_name[0] == '<'
677 && arg_name[len-1] == '>')
678 arg_name_str = arg_name_str.substr (1, len-2);
679
Johnny Chen331eff32011-07-14 22:20:12 +0000680 const ArgumentTableEntry *table = GetArgumentTable();
Caroline Ticee139cf22010-10-01 17:46:38 +0000681 for (int i = 0; i < eArgTypeLastArg; ++i)
Johnny Chen331eff32011-07-14 22:20:12 +0000682 if (arg_name_str.compare (table[i].arg_name) == 0)
Caroline Ticee139cf22010-10-01 17:46:38 +0000683 return_type = g_arguments_data[i].arg_type;
684
685 return return_type;
686}
687
688static const char *
Jim Ingham931e6742012-08-23 23:37:31 +0000689RegisterNameHelpTextCallback ()
690{
691 return "Register names can be specified using the architecture specific names. "
Jim Ingham84c7bd72012-08-23 23:47:08 +0000692 "They can also be specified using generic names. Not all generic entities have "
693 "registers backing them on all architectures. When they don't the generic name "
694 "will return an error.\n"
Jim Ingham931e6742012-08-23 23:37:31 +0000695 "The generic names defined in lldb are:\n"
696 "\n"
697 "pc - program counter register\n"
698 "ra - return address register\n"
699 "fp - frame pointer register\n"
700 "sp - stack pointer register\n"
Jim Ingham84c7bd72012-08-23 23:47:08 +0000701 "flags - the flags register\n"
Jim Ingham931e6742012-08-23 23:37:31 +0000702 "arg{1-6} - integer argument passing registers.\n";
703}
704
705static const char *
Caroline Ticee139cf22010-10-01 17:46:38 +0000706BreakpointIDHelpTextCallback ()
707{
Greg Clayton86edbf42011-10-26 00:56:27 +0000708 return "Breakpoint ID's consist major and minor numbers; the major number "
709 "corresponds to the single entity that was created with a 'breakpoint set' "
710 "command; the minor numbers correspond to all the locations that were actually "
711 "found/set based on the major breakpoint. A full breakpoint ID might look like "
712 "3.14, meaning the 14th location set for the 3rd breakpoint. You can specify "
713 "all the locations of a breakpoint by just indicating the major breakpoint "
714 "number. A valid breakpoint id consists either of just the major id number, "
715 "or the major number, a dot, and the location number (e.g. 3 or 3.2 could "
716 "both be valid breakpoint ids).";
Caroline Ticee139cf22010-10-01 17:46:38 +0000717}
718
719static const char *
720BreakpointIDRangeHelpTextCallback ()
721{
Greg Clayton86edbf42011-10-26 00:56:27 +0000722 return "A 'breakpoint id list' is a manner of specifying multiple breakpoints. "
723 "This can be done through several mechanisms. The easiest way is to just "
724 "enter a space-separated list of breakpoint ids. To specify all the "
725 "breakpoint locations under a major breakpoint, you can use the major "
726 "breakpoint number followed by '.*', eg. '5.*' means all the locations under "
727 "breakpoint 5. You can also indicate a range of breakpoints by using "
728 "<start-bp-id> - <end-bp-id>. The start-bp-id and end-bp-id for a range can "
729 "be any valid breakpoint ids. It is not legal, however, to specify a range "
730 "using specific locations that cross major breakpoint numbers. I.e. 3.2 - 3.7"
731 " is legal; 2 - 5 is legal; but 3.2 - 4.4 is not legal.";
Caroline Ticee139cf22010-10-01 17:46:38 +0000732}
733
Enrico Granata0a3958e2011-07-02 00:25:22 +0000734static const char *
Greg Clayton86edbf42011-10-26 00:56:27 +0000735GDBFormatHelpTextCallback ()
736{
Greg Claytonf91381e2011-10-26 18:35:21 +0000737 return "A GDB format consists of a repeat count, a format letter and a size letter. "
738 "The repeat count is optional and defaults to 1. The format letter is optional "
739 "and defaults to the previous format that was used. The size letter is optional "
740 "and defaults to the previous size that was used.\n"
741 "\n"
742 "Format letters include:\n"
743 "o - octal\n"
744 "x - hexadecimal\n"
745 "d - decimal\n"
746 "u - unsigned decimal\n"
747 "t - binary\n"
748 "f - float\n"
749 "a - address\n"
750 "i - instruction\n"
751 "c - char\n"
752 "s - string\n"
753 "T - OSType\n"
754 "A - float as hex\n"
755 "\n"
756 "Size letters include:\n"
757 "b - 1 byte (byte)\n"
758 "h - 2 bytes (halfword)\n"
759 "w - 4 bytes (word)\n"
760 "g - 8 bytes (giant)\n"
761 "\n"
762 "Example formats:\n"
763 "32xb - show 32 1 byte hexadecimal integer values\n"
764 "16xh - show 16 2 byte hexadecimal integer values\n"
765 "64 - show 64 2 byte hexadecimal integer values (format and size from the last format)\n"
766 "dw - show 1 4 byte decimal integer value\n"
767 ;
Greg Clayton86edbf42011-10-26 00:56:27 +0000768}
769
770static const char *
Enrico Granata0a3958e2011-07-02 00:25:22 +0000771FormatHelpTextCallback ()
772{
Enrico Granata82a7d982011-07-07 00:38:40 +0000773
774 static char* help_text_ptr = NULL;
775
776 if (help_text_ptr)
777 return help_text_ptr;
778
Enrico Granata0a3958e2011-07-02 00:25:22 +0000779 StreamString sstr;
780 sstr << "One of the format names (or one-character names) that can be used to show a variable's value:\n";
781 for (Format f = eFormatDefault; f < kNumFormats; f = Format(f+1))
782 {
Enrico Granata82a7d982011-07-07 00:38:40 +0000783 if (f != eFormatDefault)
784 sstr.PutChar('\n');
785
Enrico Granata0a3958e2011-07-02 00:25:22 +0000786 char format_char = FormatManager::GetFormatAsFormatChar(f);
787 if (format_char)
788 sstr.Printf("'%c' or ", format_char);
789
Enrico Granata82a7d982011-07-07 00:38:40 +0000790 sstr.Printf ("\"%s\"", FormatManager::GetFormatAsCString(f));
Enrico Granata0a3958e2011-07-02 00:25:22 +0000791 }
792
793 sstr.Flush();
794
795 std::string data = sstr.GetString();
796
Enrico Granata82a7d982011-07-07 00:38:40 +0000797 help_text_ptr = new char[data.length()+1];
Enrico Granata0a3958e2011-07-02 00:25:22 +0000798
Enrico Granata82a7d982011-07-07 00:38:40 +0000799 data.copy(help_text_ptr, data.length());
Enrico Granata0a3958e2011-07-02 00:25:22 +0000800
Enrico Granata82a7d982011-07-07 00:38:40 +0000801 return help_text_ptr;
Enrico Granata0a3958e2011-07-02 00:25:22 +0000802}
803
804static const char *
Sean Callanand9477392012-10-23 00:50:09 +0000805LanguageTypeHelpTextCallback ()
806{
807 static char* help_text_ptr = NULL;
808
809 if (help_text_ptr)
810 return help_text_ptr;
811
812 StreamString sstr;
813 sstr << "One of the following languages:\n";
814
Daniel Malea48947c72012-12-04 00:23:45 +0000815 for (unsigned int l = eLanguageTypeUnknown; l < eNumLanguageTypes; ++l)
Sean Callanand9477392012-10-23 00:50:09 +0000816 {
Daniel Malea48947c72012-12-04 00:23:45 +0000817 sstr << " " << LanguageRuntime::GetNameForLanguageType(static_cast<LanguageType>(l)) << "\n";
Sean Callanand9477392012-10-23 00:50:09 +0000818 }
819
820 sstr.Flush();
821
822 std::string data = sstr.GetString();
823
824 help_text_ptr = new char[data.length()+1];
825
826 data.copy(help_text_ptr, data.length());
827
828 return help_text_ptr;
829}
830
831static const char *
Enrico Granata82a7d982011-07-07 00:38:40 +0000832SummaryStringHelpTextCallback()
Enrico Granata0a3958e2011-07-02 00:25:22 +0000833{
Enrico Granata82a7d982011-07-07 00:38:40 +0000834 return
835 "A summary string is a way to extract information from variables in order to present them using a summary.\n"
836 "Summary strings contain static text, variables, scopes and control sequences:\n"
837 " - Static text can be any sequence of non-special characters, i.e. anything but '{', '}', '$', or '\\'.\n"
838 " - Variables are sequences of characters beginning with ${, ending with } and that contain symbols in the format described below.\n"
839 " - Scopes are any sequence of text between { and }. Anything included in a scope will only appear in the output summary if there were no errors.\n"
840 " - Control sequences are the usual C/C++ '\\a', '\\n', ..., plus '\\$', '\\{' and '\\}'.\n"
841 "A summary string works by copying static text verbatim, turning control sequences into their character counterpart, expanding variables and trying to expand scopes.\n"
842 "A variable is expanded by giving it a value other than its textual representation, and the way this is done depends on what comes after the ${ marker.\n"
843 "The most common sequence if ${var followed by an expression path, which is the text one would type to access a member of an aggregate types, given a variable of that type"
844 " (e.g. if type T has a member named x, which has a member named y, and if t is of type T, the expression path would be .x.y and the way to fit that into a summary string would be"
Enrico Granata9128ee22011-09-06 19:20:51 +0000845 " ${var.x.y}). You can also use ${*var followed by an expression path and in that case the object referred by the path will be dereferenced before being displayed."
846 " If the object is not a pointer, doing so will cause an error. For additional details on expression paths, you can type 'help expr-path'. \n"
Enrico Granata82a7d982011-07-07 00:38:40 +0000847 "By default, summary strings attempt to display the summary for any variable they reference, and if that fails the value. If neither can be shown, nothing is displayed."
848 "In a summary string, you can also use an array index [n], or a slice-like range [n-m]. This can have two different meanings depending on what kind of object the expression"
849 " path refers to:\n"
850 " - if it is a scalar type (any basic type like int, float, ...) the expression is a bitfield, i.e. the bits indicated by the indexing operator are extracted out of the number"
851 " and displayed as an individual variable\n"
852 " - if it is an array or pointer the array items indicated by the indexing operator are shown as the result of the variable. if the expression is an array, real array items are"
853 " printed; if it is a pointer, the pointer-as-array syntax is used to obtain the values (this means, the latter case can have no range checking)\n"
Enrico Granata9128ee22011-09-06 19:20:51 +0000854 "If you are trying to display an array for which the size is known, you can also use [] instead of giving an exact range. This has the effect of showing items 0 thru size - 1.\n"
855 "Additionally, a variable can contain an (optional) format code, as in ${var.x.y%code}, where code can be any of the valid formats described in 'help format', or one of the"
856 " special symbols only allowed as part of a variable:\n"
857 " %V: show the value of the object by default\n"
858 " %S: show the summary of the object by default\n"
859 " %@: show the runtime-provided object description (for Objective-C, it calls NSPrintForDebugger; for C/C++ it does nothing)\n"
860 " %L: show the location of the object (memory address or a register name)\n"
861 " %#: show the number of children of the object\n"
862 " %T: show the type of the object\n"
863 "Another variable that you can use in summary strings is ${svar . This sequence works exactly like ${var, including the fact that ${*svar is an allowed sequence, but uses"
864 " the object's synthetic children provider instead of the actual objects. For instance, if you are using STL synthetic children providers, the following summary string would"
865 " count the number of actual elements stored in an std::list:\n"
866 "type summary add -s \"${svar%#}\" -x \"std::list<\"";
867}
868
869static const char *
870ExprPathHelpTextCallback()
871{
872 return
873 "An expression path is the sequence of symbols that is used in C/C++ to access a member variable of an aggregate object (class).\n"
874 "For instance, given a class:\n"
875 " class foo {\n"
876 " int a;\n"
877 " int b; .\n"
878 " foo* next;\n"
879 " };\n"
880 "the expression to read item b in the item pointed to by next for foo aFoo would be aFoo.next->b.\n"
881 "Given that aFoo could just be any object of type foo, the string '.next->b' is the expression path, because it can be attached to any foo instance to achieve the effect.\n"
882 "Expression paths in LLDB include dot (.) and arrow (->) operators, and most commands using expression paths have ways to also accept the star (*) operator.\n"
883 "The meaning of these operators is the same as the usual one given to them by the C/C++ standards.\n"
884 "LLDB also has support for indexing ([ ]) in expression paths, and extends the traditional meaning of the square brackets operator to allow bitfield extraction:\n"
885 "for objects of native types (int, float, char, ...) saying '[n-m]' as an expression path (where n and m are any positive integers, e.g. [3-5]) causes LLDB to extract"
886 " bits n thru m from the value of the variable. If n == m, [n] is also allowed as a shortcut syntax. For arrays and pointers, expression paths can only contain one index"
887 " and the meaning of the operation is the same as the one defined by C/C++ (item extraction). Some commands extend bitfield-like syntax for arrays and pointers with the"
888 " meaning of array slicing (taking elements n thru m inside the array or pointed-to memory).";
Enrico Granata0a3958e2011-07-02 00:25:22 +0000889}
890
Johnny Chen184d7a72011-09-21 01:00:02 +0000891void
Enrico Granata9b62d1d2013-06-12 01:50:57 +0000892CommandObject::GenerateHelpText (CommandReturnObject &result)
893{
894 GenerateHelpText(result.GetOutputStream());
895
896 result.SetStatus (eReturnStatusSuccessFinishNoResult);
897}
898
899void
900CommandObject::GenerateHelpText (Stream &output_strm)
901{
902 CommandInterpreter& interpreter = GetCommandInterpreter();
903 if (GetOptions() != NULL)
904 {
905 if (WantsRawCommandString())
906 {
907 std::string help_text (GetHelp());
908 help_text.append (" This command takes 'raw' input (no need to quote stuff).");
909 interpreter.OutputFormattedHelpText (output_strm, "", "", help_text.c_str(), 1);
910 }
911 else
912 interpreter.OutputFormattedHelpText (output_strm, "", "", GetHelp(), 1);
913 output_strm.Printf ("\nSyntax: %s\n", GetSyntax());
914 GetOptions()->GenerateOptionUsage (output_strm, this);
915 const char *long_help = GetHelpLong();
916 if ((long_help != NULL)
917 && (strlen (long_help) > 0))
918 output_strm.Printf ("\n%s", long_help);
919 if (WantsRawCommandString() && !WantsCompletion())
920 {
921 // Emit the message about using ' -- ' between the end of the command options and the raw input
922 // conditionally, i.e., only if the command object does not want completion.
923 interpreter.OutputFormattedHelpText (output_strm, "", "",
924 "\nIMPORTANT NOTE: Because this command takes 'raw' input, if you use any command options"
925 " you must use ' -- ' between the end of the command options and the beginning of the raw input.", 1);
926 }
927 else if (GetNumArgumentEntries() > 0
928 && GetOptions()
929 && GetOptions()->NumCommandOptions() > 0)
930 {
931 // Also emit a warning about using "--" in case you are using a command that takes options and arguments.
932 interpreter.OutputFormattedHelpText (output_strm, "", "",
933 "\nThis command takes options and free-form arguments. If your arguments resemble"
934 " option specifiers (i.e., they start with a - or --), you must use ' -- ' between"
935 " the end of the command options and the beginning of the arguments.", 1);
936 }
937 }
938 else if (IsMultiwordObject())
939 {
940 if (WantsRawCommandString())
941 {
942 std::string help_text (GetHelp());
943 help_text.append (" This command takes 'raw' input (no need to quote stuff).");
944 interpreter.OutputFormattedHelpText (output_strm, "", "", help_text.c_str(), 1);
945 }
946 else
947 interpreter.OutputFormattedHelpText (output_strm, "", "", GetHelp(), 1);
948 GenerateHelpText (output_strm);
949 }
950 else
951 {
952 const char *long_help = GetHelpLong();
953 if ((long_help != NULL)
954 && (strlen (long_help) > 0))
955 output_strm.Printf ("%s", long_help);
956 else if (WantsRawCommandString())
957 {
958 std::string help_text (GetHelp());
959 help_text.append (" This command takes 'raw' input (no need to quote stuff).");
960 interpreter.OutputFormattedHelpText (output_strm, "", "", help_text.c_str(), 1);
961 }
962 else
963 interpreter.OutputFormattedHelpText (output_strm, "", "", GetHelp(), 1);
964 output_strm.Printf ("\nSyntax: %s\n", GetSyntax());
965 }
966}
967
968void
Johnny Chende753462011-09-22 22:34:09 +0000969CommandObject::AddIDsArgumentData(CommandArgumentEntry &arg, CommandArgumentType ID, CommandArgumentType IDRange)
Johnny Chen184d7a72011-09-21 01:00:02 +0000970{
971 CommandArgumentData id_arg;
972 CommandArgumentData id_range_arg;
973
974 // Create the first variant for the first (and only) argument for this command.
Johnny Chende753462011-09-22 22:34:09 +0000975 id_arg.arg_type = ID;
Johnny Chen184d7a72011-09-21 01:00:02 +0000976 id_arg.arg_repetition = eArgRepeatOptional;
977
978 // Create the second variant for the first (and only) argument for this command.
Johnny Chende753462011-09-22 22:34:09 +0000979 id_range_arg.arg_type = IDRange;
Johnny Chen184d7a72011-09-21 01:00:02 +0000980 id_range_arg.arg_repetition = eArgRepeatOptional;
981
Johnny Chena3234732011-09-21 01:04:49 +0000982 // The first (and only) argument for this command could be either an id or an id_range.
Johnny Chen184d7a72011-09-21 01:00:02 +0000983 // Push both variants into the entry for the first argument for this command.
984 arg.push_back(id_arg);
985 arg.push_back(id_range_arg);
986}
987
Greg Clayton9d0402b2011-02-20 02:15:07 +0000988const char *
989CommandObject::GetArgumentTypeAsCString (const lldb::CommandArgumentType arg_type)
990{
991 if (arg_type >=0 && arg_type < eArgTypeLastArg)
992 return g_arguments_data[arg_type].arg_name;
993 return NULL;
994
995}
996
997const char *
998CommandObject::GetArgumentDescriptionAsCString (const lldb::CommandArgumentType arg_type)
999{
1000 if (arg_type >=0 && arg_type < eArgTypeLastArg)
1001 return g_arguments_data[arg_type].help_text;
1002 return NULL;
1003}
1004
Jim Ingham5a988412012-06-08 21:56:10 +00001005bool
1006CommandObjectParsed::Execute (const char *args_string, CommandReturnObject &result)
1007{
1008 CommandOverrideCallback command_callback = GetOverrideCallback();
1009 bool handled = false;
1010 Args cmd_args (args_string);
1011 if (command_callback)
1012 {
1013 Args full_args (GetCommandName ());
1014 full_args.AppendArguments(cmd_args);
1015 handled = command_callback (GetOverrideCallbackBaton(), full_args.GetConstArgumentVector());
1016 }
1017 if (!handled)
1018 {
1019 for (size_t i = 0; i < cmd_args.GetArgumentCount(); ++i)
1020 {
1021 const char *tmp_str = cmd_args.GetArgumentAtIndex (i);
1022 if (tmp_str[0] == '`') // back-quote
1023 cmd_args.ReplaceArgumentAtIndex (i, m_interpreter.ProcessEmbeddedScriptCommands (tmp_str));
1024 }
1025
Greg Claytonf9fc6092013-01-09 19:44:40 +00001026 if (CheckRequirements(result))
1027 {
1028 if (ParseOptions (cmd_args, result))
1029 {
1030 // Call the command-specific version of 'Execute', passing it the already processed arguments.
1031 handled = DoExecute (cmd_args, result);
1032 }
1033 }
Jim Ingham5a988412012-06-08 21:56:10 +00001034
Greg Claytonf9fc6092013-01-09 19:44:40 +00001035 Cleanup();
Jim Ingham5a988412012-06-08 21:56:10 +00001036 }
1037 return handled;
1038}
1039
1040bool
1041CommandObjectRaw::Execute (const char *args_string, CommandReturnObject &result)
1042{
1043 CommandOverrideCallback command_callback = GetOverrideCallback();
1044 bool handled = false;
1045 if (command_callback)
1046 {
1047 std::string full_command (GetCommandName ());
1048 full_command += ' ';
1049 full_command += args_string;
1050 const char *argv[2] = { NULL, NULL };
1051 argv[0] = full_command.c_str();
1052 handled = command_callback (GetOverrideCallbackBaton(), argv);
1053 }
1054 if (!handled)
1055 {
Greg Claytonf9fc6092013-01-09 19:44:40 +00001056 if (CheckRequirements(result))
Jim Ingham5a988412012-06-08 21:56:10 +00001057 handled = DoExecute (args_string, result);
Greg Claytonf9fc6092013-01-09 19:44:40 +00001058
1059 Cleanup();
Jim Ingham5a988412012-06-08 21:56:10 +00001060 }
1061 return handled;
1062}
1063
Johnny Chenca7835c2012-05-26 00:32:39 +00001064static
1065const char *arch_helper()
1066{
Greg Claytond70b14e2012-05-26 17:21:14 +00001067 static StreamString g_archs_help;
Johnny Chen797a1b32012-05-29 20:04:10 +00001068 if (g_archs_help.Empty())
Greg Claytond70b14e2012-05-26 17:21:14 +00001069 {
1070 StringList archs;
1071 ArchSpec::AutoComplete(NULL, archs);
1072 g_archs_help.Printf("These are the supported architecture names:\n");
Johnny Chen797a1b32012-05-29 20:04:10 +00001073 archs.Join("\n", g_archs_help);
Greg Claytond70b14e2012-05-26 17:21:14 +00001074 }
1075 return g_archs_help.GetData();
Johnny Chenca7835c2012-05-26 00:32:39 +00001076}
1077
Caroline Ticee139cf22010-10-01 17:46:38 +00001078CommandObject::ArgumentTableEntry
1079CommandObject::g_arguments_data[] =
1080{
Enrico Granata7f941d92011-07-07 15:49:54 +00001081 { eArgTypeAddress, "address", CommandCompletions::eNoCompletion, { NULL, false }, "A valid address in the target program's execution space." },
Enrico Granata59de94b2013-01-29 02:46:04 +00001082 { eArgTypeAddressOrExpression, "address-expression", CommandCompletions::eNoCompletion, { NULL, false }, "An expression that resolves to an address." },
Enrico Granata7f941d92011-07-07 15:49:54 +00001083 { eArgTypeAliasName, "alias-name", CommandCompletions::eNoCompletion, { NULL, false }, "The name of an abbreviation (alias) for a debugger command." },
1084 { eArgTypeAliasOptions, "options-for-aliased-command", CommandCompletions::eNoCompletion, { NULL, false }, "Command options to be used as part of an alias (abbreviation) definition. (See 'help commands alias' for more information.)" },
Johnny Chenca7835c2012-05-26 00:32:39 +00001085 { eArgTypeArchitecture, "arch", CommandCompletions::eArchitectureCompletion, { arch_helper, true }, "The architecture name, e.g. i386 or x86_64." },
Enrico Granata7f941d92011-07-07 15:49:54 +00001086 { eArgTypeBoolean, "boolean", CommandCompletions::eNoCompletion, { NULL, false }, "A Boolean value: 'true' or 'false'" },
1087 { eArgTypeBreakpointID, "breakpt-id", CommandCompletions::eNoCompletion, { BreakpointIDHelpTextCallback, false }, NULL },
1088 { eArgTypeBreakpointIDRange, "breakpt-id-list", CommandCompletions::eNoCompletion, { BreakpointIDRangeHelpTextCallback, false }, NULL },
1089 { eArgTypeByteSize, "byte-size", CommandCompletions::eNoCompletion, { NULL, false }, "Number of bytes to use." },
1090 { eArgTypeClassName, "class-name", CommandCompletions::eNoCompletion, { NULL, false }, "Then name of a class from the debug information in the program." },
1091 { eArgTypeCommandName, "cmd-name", CommandCompletions::eNoCompletion, { NULL, false }, "A debugger command (may be multiple words), without any options or arguments." },
1092 { eArgTypeCount, "count", CommandCompletions::eNoCompletion, { NULL, false }, "An unsigned integer." },
Sean Callanan31542552012-10-24 01:12:14 +00001093 { eArgTypeDirectoryName, "directory", CommandCompletions::eDiskDirectoryCompletion, { NULL, false }, "A directory name." },
Jim Ingham0f063ba2013-03-02 00:26:47 +00001094 { eArgTypeDisassemblyFlavor, "disassembly-flavor", CommandCompletions::eNoCompletion, { NULL, false }, "A disassembly flavor recognized by your disassembly plugin. Currently the only valid options are \"att\" and \"intel\" for Intel targets" },
Enrico Granata4d93b8c2013-09-30 19:11:51 +00001095 { eArgTypeDescriptionVerbosity, "description-verbosity", CommandCompletions::eNoCompletion, { NULL, false }, "How verbose the output of 'po' should be." },
Enrico Granata7f941d92011-07-07 15:49:54 +00001096 { eArgTypeEndAddress, "end-address", CommandCompletions::eNoCompletion, { NULL, false }, "Help text goes here." },
1097 { eArgTypeExpression, "expr", CommandCompletions::eNoCompletion, { NULL, false }, "Help text goes here." },
Enrico Granata9128ee22011-09-06 19:20:51 +00001098 { eArgTypeExpressionPath, "expr-path", CommandCompletions::eNoCompletion, { ExprPathHelpTextCallback, true }, NULL },
Enrico Granata7f941d92011-07-07 15:49:54 +00001099 { eArgTypeExprFormat, "expression-format", CommandCompletions::eNoCompletion, { NULL, false }, "[ [bool|b] | [bin] | [char|c] | [oct|o] | [dec|i|d|u] | [hex|x] | [float|f] | [cstr|s] ]" },
1100 { eArgTypeFilename, "filename", CommandCompletions::eDiskFileCompletion, { NULL, false }, "The name of a file (can include path)." },
1101 { eArgTypeFormat, "format", CommandCompletions::eNoCompletion, { FormatHelpTextCallback, true }, NULL },
1102 { eArgTypeFrameIndex, "frame-index", CommandCompletions::eNoCompletion, { NULL, false }, "Index into a thread's list of frames." },
1103 { eArgTypeFullName, "fullname", CommandCompletions::eNoCompletion, { NULL, false }, "Help text goes here." },
1104 { eArgTypeFunctionName, "function-name", CommandCompletions::eNoCompletion, { NULL, false }, "The name of a function." },
Sean Callanancd8b7cd2012-09-13 21:11:40 +00001105 { eArgTypeFunctionOrSymbol, "function-or-symbol", CommandCompletions::eNoCompletion, { NULL, false }, "The name of a function or symbol." },
Greg Clayton86edbf42011-10-26 00:56:27 +00001106 { eArgTypeGDBFormat, "gdb-format", CommandCompletions::eNoCompletion, { GDBFormatHelpTextCallback, true }, NULL },
Enrico Granata7f941d92011-07-07 15:49:54 +00001107 { eArgTypeIndex, "index", CommandCompletions::eNoCompletion, { NULL, false }, "An index into a list." },
Sean Callanand9477392012-10-23 00:50:09 +00001108 { eArgTypeLanguage, "language", CommandCompletions::eNoCompletion, { LanguageTypeHelpTextCallback, true }, NULL },
Enrico Granata7f941d92011-07-07 15:49:54 +00001109 { eArgTypeLineNum, "linenum", CommandCompletions::eNoCompletion, { NULL, false }, "Line number in a source file." },
1110 { eArgTypeLogCategory, "log-category", CommandCompletions::eNoCompletion, { NULL, false }, "The name of a category within a log channel, e.g. all (try \"log list\" to see a list of all channels and their categories." },
1111 { eArgTypeLogChannel, "log-channel", CommandCompletions::eNoCompletion, { NULL, false }, "The name of a log channel, e.g. process.gdb-remote (try \"log list\" to see a list of all channels and their categories)." },
1112 { eArgTypeMethod, "method", CommandCompletions::eNoCompletion, { NULL, false }, "A C++ method name." },
1113 { eArgTypeName, "name", CommandCompletions::eNoCompletion, { NULL, false }, "Help text goes here." },
1114 { eArgTypeNewPathPrefix, "new-path-prefix", CommandCompletions::eNoCompletion, { NULL, false }, "Help text goes here." },
1115 { eArgTypeNumLines, "num-lines", CommandCompletions::eNoCompletion, { NULL, false }, "The number of lines to use." },
1116 { eArgTypeNumberPerLine, "number-per-line", CommandCompletions::eNoCompletion, { NULL, false }, "The number of items per line to display." },
1117 { eArgTypeOffset, "offset", CommandCompletions::eNoCompletion, { NULL, false }, "Help text goes here." },
1118 { eArgTypeOldPathPrefix, "old-path-prefix", CommandCompletions::eNoCompletion, { NULL, false }, "Help text goes here." },
1119 { eArgTypeOneLiner, "one-line-command", CommandCompletions::eNoCompletion, { NULL, false }, "A command that is entered as a single line of text." },
Daniel Maleae0f8f572013-08-26 23:57:52 +00001120 { eArgTypePath, "path", CommandCompletions::eDiskFileCompletion, { NULL, false }, "Path." },
1121 { eArgTypePermissionsNumber, "perms-numeric", CommandCompletions::eNoCompletion, { NULL, false }, "Permissions given as an octal number (e.g. 755)." },
1122 { eArgTypePermissionsString, "perms=string", CommandCompletions::eNoCompletion, { NULL, false }, "Permissions given as a string value (e.g. rw-r-xr--)." },
Enrico Granata7f941d92011-07-07 15:49:54 +00001123 { eArgTypePid, "pid", CommandCompletions::eNoCompletion, { NULL, false }, "The process ID number." },
1124 { eArgTypePlugin, "plugin", CommandCompletions::eNoCompletion, { NULL, false }, "Help text goes here." },
1125 { eArgTypeProcessName, "process-name", CommandCompletions::eNoCompletion, { NULL, false }, "The name of the process." },
Enrico Granata9128ee22011-09-06 19:20:51 +00001126 { eArgTypePythonClass, "python-class", CommandCompletions::eNoCompletion, { NULL, false }, "The name of a Python class." },
1127 { eArgTypePythonFunction, "python-function", CommandCompletions::eNoCompletion, { NULL, false }, "The name of a Python function." },
1128 { eArgTypePythonScript, "python-script", CommandCompletions::eNoCompletion, { NULL, false }, "Source code written in Python." },
Enrico Granata7f941d92011-07-07 15:49:54 +00001129 { eArgTypeQueueName, "queue-name", CommandCompletions::eNoCompletion, { NULL, false }, "The name of the thread queue." },
Jim Ingham931e6742012-08-23 23:37:31 +00001130 { eArgTypeRegisterName, "register-name", CommandCompletions::eNoCompletion, { RegisterNameHelpTextCallback, true }, NULL },
Enrico Granata7f941d92011-07-07 15:49:54 +00001131 { eArgTypeRegularExpression, "regular-expression", CommandCompletions::eNoCompletion, { NULL, false }, "A regular expression." },
1132 { eArgTypeRunArgs, "run-args", CommandCompletions::eNoCompletion, { NULL, false }, "Arguments to be passed to the target program when it starts executing." },
1133 { eArgTypeRunMode, "run-mode", CommandCompletions::eNoCompletion, { NULL, false }, "Help text goes here." },
Enrico Granata0a305db2011-11-07 22:57:04 +00001134 { eArgTypeScriptedCommandSynchronicity, "script-cmd-synchronicity", CommandCompletions::eNoCompletion, { NULL, false }, "The synchronicity to use to run scripted commands with regard to LLDB event system." },
Enrico Granata7f941d92011-07-07 15:49:54 +00001135 { eArgTypeScriptLang, "script-language", CommandCompletions::eNoCompletion, { NULL, false }, "The scripting language to be used for script-based commands. Currently only Python is valid." },
1136 { eArgTypeSearchWord, "search-word", CommandCompletions::eNoCompletion, { NULL, false }, "The word for which you wish to search for information about." },
1137 { eArgTypeSelector, "selector", CommandCompletions::eNoCompletion, { NULL, false }, "An Objective-C selector name." },
1138 { eArgTypeSettingIndex, "setting-index", CommandCompletions::eNoCompletion, { NULL, false }, "An index into a settings variable that is an array (try 'settings list' to see all the possible settings variables and their types)." },
1139 { eArgTypeSettingKey, "setting-key", CommandCompletions::eNoCompletion, { NULL, false }, "A key into a settings variables that is a dictionary (try 'settings list' to see all the possible settings variables and their types)." },
1140 { eArgTypeSettingPrefix, "setting-prefix", CommandCompletions::eNoCompletion, { NULL, false }, "The name of a settable internal debugger variable up to a dot ('.'), e.g. 'target.process.'" },
1141 { eArgTypeSettingVariableName, "setting-variable-name", CommandCompletions::eNoCompletion, { NULL, false }, "The name of a settable internal debugger variable. Type 'settings list' to see a complete list of such variables." },
1142 { eArgTypeShlibName, "shlib-name", CommandCompletions::eNoCompletion, { NULL, false }, "The name of a shared library." },
1143 { eArgTypeSourceFile, "source-file", CommandCompletions::eSourceFileCompletion, { NULL, false }, "The name of a source file.." },
1144 { eArgTypeSortOrder, "sort-order", CommandCompletions::eNoCompletion, { NULL, false }, "Specify a sort order when dumping lists." },
1145 { eArgTypeStartAddress, "start-address", CommandCompletions::eNoCompletion, { NULL, false }, "Help text goes here." },
1146 { eArgTypeSummaryString, "summary-string", CommandCompletions::eNoCompletion, { SummaryStringHelpTextCallback, true }, NULL },
1147 { eArgTypeSymbol, "symbol", CommandCompletions::eSymbolCompletion, { NULL, false }, "Any symbol name (function name, variable, argument, etc.)" },
1148 { eArgTypeThreadID, "thread-id", CommandCompletions::eNoCompletion, { NULL, false }, "Thread ID number." },
1149 { eArgTypeThreadIndex, "thread-index", CommandCompletions::eNoCompletion, { NULL, false }, "Index into the process' list of threads." },
1150 { eArgTypeThreadName, "thread-name", CommandCompletions::eNoCompletion, { NULL, false }, "The thread's name." },
Johnny Chen331eff32011-07-14 22:20:12 +00001151 { eArgTypeUnsignedInteger, "unsigned-integer", CommandCompletions::eNoCompletion, { NULL, false }, "An unsigned integer." },
Enrico Granata7f941d92011-07-07 15:49:54 +00001152 { eArgTypeUnixSignal, "unix-signal", CommandCompletions::eNoCompletion, { NULL, false }, "A valid Unix signal name or number (e.g. SIGKILL, KILL or 9)." },
1153 { eArgTypeVarName, "variable-name", CommandCompletions::eNoCompletion, { NULL, false }, "The name of a variable in your program." },
1154 { eArgTypeValue, "value", CommandCompletions::eNoCompletion, { NULL, false }, "A value could be anything, depending on where and how it is used." },
1155 { eArgTypeWidth, "width", CommandCompletions::eNoCompletion, { NULL, false }, "Help text goes here." },
1156 { eArgTypeNone, "none", CommandCompletions::eNoCompletion, { NULL, false }, "No help available for this." },
Johnny Chenb1d75292011-09-09 23:25:26 +00001157 { eArgTypePlatform, "platform-name", CommandCompletions::ePlatformPluginCompletion, { NULL, false }, "The name of an installed platform plug-in . Type 'platform list' to see a complete list of installed platforms." },
Johnny Chende753462011-09-22 22:34:09 +00001158 { eArgTypeWatchpointID, "watchpt-id", CommandCompletions::eNoCompletion, { NULL, false }, "Watchpoint IDs are positive integers." },
1159 { eArgTypeWatchpointIDRange, "watchpt-id-list", CommandCompletions::eNoCompletion, { NULL, false }, "For example, '1-3' or '1 to 3'." },
Johnny Chen887062a2011-09-12 23:38:44 +00001160 { eArgTypeWatchType, "watch-type", CommandCompletions::eNoCompletion, { NULL, false }, "Specify the type for a watchpoint." }
Caroline Ticee139cf22010-10-01 17:46:38 +00001161};
1162
1163const CommandObject::ArgumentTableEntry*
1164CommandObject::GetArgumentTable ()
1165{
Greg Clayton9d0402b2011-02-20 02:15:07 +00001166 // If this assertion fires, then the table above is out of date with the CommandArgumentType enumeration
1167 assert ((sizeof (CommandObject::g_arguments_data) / sizeof (CommandObject::ArgumentTableEntry)) == eArgTypeLastArg);
Caroline Ticee139cf22010-10-01 17:46:38 +00001168 return CommandObject::g_arguments_data;
1169}
1170
1171