LLDB mainline
|
#include <climits>
#include <iomanip>
#include <optional>
#include "lldb/Host/Editline.h"
#include "lldb/Host/ConnectionFileDescriptor.h"
#include "lldb/Host/FileSystem.h"
#include "lldb/Host/Host.h"
#include "lldb/Utility/CompletionRequest.h"
#include "lldb/Utility/FileSpec.h"
#include "lldb/Utility/LLDBAssert.h"
#include "lldb/Utility/SelectHelper.h"
#include "lldb/Utility/Status.h"
#include "lldb/Utility/StreamString.h"
#include "lldb/Utility/StringList.h"
#include "lldb/Utility/Timeout.h"
#include "llvm/Support/FileSystem.h"
#include "llvm/Support/Threading.h"
Go to the source code of this file.
Classes | |
class | lldb_private::line_editor::EditlineHistory |
Namespaces | |
namespace | lldb_private |
A class that represents a running process on the host machine. | |
namespace | lldb_private::line_editor |
Macros | |
#define | ESCAPE "\x1b" |
https://www.ecma-international.org/publications/files/ECMA-ST/Ecma-048.pdf | |
#define | ANSI_FAINT ESCAPE "[2m" |
Faint, decreased intensity or second colour. | |
#define | ANSI_UNFAINT ESCAPE "[0m" |
Normal colour or normal intensity (neither bold nor faint). | |
#define | ANSI_CLEAR_BELOW ESCAPE "[J" |
#define | ANSI_CLEAR_RIGHT ESCAPE "[K" |
#define | ANSI_SET_COLUMN_N ESCAPE "[%dG" |
#define | ANSI_UP_N_ROWS ESCAPE "[%dA" |
#define | ANSI_DOWN_N_ROWS ESCAPE "[%dB" |
#define | EditLineConstString(str) str |
#define | EditLineStringFormatSpec "%s" |
#define | history_w history |
#define | history_winit history_init |
#define | history_wend history_end |
#define | HistoryW History |
#define | HistEventW HistEvent |
#define | LineInfoW LineInfo |
#define | el_wgets el_gets |
#define | el_wgetc el_getc |
#define | el_wpush el_push |
#define | el_wparse el_parse |
#define | el_wset el_set |
#define | el_wget el_get |
#define | el_wline el_line |
#define | el_winsertstr el_insertstr |
#define | el_wdeletestr el_deletestr |
Typedefs | |
typedef std::weak_ptr< EditlineHistory > | lldb_private::line_editor::EditlineHistoryWP |
Functions | |
bool | IsOnlySpaces (const EditLineStringType &content) |
static int | GetOperation (HistoryOperation op) |
EditLineStringType | CombineLines (const std::vector< EditLineStringType > &lines) |
std::vector< EditLineStringType > | SplitLines (const EditLineStringType &input) |
EditLineStringType | FixIndentation (const EditLineStringType &line, int indent_correction) |
int | GetIndentation (const EditLineStringType &line) |
bool | IsInputPending (FILE *file) |
static void | PrintCompletion (FILE *output_file, llvm::ArrayRef< CompletionResult::Completion > results, size_t max_len) |
Prints completions and their descriptions to the given file. | |
static void | DisplayCompletions (::EditLine *editline, FILE *output_file, llvm::ArrayRef< CompletionResult::Completion > results) |
#define ANSI_CLEAR_BELOW ESCAPE "[J" |
Definition at line 59 of file Editline.cpp.
#define ANSI_CLEAR_RIGHT ESCAPE "[K" |
Definition at line 60 of file Editline.cpp.
#define ANSI_DOWN_N_ROWS ESCAPE "[%dB" |
Definition at line 63 of file Editline.cpp.
#define ANSI_FAINT ESCAPE "[2m" |
Faint, decreased intensity or second colour.
Definition at line 56 of file Editline.cpp.
#define ANSI_SET_COLUMN_N ESCAPE "[%dG" |
Definition at line 61 of file Editline.cpp.
#define ANSI_UNFAINT ESCAPE "[0m" |
Normal colour or normal intensity (neither bold nor faint).
Definition at line 58 of file Editline.cpp.
#define ANSI_UP_N_ROWS ESCAPE "[%dA" |
Definition at line 62 of file Editline.cpp.
#define EditLineConstString | ( | str | ) | str |
Definition at line 72 of file Editline.cpp.
#define EditLineStringFormatSpec "%s" |
Definition at line 73 of file Editline.cpp.
#define el_wdeletestr el_deletestr |
Definition at line 92 of file Editline.cpp.
#define el_wget el_get |
Definition at line 89 of file Editline.cpp.
#define el_wgetc el_getc |
Definition at line 85 of file Editline.cpp.
#define el_wgets el_gets |
Definition at line 84 of file Editline.cpp.
#define el_winsertstr el_insertstr |
Definition at line 91 of file Editline.cpp.
#define el_wline el_line |
Definition at line 90 of file Editline.cpp.
#define el_wparse el_parse |
Definition at line 87 of file Editline.cpp.
#define el_wpush el_push |
Definition at line 86 of file Editline.cpp.
#define el_wset el_set |
Definition at line 88 of file Editline.cpp.
#define ESCAPE "\x1b" |
https://www.ecma-international.org/publications/files/ECMA-ST/Ecma-048.pdf
Definition at line 54 of file Editline.cpp.
#define HistEventW HistEvent |
Definition at line 81 of file Editline.cpp.
#define history_w history |
Definition at line 77 of file Editline.cpp.
#define history_wend history_end |
Definition at line 79 of file Editline.cpp.
#define history_winit history_init |
Definition at line 78 of file Editline.cpp.
#define HistoryW History |
Definition at line 80 of file Editline.cpp.
#define LineInfoW LineInfo |
Definition at line 82 of file Editline.cpp.
EditLineStringType CombineLines | ( | const std::vector< EditLineStringType > & | lines | ) |
Definition at line 137 of file Editline.cpp.
|
static |
Definition at line 944 of file Editline.cpp.
References ANSI_CLEAR_BELOW, and PrintCompletion().
EditLineStringType FixIndentation | ( | const EditLineStringType & | line, |
int | indent_correction | ||
) |
Definition at line 165 of file Editline.cpp.
int GetIndentation | ( | const EditLineStringType & | line | ) |
Definition at line 174 of file Editline.cpp.
|
static |
Definition at line 104 of file Editline.cpp.
bool IsInputPending | ( | FILE * | file | ) |
Definition at line 184 of file Editline.cpp.
References SelectHelper::FDSetRead(), SelectHelper::Select(), SelectHelper::SetTimeout(), and lldb_private::Status::Success().
bool IsOnlySpaces | ( | const EditLineStringType & | content | ) |
Definition at line 96 of file Editline.cpp.
|
static |
Prints completions and their descriptions to the given file.
Only the completions in the interval [start, end) are printed.
Definition at line 932 of file Editline.cpp.
Referenced by DisplayCompletions().
std::vector< EditLineStringType > SplitLines | ( | const EditLineStringType & | input | ) |
Definition at line 145 of file Editline.cpp.