9#include "llvm/ADT/SmallString.h"
10#include "llvm/ADT/StringSet.h"
33#include "llvm/Support/FileSystem.h"
34#include "llvm/Support/Path.h"
90 for (
int i = 0;; i++) {
93 else if ((common_completions[i].type & completion_mask) ==
94 common_completions[i].type &&
95 common_completions[i].callback !=
nullptr) {
97 common_completions[i].
callback(interpreter, request, searcher);
109 : m_interpreter(interpreter), m_request(request) {}
111 ~Completer()
override =
default;
125 Completer(
const Completer &) =
delete;
126 const Completer &operator=(
const Completer &) =
delete;
132class SourceFileCompleter :
public Completer {
136 : Completer(interpreter, request) {
137 FileSpec partial_spec(m_request.GetCursorArgumentPrefix());
138 m_file_name = partial_spec.GetFilename().GetCString();
139 m_dir_name = partial_spec.GetDirectory().GetCString();
148 const char *cur_file_name =
150 const char *cur_dir_name =
154 if (m_file_name && cur_file_name &&
155 strstr(cur_file_name, m_file_name) == cur_file_name)
158 if (match && m_dir_name && cur_dir_name &&
159 strstr(cur_dir_name, m_dir_name) != cur_dir_name)
172 for (
size_t i = 0; i < m_matching_files.GetSize(); i++) {
173 m_request.AddCompletion(
174 m_matching_files.GetFileSpecAtIndex(i).GetFilename().GetCString());
180 const char *m_file_name;
181 const char *m_dir_name;
183 SourceFileCompleter(
const SourceFileCompleter &) =
delete;
184 const SourceFileCompleter &operator=(
const SourceFileCompleter &) =
delete;
189 return llvm::StringRef(
"[](){}+.*|^$\\?").contains(comp);
193class SymbolCompleter :
public Completer {
197 : Completer(interpreter, request) {
198 std::string regex_str;
199 if (!m_request.GetCursorArgumentPrefix().empty()) {
200 regex_str.append(
"^");
201 regex_str.append(std::string(m_request.GetCursorArgumentPrefix()));
204 regex_str.append(
".");
206 std::string::iterator pos =
207 find_if(regex_str.begin() + 1, regex_str.end(),
regex_chars);
208 while (pos < regex_str.end()) {
209 pos = regex_str.insert(pos,
'\\');
210 pos = find_if(pos + 2, regex_str.end(),
regex_chars);
225 context.
module_sp->FindFunctions(m_regex, function_options, sc_list);
235 m_match_set.insert(func_name);
243 collection::iterator pos = m_match_set.begin(), end = m_match_set.end();
244 for (pos = m_match_set.begin(); pos != end; pos++)
245 m_request.AddCompletion((*pos).GetCString());
250 typedef std::set<ConstString> collection;
251 collection m_match_set;
253 SymbolCompleter(
const SymbolCompleter &) =
delete;
254 const SymbolCompleter &operator=(
const SymbolCompleter &) =
delete;
259class ModuleCompleter :
public Completer {
262 : Completer(interpreter, request) {
263 FileSpec partial_spec(m_request.GetCursorArgumentPrefix());
264 m_file_name = partial_spec.GetFilename().GetCString();
265 m_dir_name = partial_spec.GetDirectory().GetCString();
274 const char *cur_file_name =
275 context.
module_sp->GetFileSpec().GetFilename().GetCString();
276 const char *cur_dir_name =
277 context.
module_sp->GetFileSpec().GetDirectory().GetCString();
280 if (m_file_name && cur_file_name &&
281 strstr(cur_file_name, m_file_name) == cur_file_name)
284 if (match && m_dir_name && cur_dir_name &&
285 strstr(cur_dir_name, m_dir_name) != cur_dir_name)
289 m_request.AddCompletion(cur_file_name);
298 const char *m_file_name;
299 const char *m_dir_name;
301 ModuleCompleter(
const ModuleCompleter &) =
delete;
302 const ModuleCompleter &operator=(
const ModuleCompleter &) =
delete;
309 SourceFileCompleter completer(interpreter, request);
311 if (searcher ==
nullptr) {
314 completer.DoCompletion(&null_searcher);
316 completer.DoCompletion(searcher);
321 bool only_directories,
324 llvm::SmallString<256> CompletionBuffer;
325 llvm::SmallString<256> Storage;
326 partial_name.toVector(CompletionBuffer);
328 if (CompletionBuffer.size() >=
PATH_MAX)
331 namespace path = llvm::sys::path;
333 llvm::StringRef SearchDir;
334 llvm::StringRef PartialItem;
336 if (CompletionBuffer.startswith(
"~")) {
337 llvm::StringRef Buffer = CompletionBuffer;
339 Buffer.find_if([](
char c) {
return path::is_separator(c); });
341 llvm::StringRef Username = Buffer.take_front(FirstSep);
342 llvm::StringRef Remainder;
343 if (FirstSep != llvm::StringRef::npos)
344 Remainder = Buffer.drop_front(FirstSep + 1);
346 llvm::SmallString<256> Resolved;
351 if (FirstSep == llvm::StringRef::npos) {
352 llvm::StringSet<> MatchSet;
354 for (
const auto &S : MatchSet) {
355 Resolved = S.getKey();
356 path::append(Resolved, path::get_separator());
366 if (FirstSep == llvm::StringRef::npos) {
368 path::append(CompletionBuffer, path::get_separator());
377 llvm::StringRef RemainderDir = path::parent_path(Remainder);
378 if (!RemainderDir.empty()) {
380 Storage.append(path::get_separator());
381 Storage.append(RemainderDir);
384 }
else if (CompletionBuffer == path::root_directory(CompletionBuffer)) {
385 SearchDir = CompletionBuffer;
387 SearchDir = path::parent_path(CompletionBuffer);
390 size_t FullPrefixLen = CompletionBuffer.size();
392 PartialItem = path::filename(CompletionBuffer);
398 if ((PartialItem ==
"." || PartialItem == path::get_separator()) &&
399 path::is_separator(CompletionBuffer.back()))
400 PartialItem = llvm::StringRef();
402 if (SearchDir.empty()) {
403 llvm::sys::fs::current_path(Storage);
406 assert(!PartialItem.contains(path::get_separator()));
413 llvm::vfs::directory_iterator Iter = fs.
DirBegin(SearchDir, EC);
414 llvm::vfs::directory_iterator End;
415 for (; Iter != End && !EC; Iter.increment(EC)) {
422 auto Name = path::filename(
Entry.path());
425 if (Name ==
"." || Name ==
".." || !Name.startswith(PartialItem))
428 bool is_dir =
Status->isDirectory();
432 if (
Status->isSymlink()) {
440 if (only_directories && !is_dir)
446 CompletionBuffer.resize(FullPrefixLen);
447 Name = Name.drop_front(PartialItem.size());
448 CompletionBuffer.append(Name);
451 path::append(CompletionBuffer, path::get_separator());
464 std::string partial_name_str = partial_name.str();
471 bool only_directories) {
507 platform_sp->AutoCompleteDiskFileOrDirectory(request,
false);
516 platform_sp->AutoCompleteDiskFileOrDirectory(request,
true);
522 ModuleCompleter completer(interpreter, request);
524 if (searcher ==
nullptr) {
527 completer.DoCompletion(&null_searcher);
529 completer.DoCompletion(searcher);
554 SymbolCompleter completer(interpreter, request);
556 if (searcher ==
nullptr) {
559 completer.DoCompletion(&null_searcher);
561 completer.DoCompletion(searcher);
570 if (g_property_names.
GetSize() == 0) {
577 const std::string &str = std::string(strm.
GetString());
582 for (
const std::string &s : g_property_names)
608 std::string reg_prefix;
618 for (
size_t reg_idx = 0; reg_idx < reg_num; ++reg_idx) {
634 std::unique_lock<std::recursive_mutex> lock;
637 size_t num_breakpoints = breakpoints.
GetSize();
638 if (num_breakpoints == 0)
641 for (
size_t i = 0; i < num_breakpoints; ++i) {
648 const size_t colon_pos = bp_info.find_first_of(
':');
649 if (colon_pos != llvm::StringRef::npos)
650 bp_info = bp_info.drop_front(colon_pos + 2);
663 std::vector<std::string> name_list;
664 target->GetBreakpointNames(name_list);
666 for (
const std::string &name : name_list)
681 static const char *flavors[] = {
"default",
"att",
"intel"};
682 for (
const char *flavor : flavors) {
695 platform_sp->FindProcesses(match_info, process_infos);
698 info.GetNameAsStringRef());
709 platform_sp->FindProcesses(match_info, process_infos);
733 const uint32_t frame_num = thread_sp->GetStackFrameCount();
734 for (uint32_t i = 0; i < frame_num; ++i) {
740 frame_sp->Dump(&strm,
false,
true);
753 const size_t num = target_sp->GetNumStopHooks();
754 for (
size_t idx = 0; idx < num; ++idx) {
775 for (uint32_t idx = 0; (thread_sp = threads.
GetThreadAtIndex(idx)); ++idx) {
777 thread_sp->GetStatus(strm, 0, 1, 1,
true);
805 category_sp->GetDescription());
817 std::vector<size_t> to_delete;
818 for (
auto &elem : opt_element_vector) {
819 to_delete.push_back(elem.opt_pos);
820 if (elem.opt_arg_pos != 0)
821 to_delete.push_back(elem.opt_arg_pos);
823 sort(to_delete.begin(), to_delete.end(), std::greater<size_t>());
824 for (
size_t idx : to_delete)
858 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 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 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 file 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
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.
A uniqued constant string class.
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)
void ForEach(std::function< bool(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)
ThreadList & GetThreadList()
virtual 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
llvm::raw_ostream & AsRawOstream()
Returns a raw_ostream that forwards the data to this Stream object.
void SetIndentLevel(unsigned level)
Set the current indentation level.
size_t SplitIntoLines(const std::string &lines)
Defines a list of symbol context objects.
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.
std::shared_ptr< StopHook > StopHookSP
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.
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
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
Options used by Module::FindFunctions.
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.