Coverage Report

Created: 2023-09-21 18:56

/Users/buildslave/jenkins/workspace/coverage/llvm-project/lldb/include/lldb/Interpreter/CommandObject.h
Line
Count
Source (jump to first uncovered line)
1
//===-- CommandObject.h -----------------------------------------*- C++ -*-===//
2
//
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
// See https://llvm.org/LICENSE.txt for license information.
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
//
7
//===----------------------------------------------------------------------===//
8
9
#ifndef LLDB_INTERPRETER_COMMANDOBJECT_H
10
#define LLDB_INTERPRETER_COMMANDOBJECT_H
11
12
#include <map>
13
#include <memory>
14
#include <optional>
15
#include <string>
16
#include <vector>
17
18
#include "lldb/Utility/Flags.h"
19
20
#include "lldb/Interpreter/CommandCompletions.h"
21
#include "lldb/Interpreter/Options.h"
22
#include "lldb/Target/ExecutionContext.h"
23
#include "lldb/Utility/Args.h"
24
#include "lldb/Utility/CompletionRequest.h"
25
#include "lldb/Utility/StringList.h"
26
#include "lldb/lldb-private.h"
27
28
namespace lldb_private {
29
30
// This function really deals with CommandObjectLists, but we didn't make a
31
// CommandObjectList class, so I'm sticking it here.  But we really should have
32
// such a class.  Anyway, it looks up the commands in the map that match the
33
// partial string cmd_str, inserts the matches into matches, and returns the
34
// number added.
35
36
template <typename ValueType>
37
int AddNamesMatchingPartialString(
38
    const std::map<std::string, ValueType> &in_map, llvm::StringRef cmd_str,
39
77.9k
    StringList &matches, StringList *descriptions = nullptr) {
40
77.9k
  int number_added = 0;
41
42
77.9k
  const bool add_all = cmd_str.empty();
43
44
4.11M
  for (auto iter = in_map.begin(), end = in_map.end(); iter != end; 
iter++4.03M
) {
45
4.03M
    if (add_all || 
(iter->first.find(std::string(cmd_str), 0) == 0)4.03M
) {
46
1.78k
      ++number_added;
47
1.78k
      matches.AppendString(iter->first.c_str());
48
1.78k
      if (descriptions)
49
134
        descriptions->AppendString(iter->second->GetHelp());
50
1.78k
    }
51
4.03M
  }
52
53
77.9k
  return number_added;
54
77.9k
}
55
56
template <typename ValueType>
57
50
size_t FindLongestCommandWord(std::map<std::string, ValueType> &dict) {
58
50
  auto end = dict.end();
59
50
  size_t max_len = 0;
60
61
1.21k
  for (auto pos = dict.begin(); pos != end; 
++pos1.16k
) {
62
1.16k
    size_t len = pos->first.size();
63
1.16k
    if (max_len < len)
64
97
      max_len = len;
65
1.16k
  }
66
50
  return max_len;
67
50
}
68
69
class CommandObject : public std::enable_shared_from_this<CommandObject> {
70
public:
71
  typedef llvm::StringRef(ArgumentHelpCallbackFunction)();
72
73
  struct ArgumentHelpCallback {
74
    ArgumentHelpCallbackFunction *help_callback;
75
    bool self_formatting;
76
77
2
    llvm::StringRef operator()() const { return (*help_callback)(); }
78
79
6
    explicit operator bool() const { return (help_callback != nullptr); }
80
  };
81
82
  /// Entries in the main argument information table.
83
  struct ArgumentTableEntry {
84
    lldb::CommandArgumentType arg_type;
85
    const char *arg_name;
86
    lldb::CompletionType completion_type;
87
    OptionEnumValues enum_values;
88
    ArgumentHelpCallback help_function;
89
    const char *help_text;
90
  };
91
92
  /// Used to build individual command argument lists.
93
  struct CommandArgumentData {
94
    lldb::CommandArgumentType arg_type;
95
    ArgumentRepetitionType arg_repetition;
96
    /// This arg might be associated only with some particular option set(s). By
97
    /// default the arg associates to all option sets.
98
    uint32_t arg_opt_set_association;
99
100
    CommandArgumentData(lldb::CommandArgumentType type = lldb::eArgTypeNone,
101
                        ArgumentRepetitionType repetition = eArgRepeatPlain,
102
                        uint32_t opt_set = LLDB_OPT_SET_ALL)
103
1.23M
        : arg_type(type), arg_repetition(repetition),
104
1.23M
          arg_opt_set_association(opt_set) {}
105
  };
106
107
  typedef std::vector<CommandArgumentData>
108
      CommandArgumentEntry; // Used to build individual command argument lists
109
110
  typedef std::map<std::string, lldb::CommandObjectSP> CommandMap;
111
112
  CommandObject(CommandInterpreter &interpreter, llvm::StringRef name,
113
    llvm::StringRef help = "", llvm::StringRef syntax = "",
114
                uint32_t flags = 0);
115
116
2.11M
  virtual ~CommandObject() = default;
117
118
  static const char *
119
  GetArgumentTypeAsCString(const lldb::CommandArgumentType arg_type);
120
121
  static const char *
122
  GetArgumentDescriptionAsCString(const lldb::CommandArgumentType arg_type);
123
124
3.63M
  CommandInterpreter &GetCommandInterpreter() { return m_interpreter; }
125
  Debugger &GetDebugger();
126
127
  virtual llvm::StringRef GetHelp();
128
129
  virtual llvm::StringRef GetHelpLong();
130
131
  virtual llvm::StringRef GetSyntax();
132
133
  llvm::StringRef GetCommandName() const;
134
135
  virtual void SetHelp(llvm::StringRef str);
136
137
  virtual void SetHelpLong(llvm::StringRef str);
138
139
  void SetSyntax(llvm::StringRef str);
140
141
  // override this to return true if you want to enable the user to delete the
142
  // Command object from the Command dictionary (aliases have their own
143
  // deletion scheme, so they do not need to care about this)
144
9
  virtual bool IsRemovable() const { return false; }
145
146
82.5k
  virtual bool IsMultiwordObject() { return false; }
147
148
67
  bool IsUserCommand() { return m_is_user_command; }
149
150
113
  void SetIsUserCommand(bool is_user) { m_is_user_command = is_user; }
151
152
2.04k
  virtual CommandObjectMultiword *GetAsMultiwordCommand() { return nullptr; }
153
154
19.9k
  virtual bool IsAlias() { return false; }
155
156
  // override this to return true if your command is somehow a "dash-dash" form
157
  // of some other command (e.g. po is expr -O --); this is a powerful hint to
158
  // the help system that one cannot pass options to this command
159
1.98k
  virtual bool IsDashDashCommand() { return false; }
160
161
  virtual lldb::CommandObjectSP GetSubcommandSP(llvm::StringRef sub_cmd,
162
0
                                                StringList *matches = nullptr) {
163
0
    return lldb::CommandObjectSP();
164
0
  }
165
166
0
  virtual lldb::CommandObjectSP GetSubcommandSPExact(llvm::StringRef sub_cmd) {
167
0
    return lldb::CommandObjectSP();
168
0
  }
169
170
  virtual CommandObject *GetSubcommandObject(llvm::StringRef sub_cmd,
171
0
                                             StringList *matches = nullptr) {
172
0
    return nullptr;
173
0
  }
174
175
  void FormatLongHelpText(Stream &output_strm, llvm::StringRef long_help);
176
177
  void GenerateHelpText(CommandReturnObject &result);
178
179
  virtual void GenerateHelpText(Stream &result);
180
181
  // this is needed in order to allow the SBCommand class to transparently try
182
  // and load subcommands - it will fail on anything but a multiword command,
183
  // but it avoids us doing type checkings and casts
184
  virtual bool LoadSubCommand(llvm::StringRef cmd_name,
185
0
                              const lldb::CommandObjectSP &command_obj) {
186
0
    return false;
187
0
  }
188
189
  virtual llvm::Error LoadUserSubcommand(llvm::StringRef cmd_name,
190
                                         const lldb::CommandObjectSP &command_obj,
191
0
                                         bool can_replace) {
192
0
    return llvm::createStringError(llvm::inconvertibleErrorCode(),
193
0
                              "can only add commands to container commands");
194
0
  }
195
196
  virtual bool WantsRawCommandString() = 0;
197
198
  // By default, WantsCompletion = !WantsRawCommandString. Subclasses who want
199
  // raw command string but desire, for example, argument completion should
200
  // override this method to return true.
201
0
  virtual bool WantsCompletion() { return !WantsRawCommandString(); }
202
203
  virtual Options *GetOptions();
204
205
  static lldb::CommandArgumentType LookupArgumentName(llvm::StringRef arg_name);
206
207
  static const ArgumentTableEntry *
208
  FindArgumentDataByType(lldb::CommandArgumentType arg_type);
209
210
  int GetNumArgumentEntries();
211
212
  CommandArgumentEntry *GetArgumentEntryAtIndex(int idx);
213
214
  static void GetArgumentHelp(Stream &str, lldb::CommandArgumentType arg_type,
215
                              CommandInterpreter &interpreter);
216
217
  static const char *GetArgumentName(lldb::CommandArgumentType arg_type);
218
219
  // Generates a nicely formatted command args string for help command output.
220
  // By default, all possible args are taken into account, for example, '<expr
221
  // | variable-name>'.  This can be refined by passing a second arg specifying
222
  // which option set(s) we are interested, which could then, for example,
223
  // produce either '<expr>' or '<variable-name>'.
224
  void GetFormattedCommandArguments(Stream &str,
225
                                    uint32_t opt_set_mask = LLDB_OPT_SET_ALL);
226
227
  bool IsPairType(ArgumentRepetitionType arg_repeat_type);
228
229
  bool ParseOptions(Args &args, CommandReturnObject &result);
230
231
  void SetCommandName(llvm::StringRef name);
232
233
  /// This default version handles calling option argument completions and then
234
  /// calls HandleArgumentCompletion if the cursor is on an argument, not an
235
  /// option. Don't override this method, override HandleArgumentCompletion
236
  /// instead unless you have special reasons.
237
  ///
238
  /// \param[in,out] request
239
  ///    The completion request that needs to be answered.
240
  virtual void HandleCompletion(CompletionRequest &request);
241
242
  /// The input array contains a parsed version of the line.
243
  ///
244
  /// We've constructed the map of options and their arguments as well if that
245
  /// is helpful for the completion.
246
  ///
247
  /// \param[in,out] request
248
  ///    The completion request that needs to be answered.
249
  virtual void
250
  HandleArgumentCompletion(CompletionRequest &request,
251
0
                           OptionElementVector &opt_element_vector) {}
252
253
  bool HelpTextContainsWord(llvm::StringRef search_word,
254
                            bool search_short_help = true,
255
                            bool search_long_help = true,
256
                            bool search_syntax = true,
257
                            bool search_options = true);
258
259
  /// The flags accessor.
260
  ///
261
  /// \return
262
  ///     A reference to the Flags member variable.
263
247k
  Flags &GetFlags() { return m_flags; }
264
265
  /// The flags const accessor.
266
  ///
267
  /// \return
268
  ///     A const reference to the Flags member variable.
269
0
  const Flags &GetFlags() const { return m_flags; }
270
271
  /// Get the command that appropriate for a "repeat" of the current command.
272
  ///
273
  /// \param[in] current_command_args
274
  ///    The command arguments.
275
  ///
276
  /// \return
277
  ///     std::nullopt if there is no special repeat command - it will use the
278
  ///     current command line.
279
  ///     Otherwise a std::string containing the command to be repeated.
280
  ///     If the string is empty, the command won't be allow repeating.
281
  virtual std::optional<std::string>
282
1.06k
  GetRepeatCommand(Args &current_command_args, uint32_t index) {
283
1.06k
    return std::nullopt;
284
1.06k
  }
285
286
82.3k
  bool HasOverrideCallback() const {
287
82.3k
    return m_command_override_callback ||
288
82.3k
           m_deprecated_command_override_callback;
289
82.3k
  }
290
291
  void SetOverrideCallback(lldb::CommandOverrideCallback callback,
292
0
                           void *baton) {
293
0
    m_deprecated_command_override_callback = callback;
294
0
    m_command_override_baton = baton;
295
0
  }
296
297
  void
298
  SetOverrideCallback(lldb_private::CommandOverrideCallbackWithResult callback,
299
0
                      void *baton) {
300
0
    m_command_override_callback = callback;
301
0
    m_command_override_baton = baton;
302
0
  }
303
304
0
  bool InvokeOverrideCallback(const char **argv, CommandReturnObject &result) {
305
0
    if (m_command_override_callback)
306
0
      return m_command_override_callback(m_command_override_baton, argv,
307
0
                                         result);
308
0
    else if (m_deprecated_command_override_callback)
309
0
      return m_deprecated_command_override_callback(m_command_override_baton,
310
0
                                                    argv);
311
0
    else
312
0
      return false;
313
0
  }
314
315
  virtual bool Execute(const char *args_string,
316
                       CommandReturnObject &result) = 0;
317
318
protected:
319
  bool ParseOptionsAndNotify(Args &args, CommandReturnObject &result,
320
                             OptionGroupOptions &group_options,
321
                             ExecutionContext &exe_ctx);
322
323
8
  virtual const char *GetInvalidTargetDescription() {
324
8
    return "invalid target, create a target using the 'target create' command";
325
8
  }
326
327
0
  virtual const char *GetInvalidProcessDescription() {
328
0
    return "Command requires a current process.";
329
0
  }
330
331
1
  virtual const char *GetInvalidThreadDescription() {
332
1
    return "Command requires a process which is currently stopped.";
333
1
  }
334
335
0
  virtual const char *GetInvalidFrameDescription() {
336
0
    return "Command requires a process, which is currently stopped.";
337
0
  }
338
339
0
  virtual const char *GetInvalidRegContextDescription() {
340
0
    return "invalid frame, no registers, command requires a process which is "
341
0
           "currently stopped.";
342
0
  }
343
344
  // This is for use in the command interpreter, when you either want the
345
  // selected target, or if no target is present you want to prime the dummy
346
  // target with entities that will be copied over to new targets.
347
  Target &GetSelectedOrDummyTarget(bool prefer_dummy = false);
348
  Target &GetSelectedTarget();
349
  Target &GetDummyTarget();
350
351
  // If a command needs to use the "current" thread, use this call. Command
352
  // objects will have an ExecutionContext to use, and that may or may not have
353
  // a thread in it.  If it does, you should use that by default, if not, then
354
  // use the ExecutionContext's target's selected thread, etc... This call
355
  // insulates you from the details of this calculation.
356
  Thread *GetDefaultThread();
357
358
  /// Check the command to make sure anything required by this
359
  /// command is available.
360
  ///
361
  /// \param[out] result
362
  ///     A command result object, if it is not okay to run the command
363
  ///     this will be filled in with a suitable error.
364
  ///
365
  /// \return
366
  ///     \b true if it is okay to run this command, \b false otherwise.
367
  bool CheckRequirements(CommandReturnObject &result);
368
369
  void Cleanup();
370
371
  CommandInterpreter &m_interpreter;
372
  ExecutionContext m_exe_ctx;
373
  std::unique_lock<std::recursive_mutex> m_api_locker;
374
  std::string m_cmd_name;
375
  std::string m_cmd_help_short;
376
  std::string m_cmd_help_long;
377
  std::string m_cmd_syntax;
378
  Flags m_flags;
379
  std::vector<CommandArgumentEntry> m_arguments;
380
  lldb::CommandOverrideCallback m_deprecated_command_override_callback;
381
  lldb_private::CommandOverrideCallbackWithResult m_command_override_callback;
382
  void *m_command_override_baton;
383
  bool m_is_user_command = false;
384
385
  // Helper function to populate IDs or ID ranges as the command argument data
386
  // to the specified command argument entry.
387
  static void AddIDsArgumentData(CommandArgumentEntry &arg,
388
                                 lldb::CommandArgumentType ID,
389
                                 lldb::CommandArgumentType IDRange);
390
};
391
392
class CommandObjectParsed : public CommandObject {
393
public:
394
  CommandObjectParsed(CommandInterpreter &interpreter, const char *name,
395
                      const char *help = nullptr, const char *syntax = nullptr,
396
                      uint32_t flags = 0)
397
1.26M
      : CommandObject(interpreter, name, help, syntax, flags) {}
398
399
1.25M
  ~CommandObjectParsed() override = default;
400
401
  bool Execute(const char *args_string, CommandReturnObject &result) override;
402
403
protected:
404
  virtual bool DoExecute(Args &command, CommandReturnObject &result) = 0;
405
406
129k
  bool WantsRawCommandString() override { return false; }
407
};
408
409
class CommandObjectRaw : public CommandObject {
410
public:
411
  CommandObjectRaw(CommandInterpreter &interpreter, llvm::StringRef name,
412
    llvm::StringRef help = "", llvm::StringRef syntax = "",
413
                   uint32_t flags = 0)
414
182k
      : CommandObject(interpreter, name, help, syntax, flags) {}
415
416
182k
  ~CommandObjectRaw() override = default;
417
418
  bool Execute(const char *args_string, CommandReturnObject &result) override;
419
420
protected:
421
  virtual bool DoExecute(llvm::StringRef command,
422
                         CommandReturnObject &result) = 0;
423
424
104k
  bool WantsRawCommandString() override { return true; }
425
};
426
427
} // namespace lldb_private
428
429
#endif // LLDB_INTERPRETER_COMMANDOBJECT_H