blob: c7aa2b4f1a7f1931b6fcb634cf7973f7aa16ac1e [file] [log] [blame]
Chris Lattner24943d22010-06-08 16:52:24 +00001//===-- CommandObjectHelp.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 "CommandObjectHelp.h"
11
12// C Includes
13// C++ Includes
14// Other libraries and framework includes
15// Project includes
16#include "lldb/Interpreter/CommandObjectMultiword.h"
17#include "lldb/Interpreter/CommandInterpreter.h"
Jim Ingham84cdc152010-06-15 19:49:27 +000018#include "lldb/Interpreter/Options.h"
Chris Lattner24943d22010-06-08 16:52:24 +000019#include "lldb/Interpreter/CommandReturnObject.h"
20
21using namespace lldb;
22using namespace lldb_private;
23
24//-------------------------------------------------------------------------
25// CommandObjectHelp
26//-------------------------------------------------------------------------
27
Greg Clayton238c0a12010-09-18 01:14:36 +000028CommandObjectHelp::CommandObjectHelp (CommandInterpreter &interpreter) :
29 CommandObject (interpreter,
30 "help",
Caroline Ticec1ad82e2010-09-07 22:38:08 +000031 "Show a list of all debugger commands, or give details about specific commands.",
Greg Clayton54e7afa2010-07-09 20:39:50 +000032 "help [<cmd-name>]")
Chris Lattner24943d22010-06-08 16:52:24 +000033{
Caroline Tice43b014a2010-10-04 22:28:36 +000034 CommandArgumentEntry arg;
35 CommandArgumentData command_arg;
36
37 // Define the first (and only) variant of this arg.
38 command_arg.arg_type = eArgTypeCommandName;
39 command_arg.arg_repetition = eArgRepeatStar;
40
41 // There is only one variant this argument could be; put it into the argument entry.
42 arg.push_back (command_arg);
43
44 // Push the data for the first argument into the m_arguments vector.
45 m_arguments.push_back (arg);
Chris Lattner24943d22010-06-08 16:52:24 +000046}
47
48CommandObjectHelp::~CommandObjectHelp()
49{
50}
51
52
53bool
Greg Clayton238c0a12010-09-18 01:14:36 +000054CommandObjectHelp::Execute (Args& command, CommandReturnObject &result)
Chris Lattner24943d22010-06-08 16:52:24 +000055{
56 CommandObject::CommandMap::iterator pos;
57 CommandObject *cmd_obj;
58 const int argc = command.GetArgumentCount ();
Greg Clayton63094e02010-06-23 01:19:29 +000059
Chris Lattner24943d22010-06-08 16:52:24 +000060 // 'help' doesn't take any options or arguments, other than command names. If argc is 0, we show the user
61 // all commands and aliases. Otherwise every argument must be the name of a command or a sub-command.
Chris Lattner24943d22010-06-08 16:52:24 +000062 if (argc == 0)
63 {
64 result.SetStatus (eReturnStatusSuccessFinishNoResult);
Greg Clayton238c0a12010-09-18 01:14:36 +000065 m_interpreter.GetHelp (result); // General help, for ALL commands.
Chris Lattner24943d22010-06-08 16:52:24 +000066 }
67 else
68 {
69 // Get command object for the first command argument. Only search built-in command dictionary.
Jim Inghamd40f8a62010-07-06 22:46:59 +000070 StringList matches;
Greg Clayton238c0a12010-09-18 01:14:36 +000071 cmd_obj = m_interpreter.GetCommandObject (command.GetArgumentAtIndex (0), &matches);
Greg Clayton63094e02010-06-23 01:19:29 +000072
Chris Lattner24943d22010-06-08 16:52:24 +000073 if (cmd_obj != NULL)
74 {
75 bool all_okay = true;
76 CommandObject *sub_cmd_obj = cmd_obj;
77 // Loop down through sub_command dictionaries until we find the command object that corresponds
78 // to the help command entered.
79 for (int i = 1; i < argc && all_okay; ++i)
80 {
81 std::string sub_command = command.GetArgumentAtIndex(i);
82 if (! sub_cmd_obj->IsMultiwordObject ())
83 {
84 all_okay = false;
85 }
86 else
87 {
88 pos = ((CommandObjectMultiword *) sub_cmd_obj)->m_subcommand_dict.find (sub_command);
89 if (pos != ((CommandObjectMultiword *) sub_cmd_obj)->m_subcommand_dict.end())
Greg Clayton63094e02010-06-23 01:19:29 +000090 sub_cmd_obj = pos->second.get();
Chris Lattner24943d22010-06-08 16:52:24 +000091 else
Greg Clayton63094e02010-06-23 01:19:29 +000092 all_okay = false;
Chris Lattner24943d22010-06-08 16:52:24 +000093 }
94 }
Greg Clayton63094e02010-06-23 01:19:29 +000095
Chris Lattner24943d22010-06-08 16:52:24 +000096 if (!all_okay || (sub_cmd_obj == NULL))
97 {
98 std::string cmd_string;
99 command.GetCommandString (cmd_string);
100 result.AppendErrorWithFormat
Greg Clayton63094e02010-06-23 01:19:29 +0000101 ("'%s' is not a known command.\nTry 'help' to see a current list of commands.\n",
102 cmd_string.c_str());
Chris Lattner24943d22010-06-08 16:52:24 +0000103 result.SetStatus (eReturnStatusFailed);
104 }
105 else
106 {
107 Stream &output_strm = result.GetOutputStream();
108 if (sub_cmd_obj->GetOptions() != NULL)
109 {
Caroline Ticefb355112010-10-01 17:46:38 +0000110 if (sub_cmd_obj->WantsRawCommandString())
111 {
112 std::string help_text (sub_cmd_obj->GetHelp());
113 help_text.append (" This command takes 'raw' input (no need to quote stuff).");
114 m_interpreter.OutputFormattedHelpText (output_strm, "", "", help_text.c_str(), 1);
115 }
116 else
117 m_interpreter.OutputFormattedHelpText (output_strm, "", "", sub_cmd_obj->GetHelp(), 1);
Chris Lattner24943d22010-06-08 16:52:24 +0000118 output_strm.Printf ("\nSyntax: %s\n", sub_cmd_obj->GetSyntax());
Greg Clayton238c0a12010-09-18 01:14:36 +0000119 sub_cmd_obj->GetOptions()->GenerateOptionUsage (m_interpreter, output_strm, sub_cmd_obj);
Chris Lattner24943d22010-06-08 16:52:24 +0000120 const char *long_help = sub_cmd_obj->GetHelpLong();
121 if ((long_help != NULL)
122 && (strlen (long_help) > 0))
Greg Clayton63094e02010-06-23 01:19:29 +0000123 output_strm.Printf ("\n%s", long_help);
Johnny Chen8e468592010-10-08 17:21:27 +0000124 // Mark this help command with a success status.
125 result.SetStatus (eReturnStatusSuccessFinishNoResult);
Chris Lattner24943d22010-06-08 16:52:24 +0000126 }
127 else if (sub_cmd_obj->IsMultiwordObject())
128 {
Caroline Ticefb355112010-10-01 17:46:38 +0000129 if (sub_cmd_obj->WantsRawCommandString())
130 {
131 std::string help_text (sub_cmd_obj->GetHelp());
132 help_text.append (" This command takes 'raw' input (no need to quote stuff).");
133 m_interpreter.OutputFormattedHelpText (output_strm, "", "", help_text.c_str(), 1);
134 }
135 else
136 m_interpreter.OutputFormattedHelpText (output_strm, "", "", sub_cmd_obj->GetHelp(), 1);
Greg Clayton238c0a12010-09-18 01:14:36 +0000137 ((CommandObjectMultiword *) sub_cmd_obj)->GenerateHelpText (result);
Chris Lattner24943d22010-06-08 16:52:24 +0000138 }
139 else
140 {
Greg Clayton63094e02010-06-23 01:19:29 +0000141 const char *long_help = sub_cmd_obj->GetHelpLong();
142 if ((long_help != NULL)
143 && (strlen (long_help) > 0))
Caroline Ticeabb507a2010-09-08 21:06:11 +0000144 output_strm.Printf ("\n%s", long_help);
Caroline Ticefb355112010-10-01 17:46:38 +0000145 else if (sub_cmd_obj->WantsRawCommandString())
146 {
147 std::string help_text (sub_cmd_obj->GetHelp());
148 help_text.append (" This command takes 'raw' input (no need to quote stuff).");
149 m_interpreter.OutputFormattedHelpText (output_strm, "", "", help_text.c_str(), 1);
150 }
Greg Clayton63094e02010-06-23 01:19:29 +0000151 else
Greg Clayton238c0a12010-09-18 01:14:36 +0000152 m_interpreter.OutputFormattedHelpText (output_strm, "", "", sub_cmd_obj->GetHelp(), 1);
Greg Clayton63094e02010-06-23 01:19:29 +0000153 output_strm.Printf ("\nSyntax: %s\n", sub_cmd_obj->GetSyntax());
Johnny Chen8e468592010-10-08 17:21:27 +0000154 // Mark this help command with a success status.
155 result.SetStatus (eReturnStatusSuccessFinishNoResult);
Chris Lattner24943d22010-06-08 16:52:24 +0000156 }
157 }
158 }
Jim Inghamd40f8a62010-07-06 22:46:59 +0000159 else if (matches.GetSize() > 0)
160 {
161 Stream &output_strm = result.GetOutputStream();
162 output_strm.Printf("Help requested with ambiguous command name, possible completions:\n");
Greg Clayton54e7afa2010-07-09 20:39:50 +0000163 const uint32_t match_count = matches.GetSize();
164 for (uint32_t i = 0; i < match_count; i++)
Jim Inghamd40f8a62010-07-06 22:46:59 +0000165 {
166 output_strm.Printf("\t%s\n", matches.GetStringAtIndex(i));
167 }
168 }
Chris Lattner24943d22010-06-08 16:52:24 +0000169 else
170 {
Caroline Ticefb355112010-10-01 17:46:38 +0000171 // Maybe the user is asking for help about a command argument rather than a command.
172 const CommandArgumentType arg_type = CommandObject::LookupArgumentName (command.GetArgumentAtIndex (0));
173 if (arg_type != eArgTypeLastArg)
174 {
175 Stream &output_strm = result.GetOutputStream ();
176 CommandObject::GetArgumentHelp (output_strm, arg_type, m_interpreter);
177 result.SetStatus (eReturnStatusSuccessFinishNoResult);
178 }
179 else
180 {
181 result.AppendErrorWithFormat
182 ("'%s' is not a known command.\nTry 'help' to see a current list of commands.\n",
183 command.GetArgumentAtIndex(0));
184 result.SetStatus (eReturnStatusFailed);
185 }
Chris Lattner24943d22010-06-08 16:52:24 +0000186 }
187 }
Greg Clayton63094e02010-06-23 01:19:29 +0000188
Chris Lattner24943d22010-06-08 16:52:24 +0000189 return result.Succeeded();
190}
191
192int
193CommandObjectHelp::HandleCompletion
194(
195 Args &input,
196 int &cursor_index,
197 int &cursor_char_position,
198 int match_start_point,
199 int max_return_elements,
Jim Ingham802f8b02010-06-30 05:02:46 +0000200 bool &word_complete,
Chris Lattner24943d22010-06-08 16:52:24 +0000201 StringList &matches
202)
203{
204 // Return the completions of the commands in the help system:
205 if (cursor_index == 0)
206 {
Greg Clayton238c0a12010-09-18 01:14:36 +0000207 return m_interpreter.HandleCompletionMatches (input,
208 cursor_index,
209 cursor_char_position,
210 match_start_point,
211 max_return_elements,
212 word_complete,
213 matches);
Chris Lattner24943d22010-06-08 16:52:24 +0000214 }
215 else
216 {
Greg Clayton238c0a12010-09-18 01:14:36 +0000217 CommandObject *cmd_obj = m_interpreter.GetCommandObject (input.GetArgumentAtIndex(0));
Chris Lattner24943d22010-06-08 16:52:24 +0000218 input.Shift();
219 cursor_index--;
Greg Clayton238c0a12010-09-18 01:14:36 +0000220 return cmd_obj->HandleCompletion (input,
221 cursor_index,
222 cursor_char_position,
223 match_start_point,
224 max_return_elements,
225 word_complete,
226 matches);
Chris Lattner24943d22010-06-08 16:52:24 +0000227 }
228}