blob: d96542ee9cde9dc5dfc797056f615ba20205ce57 [file] [log] [blame]
Chris Lattner24943d22010-06-08 16:52:24 +00001//===-- CommandObjectSyntax.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 "CommandObjectSyntax.h"
11
12// C Includes
13// C++ Includes
14// Other libraries and framework includes
15// Project includes
Jim Ingham84cdc152010-06-15 19:49:27 +000016#include "lldb/Interpreter/Args.h"
17#include "lldb/Interpreter/Options.h"
Chris Lattner24943d22010-06-08 16:52:24 +000018
19#include "lldb/Interpreter/CommandInterpreter.h"
20#include "lldb/Interpreter/CommandReturnObject.h"
21#include "lldb/Interpreter/CommandObjectMultiword.h"
22
23using namespace lldb;
24using namespace lldb_private;
25
26//-------------------------------------------------------------------------
27// CommandObjectSyntax
28//-------------------------------------------------------------------------
29
Greg Clayton238c0a12010-09-18 01:14:36 +000030CommandObjectSyntax::CommandObjectSyntax (CommandInterpreter &interpreter) :
Jim Inghamda26bd22012-06-08 21:56:10 +000031 CommandObjectParsed (interpreter,
32 "syntax",
33 "Shows the correct syntax for a given debugger command.",
34 "syntax <command>")
Chris Lattner24943d22010-06-08 16:52:24 +000035{
Caroline Tice43b014a2010-10-04 22:28:36 +000036 CommandArgumentEntry arg;
37 CommandArgumentData command_arg;
38
39 // Define the first (and only) variant of this arg.
40 command_arg.arg_type = eArgTypeCommandName;
41 command_arg.arg_repetition = eArgRepeatPlain;
42
43 // There is only one variant this argument could be; put it into the argument entry.
44 arg.push_back (command_arg);
45
46 // Push the data for the first argument into the m_arguments vector.
47 m_arguments.push_back (arg);
Chris Lattner24943d22010-06-08 16:52:24 +000048}
49
50CommandObjectSyntax::~CommandObjectSyntax()
51{
52}
53
54
55bool
Jim Inghamda26bd22012-06-08 21:56:10 +000056CommandObjectSyntax::DoExecute (Args& command, CommandReturnObject &result)
Chris Lattner24943d22010-06-08 16:52:24 +000057{
Chris Lattner24943d22010-06-08 16:52:24 +000058 CommandObject::CommandMap::iterator pos;
59 CommandObject *cmd_obj;
60 const int argc = command.GetArgumentCount();
61
62 if (argc > 0)
63 {
Greg Clayton238c0a12010-09-18 01:14:36 +000064 cmd_obj = m_interpreter.GetCommandObject (command.GetArgumentAtIndex(0));
Chris Lattner24943d22010-06-08 16:52:24 +000065 bool all_okay = true;
66 for (int i = 1; i < argc; ++i)
67 {
68 std::string sub_command = command.GetArgumentAtIndex (i);
69 if (! cmd_obj->IsMultiwordObject())
70 all_okay = false;
71 else
72 {
73 pos = ((CommandObjectMultiword *) cmd_obj)->m_subcommand_dict.find (sub_command);
74 if (pos != ((CommandObjectMultiword *) cmd_obj)->m_subcommand_dict.end())
75 cmd_obj = pos->second.get();
76 else
77 all_okay = false;
78 }
79 }
80
81 if (all_okay && (cmd_obj != NULL))
82 {
83 Stream &output_strm = result.GetOutputStream();
84 if (cmd_obj->GetOptions() != NULL)
85 {
86 output_strm.Printf ("\nSyntax: %s\n", cmd_obj->GetSyntax());
Chris Lattner24943d22010-06-08 16:52:24 +000087 output_strm.Printf ("(Try 'help %s' for more information on command options syntax.)\n",
88 cmd_obj->GetCommandName());
89 result.SetStatus (eReturnStatusSuccessFinishNoResult);
90 }
91 else
92 {
93 output_strm.Printf ("\nSyntax: %s\n", cmd_obj->GetSyntax());
94 result.SetStatus (eReturnStatusSuccessFinishNoResult);
95 }
96 }
97 else
98 {
99 std::string cmd_string;
100 command.GetCommandString (cmd_string);
101 result.AppendErrorWithFormat ("'%s' is not a known command.\n", cmd_string.c_str());
102 result.AppendError ("Try 'help' to see a current list of commands.");
103 result.SetStatus (eReturnStatusFailed);
104 }
105 }
106 else
107 {
108 result.AppendError ("Must call 'syntax' with a valid command.");
109 result.SetStatus (eReturnStatusFailed);
110 }
111
112 return result.Succeeded();
113}