blob: c493d4fb6d7f337e0290fb142d781abedb300f28 [file] [log] [blame]
Chris Lattner24943d22010-06-08 16:52:24 +00001//===-- CommandObjectApropos.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 Malead891f9b2012-12-05 00:20:57 +000010#include "lldb/lldb-python.h"
11
Chris Lattner24943d22010-06-08 16:52:24 +000012#include "CommandObjectApropos.h"
13
14// C Includes
15// C++ Includes
16// Other libraries and framework includes
17// Project includes
Jim Ingham84cdc152010-06-15 19:49:27 +000018#include "lldb/Interpreter/Args.h"
19#include "lldb/Interpreter/Options.h"
Chris Lattner24943d22010-06-08 16:52:24 +000020
21#include "lldb/Interpreter/CommandInterpreter.h"
22#include "lldb/Interpreter/CommandReturnObject.h"
Chris Lattner24943d22010-06-08 16:52:24 +000023
24using namespace lldb;
25using namespace lldb_private;
26
27//-------------------------------------------------------------------------
28// CommandObjectApropos
29//-------------------------------------------------------------------------
30
Greg Clayton238c0a12010-09-18 01:14:36 +000031CommandObjectApropos::CommandObjectApropos (CommandInterpreter &interpreter) :
Jim Inghamda26bd22012-06-08 21:56:10 +000032 CommandObjectParsed (interpreter,
33 "apropos",
34 "Find a list of debugger commands related to a particular word/subject.",
35 NULL)
Chris Lattner24943d22010-06-08 16:52:24 +000036{
Caroline Tice43b014a2010-10-04 22:28:36 +000037 CommandArgumentEntry arg;
38 CommandArgumentData search_word_arg;
39
40 // Define the first (and only) variant of this arg.
41 search_word_arg.arg_type = eArgTypeSearchWord;
42 search_word_arg.arg_repetition = eArgRepeatPlain;
43
44 // There is only one variant this argument could be; put it into the argument entry.
45 arg.push_back (search_word_arg);
46
47 // Push the data for the first argument into the m_arguments vector.
48 m_arguments.push_back (arg);
Chris Lattner24943d22010-06-08 16:52:24 +000049}
50
51CommandObjectApropos::~CommandObjectApropos()
52{
53}
54
55
56bool
Jim Inghamda26bd22012-06-08 21:56:10 +000057CommandObjectApropos::DoExecute (Args& args, CommandReturnObject &result)
Chris Lattner24943d22010-06-08 16:52:24 +000058{
Greg Clayton63094e02010-06-23 01:19:29 +000059 const int argc = args.GetArgumentCount ();
Chris Lattner24943d22010-06-08 16:52:24 +000060
61 if (argc == 1)
62 {
Greg Clayton63094e02010-06-23 01:19:29 +000063 const char *search_word = args.GetArgumentAtIndex(0);
Chris Lattner24943d22010-06-08 16:52:24 +000064 if ((search_word != NULL)
65 && (strlen (search_word) > 0))
66 {
67 // The bulk of the work must be done inside the Command Interpreter, since the command dictionary
68 // is private.
69 StringList commands_found;
70 StringList commands_help;
Greg Clayton238c0a12010-09-18 01:14:36 +000071 m_interpreter.FindCommandsForApropos (search_word, commands_found, commands_help);
Chris Lattner24943d22010-06-08 16:52:24 +000072 if (commands_found.GetSize() == 0)
73 {
Greg Clayton02c20f12010-11-02 18:23:13 +000074 result.AppendMessageWithFormat ("No commands found pertaining to '%s'. Try 'help' to see a complete list of debugger commands.\n", search_word);
Chris Lattner24943d22010-06-08 16:52:24 +000075 }
76 else
77 {
78 result.AppendMessageWithFormat ("The following commands may relate to '%s':\n", search_word);
79 size_t max_len = 0;
80
Greg Clayton54e7afa2010-07-09 20:39:50 +000081 for (size_t i = 0; i < commands_found.GetSize(); ++i)
Chris Lattner24943d22010-06-08 16:52:24 +000082 {
Greg Clayton54e7afa2010-07-09 20:39:50 +000083 size_t len = strlen (commands_found.GetStringAtIndex (i));
Chris Lattner24943d22010-06-08 16:52:24 +000084 if (len > max_len)
85 max_len = len;
86 }
87
Greg Clayton54e7afa2010-07-09 20:39:50 +000088 for (size_t i = 0; i < commands_found.GetSize(); ++i)
Greg Clayton238c0a12010-09-18 01:14:36 +000089 m_interpreter.OutputFormattedHelpText (result.GetOutputStream(),
90 commands_found.GetStringAtIndex(i),
Greg Clayton73844aa2012-08-22 17:17:09 +000091 "--",
92 commands_help.GetStringAtIndex(i),
Greg Clayton238c0a12010-09-18 01:14:36 +000093 max_len);
94
Chris Lattner24943d22010-06-08 16:52:24 +000095 }
Caroline Ticea04acd82011-02-04 00:16:49 +000096
97
Greg Clayton73844aa2012-08-22 17:17:09 +000098 std::vector<const Property *> properties;
99 const size_t num_properties = m_interpreter.GetDebugger().Apropos(search_word, properties);
100 if (num_properties)
Caroline Ticea04acd82011-02-04 00:16:49 +0000101 {
Greg Clayton73844aa2012-08-22 17:17:09 +0000102 const bool dump_qualified_name = true;
Caroline Ticea04acd82011-02-04 00:16:49 +0000103 result.AppendMessageWithFormat ("\nThe following settings variables may relate to '%s': \n\n", search_word);
Greg Clayton73844aa2012-08-22 17:17:09 +0000104 for (size_t i=0; i<num_properties; ++i)
105 properties[i]->DumpDescription (m_interpreter, result.GetOutputStream(), 0, dump_qualified_name);
106
Caroline Ticea04acd82011-02-04 00:16:49 +0000107 }
108
Chris Lattner24943d22010-06-08 16:52:24 +0000109 result.SetStatus (eReturnStatusSuccessFinishNoResult);
110 }
111 else
112 {
113 result.AppendError ("'' is not a valid search word.\n");
114 result.SetStatus (eReturnStatusFailed);
115 }
116 }
117 else
118 {
119 result.AppendError ("'apropos' must be called with exactly one argument.\n");
120 result.SetStatus (eReturnStatusFailed);
121 }
122
123 return result.Succeeded();
124}