xref: /llvm-project/lldb/source/Commands/CommandObjectApropos.cpp (revision c7bece56faa5eef1c3d141d0c0b0b68b28a9aed2)
1 //===-- 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 
10 #include "lldb/lldb-python.h"
11 
12 #include "CommandObjectApropos.h"
13 
14 // C Includes
15 // C++ Includes
16 // Other libraries and framework includes
17 // Project includes
18 #include "lldb/Interpreter/Args.h"
19 #include "lldb/Interpreter/Options.h"
20 
21 #include "lldb/Interpreter/CommandInterpreter.h"
22 #include "lldb/Interpreter/CommandReturnObject.h"
23 
24 using namespace lldb;
25 using namespace lldb_private;
26 
27 //-------------------------------------------------------------------------
28 // CommandObjectApropos
29 //-------------------------------------------------------------------------
30 
31 CommandObjectApropos::CommandObjectApropos (CommandInterpreter &interpreter) :
32     CommandObjectParsed (interpreter,
33                          "apropos",
34                          "Find a list of debugger commands related to a particular word/subject.",
35                          NULL)
36 {
37     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);
49 }
50 
51 CommandObjectApropos::~CommandObjectApropos()
52 {
53 }
54 
55 
56 bool
57 CommandObjectApropos::DoExecute (Args& args, CommandReturnObject &result)
58 {
59     const size_t argc = args.GetArgumentCount ();
60 
61     if (argc == 1)
62     {
63         const char *search_word = args.GetArgumentAtIndex(0);
64         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;
71             m_interpreter.FindCommandsForApropos (search_word, commands_found, commands_help);
72             if (commands_found.GetSize() == 0)
73             {
74                 result.AppendMessageWithFormat ("No commands found pertaining to '%s'. Try 'help' to see a complete list of debugger commands.\n", search_word);
75             }
76             else
77             {
78                 result.AppendMessageWithFormat ("The following commands may relate to '%s':\n", search_word);
79                 size_t max_len = 0;
80 
81                 for (size_t i = 0; i < commands_found.GetSize(); ++i)
82                 {
83                     size_t len = strlen (commands_found.GetStringAtIndex (i));
84                     if (len > max_len)
85                         max_len = len;
86                 }
87 
88                 for (size_t i = 0; i < commands_found.GetSize(); ++i)
89                     m_interpreter.OutputFormattedHelpText (result.GetOutputStream(),
90                                                            commands_found.GetStringAtIndex(i),
91                                                            "--",
92                                                            commands_help.GetStringAtIndex(i),
93                                                            max_len);
94 
95             }
96 
97 
98             std::vector<const Property *> properties;
99             const size_t num_properties = m_interpreter.GetDebugger().Apropos(search_word, properties);
100             if (num_properties)
101             {
102                 const bool dump_qualified_name = true;
103                 result.AppendMessageWithFormat ("\nThe following settings variables may relate to '%s': \n\n", search_word);
104                 for (size_t i=0; i<num_properties; ++i)
105                     properties[i]->DumpDescription (m_interpreter, result.GetOutputStream(), 0, dump_qualified_name);
106 
107             }
108 
109             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 }
125