blob: ead292a3152f8fabb7837a227f8392a5d903b787 [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
10#include "lldb/Interpreter/CommandObject.h"
11
12#include <string>
Kate Stoneea671fb2015-07-14 05:48:36 +000013#include <sstream>
Chris Lattner30fdc8d2010-06-08 16:52:24 +000014#include <map>
15
Chris Lattner30fdc8d2010-06-08 16:52:24 +000016#include <stdlib.h>
17#include <ctype.h>
18
19#include "lldb/Core/Address.h"
Johnny Chenca7835c2012-05-26 00:32:39 +000020#include "lldb/Core/ArchSpec.h"
Jim Ingham40af72e2010-06-15 19:49:27 +000021#include "lldb/Interpreter/Options.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000022
23// These are for the Sourcename completers.
24// FIXME: Make a separate file for the completers.
Greg Clayton53239f02011-02-08 05:05:52 +000025#include "lldb/Host/FileSpec.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000026#include "lldb/Core/FileSpecList.h"
Zachary Turnera78bd7f2015-03-03 23:11:11 +000027#include "lldb/DataFormatters/FormatManager.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000028#include "lldb/Target/Process.h"
29#include "lldb/Target/Target.h"
30
Jim Ingham0e0984e2015-09-02 01:06:46 +000031#include "lldb/Target/Language.h"
32
Chris Lattner30fdc8d2010-06-08 16:52:24 +000033#include "lldb/Interpreter/CommandInterpreter.h"
34#include "lldb/Interpreter/CommandReturnObject.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000035
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),
Enrico Granata2f02fe02014-12-05 20:59:08 +000052 m_cmd_name (name ? name : ""),
Chris Lattner30fdc8d2010-06-08 16:52:24 +000053 m_cmd_help_short (),
54 m_cmd_help_long (),
55 m_cmd_syntax (),
Caroline Ticee139cf22010-10-01 17:46:38 +000056 m_flags (flags),
Greg Claytona9f7b792012-02-29 04:21:24 +000057 m_arguments(),
Jim Ingham6d8873f2014-08-06 00:24:38 +000058 m_deprecated_command_override_callback (nullptr),
Ed Masted78c9572014-04-20 00:31:37 +000059 m_command_override_callback (nullptr),
60 m_command_override_baton (nullptr)
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());
Enrico Granatabef55ac2016-03-14 22:17:04 +000091 if (!IsDashDashCommand() && GetOptions() != nullptr)
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 Granatabef55ac2016-03-14 22:17:04 +000096 if (!IsDashDashCommand() && 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
Enrico Granata6f79bb22015-03-13 22:22:28 +0000125CommandObject::SetHelp (std::string str)
126{
127 m_cmd_help_short = str;
128}
129
130void
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000131CommandObject::SetHelpLong (const char *cstr)
132{
133 m_cmd_help_long = cstr;
134}
135
136void
Enrico Granata99f0b8f2011-08-17 01:30:04 +0000137CommandObject::SetHelpLong (std::string str)
138{
139 m_cmd_help_long = str;
140}
141
142void
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000143CommandObject::SetSyntax (const char *cstr)
144{
145 m_cmd_syntax = cstr;
146}
147
148Options *
149CommandObject::GetOptions ()
150{
151 // By default commands don't have options unless this virtual function
152 // is overridden by base classes.
Ed Masted78c9572014-04-20 00:31:37 +0000153 return nullptr;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000154}
155
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000156bool
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000157CommandObject::ParseOptions
158(
159 Args& args,
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000160 CommandReturnObject &result
161)
162{
163 // See if the subclass has options?
164 Options *options = GetOptions();
Ed Masted78c9572014-04-20 00:31:37 +0000165 if (options != nullptr)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000166 {
167 Error error;
Greg Claytonf6b8b582011-04-13 00:18:08 +0000168 options->NotifyOptionParsingStarting();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000169
Greg Claytonb7ad58a2013-04-04 20:35:24 +0000170 // 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 +0000171 // so we need to push a dummy value into position zero.
172 args.Unshift("dummy_string");
173 error = args.ParseOptions (*options);
174
175 // The "dummy_string" will have already been removed by ParseOptions,
176 // so no need to remove it.
177
Greg Claytonf6b8b582011-04-13 00:18:08 +0000178 if (error.Success())
179 error = options->NotifyOptionParsingFinished();
180
181 if (error.Success())
182 {
183 if (options->VerifyOptions (result))
184 return true;
185 }
186 else
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000187 {
188 const char *error_cstr = error.AsCString();
189 if (error_cstr)
190 {
191 // We got an error string, lets use that
Greg Clayton86edbf42011-10-26 00:56:27 +0000192 result.AppendError(error_cstr);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000193 }
194 else
195 {
196 // No error string, output the usage information into result
Greg Claytoneb0103f2011-04-07 22:46:35 +0000197 options->GenerateOptionUsage (result.GetErrorStream(), this);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000198 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000199 }
Greg Claytonf6b8b582011-04-13 00:18:08 +0000200 result.SetStatus (eReturnStatusFailed);
201 return false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000202 }
203 return true;
204}
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000205
Jim Ingham5a988412012-06-08 21:56:10 +0000206
207
208bool
Greg Claytonf9fc6092013-01-09 19:44:40 +0000209CommandObject::CheckRequirements (CommandReturnObject &result)
Jim Ingham5a988412012-06-08 21:56:10 +0000210{
Greg Claytonf9fc6092013-01-09 19:44:40 +0000211#ifdef LLDB_CONFIGURATION_DEBUG
212 // Nothing should be stored in m_exe_ctx between running commands as m_exe_ctx
213 // has shared pointers to the target, process, thread and frame and we don't
214 // want any CommandObject instances to keep any of these objects around
215 // longer than for a single command. Every command should call
216 // CommandObject::Cleanup() after it has completed
217 assert (m_exe_ctx.GetTargetPtr() == NULL);
218 assert (m_exe_ctx.GetProcessPtr() == NULL);
219 assert (m_exe_ctx.GetThreadPtr() == NULL);
220 assert (m_exe_ctx.GetFramePtr() == NULL);
221#endif
222
223 // Lock down the interpreter's execution context prior to running the
224 // command so we guarantee the selected target, process, thread and frame
225 // can't go away during the execution
226 m_exe_ctx = m_interpreter.GetExecutionContext();
227
228 const uint32_t flags = GetFlags().Get();
Enrico Granatae87764f2015-05-27 05:04:35 +0000229 if (flags & (eCommandRequiresTarget |
230 eCommandRequiresProcess |
231 eCommandRequiresThread |
232 eCommandRequiresFrame |
233 eCommandTryTargetAPILock ))
Greg Claytonf9fc6092013-01-09 19:44:40 +0000234 {
235
Enrico Granatae87764f2015-05-27 05:04:35 +0000236 if ((flags & eCommandRequiresTarget) && !m_exe_ctx.HasTargetScope())
Greg Claytonf9fc6092013-01-09 19:44:40 +0000237 {
238 result.AppendError (GetInvalidTargetDescription());
239 return false;
240 }
241
Enrico Granatae87764f2015-05-27 05:04:35 +0000242 if ((flags & eCommandRequiresProcess) && !m_exe_ctx.HasProcessScope())
Greg Claytonf9fc6092013-01-09 19:44:40 +0000243 {
Jason Molendae59b0d22014-09-20 09:14:31 +0000244 if (!m_exe_ctx.HasTargetScope())
245 result.AppendError (GetInvalidTargetDescription());
246 else
247 result.AppendError (GetInvalidProcessDescription());
Greg Claytonf9fc6092013-01-09 19:44:40 +0000248 return false;
249 }
250
Enrico Granatae87764f2015-05-27 05:04:35 +0000251 if ((flags & eCommandRequiresThread) && !m_exe_ctx.HasThreadScope())
Greg Claytonf9fc6092013-01-09 19:44:40 +0000252 {
Jason Molendae59b0d22014-09-20 09:14:31 +0000253 if (!m_exe_ctx.HasTargetScope())
254 result.AppendError (GetInvalidTargetDescription());
255 else if (!m_exe_ctx.HasProcessScope())
256 result.AppendError (GetInvalidProcessDescription());
257 else
258 result.AppendError (GetInvalidThreadDescription());
Greg Claytonf9fc6092013-01-09 19:44:40 +0000259 return false;
260 }
261
Enrico Granatae87764f2015-05-27 05:04:35 +0000262 if ((flags & eCommandRequiresFrame) && !m_exe_ctx.HasFrameScope())
Greg Claytonf9fc6092013-01-09 19:44:40 +0000263 {
Jason Molendae59b0d22014-09-20 09:14:31 +0000264 if (!m_exe_ctx.HasTargetScope())
265 result.AppendError (GetInvalidTargetDescription());
266 else if (!m_exe_ctx.HasProcessScope())
267 result.AppendError (GetInvalidProcessDescription());
268 else if (!m_exe_ctx.HasThreadScope())
269 result.AppendError (GetInvalidThreadDescription());
270 else
271 result.AppendError (GetInvalidFrameDescription());
Greg Claytonf9fc6092013-01-09 19:44:40 +0000272 return false;
273 }
274
Enrico Granatae87764f2015-05-27 05:04:35 +0000275 if ((flags & eCommandRequiresRegContext) && (m_exe_ctx.GetRegisterContext() == nullptr))
Greg Claytonf9fc6092013-01-09 19:44:40 +0000276 {
277 result.AppendError (GetInvalidRegContextDescription());
278 return false;
279 }
280
Enrico Granatae87764f2015-05-27 05:04:35 +0000281 if (flags & eCommandTryTargetAPILock)
Greg Claytonf9fc6092013-01-09 19:44:40 +0000282 {
283 Target *target = m_exe_ctx.GetTargetPtr();
284 if (target)
Greg Clayton9b5442a2014-02-07 22:31:20 +0000285 m_api_locker.Lock (target->GetAPIMutex());
Greg Claytonf9fc6092013-01-09 19:44:40 +0000286 }
287 }
288
Enrico Granatae87764f2015-05-27 05:04:35 +0000289 if (GetFlags().AnySet (eCommandProcessMustBeLaunched | eCommandProcessMustBePaused))
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000290 {
Greg Claytonc14ee322011-09-22 04:58:26 +0000291 Process *process = m_interpreter.GetExecutionContext().GetProcessPtr();
Ed Masted78c9572014-04-20 00:31:37 +0000292 if (process == nullptr)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000293 {
Jim Inghamb8e8a5f2011-07-09 00:55:34 +0000294 // A process that is not running is considered paused.
Enrico Granatae87764f2015-05-27 05:04:35 +0000295 if (GetFlags().Test(eCommandProcessMustBeLaunched))
Jim Inghamb8e8a5f2011-07-09 00:55:34 +0000296 {
297 result.AppendError ("Process must exist.");
298 result.SetStatus (eReturnStatusFailed);
299 return false;
300 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000301 }
Greg Claytonb766a732011-02-04 01:58:07 +0000302 else
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000303 {
Greg Claytonb766a732011-02-04 01:58:07 +0000304 StateType state = process->GetState();
Greg Claytonb766a732011-02-04 01:58:07 +0000305 switch (state)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000306 {
Greg Clayton7a5388b2011-03-20 04:57:14 +0000307 case eStateInvalid:
Greg Claytonb766a732011-02-04 01:58:07 +0000308 case eStateSuspended:
309 case eStateCrashed:
310 case eStateStopped:
311 break;
312
313 case eStateConnected:
314 case eStateAttaching:
315 case eStateLaunching:
316 case eStateDetached:
317 case eStateExited:
318 case eStateUnloaded:
Enrico Granatae87764f2015-05-27 05:04:35 +0000319 if (GetFlags().Test(eCommandProcessMustBeLaunched))
Greg Claytonb766a732011-02-04 01:58:07 +0000320 {
321 result.AppendError ("Process must be launched.");
322 result.SetStatus (eReturnStatusFailed);
323 return false;
324 }
325 break;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000326
Greg Claytonb766a732011-02-04 01:58:07 +0000327 case eStateRunning:
328 case eStateStepping:
Enrico Granatae87764f2015-05-27 05:04:35 +0000329 if (GetFlags().Test(eCommandProcessMustBePaused))
Greg Claytonb766a732011-02-04 01:58:07 +0000330 {
331 result.AppendError ("Process is running. Use 'process interrupt' to pause execution.");
332 result.SetStatus (eReturnStatusFailed);
333 return false;
334 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000335 }
336 }
337 }
Jim Ingham5a988412012-06-08 21:56:10 +0000338 return true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000339}
340
Greg Claytonf9fc6092013-01-09 19:44:40 +0000341void
342CommandObject::Cleanup ()
343{
344 m_exe_ctx.Clear();
345 m_api_locker.Unlock();
346}
347
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000348int
349CommandObject::HandleCompletion
350(
351 Args &input,
352 int &cursor_index,
353 int &cursor_char_position,
354 int match_start_point,
355 int max_return_elements,
Jim Ingham558ce122010-06-30 05:02:46 +0000356 bool &word_complete,
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000357 StringList &matches
358)
359{
Bruce Mitchenere171da52015-07-22 00:16:02 +0000360 // Default implementation of WantsCompletion() is !WantsRawCommandString().
Johnny Chen6561d152012-01-20 00:59:19 +0000361 // Subclasses who want raw command string but desire, for example,
362 // argument completion should override WantsCompletion() to return true,
363 // instead.
Johnny Chen6f99b632012-01-19 22:16:06 +0000364 if (WantsRawCommandString() && !WantsCompletion())
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000365 {
366 // FIXME: Abstract telling the completion to insert the completion character.
367 matches.Clear();
368 return -1;
369 }
370 else
371 {
372 // Can we do anything generic with the options?
373 Options *cur_options = GetOptions();
374 CommandReturnObject result;
375 OptionElementVector opt_element_vector;
376
Ed Masted78c9572014-04-20 00:31:37 +0000377 if (cur_options != nullptr)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000378 {
379 // Re-insert the dummy command name string which will have been
380 // stripped off:
381 input.Unshift ("dummy-string");
382 cursor_index++;
383
384
385 // I stick an element on the end of the input, because if the last element is
Greg Claytonb7ad58a2013-04-04 20:35:24 +0000386 // option that requires an argument, getopt_long_only will freak out.
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000387
388 input.AppendArgument ("<FAKE-VALUE>");
389
Jim Inghamd43e0092010-06-24 20:31:04 +0000390 input.ParseArgsForCompletion (*cur_options, opt_element_vector, cursor_index);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000391
392 input.DeleteArgumentAtIndex(input.GetArgumentCount() - 1);
393
394 bool handled_by_options;
Greg Claytoneb0103f2011-04-07 22:46:35 +0000395 handled_by_options = cur_options->HandleOptionCompletion (input,
Greg Clayton66111032010-06-23 01:19:29 +0000396 opt_element_vector,
397 cursor_index,
398 cursor_char_position,
399 match_start_point,
400 max_return_elements,
Jim Ingham558ce122010-06-30 05:02:46 +0000401 word_complete,
Greg Clayton66111032010-06-23 01:19:29 +0000402 matches);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000403 if (handled_by_options)
404 return matches.GetSize();
405 }
406
407 // If we got here, the last word is not an option or an option argument.
Greg Claytona7015092010-09-18 01:14:36 +0000408 return HandleArgumentCompletion (input,
Greg Clayton66111032010-06-23 01:19:29 +0000409 cursor_index,
410 cursor_char_position,
411 opt_element_vector,
412 match_start_point,
413 max_return_elements,
Jim Ingham558ce122010-06-30 05:02:46 +0000414 word_complete,
Greg Clayton66111032010-06-23 01:19:29 +0000415 matches);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000416 }
417}
418
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000419bool
Greg Claytona7015092010-09-18 01:14:36 +0000420CommandObject::HelpTextContainsWord (const char *search_word)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000421{
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000422 std::string options_usage_help;
423
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000424 bool found_word = false;
425
Greg Clayton998255b2012-10-13 02:07:45 +0000426 const char *short_help = GetHelp();
427 const char *long_help = GetHelpLong();
428 const char *syntax_help = GetSyntax();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000429
Greg Clayton998255b2012-10-13 02:07:45 +0000430 if (short_help && strcasestr (short_help, search_word))
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000431 found_word = true;
Greg Clayton998255b2012-10-13 02:07:45 +0000432 else if (long_help && strcasestr (long_help, search_word))
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000433 found_word = true;
Greg Clayton998255b2012-10-13 02:07:45 +0000434 else if (syntax_help && strcasestr (syntax_help, search_word))
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000435 found_word = true;
436
437 if (!found_word
Ed Masted78c9572014-04-20 00:31:37 +0000438 && GetOptions() != nullptr)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000439 {
440 StreamString usage_help;
Greg Claytoneb0103f2011-04-07 22:46:35 +0000441 GetOptions()->GenerateOptionUsage (usage_help, this);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000442 if (usage_help.GetSize() > 0)
443 {
444 const char *usage_text = usage_help.GetData();
Caroline Tice4b6fbf32010-10-12 22:16:53 +0000445 if (strcasestr (usage_text, search_word))
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000446 found_word = true;
447 }
448 }
449
450 return found_word;
451}
Caroline Ticee139cf22010-10-01 17:46:38 +0000452
453int
454CommandObject::GetNumArgumentEntries ()
455{
456 return m_arguments.size();
457}
458
459CommandObject::CommandArgumentEntry *
460CommandObject::GetArgumentEntryAtIndex (int idx)
461{
Saleem Abdulrasool3985c8c2014-04-02 03:51:35 +0000462 if (static_cast<size_t>(idx) < m_arguments.size())
Caroline Ticee139cf22010-10-01 17:46:38 +0000463 return &(m_arguments[idx]);
464
Ed Masted78c9572014-04-20 00:31:37 +0000465 return nullptr;
Caroline Ticee139cf22010-10-01 17:46:38 +0000466}
467
Vince Harrond7e6a4f2015-05-13 00:25:54 +0000468const CommandObject::ArgumentTableEntry *
Caroline Ticee139cf22010-10-01 17:46:38 +0000469CommandObject::FindArgumentDataByType (CommandArgumentType arg_type)
470{
471 const ArgumentTableEntry *table = CommandObject::GetArgumentTable();
472
473 for (int i = 0; i < eArgTypeLastArg; ++i)
474 if (table[i].arg_type == arg_type)
Vince Harrond7e6a4f2015-05-13 00:25:54 +0000475 return &(table[i]);
Caroline Ticee139cf22010-10-01 17:46:38 +0000476
Ed Masted78c9572014-04-20 00:31:37 +0000477 return nullptr;
Caroline Ticee139cf22010-10-01 17:46:38 +0000478}
479
480void
481CommandObject::GetArgumentHelp (Stream &str, CommandArgumentType arg_type, CommandInterpreter &interpreter)
482{
483 const ArgumentTableEntry* table = CommandObject::GetArgumentTable();
Vince Harrond7e6a4f2015-05-13 00:25:54 +0000484 const ArgumentTableEntry *entry = &(table[arg_type]);
Caroline Ticee139cf22010-10-01 17:46:38 +0000485
486 // The table is *supposed* to be kept in arg_type order, but someone *could* have messed it up...
487
488 if (entry->arg_type != arg_type)
489 entry = CommandObject::FindArgumentDataByType (arg_type);
490
491 if (!entry)
492 return;
493
494 StreamString name_str;
495 name_str.Printf ("<%s>", entry->arg_name);
496
Enrico Granatafc7a7f32011-07-08 02:51:01 +0000497 if (entry->help_function)
Enrico Granata82a7d982011-07-07 00:38:40 +0000498 {
Enrico Granatafc7a7f32011-07-08 02:51:01 +0000499 const char* help_text = entry->help_function();
Enrico Granata82a7d982011-07-07 00:38:40 +0000500 if (!entry->help_function.self_formatting)
501 {
502 interpreter.OutputFormattedHelpText (str, name_str.GetData(), "--", help_text,
503 name_str.GetSize());
504 }
505 else
506 {
507 interpreter.OutputHelpText(str, name_str.GetData(), "--", help_text,
508 name_str.GetSize());
509 }
510 }
Caroline Ticee139cf22010-10-01 17:46:38 +0000511 else
512 interpreter.OutputFormattedHelpText (str, name_str.GetData(), "--", entry->help_text, name_str.GetSize());
513}
514
515const char *
516CommandObject::GetArgumentName (CommandArgumentType arg_type)
517{
Vince Harrond7e6a4f2015-05-13 00:25:54 +0000518 const ArgumentTableEntry *entry = &(CommandObject::GetArgumentTable()[arg_type]);
Caroline Ticedeaab222010-10-01 19:59:14 +0000519
520 // The table is *supposed* to be kept in arg_type order, but someone *could* have messed it up...
521
522 if (entry->arg_type != arg_type)
523 entry = CommandObject::FindArgumentDataByType (arg_type);
524
Johnny Chene6acf352010-10-08 22:01:52 +0000525 if (entry)
526 return entry->arg_name;
527
528 StreamString str;
529 str << "Arg name for type (" << arg_type << ") not in arg table!";
530 return str.GetData();
Caroline Ticee139cf22010-10-01 17:46:38 +0000531}
532
Caroline Tice405fe672010-10-04 22:28:36 +0000533bool
Greg Claytone0d378b2011-03-24 21:19:54 +0000534CommandObject::IsPairType (ArgumentRepetitionType arg_repeat_type)
Caroline Tice405fe672010-10-04 22:28:36 +0000535{
536 if ((arg_repeat_type == eArgRepeatPairPlain)
537 || (arg_repeat_type == eArgRepeatPairOptional)
538 || (arg_repeat_type == eArgRepeatPairPlus)
539 || (arg_repeat_type == eArgRepeatPairStar)
540 || (arg_repeat_type == eArgRepeatPairRange)
541 || (arg_repeat_type == eArgRepeatPairRangeOptional))
542 return true;
543
544 return false;
545}
546
Johnny Chen34ddc8d2012-02-08 01:13:31 +0000547static CommandObject::CommandArgumentEntry
548OptSetFiltered(uint32_t opt_set_mask, CommandObject::CommandArgumentEntry &cmd_arg_entry)
549{
550 CommandObject::CommandArgumentEntry ret_val;
551 for (unsigned i = 0; i < cmd_arg_entry.size(); ++i)
552 if (opt_set_mask & cmd_arg_entry[i].arg_opt_set_association)
553 ret_val.push_back(cmd_arg_entry[i]);
554 return ret_val;
555}
556
557// Default parameter value of opt_set_mask is LLDB_OPT_SET_ALL, which means take
558// all the argument data into account. On rare cases where some argument sticks
559// with certain option sets, this function returns the option set filtered args.
Caroline Ticee139cf22010-10-01 17:46:38 +0000560void
Johnny Chen34ddc8d2012-02-08 01:13:31 +0000561CommandObject::GetFormattedCommandArguments (Stream &str, uint32_t opt_set_mask)
Caroline Ticee139cf22010-10-01 17:46:38 +0000562{
563 int num_args = m_arguments.size();
564 for (int i = 0; i < num_args; ++i)
565 {
566 if (i > 0)
567 str.Printf (" ");
Johnny Chen34ddc8d2012-02-08 01:13:31 +0000568 CommandArgumentEntry arg_entry =
569 opt_set_mask == LLDB_OPT_SET_ALL ? m_arguments[i]
570 : OptSetFiltered(opt_set_mask, m_arguments[i]);
Caroline Ticee139cf22010-10-01 17:46:38 +0000571 int num_alternatives = arg_entry.size();
Caroline Tice405fe672010-10-04 22:28:36 +0000572
573 if ((num_alternatives == 2)
574 && IsPairType (arg_entry[0].arg_repetition))
Caroline Ticee139cf22010-10-01 17:46:38 +0000575 {
Caroline Tice405fe672010-10-04 22:28:36 +0000576 const char *first_name = GetArgumentName (arg_entry[0].arg_type);
577 const char *second_name = GetArgumentName (arg_entry[1].arg_type);
578 switch (arg_entry[0].arg_repetition)
579 {
580 case eArgRepeatPairPlain:
581 str.Printf ("<%s> <%s>", first_name, second_name);
582 break;
583 case eArgRepeatPairOptional:
584 str.Printf ("[<%s> <%s>]", first_name, second_name);
585 break;
586 case eArgRepeatPairPlus:
587 str.Printf ("<%s> <%s> [<%s> <%s> [...]]", first_name, second_name, first_name, second_name);
588 break;
589 case eArgRepeatPairStar:
590 str.Printf ("[<%s> <%s> [<%s> <%s> [...]]]", first_name, second_name, first_name, second_name);
591 break;
592 case eArgRepeatPairRange:
593 str.Printf ("<%s_1> <%s_1> ... <%s_n> <%s_n>", first_name, second_name, first_name, second_name);
594 break;
595 case eArgRepeatPairRangeOptional:
596 str.Printf ("[<%s_1> <%s_1> ... <%s_n> <%s_n>]", first_name, second_name, first_name, second_name);
597 break;
Caroline Ticeca1176a2011-03-23 22:31:13 +0000598 // Explicitly test for all the rest of the cases, so if new types get added we will notice the
599 // missing case statement(s).
600 case eArgRepeatPlain:
601 case eArgRepeatOptional:
602 case eArgRepeatPlus:
603 case eArgRepeatStar:
604 case eArgRepeatRange:
605 // These should not be reached, as they should fail the IsPairType test above.
606 break;
Caroline Tice405fe672010-10-04 22:28:36 +0000607 }
Caroline Ticee139cf22010-10-01 17:46:38 +0000608 }
Caroline Tice405fe672010-10-04 22:28:36 +0000609 else
Caroline Ticee139cf22010-10-01 17:46:38 +0000610 {
Caroline Tice405fe672010-10-04 22:28:36 +0000611 StreamString names;
612 for (int j = 0; j < num_alternatives; ++j)
613 {
614 if (j > 0)
615 names.Printf (" | ");
616 names.Printf ("%s", GetArgumentName (arg_entry[j].arg_type));
617 }
618 switch (arg_entry[0].arg_repetition)
619 {
620 case eArgRepeatPlain:
621 str.Printf ("<%s>", names.GetData());
622 break;
623 case eArgRepeatPlus:
624 str.Printf ("<%s> [<%s> [...]]", names.GetData(), names.GetData());
625 break;
626 case eArgRepeatStar:
627 str.Printf ("[<%s> [<%s> [...]]]", names.GetData(), names.GetData());
628 break;
629 case eArgRepeatOptional:
630 str.Printf ("[<%s>]", names.GetData());
631 break;
632 case eArgRepeatRange:
Jason Molendafd54b362011-09-20 21:44:10 +0000633 str.Printf ("<%s_1> .. <%s_n>", names.GetData(), names.GetData());
Caroline Ticeca1176a2011-03-23 22:31:13 +0000634 break;
635 // Explicitly test for all the rest of the cases, so if new types get added we will notice the
636 // missing case statement(s).
637 case eArgRepeatPairPlain:
638 case eArgRepeatPairOptional:
639 case eArgRepeatPairPlus:
640 case eArgRepeatPairStar:
641 case eArgRepeatPairRange:
642 case eArgRepeatPairRangeOptional:
643 // These should not be hit, as they should pass the IsPairType test above, and control should
644 // have gone into the other branch of the if statement.
645 break;
Caroline Tice405fe672010-10-04 22:28:36 +0000646 }
Caroline Ticee139cf22010-10-01 17:46:38 +0000647 }
648 }
649}
650
Stephen Wilson0c16aa62011-03-23 02:12:10 +0000651CommandArgumentType
Caroline Ticee139cf22010-10-01 17:46:38 +0000652CommandObject::LookupArgumentName (const char *arg_name)
653{
654 CommandArgumentType return_type = eArgTypeLastArg;
655
656 std::string arg_name_str (arg_name);
657 size_t len = arg_name_str.length();
658 if (arg_name[0] == '<'
659 && arg_name[len-1] == '>')
660 arg_name_str = arg_name_str.substr (1, len-2);
661
Johnny Chen331eff32011-07-14 22:20:12 +0000662 const ArgumentTableEntry *table = GetArgumentTable();
Caroline Ticee139cf22010-10-01 17:46:38 +0000663 for (int i = 0; i < eArgTypeLastArg; ++i)
Johnny Chen331eff32011-07-14 22:20:12 +0000664 if (arg_name_str.compare (table[i].arg_name) == 0)
Caroline Ticee139cf22010-10-01 17:46:38 +0000665 return_type = g_arguments_data[i].arg_type;
666
667 return return_type;
668}
669
670static const char *
Jim Ingham931e6742012-08-23 23:37:31 +0000671RegisterNameHelpTextCallback ()
672{
673 return "Register names can be specified using the architecture specific names. "
Jim Ingham84c7bd72012-08-23 23:47:08 +0000674 "They can also be specified using generic names. Not all generic entities have "
675 "registers backing them on all architectures. When they don't the generic name "
676 "will return an error.\n"
Jim Ingham931e6742012-08-23 23:37:31 +0000677 "The generic names defined in lldb are:\n"
678 "\n"
679 "pc - program counter register\n"
680 "ra - return address register\n"
681 "fp - frame pointer register\n"
682 "sp - stack pointer register\n"
Jim Ingham84c7bd72012-08-23 23:47:08 +0000683 "flags - the flags register\n"
Jim Ingham931e6742012-08-23 23:37:31 +0000684 "arg{1-6} - integer argument passing registers.\n";
685}
686
687static const char *
Caroline Ticee139cf22010-10-01 17:46:38 +0000688BreakpointIDHelpTextCallback ()
689{
Greg Clayton86edbf42011-10-26 00:56:27 +0000690 return "Breakpoint ID's consist major and minor numbers; the major number "
691 "corresponds to the single entity that was created with a 'breakpoint set' "
692 "command; the minor numbers correspond to all the locations that were actually "
693 "found/set based on the major breakpoint. A full breakpoint ID might look like "
694 "3.14, meaning the 14th location set for the 3rd breakpoint. You can specify "
695 "all the locations of a breakpoint by just indicating the major breakpoint "
696 "number. A valid breakpoint id consists either of just the major id number, "
697 "or the major number, a dot, and the location number (e.g. 3 or 3.2 could "
698 "both be valid breakpoint ids).";
Caroline Ticee139cf22010-10-01 17:46:38 +0000699}
700
701static const char *
702BreakpointIDRangeHelpTextCallback ()
703{
Greg Clayton86edbf42011-10-26 00:56:27 +0000704 return "A 'breakpoint id list' is a manner of specifying multiple breakpoints. "
705 "This can be done through several mechanisms. The easiest way is to just "
706 "enter a space-separated list of breakpoint ids. To specify all the "
707 "breakpoint locations under a major breakpoint, you can use the major "
708 "breakpoint number followed by '.*', eg. '5.*' means all the locations under "
709 "breakpoint 5. You can also indicate a range of breakpoints by using "
710 "<start-bp-id> - <end-bp-id>. The start-bp-id and end-bp-id for a range can "
711 "be any valid breakpoint ids. It is not legal, however, to specify a range "
712 "using specific locations that cross major breakpoint numbers. I.e. 3.2 - 3.7"
713 " is legal; 2 - 5 is legal; but 3.2 - 4.4 is not legal.";
Caroline Ticee139cf22010-10-01 17:46:38 +0000714}
715
Enrico Granata0a3958e2011-07-02 00:25:22 +0000716static const char *
Jim Ingham5e09c8c2014-12-16 23:40:14 +0000717BreakpointNameHelpTextCallback ()
718{
719 return "A name that can be added to a breakpoint when it is created, or later "
720 "on with the \"breakpoint name add\" command. "
721 "Breakpoint names can be used to specify breakpoints in all the places breakpoint ID's "
722 "and breakpoint ID ranges can be used. As such they provide a convenient way to group breakpoints, "
723 "and to operate on breakpoints you create without having to track the breakpoint number. "
724 "Note, the attributes you set when using a breakpoint name in a breakpoint command don't "
725 "adhere to the name, but instead are set individually on all the breakpoints currently tagged with that name. Future breakpoints "
726 "tagged with that name will not pick up the attributes previously given using that name. "
727 "In order to distinguish breakpoint names from breakpoint ID's and ranges, "
728 "names must start with a letter from a-z or A-Z and cannot contain spaces, \".\" or \"-\". "
729 "Also, breakpoint names can only be applied to breakpoints, not to breakpoint locations.";
730}
731
732static const char *
Greg Clayton86edbf42011-10-26 00:56:27 +0000733GDBFormatHelpTextCallback ()
734{
Greg Claytonf91381e2011-10-26 18:35:21 +0000735 return "A GDB format consists of a repeat count, a format letter and a size letter. "
736 "The repeat count is optional and defaults to 1. The format letter is optional "
737 "and defaults to the previous format that was used. The size letter is optional "
738 "and defaults to the previous size that was used.\n"
739 "\n"
740 "Format letters include:\n"
741 "o - octal\n"
742 "x - hexadecimal\n"
743 "d - decimal\n"
744 "u - unsigned decimal\n"
745 "t - binary\n"
746 "f - float\n"
747 "a - address\n"
748 "i - instruction\n"
749 "c - char\n"
750 "s - string\n"
751 "T - OSType\n"
752 "A - float as hex\n"
753 "\n"
754 "Size letters include:\n"
755 "b - 1 byte (byte)\n"
756 "h - 2 bytes (halfword)\n"
757 "w - 4 bytes (word)\n"
758 "g - 8 bytes (giant)\n"
759 "\n"
760 "Example formats:\n"
761 "32xb - show 32 1 byte hexadecimal integer values\n"
762 "16xh - show 16 2 byte hexadecimal integer values\n"
763 "64 - show 64 2 byte hexadecimal integer values (format and size from the last format)\n"
764 "dw - show 1 4 byte decimal integer value\n"
765 ;
Greg Clayton86edbf42011-10-26 00:56:27 +0000766}
767
768static const char *
Enrico Granata0a3958e2011-07-02 00:25:22 +0000769FormatHelpTextCallback ()
770{
Enrico Granata82a7d982011-07-07 00:38:40 +0000771
Ed Masted78c9572014-04-20 00:31:37 +0000772 static char* help_text_ptr = nullptr;
Enrico Granata82a7d982011-07-07 00:38:40 +0000773
774 if (help_text_ptr)
775 return help_text_ptr;
776
Enrico Granata0a3958e2011-07-02 00:25:22 +0000777 StreamString sstr;
778 sstr << "One of the format names (or one-character names) that can be used to show a variable's value:\n";
779 for (Format f = eFormatDefault; f < kNumFormats; f = Format(f+1))
780 {
Enrico Granata82a7d982011-07-07 00:38:40 +0000781 if (f != eFormatDefault)
782 sstr.PutChar('\n');
783
Enrico Granata0a3958e2011-07-02 00:25:22 +0000784 char format_char = FormatManager::GetFormatAsFormatChar(f);
785 if (format_char)
786 sstr.Printf("'%c' or ", format_char);
787
Enrico Granata82a7d982011-07-07 00:38:40 +0000788 sstr.Printf ("\"%s\"", FormatManager::GetFormatAsCString(f));
Enrico Granata0a3958e2011-07-02 00:25:22 +0000789 }
790
791 sstr.Flush();
792
793 std::string data = sstr.GetString();
794
Enrico Granata82a7d982011-07-07 00:38:40 +0000795 help_text_ptr = new char[data.length()+1];
Enrico Granata0a3958e2011-07-02 00:25:22 +0000796
Enrico Granata82a7d982011-07-07 00:38:40 +0000797 data.copy(help_text_ptr, data.length());
Enrico Granata0a3958e2011-07-02 00:25:22 +0000798
Enrico Granata82a7d982011-07-07 00:38:40 +0000799 return help_text_ptr;
Enrico Granata0a3958e2011-07-02 00:25:22 +0000800}
801
802static const char *
Sean Callanand9477392012-10-23 00:50:09 +0000803LanguageTypeHelpTextCallback ()
804{
Ed Masted78c9572014-04-20 00:31:37 +0000805 static char* help_text_ptr = nullptr;
Sean Callanand9477392012-10-23 00:50:09 +0000806
807 if (help_text_ptr)
808 return help_text_ptr;
809
810 StreamString sstr;
811 sstr << "One of the following languages:\n";
Jim Inghamde50d362015-04-17 00:44:36 +0000812
Jim Ingham0e0984e2015-09-02 01:06:46 +0000813 Language::PrintAllLanguages(sstr, " ", "\n");
Jim Inghamde50d362015-04-17 00:44:36 +0000814
Sean Callanand9477392012-10-23 00:50:09 +0000815 sstr.Flush();
816
817 std::string data = sstr.GetString();
818
819 help_text_ptr = new char[data.length()+1];
820
821 data.copy(help_text_ptr, data.length());
822
823 return help_text_ptr;
824}
825
826static const char *
Enrico Granata82a7d982011-07-07 00:38:40 +0000827SummaryStringHelpTextCallback()
Enrico Granata0a3958e2011-07-02 00:25:22 +0000828{
Enrico Granata82a7d982011-07-07 00:38:40 +0000829 return
830 "A summary string is a way to extract information from variables in order to present them using a summary.\n"
831 "Summary strings contain static text, variables, scopes and control sequences:\n"
832 " - Static text can be any sequence of non-special characters, i.e. anything but '{', '}', '$', or '\\'.\n"
833 " - Variables are sequences of characters beginning with ${, ending with } and that contain symbols in the format described below.\n"
834 " - 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"
835 " - Control sequences are the usual C/C++ '\\a', '\\n', ..., plus '\\$', '\\{' and '\\}'.\n"
836 "A summary string works by copying static text verbatim, turning control sequences into their character counterpart, expanding variables and trying to expand scopes.\n"
837 "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"
838 "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"
839 " (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 +0000840 " ${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."
841 " 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 +0000842 "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."
843 "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"
844 " path refers to:\n"
845 " - 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"
846 " and displayed as an individual variable\n"
847 " - 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"
848 " 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 +0000849 "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"
850 "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"
851 " special symbols only allowed as part of a variable:\n"
852 " %V: show the value of the object by default\n"
853 " %S: show the summary of the object by default\n"
854 " %@: show the runtime-provided object description (for Objective-C, it calls NSPrintForDebugger; for C/C++ it does nothing)\n"
855 " %L: show the location of the object (memory address or a register name)\n"
856 " %#: show the number of children of the object\n"
857 " %T: show the type of the object\n"
858 "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"
859 " 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"
860 " count the number of actual elements stored in an std::list:\n"
861 "type summary add -s \"${svar%#}\" -x \"std::list<\"";
862}
863
864static const char *
865ExprPathHelpTextCallback()
866{
867 return
868 "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"
869 "For instance, given a class:\n"
870 " class foo {\n"
871 " int a;\n"
872 " int b; .\n"
873 " foo* next;\n"
874 " };\n"
875 "the expression to read item b in the item pointed to by next for foo aFoo would be aFoo.next->b.\n"
876 "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"
877 "Expression paths in LLDB include dot (.) and arrow (->) operators, and most commands using expression paths have ways to also accept the star (*) operator.\n"
878 "The meaning of these operators is the same as the usual one given to them by the C/C++ standards.\n"
879 "LLDB also has support for indexing ([ ]) in expression paths, and extends the traditional meaning of the square brackets operator to allow bitfield extraction:\n"
880 "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"
881 " 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"
882 " 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"
883 " meaning of array slicing (taking elements n thru m inside the array or pointed-to memory).";
Enrico Granata0a3958e2011-07-02 00:25:22 +0000884}
885
Johnny Chen184d7a72011-09-21 01:00:02 +0000886void
Kate Stoneea671fb2015-07-14 05:48:36 +0000887CommandObject::FormatLongHelpText (Stream &output_strm, const char *long_help)
888{
889 CommandInterpreter& interpreter = GetCommandInterpreter();
890 std::stringstream lineStream (long_help);
891 std::string line;
892 while (std::getline (lineStream, line)) {
893 if (line.empty()) {
894 output_strm << "\n";
895 continue;
896 }
897 size_t result = line.find_first_not_of (" \t");
898 if (result == std::string::npos) {
899 result = 0;
900 }
901 std::string whitespace_prefix = line.substr (0, result);
902 std::string remainder = line.substr (result);
903 interpreter.OutputFormattedHelpText(output_strm, whitespace_prefix.c_str(), remainder.c_str());
904 }
905}
906
907void
Enrico Granata9b62d1d2013-06-12 01:50:57 +0000908CommandObject::GenerateHelpText (CommandReturnObject &result)
909{
910 GenerateHelpText(result.GetOutputStream());
911
912 result.SetStatus (eReturnStatusSuccessFinishNoResult);
913}
914
915void
916CommandObject::GenerateHelpText (Stream &output_strm)
917{
918 CommandInterpreter& interpreter = GetCommandInterpreter();
Ed Masted78c9572014-04-20 00:31:37 +0000919 if (GetOptions() != nullptr)
Enrico Granata9b62d1d2013-06-12 01:50:57 +0000920 {
921 if (WantsRawCommandString())
922 {
923 std::string help_text (GetHelp());
924 help_text.append (" This command takes 'raw' input (no need to quote stuff).");
925 interpreter.OutputFormattedHelpText (output_strm, "", "", help_text.c_str(), 1);
926 }
927 else
928 interpreter.OutputFormattedHelpText (output_strm, "", "", GetHelp(), 1);
929 output_strm.Printf ("\nSyntax: %s\n", GetSyntax());
930 GetOptions()->GenerateOptionUsage (output_strm, this);
931 const char *long_help = GetHelpLong();
Ed Masted78c9572014-04-20 00:31:37 +0000932 if ((long_help != nullptr)
Enrico Granata9b62d1d2013-06-12 01:50:57 +0000933 && (strlen (long_help) > 0))
Kate Stoneea671fb2015-07-14 05:48:36 +0000934 FormatLongHelpText (output_strm, long_help);
Enrico Granata9b62d1d2013-06-12 01:50:57 +0000935 if (WantsRawCommandString() && !WantsCompletion())
936 {
937 // Emit the message about using ' -- ' between the end of the command options and the raw input
938 // conditionally, i.e., only if the command object does not want completion.
939 interpreter.OutputFormattedHelpText (output_strm, "", "",
940 "\nIMPORTANT NOTE: Because this command takes 'raw' input, if you use any command options"
941 " you must use ' -- ' between the end of the command options and the beginning of the raw input.", 1);
942 }
943 else if (GetNumArgumentEntries() > 0
944 && GetOptions()
945 && GetOptions()->NumCommandOptions() > 0)
946 {
947 // Also emit a warning about using "--" in case you are using a command that takes options and arguments.
948 interpreter.OutputFormattedHelpText (output_strm, "", "",
949 "\nThis command takes options and free-form arguments. If your arguments resemble"
950 " option specifiers (i.e., they start with a - or --), you must use ' -- ' between"
951 " the end of the command options and the beginning of the arguments.", 1);
952 }
953 }
954 else if (IsMultiwordObject())
955 {
956 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 GenerateHelpText (output_strm);
965 }
966 else
967 {
968 const char *long_help = GetHelpLong();
Ed Masted78c9572014-04-20 00:31:37 +0000969 if ((long_help != nullptr)
Enrico Granata9b62d1d2013-06-12 01:50:57 +0000970 && (strlen (long_help) > 0))
Kate Stoneea671fb2015-07-14 05:48:36 +0000971 FormatLongHelpText (output_strm, long_help);
Enrico Granata9b62d1d2013-06-12 01:50:57 +0000972 else if (WantsRawCommandString())
973 {
974 std::string help_text (GetHelp());
975 help_text.append (" This command takes 'raw' input (no need to quote stuff).");
976 interpreter.OutputFormattedHelpText (output_strm, "", "", help_text.c_str(), 1);
977 }
978 else
979 interpreter.OutputFormattedHelpText (output_strm, "", "", GetHelp(), 1);
980 output_strm.Printf ("\nSyntax: %s\n", GetSyntax());
981 }
982}
983
984void
Johnny Chende753462011-09-22 22:34:09 +0000985CommandObject::AddIDsArgumentData(CommandArgumentEntry &arg, CommandArgumentType ID, CommandArgumentType IDRange)
Johnny Chen184d7a72011-09-21 01:00:02 +0000986{
987 CommandArgumentData id_arg;
988 CommandArgumentData id_range_arg;
989
990 // Create the first variant for the first (and only) argument for this command.
Johnny Chende753462011-09-22 22:34:09 +0000991 id_arg.arg_type = ID;
Johnny Chen184d7a72011-09-21 01:00:02 +0000992 id_arg.arg_repetition = eArgRepeatOptional;
993
994 // Create the second variant for the first (and only) argument for this command.
Johnny Chende753462011-09-22 22:34:09 +0000995 id_range_arg.arg_type = IDRange;
Johnny Chen184d7a72011-09-21 01:00:02 +0000996 id_range_arg.arg_repetition = eArgRepeatOptional;
997
Johnny Chena3234732011-09-21 01:04:49 +0000998 // The first (and only) argument for this command could be either an id or an id_range.
Johnny Chen184d7a72011-09-21 01:00:02 +0000999 // Push both variants into the entry for the first argument for this command.
1000 arg.push_back(id_arg);
1001 arg.push_back(id_range_arg);
1002}
1003
Greg Clayton9d0402b2011-02-20 02:15:07 +00001004const char *
1005CommandObject::GetArgumentTypeAsCString (const lldb::CommandArgumentType arg_type)
1006{
Zachary Turner48b475c2015-04-02 20:57:38 +00001007 assert(arg_type < eArgTypeLastArg && "Invalid argument type passed to GetArgumentTypeAsCString");
1008 return g_arguments_data[arg_type].arg_name;
Greg Clayton9d0402b2011-02-20 02:15:07 +00001009}
1010
1011const char *
1012CommandObject::GetArgumentDescriptionAsCString (const lldb::CommandArgumentType arg_type)
1013{
Zachary Turner48b475c2015-04-02 20:57:38 +00001014 assert(arg_type < eArgTypeLastArg && "Invalid argument type passed to GetArgumentDescriptionAsCString");
1015 return g_arguments_data[arg_type].help_text;
Greg Clayton9d0402b2011-02-20 02:15:07 +00001016}
1017
Jim Ingham893c9322014-11-22 01:42:44 +00001018Target *
1019CommandObject::GetDummyTarget()
1020{
1021 return m_interpreter.GetDebugger().GetDummyTarget();
1022}
1023
1024Target *
Jim Ingham33df7cd2014-12-06 01:28:03 +00001025CommandObject::GetSelectedOrDummyTarget(bool prefer_dummy)
Jim Ingham893c9322014-11-22 01:42:44 +00001026{
Jim Ingham33df7cd2014-12-06 01:28:03 +00001027 return m_interpreter.GetDebugger().GetSelectedOrDummyTarget(prefer_dummy);
Jim Ingham893c9322014-11-22 01:42:44 +00001028}
1029
Jim Ingham8d94ba02016-03-12 02:45:34 +00001030Thread *
1031CommandObject::GetDefaultThread()
1032{
1033 Thread *thread_to_use = m_exe_ctx.GetThreadPtr();
1034 if (thread_to_use)
1035 return thread_to_use;
1036
1037 Process *process = m_exe_ctx.GetProcessPtr();
1038 if (!process)
1039 {
1040 Target *target = m_exe_ctx.GetTargetPtr();
1041 if (!target)
1042 {
1043 target = m_interpreter.GetDebugger().GetSelectedTarget().get();
1044 }
1045 if (target)
1046 process = target->GetProcessSP().get();
1047 }
1048
1049 if (process)
1050 return process->GetThreadList().GetSelectedThread().get();
1051 else
1052 return nullptr;
1053}
1054
Jim Ingham5a988412012-06-08 21:56:10 +00001055bool
1056CommandObjectParsed::Execute (const char *args_string, CommandReturnObject &result)
1057{
Jim Ingham5a988412012-06-08 21:56:10 +00001058 bool handled = false;
1059 Args cmd_args (args_string);
Jim Ingham3b652622014-08-06 00:10:12 +00001060 if (HasOverrideCallback())
Jim Ingham5a988412012-06-08 21:56:10 +00001061 {
1062 Args full_args (GetCommandName ());
1063 full_args.AppendArguments(cmd_args);
Jim Ingham3b652622014-08-06 00:10:12 +00001064 handled = InvokeOverrideCallback (full_args.GetConstArgumentVector(), result);
Jim Ingham5a988412012-06-08 21:56:10 +00001065 }
1066 if (!handled)
1067 {
1068 for (size_t i = 0; i < cmd_args.GetArgumentCount(); ++i)
1069 {
1070 const char *tmp_str = cmd_args.GetArgumentAtIndex (i);
1071 if (tmp_str[0] == '`') // back-quote
1072 cmd_args.ReplaceArgumentAtIndex (i, m_interpreter.ProcessEmbeddedScriptCommands (tmp_str));
1073 }
1074
Greg Claytonf9fc6092013-01-09 19:44:40 +00001075 if (CheckRequirements(result))
1076 {
1077 if (ParseOptions (cmd_args, result))
1078 {
1079 // Call the command-specific version of 'Execute', passing it the already processed arguments.
1080 handled = DoExecute (cmd_args, result);
1081 }
1082 }
Jim Ingham5a988412012-06-08 21:56:10 +00001083
Greg Claytonf9fc6092013-01-09 19:44:40 +00001084 Cleanup();
Jim Ingham5a988412012-06-08 21:56:10 +00001085 }
1086 return handled;
1087}
1088
1089bool
1090CommandObjectRaw::Execute (const char *args_string, CommandReturnObject &result)
1091{
Jim Ingham5a988412012-06-08 21:56:10 +00001092 bool handled = false;
Jim Ingham3b652622014-08-06 00:10:12 +00001093 if (HasOverrideCallback())
Jim Ingham5a988412012-06-08 21:56:10 +00001094 {
1095 std::string full_command (GetCommandName ());
1096 full_command += ' ';
1097 full_command += args_string;
Ed Masted78c9572014-04-20 00:31:37 +00001098 const char *argv[2] = { nullptr, nullptr };
Jim Ingham5a988412012-06-08 21:56:10 +00001099 argv[0] = full_command.c_str();
Jim Ingham3b652622014-08-06 00:10:12 +00001100 handled = InvokeOverrideCallback (argv, result);
Jim Ingham5a988412012-06-08 21:56:10 +00001101 }
1102 if (!handled)
1103 {
Greg Claytonf9fc6092013-01-09 19:44:40 +00001104 if (CheckRequirements(result))
Jim Ingham5a988412012-06-08 21:56:10 +00001105 handled = DoExecute (args_string, result);
Greg Claytonf9fc6092013-01-09 19:44:40 +00001106
1107 Cleanup();
Jim Ingham5a988412012-06-08 21:56:10 +00001108 }
1109 return handled;
1110}
1111
Johnny Chenca7835c2012-05-26 00:32:39 +00001112static
1113const char *arch_helper()
1114{
Greg Claytond70b14e2012-05-26 17:21:14 +00001115 static StreamString g_archs_help;
Johnny Chen797a1b32012-05-29 20:04:10 +00001116 if (g_archs_help.Empty())
Greg Claytond70b14e2012-05-26 17:21:14 +00001117 {
1118 StringList archs;
Ed Masted78c9572014-04-20 00:31:37 +00001119 ArchSpec::AutoComplete(nullptr, archs);
Greg Claytond70b14e2012-05-26 17:21:14 +00001120 g_archs_help.Printf("These are the supported architecture names:\n");
Johnny Chen797a1b32012-05-29 20:04:10 +00001121 archs.Join("\n", g_archs_help);
Greg Claytond70b14e2012-05-26 17:21:14 +00001122 }
1123 return g_archs_help.GetData();
Johnny Chenca7835c2012-05-26 00:32:39 +00001124}
1125
Caroline Ticee139cf22010-10-01 17:46:38 +00001126CommandObject::ArgumentTableEntry
1127CommandObject::g_arguments_data[] =
1128{
Ed Masted78c9572014-04-20 00:31:37 +00001129 { eArgTypeAddress, "address", CommandCompletions::eNoCompletion, { nullptr, false }, "A valid address in the target program's execution space." },
1130 { eArgTypeAddressOrExpression, "address-expression", CommandCompletions::eNoCompletion, { nullptr, false }, "An expression that resolves to an address." },
1131 { eArgTypeAliasName, "alias-name", CommandCompletions::eNoCompletion, { nullptr, false }, "The name of an abbreviation (alias) for a debugger command." },
1132 { eArgTypeAliasOptions, "options-for-aliased-command", CommandCompletions::eNoCompletion, { nullptr, 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 +00001133 { eArgTypeArchitecture, "arch", CommandCompletions::eArchitectureCompletion, { arch_helper, true }, "The architecture name, e.g. i386 or x86_64." },
Ed Masted78c9572014-04-20 00:31:37 +00001134 { eArgTypeBoolean, "boolean", CommandCompletions::eNoCompletion, { nullptr, false }, "A Boolean value: 'true' or 'false'" },
1135 { eArgTypeBreakpointID, "breakpt-id", CommandCompletions::eNoCompletion, { BreakpointIDHelpTextCallback, false }, nullptr },
1136 { eArgTypeBreakpointIDRange, "breakpt-id-list", CommandCompletions::eNoCompletion, { BreakpointIDRangeHelpTextCallback, false }, nullptr },
Jim Ingham5e09c8c2014-12-16 23:40:14 +00001137 { eArgTypeBreakpointName, "breakpoint-name", CommandCompletions::eNoCompletion, { BreakpointNameHelpTextCallback, false }, nullptr },
Ed Masted78c9572014-04-20 00:31:37 +00001138 { eArgTypeByteSize, "byte-size", CommandCompletions::eNoCompletion, { nullptr, false }, "Number of bytes to use." },
1139 { eArgTypeClassName, "class-name", CommandCompletions::eNoCompletion, { nullptr, false }, "Then name of a class from the debug information in the program." },
1140 { eArgTypeCommandName, "cmd-name", CommandCompletions::eNoCompletion, { nullptr, false }, "A debugger command (may be multiple words), without any options or arguments." },
1141 { eArgTypeCount, "count", CommandCompletions::eNoCompletion, { nullptr, false }, "An unsigned integer." },
1142 { eArgTypeDirectoryName, "directory", CommandCompletions::eDiskDirectoryCompletion, { nullptr, false }, "A directory name." },
1143 { eArgTypeDisassemblyFlavor, "disassembly-flavor", CommandCompletions::eNoCompletion, { nullptr, false }, "A disassembly flavor recognized by your disassembly plugin. Currently the only valid options are \"att\" and \"intel\" for Intel targets" },
1144 { eArgTypeDescriptionVerbosity, "description-verbosity", CommandCompletions::eNoCompletion, { nullptr, false }, "How verbose the output of 'po' should be." },
1145 { eArgTypeEndAddress, "end-address", CommandCompletions::eNoCompletion, { nullptr, false }, "Help text goes here." },
1146 { eArgTypeExpression, "expr", CommandCompletions::eNoCompletion, { nullptr, false }, "Help text goes here." },
1147 { eArgTypeExpressionPath, "expr-path", CommandCompletions::eNoCompletion, { ExprPathHelpTextCallback, true }, nullptr },
1148 { eArgTypeExprFormat, "expression-format", CommandCompletions::eNoCompletion, { nullptr, false }, "[ [bool|b] | [bin] | [char|c] | [oct|o] | [dec|i|d|u] | [hex|x] | [float|f] | [cstr|s] ]" },
1149 { eArgTypeFilename, "filename", CommandCompletions::eDiskFileCompletion, { nullptr, false }, "The name of a file (can include path)." },
1150 { eArgTypeFormat, "format", CommandCompletions::eNoCompletion, { FormatHelpTextCallback, true }, nullptr },
1151 { eArgTypeFrameIndex, "frame-index", CommandCompletions::eNoCompletion, { nullptr, false }, "Index into a thread's list of frames." },
1152 { eArgTypeFullName, "fullname", CommandCompletions::eNoCompletion, { nullptr, false }, "Help text goes here." },
1153 { eArgTypeFunctionName, "function-name", CommandCompletions::eNoCompletion, { nullptr, false }, "The name of a function." },
1154 { eArgTypeFunctionOrSymbol, "function-or-symbol", CommandCompletions::eNoCompletion, { nullptr, false }, "The name of a function or symbol." },
1155 { eArgTypeGDBFormat, "gdb-format", CommandCompletions::eNoCompletion, { GDBFormatHelpTextCallback, true }, nullptr },
Enrico Granata735152e2014-09-15 17:52:44 +00001156 { eArgTypeHelpText, "help-text", CommandCompletions::eNoCompletion, { nullptr, false }, "Text to be used as help for some other entity in LLDB" },
Ed Masted78c9572014-04-20 00:31:37 +00001157 { eArgTypeIndex, "index", CommandCompletions::eNoCompletion, { nullptr, false }, "An index into a list." },
Enrico Granata7a67ee22016-02-29 21:37:01 +00001158 { eArgTypeLanguage, "source-language", CommandCompletions::eNoCompletion, { LanguageTypeHelpTextCallback, true }, nullptr },
Ed Masted78c9572014-04-20 00:31:37 +00001159 { eArgTypeLineNum, "linenum", CommandCompletions::eNoCompletion, { nullptr, false }, "Line number in a source file." },
1160 { eArgTypeLogCategory, "log-category", CommandCompletions::eNoCompletion, { nullptr, 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." },
1161 { eArgTypeLogChannel, "log-channel", CommandCompletions::eNoCompletion, { nullptr, 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)." },
1162 { eArgTypeMethod, "method", CommandCompletions::eNoCompletion, { nullptr, false }, "A C++ method name." },
1163 { eArgTypeName, "name", CommandCompletions::eNoCompletion, { nullptr, false }, "Help text goes here." },
1164 { eArgTypeNewPathPrefix, "new-path-prefix", CommandCompletions::eNoCompletion, { nullptr, false }, "Help text goes here." },
1165 { eArgTypeNumLines, "num-lines", CommandCompletions::eNoCompletion, { nullptr, false }, "The number of lines to use." },
1166 { eArgTypeNumberPerLine, "number-per-line", CommandCompletions::eNoCompletion, { nullptr, false }, "The number of items per line to display." },
1167 { eArgTypeOffset, "offset", CommandCompletions::eNoCompletion, { nullptr, false }, "Help text goes here." },
1168 { eArgTypeOldPathPrefix, "old-path-prefix", CommandCompletions::eNoCompletion, { nullptr, false }, "Help text goes here." },
1169 { eArgTypeOneLiner, "one-line-command", CommandCompletions::eNoCompletion, { nullptr, false }, "A command that is entered as a single line of text." },
1170 { eArgTypePath, "path", CommandCompletions::eDiskFileCompletion, { nullptr, false }, "Path." },
1171 { eArgTypePermissionsNumber, "perms-numeric", CommandCompletions::eNoCompletion, { nullptr, false }, "Permissions given as an octal number (e.g. 755)." },
1172 { eArgTypePermissionsString, "perms=string", CommandCompletions::eNoCompletion, { nullptr, false }, "Permissions given as a string value (e.g. rw-r-xr--)." },
1173 { eArgTypePid, "pid", CommandCompletions::eNoCompletion, { nullptr, false }, "The process ID number." },
1174 { eArgTypePlugin, "plugin", CommandCompletions::eNoCompletion, { nullptr, false }, "Help text goes here." },
1175 { eArgTypeProcessName, "process-name", CommandCompletions::eNoCompletion, { nullptr, false }, "The name of the process." },
1176 { eArgTypePythonClass, "python-class", CommandCompletions::eNoCompletion, { nullptr, false }, "The name of a Python class." },
1177 { eArgTypePythonFunction, "python-function", CommandCompletions::eNoCompletion, { nullptr, false }, "The name of a Python function." },
1178 { eArgTypePythonScript, "python-script", CommandCompletions::eNoCompletion, { nullptr, false }, "Source code written in Python." },
1179 { eArgTypeQueueName, "queue-name", CommandCompletions::eNoCompletion, { nullptr, false }, "The name of the thread queue." },
1180 { eArgTypeRegisterName, "register-name", CommandCompletions::eNoCompletion, { RegisterNameHelpTextCallback, true }, nullptr },
1181 { eArgTypeRegularExpression, "regular-expression", CommandCompletions::eNoCompletion, { nullptr, false }, "A regular expression." },
1182 { eArgTypeRunArgs, "run-args", CommandCompletions::eNoCompletion, { nullptr, false }, "Arguments to be passed to the target program when it starts executing." },
1183 { eArgTypeRunMode, "run-mode", CommandCompletions::eNoCompletion, { nullptr, false }, "Help text goes here." },
1184 { eArgTypeScriptedCommandSynchronicity, "script-cmd-synchronicity", CommandCompletions::eNoCompletion, { nullptr, false }, "The synchronicity to use to run scripted commands with regard to LLDB event system." },
1185 { eArgTypeScriptLang, "script-language", CommandCompletions::eNoCompletion, { nullptr, false }, "The scripting language to be used for script-based commands. Currently only Python is valid." },
1186 { eArgTypeSearchWord, "search-word", CommandCompletions::eNoCompletion, { nullptr, false }, "The word for which you wish to search for information about." },
1187 { eArgTypeSelector, "selector", CommandCompletions::eNoCompletion, { nullptr, false }, "An Objective-C selector name." },
1188 { eArgTypeSettingIndex, "setting-index", CommandCompletions::eNoCompletion, { nullptr, false }, "An index into a settings variable that is an array (try 'settings list' to see all the possible settings variables and their types)." },
1189 { eArgTypeSettingKey, "setting-key", CommandCompletions::eNoCompletion, { nullptr, false }, "A key into a settings variables that is a dictionary (try 'settings list' to see all the possible settings variables and their types)." },
1190 { eArgTypeSettingPrefix, "setting-prefix", CommandCompletions::eNoCompletion, { nullptr, false }, "The name of a settable internal debugger variable up to a dot ('.'), e.g. 'target.process.'" },
1191 { eArgTypeSettingVariableName, "setting-variable-name", CommandCompletions::eNoCompletion, { nullptr, false }, "The name of a settable internal debugger variable. Type 'settings list' to see a complete list of such variables." },
1192 { eArgTypeShlibName, "shlib-name", CommandCompletions::eNoCompletion, { nullptr, false }, "The name of a shared library." },
1193 { eArgTypeSourceFile, "source-file", CommandCompletions::eSourceFileCompletion, { nullptr, false }, "The name of a source file.." },
1194 { eArgTypeSortOrder, "sort-order", CommandCompletions::eNoCompletion, { nullptr, false }, "Specify a sort order when dumping lists." },
1195 { eArgTypeStartAddress, "start-address", CommandCompletions::eNoCompletion, { nullptr, false }, "Help text goes here." },
1196 { eArgTypeSummaryString, "summary-string", CommandCompletions::eNoCompletion, { SummaryStringHelpTextCallback, true }, nullptr },
1197 { eArgTypeSymbol, "symbol", CommandCompletions::eSymbolCompletion, { nullptr, false }, "Any symbol name (function name, variable, argument, etc.)" },
1198 { eArgTypeThreadID, "thread-id", CommandCompletions::eNoCompletion, { nullptr, false }, "Thread ID number." },
1199 { eArgTypeThreadIndex, "thread-index", CommandCompletions::eNoCompletion, { nullptr, false }, "Index into the process' list of threads." },
1200 { eArgTypeThreadName, "thread-name", CommandCompletions::eNoCompletion, { nullptr, false }, "The thread's name." },
Jim Inghama72b31c2015-04-22 19:42:18 +00001201 { eArgTypeTypeName, "type-name", CommandCompletions::eNoCompletion, { nullptr, false }, "A type name." },
Ed Masted78c9572014-04-20 00:31:37 +00001202 { eArgTypeUnsignedInteger, "unsigned-integer", CommandCompletions::eNoCompletion, { nullptr, false }, "An unsigned integer." },
1203 { eArgTypeUnixSignal, "unix-signal", CommandCompletions::eNoCompletion, { nullptr, false }, "A valid Unix signal name or number (e.g. SIGKILL, KILL or 9)." },
1204 { eArgTypeVarName, "variable-name", CommandCompletions::eNoCompletion, { nullptr, false }, "The name of a variable in your program." },
1205 { eArgTypeValue, "value", CommandCompletions::eNoCompletion, { nullptr, false }, "A value could be anything, depending on where and how it is used." },
1206 { eArgTypeWidth, "width", CommandCompletions::eNoCompletion, { nullptr, false }, "Help text goes here." },
1207 { eArgTypeNone, "none", CommandCompletions::eNoCompletion, { nullptr, false }, "No help available for this." },
1208 { eArgTypePlatform, "platform-name", CommandCompletions::ePlatformPluginCompletion, { nullptr, false }, "The name of an installed platform plug-in . Type 'platform list' to see a complete list of installed platforms." },
1209 { eArgTypeWatchpointID, "watchpt-id", CommandCompletions::eNoCompletion, { nullptr, false }, "Watchpoint IDs are positive integers." },
1210 { eArgTypeWatchpointIDRange, "watchpt-id-list", CommandCompletions::eNoCompletion, { nullptr, false }, "For example, '1-3' or '1 to 3'." },
1211 { eArgTypeWatchType, "watch-type", CommandCompletions::eNoCompletion, { nullptr, false }, "Specify the type for a watchpoint." }
Caroline Ticee139cf22010-10-01 17:46:38 +00001212};
1213
1214const CommandObject::ArgumentTableEntry*
1215CommandObject::GetArgumentTable ()
1216{
Greg Clayton9d0402b2011-02-20 02:15:07 +00001217 // If this assertion fires, then the table above is out of date with the CommandArgumentType enumeration
1218 assert ((sizeof (CommandObject::g_arguments_data) / sizeof (CommandObject::ArgumentTableEntry)) == eArgTypeLastArg);
Caroline Ticee139cf22010-10-01 17:46:38 +00001219 return CommandObject::g_arguments_data;
1220}
1221
1222