blob: a15454934db4b4667c970b3b1fd23507cfa26e6e [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"
Jim Ingham84cdc152010-06-15 19:49:27 +000018#include "lldb/Interpreter/Options.h"
Chris Lattner24943d22010-06-08 16:52:24 +000019#include "lldb/Core/Language.h"
20#include "lldb/Target/ExecutionContext.h"
21
22namespace lldb_private {
23
24class CommandObjectExpression : public CommandObject
25{
26public:
27
28 class CommandOptions : public Options
29 {
30 public:
31
32 CommandOptions ();
33
34 virtual
35 ~CommandOptions ();
36
37 virtual Error
38 SetOptionValue (int option_idx, const char *option_arg);
39
40 void
41 ResetOptionValues ();
42
43 const lldb::OptionDefinition*
44 GetDefinitions ();
45
46 // Options table: Required for subclasses of Options.
47
48 static lldb::OptionDefinition g_option_table[];
Caroline Ticec1ad82e2010-09-07 22:38:08 +000049 //Language language;
Chris Lattner24943d22010-06-08 16:52:24 +000050 lldb::Encoding encoding;
51 lldb::Format format;
52 bool debug;
Jim Ingham324067b2010-09-30 00:54:27 +000053 bool print_object;
Chris Lattner24943d22010-06-08 16:52:24 +000054 bool show_types;
55 bool show_summary;
56 };
57
Greg Clayton238c0a12010-09-18 01:14:36 +000058 CommandObjectExpression (CommandInterpreter &interpreter);
Chris Lattner24943d22010-06-08 16:52:24 +000059
60 virtual
61 ~CommandObjectExpression ();
62
63 virtual
64 Options *
65 GetOptions ();
66
67
68 virtual bool
Greg Clayton238c0a12010-09-18 01:14:36 +000069 Execute (Args& command,
Chris Lattner24943d22010-06-08 16:52:24 +000070 CommandReturnObject &result);
71
72 virtual bool
73 WantsRawCommandString() { return true; }
74
75 virtual bool
Greg Clayton238c0a12010-09-18 01:14:36 +000076 ExecuteRawCommandString (const char *command,
Chris Lattner24943d22010-06-08 16:52:24 +000077 CommandReturnObject &result);
78
79protected:
80
81 static size_t
82 MultiLineExpressionCallback (void *baton,
Greg Clayton63094e02010-06-23 01:19:29 +000083 InputReader &reader,
Chris Lattner24943d22010-06-08 16:52:24 +000084 lldb::InputReaderAction notification,
85 const char *bytes,
86 size_t bytes_len);
87
88 bool
Johnny Chen0deefc72010-08-13 00:42:30 +000089 EvaluateExpression (const char *expr,
Johnny Chen0deefc72010-08-13 00:42:30 +000090 Stream &output_stream,
91 Stream &error_stream,
92 CommandReturnObject *result = NULL);
Chris Lattner24943d22010-06-08 16:52:24 +000093
94 CommandOptions m_options;
95 ExecutionContext m_exe_ctx;
96 uint32_t m_expr_line_count;
97 std::string m_expr_lines; // Multi-line expression support
98};
99
100} // namespace lldb_private
101
102#endif // liblldb_CommandObjectExpression_h_