9#include "llvm/ADT/STLExtras.h" 
   10#include "llvm/ADT/SmallString.h" 
   11#include "llvm/ADT/StringRef.h" 
   12#include "llvm/ADT/StringSet.h" 
   35#include "llvm/Support/FileSystem.h" 
   36#include "llvm/Support/Path.h" 
   98    else if ((common_completions[i].type & completion_mask) ==
 
   99                 common_completions[i].type &&
 
  100             common_completions[i].callback != 
nullptr) {
 
  102      common_completions[i].
callback(interpreter, request, searcher);
 
 
  114      : m_interpreter(interpreter), m_request(request) {}
 
  116  ~Completer() 
override = 
default;
 
  130  Completer(
const Completer &) = 
delete;
 
  131  const Completer &operator=(
const Completer &) = 
delete;
 
  137class SourceFileCompleter : 
public Completer {
 
  139  SourceFileCompleter(CommandInterpreter &interpreter,
 
  140                      CompletionRequest &request)
 
  141      : Completer(interpreter, request) {
 
  142    FileSpec partial_spec(m_request.GetCursorArgumentPrefix());
 
  143    m_file_name = partial_spec.GetFilename().GetCString();
 
  144    m_dir_name = partial_spec.GetDirectory().GetCString();
 
  150                                          SymbolContext &context,
 
  151                                          Address *addr)
 override {
 
  153      const char *cur_file_name =
 
  155      const char *cur_dir_name =
 
  159      if (m_file_name && cur_file_name &&
 
  160          strstr(cur_file_name, m_file_name) == cur_file_name)
 
  163      if (match && m_dir_name && cur_dir_name &&
 
  164          strstr(cur_dir_name, m_dir_name) != cur_dir_name)
 
  171    return m_matching_files.GetSize() >= m_request.GetMaxNumberOfCompletionsToAdd()
 
  176  void DoCompletion(SearchFilter *filter)
 override {
 
  179    for (
size_t i = 0; i < m_matching_files.GetSize(); i++) {
 
  180      m_request.AddCompletion(
 
  181          m_matching_files.GetFileSpecAtIndex(i).GetFilename().GetCString());
 
  186  FileSpecList m_matching_files;
 
  187  const char *m_file_name;
 
  188  const char *m_dir_name;
 
  190  SourceFileCompleter(
const SourceFileCompleter &) = 
delete;
 
  191  const SourceFileCompleter &operator=(
const SourceFileCompleter &) = 
delete;
 
  196  return llvm::StringRef(
"[](){}+.*|^$\\?").contains(comp);
 
 
  200class SymbolCompleter : 
public Completer {
 
  203  SymbolCompleter(CommandInterpreter &interpreter, CompletionRequest &request)
 
  204      : Completer(interpreter, request) {
 
  205    std::string regex_str;
 
  206    if (!m_request.GetCursorArgumentPrefix().empty()) {
 
  207      regex_str.append(
"^");
 
  208      regex_str.append(std::string(m_request.GetCursorArgumentPrefix()));
 
  211      regex_str.append(
".");
 
  213    std::string::iterator pos =
 
  214        find_if(regex_str.begin() + 1, regex_str.end(), 
regex_chars);
 
  215    while (pos < regex_str.end()) {
 
  216      pos = regex_str.insert(pos, 
'\\');
 
  217      pos = find_if(pos + 2, regex_str.end(), regex_chars);
 
  225                                          SymbolContext &context,
 
  226                                          Address *addr)
 override {
 
  228      SymbolContextList sc_list;
 
  229      ModuleFunctionSearchOptions function_options;
 
  232      context.
module_sp->FindFunctions(m_regex, function_options, sc_list);
 
  235      for (
const SymbolContext &sc : sc_list) {
 
  236        if (m_match_set.size() >= m_request.GetMaxNumberOfCompletionsToAdd())
 
  245          m_match_set.insert(func_name);
 
  248    return m_match_set.size() >= m_request.GetMaxNumberOfCompletionsToAdd()
 
  253  void DoCompletion(SearchFilter *filter)
 override {
 
  255    collection::iterator pos = m_match_set.begin(), end = m_match_set.end();
 
  256    for (pos = m_match_set.begin(); pos != end; pos++)
 
  257      m_request.AddCompletion((*pos).GetCString());
 
  262  typedef std::set<ConstString> collection;
 
  263  collection m_match_set;
 
  265  SymbolCompleter(
const SymbolCompleter &) = 
delete;
 
  266  const SymbolCompleter &operator=(
const SymbolCompleter &) = 
delete;
 
  271class ModuleCompleter : 
public Completer {
 
  273  ModuleCompleter(CommandInterpreter &interpreter, CompletionRequest &request)
 
  274      : Completer(interpreter, request) {
 
  275    llvm::StringRef request_str = m_request.GetCursorArgumentPrefix();
 
  282    m_spelled_path = request_str;
 
  283    m_canonical_path = FileSpec(m_spelled_path).GetPath();
 
  284    if (!m_spelled_path.empty() &&
 
  285        llvm::sys::path::is_separator(m_spelled_path.back()) &&
 
  286        !llvm::StringRef(m_canonical_path).ends_with(m_spelled_path.back())) {
 
  287      m_canonical_path += m_spelled_path.back();
 
  290    if (llvm::find_if(request_str, [](
char c) {
 
  291          return llvm::sys::path::is_separator(c);
 
  292        }) == request_str.end())
 
  293      m_file_name = request_str;
 
  299                                          SymbolContext &context,
 
  300                                          Address *addr)
 override {
 
  303      std::string cur_path = context.
module_sp->GetFileSpec().GetPath();
 
  304      llvm::StringRef cur_path_view = cur_path;
 
  305      if (cur_path_view.consume_front(m_canonical_path))
 
  306        m_request.AddCompletion((m_spelled_path + cur_path_view).str());
 
  310        llvm::StringRef cur_file_name =
 
  311            context.
module_sp->GetFileSpec().GetFilename().GetStringRef();
 
  312        if (cur_file_name.starts_with(*m_file_name))
 
  313          m_request.AddCompletion(cur_file_name);
 
  320  void DoCompletion(SearchFilter *filter)
 override { filter->
Search(*
this); }
 
  323  std::optional<llvm::StringRef> m_file_name;
 
  324  llvm::StringRef m_spelled_path;
 
  325  std::string m_canonical_path;
 
  327  ModuleCompleter(
const ModuleCompleter &) = 
delete;
 
  328  const ModuleCompleter &operator=(
const ModuleCompleter &) = 
delete;
 
  335  SourceFileCompleter completer(interpreter, request);
 
  337  if (searcher == 
nullptr) {
 
  340    completer.DoCompletion(&null_searcher);
 
  342    completer.DoCompletion(searcher);
 
 
  347                                   bool only_directories,
 
  350  llvm::SmallString<256> CompletionBuffer;
 
  351  llvm::SmallString<256> Storage;
 
  352  partial_name.toVector(CompletionBuffer);
 
  354  if (CompletionBuffer.size() >= 
PATH_MAX)
 
  357  namespace path = llvm::sys::path;
 
  359  llvm::StringRef SearchDir;
 
  360  llvm::StringRef PartialItem;
 
  362  if (CompletionBuffer.starts_with(
"~")) {
 
  363    llvm::StringRef Buffer = CompletionBuffer;
 
  365        Buffer.find_if([](
char c) { 
return path::is_separator(c); });
 
  367    llvm::StringRef Username = Buffer.take_front(FirstSep);
 
  368    llvm::StringRef Remainder;
 
  369    if (FirstSep != llvm::StringRef::npos)
 
  370      Remainder = Buffer.drop_front(FirstSep + 1);
 
  372    llvm::SmallString<256> Resolved;
 
  377      if (FirstSep == llvm::StringRef::npos) {
 
  378        llvm::StringSet<> MatchSet;
 
  380        for (
const auto &S : MatchSet) {
 
  381          Resolved = S.getKey();
 
  382          path::append(Resolved, path::get_separator());
 
  392    if (FirstSep == llvm::StringRef::npos) {
 
  394      path::append(CompletionBuffer, path::get_separator());
 
  403    llvm::StringRef RemainderDir = path::parent_path(Remainder);
 
  404    if (!RemainderDir.empty()) {
 
  406      Storage.append(path::get_separator());
 
  407      Storage.append(RemainderDir);
 
  410  } 
else if (CompletionBuffer == path::root_directory(CompletionBuffer)) {
 
  411    SearchDir = CompletionBuffer;
 
  413    SearchDir = path::parent_path(CompletionBuffer);
 
  416  size_t FullPrefixLen = CompletionBuffer.size();
 
  418  PartialItem = path::filename(CompletionBuffer);
 
  424  if ((PartialItem == 
"." || PartialItem == path::get_separator()) &&
 
  425      path::is_separator(CompletionBuffer.back()))
 
  426    PartialItem = llvm::StringRef();
 
  428  if (SearchDir.empty()) {
 
  429    llvm::sys::fs::current_path(Storage);
 
  432  assert(!PartialItem.contains(path::get_separator()));
 
  439  llvm::vfs::directory_iterator Iter = fs.
DirBegin(SearchDir, EC);
 
  440  llvm::vfs::directory_iterator End;
 
  442       Iter.increment(EC)) {
 
  449    auto Name = path::filename(
Entry.path());
 
  452    if (Name == 
"." || Name == 
".." || !Name.starts_with(PartialItem))
 
  455    bool is_dir = 
Status->isDirectory();
 
  459    if (
Status->isSymlink()) {
 
  467    if (only_directories && !is_dir)
 
  473    CompletionBuffer.resize(FullPrefixLen);
 
  474    Name = Name.drop_front(PartialItem.size());
 
  475    CompletionBuffer.append(Name);
 
  478      path::append(CompletionBuffer, path::get_separator());
 
 
  491  std::string partial_name_str = partial_name.str();
 
 
  498                                   bool only_directories) {
 
 
  534    platform_sp->AutoCompleteDiskFileOrDirectory(request, 
false);
 
 
  543    platform_sp->AutoCompleteDiskFileOrDirectory(request, 
true);
 
 
  549  ModuleCompleter completer(interpreter, request);
 
  551  if (searcher == 
nullptr) {
 
  554    completer.DoCompletion(&null_searcher);
 
  556    completer.DoCompletion(searcher);
 
 
  570        module->GetDescription(strm.AsRawOstream(),
 
  571                               lldb::eDescriptionLevelInitial);
 
 
  581  SymbolCompleter completer(interpreter, request);
 
  583  if (searcher == 
nullptr) {
 
  586    completer.DoCompletion(&null_searcher);
 
  588    completer.DoCompletion(searcher);
 
 
  597  if (g_property_names.
GetSize() == 0) {
 
  604      const std::string &str = std::string(strm.
GetString());
 
  609  for (
const std::string &s : g_property_names)
 
 
  635  std::string reg_prefix;
 
  645  for (
size_t reg_idx = 0; reg_idx < reg_num; ++reg_idx) {
 
 
  661  std::unique_lock<std::recursive_mutex> lock;
 
  664  size_t num_breakpoints = breakpoints.
GetSize();
 
  665  if (num_breakpoints == 0)
 
  668  for (
size_t i = 0; i < num_breakpoints; ++i) {
 
  675    const size_t colon_pos = bp_info.find_first_of(
':');
 
  676    if (colon_pos != llvm::StringRef::npos)
 
  677      bp_info = bp_info.drop_front(colon_pos + 2);
 
 
  690  std::vector<std::string> name_list;
 
  691  target->GetBreakpointNames(name_list);
 
  693  for (
const std::string &name : name_list)
 
 
  708  static const char *flavors[] = {
"default", 
"att", 
"intel"};
 
  709  for (
const char *flavor : flavors) {
 
 
  722  platform_sp->FindProcesses(match_info, process_infos);
 
  725                                  info.GetNameAsStringRef());
 
 
  736  platform_sp->FindProcesses(match_info, process_infos);
 
 
  760  const uint32_t frame_num = thread_sp->GetStackFrameCount();
 
  761  for (uint32_t i = 0; i < frame_num; ++i) {
 
  767    frame_sp->Dump(&strm, 
false, 
true);
 
 
  780  for (
auto &stophook_sp : target_sp->GetStopHooks()) {
 
 
  800  for (uint32_t idx = 0; (thread_sp = threads.
GetThreadAtIndex(idx)); ++idx) {
 
  802    thread_sp->GetStatus(strm, 0, 1, 1, 
true,  
true);
 
 
  830                                      category_sp->GetDescription());
 
 
  844  for (uint32_t idx = 0; (thread_sp = threads.
GetThreadAtIndex(idx)); ++idx) {
 
  846    thread_sp->GetStatus(strm, 0, 1, 1, 
true,  
true);
 
 
  866  std::vector<size_t> to_delete;
 
  867  for (
auto &elem : opt_element_vector) {
 
  868    to_delete.push_back(elem.opt_pos);
 
  869    if (elem.opt_arg_pos != 0)
 
  870      to_delete.push_back(elem.opt_arg_pos);
 
  872  sort(to_delete.begin(), to_delete.end(), std::greater<size_t>());
 
  873  for (
size_t idx : to_delete)
 
  907  assert(mwc != 
nullptr);
 
 
static void DiskFilesOrDirectories(const llvm::Twine &partial_name, bool only_directories, CompletionRequest &request, TildeExpressionResolver &Resolver)
static bool regex_chars(const char comp)
void(* CompletionCallback)(CommandInterpreter &interpreter, CompletionRequest &request, lldb_private::SearchFilter *searcher)
static llvm::raw_ostream & error(Stream &strm)
#define INTERRUPT_REQUESTED(debugger,...)
This handy define will keep you from having to generate a report for the interruption by hand.
A section + offset based address class.
static void AutoComplete(CompletionRequest &request)
A command line argument class.
void DeleteArgumentAtIndex(size_t idx)
Deletes the argument value at index if idx is a valid argument index.
size_t GetArgumentCount() const
Gets the number of arguments left in this command object.
const char * GetArgumentAtIndex(size_t idx) const
Gets the NULL terminated C string argument pointer for the argument at index idx.
General Outline: Allows adding and removing breakpoints and find by ID and index.
void GetListMutex(std::unique_lock< std::recursive_mutex > &lock)
Sets the passed in Locker to hold the Breakpoint List mutex.
size_t GetSize() const
Returns the number of elements in this breakpoint list.
lldb::BreakpointSP GetBreakpointAtIndex(size_t i) const
Returns a shared pointer to the breakpoint with index i.
static void DisassemblyFlavors(CommandInterpreter &interpreter, CompletionRequest &request, SearchFilter *searcher)
static bool InvokeCommonCompletionCallbacks(CommandInterpreter &interpreter, uint32_t completion_mask, lldb_private::CompletionRequest &request, SearchFilter *searcher)
static void ArchitectureNames(CommandInterpreter &interpreter, CompletionRequest &request, SearchFilter *searcher)
static void DiskDirectories(CommandInterpreter &interpreter, CompletionRequest &request, SearchFilter *searcher)
static void RemoteDiskDirectories(CommandInterpreter &interpreter, CompletionRequest &request, SearchFilter *searcher)
static void ManagedPlugins(CommandInterpreter &interpreter, CompletionRequest &request, SearchFilter *searcher)
static void SourceFiles(CommandInterpreter &interpreter, CompletionRequest &request, SearchFilter *searcher)
static void Registers(CommandInterpreter &interpreter, CompletionRequest &request, SearchFilter *searcher)
static void TypeLanguages(CommandInterpreter &interpreter, CompletionRequest &request, SearchFilter *searcher)
static void DiskFiles(CommandInterpreter &interpreter, CompletionRequest &request, SearchFilter *searcher)
static void ProcessPluginNames(CommandInterpreter &interpreter, CompletionRequest &request, SearchFilter *searcher)
static void PlatformPluginNames(CommandInterpreter &interpreter, CompletionRequest &request, SearchFilter *searcher)
static void Breakpoints(CommandInterpreter &interpreter, CompletionRequest &request, SearchFilter *searcher)
static void ThreadIDs(CommandInterpreter &interpreter, CompletionRequest &request, SearchFilter *searcher)
static void ProcessIDs(CommandInterpreter &interpreter, CompletionRequest &request, SearchFilter *searcher)
static void Symbols(CommandInterpreter &interpreter, CompletionRequest &request, SearchFilter *searcher)
static void StopHookIDs(CommandInterpreter &interpreter, CompletionRequest &request, SearchFilter *searcher)
static void ModuleUUIDs(CommandInterpreter &interpreter, CompletionRequest &request, SearchFilter *searcher)
static void ThreadIndexes(CommandInterpreter &interpreter, CompletionRequest &request, SearchFilter *searcher)
static void SettingsNames(CommandInterpreter &interpreter, CompletionRequest &request, SearchFilter *searcher)
static void CompleteModifiableCmdPathArgs(CommandInterpreter &interpreter, CompletionRequest &request, OptionElementVector &opt_element_vector)
This completer works for commands whose only arguments are a command path.
static void FrameIndexes(CommandInterpreter &interpreter, CompletionRequest &request, SearchFilter *searcher)
static void TypeCategoryNames(CommandInterpreter &interpreter, CompletionRequest &request, SearchFilter *searcher)
static void WatchPointIDs(CommandInterpreter &interpreter, CompletionRequest &request, SearchFilter *searcher)
static void Modules(CommandInterpreter &interpreter, CompletionRequest &request, SearchFilter *searcher)
static void RemoteDiskFiles(CommandInterpreter &interpreter, CompletionRequest &request, SearchFilter *searcher)
static void ProcessNames(CommandInterpreter &interpreter, CompletionRequest &request, SearchFilter *searcher)
static void VariablePath(CommandInterpreter &interpreter, CompletionRequest &request, SearchFilter *searcher)
static void BreakpointNames(CommandInterpreter &interpreter, CompletionRequest &request, SearchFilter *searcher)
ExecutionContext GetExecutionContext() const
CommandObject * GetUserCommandObject(llvm::StringRef cmd, StringList *matches=nullptr, StringList *descriptions=nullptr) const
CommandObjectMultiword * VerifyUserMultiwordCmdPath(Args &path, bool leaf_is_command, Status &result)
Look up the command pointed to by path encoded in the arguments of the incoming command object.
lldb::PlatformSP GetPlatform(bool prefer_target_platform)
CommandObject * GetSubcommandObject(llvm::StringRef sub_cmd, StringList *matches=nullptr) override
const FileSpec & GetPrimaryFile() const
Return the primary source spec associated with this compile unit.
"lldb/Utility/ArgCompletionRequest.h"
void AddCompletion(llvm::StringRef completion, llvm::StringRef description="", CompletionMode mode=CompletionMode::Normal)
Adds a possible completion string.
void AddCompletions(const StringList &completions)
Adds multiple possible completion strings.
const Args & GetParsedLine() const
llvm::StringRef GetCursorArgumentPrefix() const
bool ShouldAddCompletions() const
Returns true if the maximum number of completions has not been reached yet, hence we should keep addi...
void TryCompleteCurrentArg(llvm::StringRef completion, llvm::StringRef description="")
Adds a possible completion string if the completion would complete the current argument.
void GetMatches(StringList &matches) const
Adds all collected completion matches to the given list.
bool IsEmpty() const
Test for empty string.
llvm::StringRef GetStringRef() const
Get the string value as a llvm::StringRef.
const char * GetCString() const
Get the string value as a C string.
static void ForEach(TypeCategoryMap::ForEachCallback callback)
A class to manage flag bits.
lldb::TargetSP GetSelectedTarget()
PlatformList & GetPlatformList()
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
bool HasProcessScope() const
Returns true the ExecutionContext object contains a valid target and process.
const lldb::TargetSP & GetTargetSP() const
Get accessor to get the target shared pointer.
Target * GetTargetPtr() const
Returns a pointer to the target object.
const lldb::ThreadSP & GetThreadSP() const
Get accessor to get the thread shared pointer.
bool HasTargetScope() const
Returns true the ExecutionContext object contains a valid target.
Process * GetProcessPtr() const
Returns a pointer to the process object.
RegisterContext * GetRegisterContext() const
const ConstString & GetFilename() const
Filename string const get accessor.
const ConstString & GetDirectory() const
Directory string const get accessor.
Status ResolveSymbolicLink(const FileSpec &src, FileSpec &dst)
llvm::vfs::directory_iterator DirBegin(const FileSpec &file_spec, std::error_code &ec)
Get a directory iterator.
llvm::ErrorOr< llvm::vfs::Status > GetStatus(const FileSpec &file_spec) const
Returns the Status object for the given file.
bool IsDirectory(const FileSpec &file_spec) const
Returns whether the given path is a directory.
static FileSystem & Instance()
static LanguageSet GetLanguagesSupportingTypeSystems()
static const char * GetNameForLanguageType(lldb::LanguageType language)
Returns the internal LLDB name for the specified language.
void ForEach(std::function< IterationAction(const lldb::ModuleSP &module_sp)> const &callback) const
Applies 'callback' to each module in this ModuleList.
static void AutoCompletePlatformName(llvm::StringRef partial_name, CompletionRequest &request)
static void AutoCompleteProcessName(llvm::StringRef partial_name, CompletionRequest &request)
static void AutoCompletePluginName(llvm::StringRef partial_name, CompletionRequest &request)
ThreadList & GetThreadList()
lldb::OptionValuePropertiesSP GetValueProperties() const
virtual const RegisterInfo * GetRegisterInfoAtIndex(size_t reg)=0
virtual size_t GetRegisterCount()=0
"lldb/Core/SearchFilter.h" This is a SearchFilter that searches through all modules.
General Outline: Provides the callback and search depth for the SearchFilter search.
virtual void Search(Searcher &searcher)
Call this method to do the search using the Searcher.
General Outline: Provides the callback and search depth for the SearchFilter search.
@ eCallbackReturnContinue
llvm::StringRef GetString() const
void SetIndentLevel(unsigned level)
Set the current indentation level.
size_t SplitIntoLines(const std::string &lines)
Defines a symbol context baton that can be handed other debug core functions.
lldb::ModuleSP module_sp
The Module for a given query.
CompileUnit * comp_unit
The CompileUnit for a given query.
const ModuleList & GetImages() const
Get accessor for the images for this process.
WatchpointList & GetWatchpointList()
lldb::ThreadSP GetThreadAtIndex(uint32_t idx, bool can_update=true)
virtual bool ResolveExact(llvm::StringRef Expr, llvm::SmallVectorImpl< char > &Output)=0
Resolve a Tilde Expression contained according to bash rules.
virtual bool ResolvePartial(llvm::StringRef Expr, llvm::StringSet<> &Output)=0
Auto-complete a tilde expression with all matching values.
static void AutoComplete(const ExecutionContext &exe_ctx, CompletionRequest &request)
This class is used by Watchpoint to manage a list of watchpoints,.
WatchpointIterable Watchpoints() const
A class that represents a running process on the host machine.
static uint32_t bit(const uint32_t val, const uint32_t msbit)
std::vector< OptionArgElement > OptionElementVector
@ Partial
The current token has been partially completed.
@ Normal
The current token has been completed.
std::vector< ProcessInstanceInfo > ProcessInstanceInfoList
@ eRemoteDiskDirectoryCompletion
@ eDisassemblyFlavorCompletion
@ eVariablePathCompletion
@ eDiskDirectoryCompletion
@ eTypeCategoryNameCompletion
@ ePlatformPluginCompletion
@ eSettingsNameCompletion
@ eTypeLanguageCompletion
@ eWatchpointIDCompletion
@ eBreakpointNameCompletion
@ eProcessPluginCompletion
@ eRemoteDiskFileCompletion
@ eArchitectureCompletion
@ eManagedPluginCompletion
std::shared_ptr< lldb_private::OptionValueProperties > OptionValuePropertiesSP
std::shared_ptr< lldb_private::StackFrame > StackFrameSP
@ eDescriptionLevelInitial
std::shared_ptr< lldb_private::Thread > ThreadSP
std::shared_ptr< lldb_private::Platform > PlatformSP
LanguageType
Programming language type.
std::shared_ptr< lldb_private::Breakpoint > BreakpointSP
std::shared_ptr< lldb_private::Watchpoint > WatchpointSP
std::shared_ptr< lldb_private::TypeCategoryImpl > TypeCategoryImplSP
std::shared_ptr< lldb_private::Target > TargetSP
std::shared_ptr< lldb_private::Module > ModuleSP
CompletionCallback callback
bool include_inlines
Include inlined functions.
bool include_symbols
Include the symbol table.
Every register is described in detail including its name, alternate name (optional),...
const char * alt_name
Alternate name of this register, can be NULL.
const char * name
Name of this register, can't be NULL.