blob: 7c15aa1da830f2cee363a6d5874ae9b5b9240227 [file] [log] [blame]
Chris Lattner24943d22010-06-08 16:52:24 +00001//===-- 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/Interpreter/CommandObject.h"
Greg Claytona42880a2011-10-25 06:44:01 +000018#include "lldb/Interpreter/OptionGroupFormat.h"
Chris Lattner24943d22010-06-08 16:52:24 +000019#include "lldb/Target/ExecutionContext.h"
20
21namespace lldb_private {
22
Jim Inghamda26bd22012-06-08 21:56:10 +000023class CommandObjectExpression : public CommandObjectRaw
Chris Lattner24943d22010-06-08 16:52:24 +000024{
25public:
26
Greg Claytona42880a2011-10-25 06:44:01 +000027 class CommandOptions : public OptionGroup
Chris Lattner24943d22010-06-08 16:52:24 +000028 {
29 public:
30
Greg Claytona42880a2011-10-25 06:44:01 +000031 CommandOptions ();
Chris Lattner24943d22010-06-08 16:52:24 +000032
33 virtual
34 ~CommandOptions ();
35
Greg Claytona42880a2011-10-25 06:44:01 +000036 virtual uint32_t
37 GetNumDefinitions ();
38
39 virtual const OptionDefinition*
Chris Lattner24943d22010-06-08 16:52:24 +000040 GetDefinitions ();
Greg Claytona42880a2011-10-25 06:44:01 +000041
42 virtual Error
43 SetOptionValue (CommandInterpreter &interpreter,
44 uint32_t option_idx,
45 const char *option_value);
46
47 virtual void
48 OptionParsingStarting (CommandInterpreter &interpreter);
Chris Lattner24943d22010-06-08 16:52:24 +000049
50 // Options table: Required for subclasses of Options.
51
Greg Claytonb3448432011-03-24 21:19:54 +000052 static OptionDefinition g_option_table[];
Jim Ingham324067b2010-09-30 00:54:27 +000053 bool print_object;
Jim Inghame41494a2011-04-16 00:01:13 +000054 LazyBool use_dynamic;
Jim Inghamea9d4262010-11-05 19:25:48 +000055 bool unwind_on_error;
Chris Lattner24943d22010-06-08 16:52:24 +000056 bool show_types;
57 bool show_summary;
58 };
59
Greg Clayton238c0a12010-09-18 01:14:36 +000060 CommandObjectExpression (CommandInterpreter &interpreter);
Chris Lattner24943d22010-06-08 16:52:24 +000061
62 virtual
63 ~CommandObjectExpression ();
64
65 virtual
66 Options *
67 GetOptions ();
68
Chris Lattner24943d22010-06-08 16:52:24 +000069protected:
Jim Inghamda26bd22012-06-08 21:56:10 +000070 virtual bool
71 DoExecute (const char *command,
72 CommandReturnObject &result);
Chris Lattner24943d22010-06-08 16:52:24 +000073
74 static size_t
75 MultiLineExpressionCallback (void *baton,
Greg Clayton63094e02010-06-23 01:19:29 +000076 InputReader &reader,
Chris Lattner24943d22010-06-08 16:52:24 +000077 lldb::InputReaderAction notification,
78 const char *bytes,
79 size_t bytes_len);
80
81 bool
Johnny Chen0deefc72010-08-13 00:42:30 +000082 EvaluateExpression (const char *expr,
Caroline Tice87e1f772011-06-13 20:20:29 +000083 Stream *output_stream,
84 Stream *error_stream,
Johnny Chen0deefc72010-08-13 00:42:30 +000085 CommandReturnObject *result = NULL);
Chris Lattner24943d22010-06-08 16:52:24 +000086
Greg Claytona42880a2011-10-25 06:44:01 +000087 OptionGroupOptions m_option_group;
88 OptionGroupFormat m_format_options;
89 CommandOptions m_command_options;
Chris Lattner24943d22010-06-08 16:52:24 +000090 uint32_t m_expr_line_count;
91 std::string m_expr_lines; // Multi-line expression support
92};
93
94} // namespace lldb_private
95
96#endif // liblldb_CommandObjectExpression_h_