blob: 667ae7f984cc6bca944ae9d7fb1b8de83be95137 [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) :
31 CommandObject (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
Greg Clayton54e7afa2010-07-09 20:39:50 +000056CommandObjectSyntax::Execute
Chris Lattner24943d22010-06-08 16:52:24 +000057(
58 Args& command,
Chris Lattner24943d22010-06-08 16:52:24 +000059 CommandReturnObject &result
60)
61{
Chris Lattner24943d22010-06-08 16:52:24 +000062 CommandObject::CommandMap::iterator pos;
63 CommandObject *cmd_obj;
64 const int argc = command.GetArgumentCount();
65
66 if (argc > 0)
67 {
Greg Clayton238c0a12010-09-18 01:14:36 +000068 cmd_obj = m_interpreter.GetCommandObject (command.GetArgumentAtIndex(0));
Chris Lattner24943d22010-06-08 16:52:24 +000069 bool all_okay = true;
70 for (int i = 1; i < argc; ++i)
71 {
72 std::string sub_command = command.GetArgumentAtIndex (i);
73 if (! cmd_obj->IsMultiwordObject())
74 all_okay = false;
75 else
76 {
77 pos = ((CommandObjectMultiword *) cmd_obj)->m_subcommand_dict.find (sub_command);
78 if (pos != ((CommandObjectMultiword *) cmd_obj)->m_subcommand_dict.end())
79 cmd_obj = pos->second.get();
80 else
81 all_okay = false;
82 }
83 }
84
85 if (all_okay && (cmd_obj != NULL))
86 {
87 Stream &output_strm = result.GetOutputStream();
88 if (cmd_obj->GetOptions() != NULL)
89 {
90 output_strm.Printf ("\nSyntax: %s\n", cmd_obj->GetSyntax());
Chris Lattner24943d22010-06-08 16:52:24 +000091 output_strm.Printf ("(Try 'help %s' for more information on command options syntax.)\n",
92 cmd_obj->GetCommandName());
93 result.SetStatus (eReturnStatusSuccessFinishNoResult);
94 }
95 else
96 {
97 output_strm.Printf ("\nSyntax: %s\n", cmd_obj->GetSyntax());
98 result.SetStatus (eReturnStatusSuccessFinishNoResult);
99 }
100 }
101 else
102 {
103 std::string cmd_string;
104 command.GetCommandString (cmd_string);
105 result.AppendErrorWithFormat ("'%s' is not a known command.\n", cmd_string.c_str());
106 result.AppendError ("Try 'help' to see a current list of commands.");
107 result.SetStatus (eReturnStatusFailed);
108 }
109 }
110 else
111 {
112 result.AppendError ("Must call 'syntax' with a valid command.");
113 result.SetStatus (eReturnStatusFailed);
114 }
115
116 return result.Succeeded();
117}