1 //===-- CommandObjectExpression.h -------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 #ifndef liblldb_CommandObjectExpression_h_
11 #define liblldb_CommandObjectExpression_h_
12 
13 // C Includes
14 // C++ Includes
15 // Other libraries and framework includes
16 // Project includes
17 #include "lldb/Core/IOHandler.h"
18 #include "lldb/Interpreter/CommandObject.h"
19 #include "lldb/Interpreter/OptionGroupBoolean.h"
20 #include "lldb/Interpreter/OptionGroupFormat.h"
21 #include "lldb/Interpreter/OptionGroupValueObjectDisplay.h"
22 #include "lldb/Target/ExecutionContext.h"
23 
24 namespace lldb_private {
25 
26 class CommandObjectExpression :
27     public CommandObjectRaw,
28     public IOHandlerDelegate
29 {
30 public:
31 
32     class CommandOptions : public OptionGroup
33     {
34     public:
35 
36         CommandOptions ();
37 
38         ~CommandOptions() override;
39 
40         uint32_t
41         GetNumDefinitions() override;
42 
43         const OptionDefinition*
44         GetDefinitions() override;
45 
46         Error
47         SetOptionValue(CommandInterpreter &interpreter,
48 		       uint32_t option_idx,
49 		       const char *option_value) override;
50 
51         void
52         OptionParsingStarting(CommandInterpreter &interpreter) override;
53 
54         // Options table: Required for subclasses of Options.
55 
56         static OptionDefinition g_option_table[];
57         bool        unwind_on_error;
58         bool        ignore_breakpoints;
59         bool        show_types;
60         bool        show_summary;
61         bool        debug;
62         uint32_t    timeout;
63         bool        try_all_threads;
64         lldb::LanguageType language;
65         LanguageRuntimeDescriptionDisplayVerbosity m_verbosity;
66     };
67 
68     CommandObjectExpression (CommandInterpreter &interpreter);
69 
70     ~CommandObjectExpression() override;
71 
72     Options *
73     GetOptions() override;
74 
75 protected:
76 
77     //------------------------------------------------------------------
78     // IOHandler::Delegate functions
79     //------------------------------------------------------------------
80     void
81     IOHandlerInputComplete(IOHandler &io_handler,
82 			   std::string &line) override;
83 
84     virtual LineStatus
85     IOHandlerLinesUpdated (IOHandler &io_handler,
86                            StringList &lines,
87                            uint32_t line_idx,
88                            Error &error);
89     bool
90     DoExecute(const char *command,
91 	      CommandReturnObject &result) override;
92 
93     bool
94     EvaluateExpression (const char *expr,
95                         Stream *output_stream,
96                         Stream *error_stream,
97                         CommandReturnObject *result = NULL);
98 
99     void
100     GetMultilineExpression ();
101 
102     OptionGroupOptions m_option_group;
103     OptionGroupFormat m_format_options;
104     OptionGroupValueObjectDisplay m_varobj_options;
105     OptionGroupBoolean m_repl_option;
106     CommandOptions m_command_options;
107     uint32_t m_expr_line_count;
108     std::string m_expr_lines; // Multi-line expression support
109 };
110 
111 } // namespace lldb_private
112 
113 #endif // liblldb_CommandObjectExpression_h_
114