blob: 850d2f6f961a963a5894f6d131a2da2d295a0f52 [file] [log] [blame]
Andrew Walbran3d2c1972020-04-07 12:24:26 +01001//===-- REPL.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_REPL_h
10#define lldb_REPL_h
11
12#include <string>
13
14#include "lldb/Core/IOHandler.h"
15#include "lldb/Interpreter/OptionGroupFormat.h"
16#include "lldb/Interpreter/OptionGroupValueObjectDisplay.h"
17#include "lldb/Target/Target.h"
18
19namespace lldb_private {
20
21class REPL : public IOHandlerDelegate {
22public:
23 // See TypeSystem.h for how to add subclasses to this.
24 enum LLVMCastKind { eKindClang, eKindSwift, eKindGo, kNumKinds };
25
26 LLVMCastKind getKind() const { return m_kind; }
27
28 REPL(LLVMCastKind kind, Target &target);
29
30 ~REPL() override;
31
32 /// Get a REPL with an existing target (or, failing that, a debugger to use),
33 /// and (optional) extra arguments for the compiler.
34 ///
35 /// \param[out] error
36 /// If this language is supported but the REPL couldn't be created, this
37 /// error is populated with the reason.
38 ///
39 /// \param[in] language
40 /// The language to create a REPL for.
41 ///
42 /// \param[in] debugger
43 /// If provided, and target is nullptr, the debugger to use when setting
44 /// up a top-level REPL.
45 ///
46 /// \param[in] target
47 /// If provided, the target to put the REPL inside.
48 ///
49 /// \param[in] repl_options
50 /// If provided, additional options for the compiler when parsing REPL
51 /// expressions.
52 ///
53 /// \return
54 /// The range of the containing object in the target process.
55 static lldb::REPLSP Create(Status &Status, lldb::LanguageType language,
56 Debugger *debugger, Target *target,
57 const char *repl_options);
58
59 void SetFormatOptions(const OptionGroupFormat &options) {
60 m_format_options = options;
61 }
62
63 void
64 SetValueObjectDisplayOptions(const OptionGroupValueObjectDisplay &options) {
65 m_varobj_options = options;
66 }
67
68 void SetEvaluateOptions(const EvaluateExpressionOptions &options) {
69 m_expr_options = options;
70 }
71
72 void SetCompilerOptions(const char *options) {
73 if (options)
74 m_compiler_options = options;
75 }
76
77 lldb::IOHandlerSP GetIOHandler();
78
79 Status RunLoop();
80
81 // IOHandler::Delegate functions
82 void IOHandlerActivated(IOHandler &io_handler, bool interactive) override;
83
84 bool IOHandlerInterrupt(IOHandler &io_handler) override;
85
86 void IOHandlerInputInterrupted(IOHandler &io_handler,
87 std::string &line) override;
88
89 const char *IOHandlerGetFixIndentationCharacters() override;
90
91 ConstString IOHandlerGetControlSequence(char ch) override;
92
93 const char *IOHandlerGetCommandPrefix() override;
94
95 const char *IOHandlerGetHelpPrologue() override;
96
97 bool IOHandlerIsInputComplete(IOHandler &io_handler,
98 StringList &lines) override;
99
100 int IOHandlerFixIndentation(IOHandler &io_handler, const StringList &lines,
101 int cursor_position) override;
102
103 void IOHandlerInputComplete(IOHandler &io_handler,
104 std::string &line) override;
105
106 int IOHandlerComplete(IOHandler &io_handler, const char *current_line,
107 const char *cursor, const char *last_char,
108 int skip_first_n_matches, int max_matches,
109 StringList &matches, StringList &descriptions) override;
110
111protected:
112 static int CalculateActualIndentation(const StringList &lines);
113
114 // Subclasses should override these functions to implement a functional REPL.
115
116 virtual Status DoInitialization() = 0;
117
118 virtual ConstString GetSourceFileBasename() = 0;
119
120 virtual const char *GetAutoIndentCharacters() = 0;
121
122 virtual bool SourceIsComplete(const std::string &source) = 0;
123
124 virtual lldb::offset_t GetDesiredIndentation(
125 const StringList &lines, int cursor_position,
126 int tab_size) = 0; // LLDB_INVALID_OFFSET means no change
127
128 virtual lldb::LanguageType GetLanguage() = 0;
129
130 virtual bool PrintOneVariable(Debugger &debugger,
131 lldb::StreamFileSP &output_sp,
132 lldb::ValueObjectSP &valobj_sp,
133 ExpressionVariable *var = nullptr) = 0;
134
135 virtual int CompleteCode(const std::string &current_code,
136 StringList &matches) = 0;
137
138 OptionGroupFormat m_format_options = OptionGroupFormat(lldb::eFormatDefault);
139 OptionGroupValueObjectDisplay m_varobj_options;
140 EvaluateExpressionOptions m_expr_options;
141 std::string m_compiler_options;
142
143 bool m_enable_auto_indent = true;
144 std::string m_indent_str; // Use this string for each level of indentation
145 std::string m_current_indent_str;
146 uint32_t m_current_indent_level = 0;
147
148 std::string m_repl_source_path;
149 bool m_dedicated_repl_mode = false;
150
151 StringList m_code; // All accumulated REPL statements are saved here
152
153 Target &m_target;
154 lldb::IOHandlerSP m_io_handler_sp;
155 LLVMCastKind m_kind;
156
157private:
158 std::string GetSourcePath();
159};
160
161} // namespace lldb_private
162
163#endif // lldb_REPL_h