LLDB mainline
Editline.h
Go to the documentation of this file.
1//===-- Editline.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// TODO: wire up window size changes
10
11// If we ever get a private copy of libedit, there are a number of defects that
12// would be nice to fix;
13// a) Sometimes text just disappears while editing. In an 80-column editor
14// paste the following text, without
15// the quotes:
16// "This is a test of the input system missing Hello, World! Do you
17// disappear when it gets to a particular length?"
18// Now press ^A to move to the start and type 3 characters, and you'll see a
19// good amount of the text will
20// disappear. It's still in the buffer, just invisible.
21// b) The prompt printing logic for dealing with ANSI formatting characters is
22// broken, which is why we're working around it here.
23// c) The incremental search uses escape to cancel input, so it's confused by
24// ANSI sequences starting with escape.
25// d) Emoji support is fairly terrible, presumably it doesn't understand
26// composed characters?
27
28#ifndef LLDB_HOST_EDITLINE_H
29#define LLDB_HOST_EDITLINE_H
30
31#include "lldb/Host/Config.h"
32
33#if LLDB_EDITLINE_USE_WCHAR
34#include <codecvt>
35#endif
36#include <locale>
37#include <sstream>
38#include <vector>
39
40#include "lldb/lldb-private.h"
41
42#if !defined(_WIN32) && !defined(__ANDROID__)
43#include <histedit.h>
44#endif
45
46#include <csignal>
47#include <mutex>
48#include <optional>
49#include <string>
50#include <vector>
51
57
58#include "llvm/ADT/FunctionExtras.h"
59
60namespace lldb_private {
61namespace line_editor {
62
63// type alias's to help manage 8 bit and wide character versions of libedit
64#if LLDB_EDITLINE_USE_WCHAR
65using EditLineStringType = std::wstring;
66using EditLineStringStreamType = std::wstringstream;
67using EditLineCharType = wchar_t;
68#else
69using EditLineStringType = std::string;
70using EditLineStringStreamType = std::stringstream;
71using EditLineCharType = char;
72#endif
73
74// At one point the callback type of el_set getchar callback changed from char
75// to wchar_t. It is not possible to detect differentiate between the two
76// versions exactly, but this is a pretty good approximation and allows us to
77// build against almost any editline version out there.
78// It does, however, require extra care when invoking el_getc, as the type
79// of the input is a single char buffer, but the callback will write a wchar_t.
80#if LLDB_EDITLINE_USE_WCHAR || defined(EL_CLIENTDATA) || LLDB_HAVE_EL_RFUNC_T
81using EditLineGetCharType = wchar_t;
82#else
84#endif
85
86using EditlineGetCharCallbackType = int (*)(::EditLine *editline,
88using EditlineCommandCallbackType = unsigned char (*)(::EditLine *editline,
89 int ch);
90using EditlinePromptCallbackType = const char *(*)(::EditLine *editline);
91
92class EditlineHistory;
93
94using EditlineHistorySP = std::shared_ptr<EditlineHistory>;
95
97 llvm::unique_function<bool(Editline *, StringList &)>;
98
100 llvm::unique_function<int(Editline *, StringList &, int)>;
101
103 llvm::unique_function<std::optional<std::string>(llvm::StringRef)>;
104
105using CompleteCallbackType = llvm::unique_function<void(CompletionRequest &)>;
106
107/// Status used to decide when and how to start editing another line in
108/// multi-line sessions.
109enum class EditorStatus {
110
111 /// The default state proceeds to edit the current line.
112 Editing,
113
114 /// Editing complete, returns the complete set of edited lines.
115 Complete,
116
117 /// End of input reported.
119
120 /// Editing interrupted.
122};
123
124/// Established locations that can be easily moved among with MoveCursor.
125enum class CursorLocation {
126 /// The start of the first line in a multi-line edit session.
128
129 /// The start of the current line in a multi-line edit session.
131
132 /// The location of the cursor on the current line in a multi-line edit
133 /// session.
135
136 /// The location immediately after the last character in a multi-line edit
137 /// session.
139};
140
141/// Operation for the history.
143 Oldest,
144 Older,
145 Current,
146 Newer,
147 Newest
148};
149}
150
151using namespace line_editor;
152
153/// Instances of Editline provide an abstraction over libedit's EditLine
154/// facility. Both single- and multi-line editing are supported.
155class Editline {
156public:
157 Editline(const char *editor_name, FILE *input_file, FILE *output_file,
158 FILE *error_file, std::recursive_mutex &output_mutex);
159
160 ~Editline();
161
162 /// Uses the user data storage of EditLine to retrieve an associated instance
163 /// of Editline.
164 static Editline *InstanceFor(::EditLine *editline);
165
166 static void
168 llvm::ArrayRef<CompletionResult::Completion> results);
169
170 /// Sets a string to be used as a prompt, or combined with a line number to
171 /// form a prompt.
172 void SetPrompt(const char *prompt);
173
174 /// Sets an alternate string to be used as a prompt for the second line and
175 /// beyond in multi-line editing scenarios.
176 void SetContinuationPrompt(const char *continuation_prompt);
177
178 /// Call when the terminal size changes.
179 void TerminalSizeChanged();
180
181 /// Returns the prompt established by SetPrompt.
182 const char *GetPrompt();
183
184 /// Returns the index of the line currently being edited.
185 uint32_t GetCurrentLine();
186
187 /// Interrupt the current edit as if ^C was pressed.
188 bool Interrupt();
189
190 /// Cancel this edit and obliterate all trace of it.
191 bool Cancel();
192
193 /// Register a callback for autosuggestion.
195 m_suggestion_callback = std::move(callback);
196 }
197
198 /// Register a callback for the tab key
200 m_completion_callback = std::move(callback);
201 }
202
203 /// Register a callback for testing whether multi-line input is complete
205 m_is_input_complete_callback = std::move(callback);
206 }
207
208 /// Register a callback for determining the appropriate indentation for a line
209 /// when creating a newline. An optional set of insertable characters can
210 /// also trigger the callback.
212 const char *indent_chars) {
213 m_fix_indentation_callback = std::move(callback);
215 }
216
217 void SetPromptAnsiPrefix(std::string prefix) {
218 m_prompt_ansi_prefix = std::move(prefix);
219 }
220
221 void SetPromptAnsiSuffix(std::string suffix) {
222 m_prompt_ansi_suffix = std::move(suffix);
223 }
224
225 void SetSuggestionAnsiPrefix(std::string prefix) {
226 m_suggestion_ansi_prefix = std::move(prefix);
227 }
228
229 void SetSuggestionAnsiSuffix(std::string suffix) {
230 m_suggestion_ansi_suffix = std::move(suffix);
231 }
232
233 /// Prompts for and reads a single line of user input.
234 bool GetLine(std::string &line, bool &interrupted);
235
236 /// Prompts for and reads a multi-line batch of user input.
237 bool GetLines(int first_line_number, StringList &lines, bool &interrupted);
238
239 void PrintAsync(Stream *stream, const char *s, size_t len);
240
241 /// Convert the current input lines into a UTF8 StringList
243
244private:
245 /// Sets the lowest line number for multi-line editing sessions. A value of
246 /// zero suppresses line number printing in the prompt.
247 void SetBaseLineNumber(int line_number);
248
249 /// Returns the complete prompt by combining the prompt or continuation prompt
250 /// with line numbers as appropriate. The line index is a zero-based index
251 /// into the current multi-line session.
252 std::string PromptForIndex(int line_index);
253
254 /// Sets the current line index between line edits to allow free movement
255 /// between lines. Updates the prompt to match.
256 void SetCurrentLine(int line_index);
257
258 /// Determines the width of the prompt in characters. The width is guaranteed
259 /// to be the same for all lines of the current multi-line session.
260 size_t GetPromptWidth();
261
262 /// Returns true if the underlying EditLine session's keybindings are
263 /// Emacs-based, or false if they are VI-based.
264 bool IsEmacs();
265
266 /// Returns true if the current EditLine buffer contains nothing but spaces,
267 /// or is empty.
268 bool IsOnlySpaces();
269
270 /// Helper method used by MoveCursor to determine relative line position.
271 int GetLineIndexForLocation(CursorLocation location, int cursor_row);
272
273 /// Move the cursor from one well-established location to another using
274 /// relative line positioning and absolute column positioning.
276
277 /// Clear from cursor position to bottom of screen and print input lines
278 /// including prompts, optionally starting from a specific line. Lines are
279 /// drawn with an extra space at the end to reserve room for the rightmost
280 /// cursor position.
281 void DisplayInput(int firstIndex = 0);
282
283 /// Counts the number of rows a given line of content will end up occupying,
284 /// taking into account both the preceding prompt and a single trailing space
285 /// occupied by a cursor when at the end of the line.
286 int CountRowsForLine(const EditLineStringType &content);
287
288 /// Save the line currently being edited.
289 void SaveEditedLine();
290
291 /// Replaces the current multi-line session with the next entry from history.
292 unsigned char RecallHistory(HistoryOperation op);
293
294 /// Character reading implementation for EditLine that supports our multi-line
295 /// editing trickery.
297
298 /// Prompt implementation for EditLine.
299 const char *Prompt();
300
301 /// Line break command used when meta+return is pressed in multi-line mode.
302 unsigned char BreakLineCommand(int ch);
303
304 /// Command used when return is pressed in multi-line mode.
305 unsigned char EndOrAddLineCommand(int ch);
306
307 /// Delete command used when delete is pressed in multi-line mode.
308 unsigned char DeleteNextCharCommand(int ch);
309
310 /// Delete command used when backspace is pressed in multi-line mode.
311 unsigned char DeletePreviousCharCommand(int ch);
312
313 /// Line navigation command used when ^P or up arrow are pressed in multi-line
314 /// mode.
315 unsigned char PreviousLineCommand(int ch);
316
317 /// Line navigation command used when ^N or down arrow are pressed in
318 /// multi-line mode.
319 unsigned char NextLineCommand(int ch);
320
321 /// History navigation command used when Alt + up arrow is pressed in
322 /// multi-line mode.
323 unsigned char PreviousHistoryCommand(int ch);
324
325 /// History navigation command used when Alt + down arrow is pressed in
326 /// multi-line mode.
327 unsigned char NextHistoryCommand(int ch);
328
329 /// Buffer start command used when Esc < is typed in multi-line emacs mode.
330 unsigned char BufferStartCommand(int ch);
331
332 /// Buffer end command used when Esc > is typed in multi-line emacs mode.
333 unsigned char BufferEndCommand(int ch);
334
335 /// Context-sensitive tab insertion or code completion command used when the
336 /// tab key is typed.
337 unsigned char TabCommand(int ch);
338
339 /// Apply autosuggestion part in gray as editline.
340 unsigned char ApplyAutosuggestCommand(int ch);
341
342 /// Command used when a character is typed.
343 unsigned char TypedCharacter(int ch);
344
345 /// Respond to normal character insertion by fixing line indentation
346 unsigned char FixIndentationCommand(int ch);
347
348 /// Revert line command used when moving between lines.
349 unsigned char RevertLineCommand(int ch);
350
351 /// Ensures that the current EditLine instance is properly configured for
352 /// single or multi-line editing.
353 void ConfigureEditor(bool multiline);
354
355 bool CompleteCharacter(char ch, EditLineGetCharType &out);
356
358
359 // The following set various editline parameters. It's not any less
360 // verbose to put the editline calls into a function, but it
361 // provides type safety, since the editline functions take varargs
362 // parameters.
363 void AddFunctionToEditLine(const EditLineCharType *command,
364 const EditLineCharType *helptext,
365 EditlineCommandCallbackType callbackFn);
368
369#if LLDB_EDITLINE_USE_WCHAR
370 std::wstring_convert<std::codecvt_utf8<wchar_t>> m_utf8conv;
371#endif
372 ::EditLine *m_editline = nullptr;
374 bool m_in_history = false;
375 std::vector<EditLineStringType> m_live_history_lines;
377 std::vector<EditLineStringType> m_input_lines;
385 std::string m_set_prompt;
387 std::string m_current_prompt;
389 volatile std::sig_atomic_t m_terminal_size_has_changed = 0;
390 std::string m_editor_name;
395
397
399 const char *m_fix_indentation_callback_chars = nullptr;
400
403
408
410 std::recursive_mutex &m_output_mutex;
411};
412}
413
414#endif // LLDB_HOST_EDITLINE_H
"lldb/Utility/ArgCompletionRequest.h"
Instances of Editline provide an abstraction over libedit's EditLine facility.
Definition: Editline.h:155
IsInputCompleteCallbackType m_is_input_complete_callback
Definition: Editline.h:396
EditorStatus m_editor_status
Definition: Editline.h:378
void SetSuggestionCallback(SuggestionCallbackType callback)
Register a callback for autosuggestion.
Definition: Editline.h:194
unsigned char PreviousLineCommand(int ch)
Line navigation command used when ^P or up arrow are pressed in multi-line mode.
Definition: Editline.cpp:788
unsigned char RecallHistory(HistoryOperation op)
Replaces the current multi-line session with the next entry from history.
Definition: Editline.cpp:470
bool IsOnlySpaces()
Returns true if the current EditLine buffer contains nothing but spaces, or is empty.
Definition: Editline.cpp:367
::EditLine * m_editline
Definition: Editline.h:372
void SaveEditedLine()
Save the line currently being edited.
Definition: Editline.cpp:449
void SetSuggestionAnsiSuffix(std::string suffix)
Definition: Editline.h:229
void MoveCursor(CursorLocation from, CursorLocation to)
Move the cursor from one well-established location to another using relative line positioning and abs...
Definition: Editline.cpp:398
std::string m_suggestion_ansi_suffix
Definition: Editline.h:407
void SetGetCharacterFunction(EditlineGetCharCallbackType callbackFn)
Definition: Editline.cpp:1142
void SetIsInputCompleteCallback(IsInputCompleteCallbackType callback)
Register a callback for testing whether multi-line input is complete.
Definition: Editline.h:204
std::string m_current_prompt
Definition: Editline.h:387
static void DisplayCompletions(Editline &editline, llvm::ArrayRef< CompletionResult::Completion > results)
Definition: Editline.cpp:946
void SetAutoCompleteCallback(CompleteCallbackType callback)
Register a callback for the tab key.
Definition: Editline.h:199
std::string m_set_continuation_prompt
Definition: Editline.h:386
std::size_t m_previous_autosuggestion_size
Definition: Editline.h:409
ConnectionFileDescriptor m_input_connection
Definition: Editline.h:394
unsigned char BufferStartCommand(int ch)
Buffer start command used when Esc < is typed in multi-line emacs mode.
Definition: Editline.cpp:916
const char * Prompt()
Prompt implementation for EditLine.
Definition: Editline.cpp:624
unsigned char EndOrAddLineCommand(int ch)
Command used when return is pressed in multi-line mode.
Definition: Editline.cpp:676
unsigned char DeletePreviousCharCommand(int ch)
Delete command used when backspace is pressed in multi-line mode.
Definition: Editline.cpp:754
void SetPromptAnsiSuffix(std::string suffix)
Definition: Editline.h:221
int GetLineIndexForLocation(CursorLocation location, int cursor_row)
Helper method used by MoveCursor to determine relative line position.
Definition: Editline.cpp:377
std::string m_prompt_ansi_prefix
Definition: Editline.h:404
bool IsEmacs()
Returns true if the underlying EditLine session's keybindings are Emacs-based, or false if they are V...
Definition: Editline.cpp:361
CompleteCallbackType m_completion_callback
Definition: Editline.h:401
size_t GetPromptWidth()
Determines the width of the prompt in characters.
Definition: Editline.cpp:359
unsigned char PreviousHistoryCommand(int ch)
History navigation command used when Alt + up arrow is pressed in multi-line mode.
Definition: Editline.cpp:846
const char * m_fix_indentation_callback_chars
Definition: Editline.h:399
std::string m_editor_name
Definition: Editline.h:390
uint32_t GetCurrentLine()
Returns the index of the line currently being edited.
Definition: Editline.cpp:1493
void DisplayInput(int firstIndex=0)
Clear from cursor position to bottom of screen and print input lines including prompts,...
Definition: Editline.cpp:427
int GetCharacter(EditLineGetCharType *c)
Character reading implementation for EditLine that supports our multi-line editing trickery.
Definition: Editline.cpp:542
void TerminalSizeChanged()
Call when the terminal size changes.
Definition: Editline.cpp:1462
volatile std::sig_atomic_t m_terminal_size_has_changed
Definition: Editline.h:389
void SetEditLinePromptCallback(EditlinePromptCallbackType callbackFn)
Definition: Editline.cpp:1137
EditlineHistorySP m_history_sp
Definition: Editline.h:373
static Editline * InstanceFor(::EditLine *editline)
Uses the user data storage of EditLine to retrieve an associated instance of Editline.
Definition: Editline.cpp:1389
bool GetLine(std::string &line, bool &interrupted)
Prompts for and reads a single line of user input.
Definition: Editline.cpp:1518
std::string m_set_prompt
Definition: Editline.h:385
void SetCurrentLine(int line_index)
Sets the current line index between line edits to allow free movement between lines.
Definition: Editline.cpp:354
int CountRowsForLine(const EditLineStringType &content)
Counts the number of rows a given line of content will end up occupying, taking into account both the...
Definition: Editline.cpp:442
void ConfigureEditor(bool multiline)
Ensures that the current EditLine instance is properly configured for single or multi-line editing.
Definition: Editline.cpp:1146
unsigned char NextLineCommand(int ch)
Line navigation command used when ^N or down arrow are pressed in multi-line mode.
Definition: Editline.cpp:810
void PrintAsync(Stream *stream, const char *s, size_t len)
Definition: Editline.cpp:1597
void SetPromptAnsiPrefix(std::string prefix)
Definition: Editline.h:217
std::vector< EditLineStringType > m_live_history_lines
Definition: Editline.h:375
void SetFixIndentationCallback(FixIndentationCallbackType callback, const char *indent_chars)
Register a callback for determining the appropriate indentation for a line when creating a newline.
Definition: Editline.h:211
void AddFunctionToEditLine(const EditLineCharType *command, const EditLineCharType *helptext, EditlineCommandCallbackType callbackFn)
Definition: Editline.cpp:1131
std::vector< EditLineStringType > m_input_lines
Definition: Editline.h:377
bool CompleteCharacter(char ch, EditLineGetCharType &out)
Definition: Editline.cpp:1612
bool Cancel()
Cancel this edit and obliterate all trace of it.
Definition: Editline.cpp:1506
unsigned char DeleteNextCharCommand(int ch)
Delete command used when delete is pressed in multi-line mode.
Definition: Editline.cpp:715
std::string m_suggestion_ansi_prefix
Definition: Editline.h:406
SuggestionCallbackType m_suggestion_callback
Definition: Editline.h:402
unsigned char FixIndentationCommand(int ch)
Respond to normal character insertion by fixing line indentation.
Definition: Editline.cpp:858
unsigned char NextHistoryCommand(int ch)
History navigation command used when Alt + down arrow is pressed in multi-line mode.
Definition: Editline.cpp:852
void SetPrompt(const char *prompt)
Sets a string to be used as a prompt, or combined with a line number to form a prompt.
Definition: Editline.cpp:1453
unsigned char BufferEndCommand(int ch)
Buffer end command used when Esc > is typed in multi-line emacs mode.
Definition: Editline.cpp:924
unsigned char TypedCharacter(int ch)
Command used when a character is typed.
Definition: Editline.cpp:1092
unsigned char BreakLineCommand(int ch)
Line break command used when meta+return is pressed in multi-line mode.
Definition: Editline.cpp:630
void SetSuggestionAnsiPrefix(std::string prefix)
Definition: Editline.h:225
FixIndentationCallbackType m_fix_indentation_callback
Definition: Editline.h:398
unsigned char ApplyAutosuggestCommand(int ch)
Apply autosuggestion part in gray as editline.
Definition: Editline.cpp:1077
unsigned char TabCommand(int ch)
Context-sensitive tab insertion or code completion command used when the tab key is typed.
Definition: Editline.cpp:1004
std::recursive_mutex & m_output_mutex
Definition: Editline.h:410
void SetContinuationPrompt(const char *continuation_prompt)
Sets an alternate string to be used as a prompt for the second line and beyond in multi-line editing ...
Definition: Editline.cpp:1457
unsigned m_current_line_index
Definition: Editline.h:381
StringList GetInputAsStringList(int line_count=UINT32_MAX)
Convert the current input lines into a UTF8 StringList.
Definition: Editline.cpp:455
std::string PromptForIndex(int line_index)
Returns the complete prompt by combining the prompt or continuation prompt with line numbers as appro...
Definition: Editline.cpp:324
unsigned char RevertLineCommand(int ch)
Revert line command used when moving between lines.
Definition: Editline.cpp:903
bool Interrupt()
Interrupt the current edit as if ^C was pressed.
Definition: Editline.cpp:1495
const char * GetPrompt()
Returns the prompt established by SetPrompt.
Definition: Editline.cpp:1491
void SetBaseLineNumber(int line_number)
Sets the lowest line number for multi-line editing sessions.
Definition: Editline.cpp:318
bool GetLines(int first_line_number, StringList &lines, bool &interrupted)
Prompts for and reads a multi-line batch of user input.
Definition: Editline.cpp:1558
std::string m_prompt_ansi_suffix
Definition: Editline.h:405
A stream class that can stream formatted output to a file.
Definition: Stream.h:28
#define UINT32_MAX
Definition: lldb-defines.h:19
std::stringstream EditLineStringStreamType
Definition: Editline.h:70
llvm::unique_function< void(CompletionRequest &)> CompleteCallbackType
Definition: Editline.h:105
unsigned char(*)(::EditLine *editline, int ch) EditlineCommandCallbackType
Definition: Editline.h:89
const char *(*)(::EditLine *editline) EditlinePromptCallbackType
Definition: Editline.h:90
llvm::unique_function< int(Editline *, StringList &, int)> FixIndentationCallbackType
Definition: Editline.h:100
llvm::unique_function< bool(Editline *, StringList &)> IsInputCompleteCallbackType
Definition: Editline.h:97
int(*)(::EditLine *editline, EditLineGetCharType *c) EditlineGetCharCallbackType
Definition: Editline.h:87
std::string EditLineStringType
Definition: Editline.h:69
HistoryOperation
Operation for the history.
Definition: Editline.h:142
std::shared_ptr< EditlineHistory > EditlineHistorySP
Definition: Editline.h:94
EditorStatus
Status used to decide when and how to start editing another line in multi-line sessions.
Definition: Editline.h:109
@ EndOfInput
End of input reported.
@ Complete
Editing complete, returns the complete set of edited lines.
@ Editing
The default state proceeds to edit the current line.
CursorLocation
Established locations that can be easily moved among with MoveCursor.
Definition: Editline.h:125
@ BlockEnd
The location immediately after the last character in a multi-line edit session.
@ BlockStart
The start of the first line in a multi-line edit session.
@ EditingCursor
The location of the cursor on the current line in a multi-line edit session.
@ EditingPrompt
The start of the current line in a multi-line edit session.
llvm::unique_function< std::optional< std::string >(llvm::StringRef)> SuggestionCallbackType
Definition: Editline.h:103
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14