2123
|
1 /* |
|
2 |
2847
|
3 Copyright (C) 1996, 1997 John W. Eaton |
2123
|
4 |
|
5 This file is part of Octave. |
|
6 |
|
7 Octave is free software; you can redistribute it and/or modify it |
|
8 under the terms of the GNU General Public License as published by the |
|
9 Free Software Foundation; either version 2, or (at your option) any |
|
10 later version. |
|
11 |
|
12 Octave is distributed in the hope that it will be useful, but WITHOUT |
|
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
15 for more details. |
|
16 |
|
17 You should have received a copy of the GNU General Public License |
|
18 along with Octave; see the file COPYING. If not, write to the Free |
|
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
20 |
|
21 */ |
|
22 |
|
23 #if !defined (octave_tree_print_code_h) |
|
24 #define octave_tree_print_code_h 1 |
|
25 |
4192
|
26 #if defined (__GNUG__) && defined (USE_PRAGMA_INTERFACE_IMPLEMENTATION) |
2123
|
27 #pragma interface |
|
28 #endif |
|
29 |
2530
|
30 #include <string> |
|
31 |
3665
|
32 #include "comment-list.h" |
2123
|
33 #include "pt-walk.h" |
|
34 |
2961
|
35 class tree_expression; |
|
36 |
2123
|
37 // How to print the code that the parse trees represent. |
|
38 |
|
39 class |
|
40 tree_print_code : public tree_walker |
|
41 { |
|
42 public: |
|
43 |
3708
|
44 tree_print_code (std::ostream& os_arg, |
|
45 const std::string& pfx = std::string (), |
2530
|
46 bool pr_orig_txt = true) |
3708
|
47 : os (os_arg), prefix (pfx), print_original_text (pr_orig_txt), |
|
48 curr_print_indent_level (0), beginning_of_line (true) { } |
2123
|
49 |
|
50 ~tree_print_code (void) { } |
|
51 |
|
52 void visit_argument_list (tree_argument_list&); |
|
53 |
|
54 void visit_binary_expression (tree_binary_expression&); |
|
55 |
4207
|
56 void visit_break_command (tree_break_command&); |
2123
|
57 |
|
58 void visit_colon_expression (tree_colon_expression&); |
|
59 |
4207
|
60 void visit_continue_command (tree_continue_command&); |
2123
|
61 |
2846
|
62 void visit_decl_command (tree_decl_command&); |
|
63 |
|
64 void visit_decl_elt (tree_decl_elt&); |
|
65 |
|
66 void visit_decl_init_list (tree_decl_init_list&); |
|
67 |
2969
|
68 void visit_simple_for_command (tree_simple_for_command&); |
|
69 |
|
70 void visit_complex_for_command (tree_complex_for_command&); |
2123
|
71 |
2891
|
72 void visit_octave_user_function (octave_user_function&); |
2123
|
73 |
2891
|
74 void visit_octave_user_function_header (octave_user_function&); |
2123
|
75 |
2891
|
76 void visit_octave_user_function_trailer (octave_user_function&); |
2123
|
77 |
|
78 void visit_identifier (tree_identifier&); |
|
79 |
|
80 void visit_if_clause (tree_if_clause&); |
|
81 |
|
82 void visit_if_command (tree_if_command&); |
|
83 |
|
84 void visit_if_command_list (tree_if_command_list&); |
|
85 |
|
86 void visit_index_expression (tree_index_expression&); |
|
87 |
|
88 void visit_matrix (tree_matrix&); |
|
89 |
3351
|
90 void visit_cell (tree_cell&); |
|
91 |
2969
|
92 void visit_multi_assignment (tree_multi_assignment&); |
2123
|
93 |
2620
|
94 void visit_no_op_command (tree_no_op_command&); |
|
95 |
2372
|
96 void visit_constant (tree_constant&); |
2123
|
97 |
|
98 void visit_parameter_list (tree_parameter_list&); |
|
99 |
|
100 void visit_plot_command (tree_plot_command&); |
|
101 |
|
102 void visit_plot_limits (plot_limits&); |
|
103 |
|
104 void visit_plot_range (plot_range&); |
|
105 |
|
106 void visit_postfix_expression (tree_postfix_expression&); |
|
107 |
|
108 void visit_prefix_expression (tree_prefix_expression&); |
|
109 |
4207
|
110 void visit_return_command (tree_return_command&); |
2123
|
111 |
|
112 void visit_return_list (tree_return_list&); |
|
113 |
2969
|
114 void visit_simple_assignment (tree_simple_assignment&); |
2123
|
115 |
|
116 void visit_statement (tree_statement&); |
|
117 |
|
118 void visit_statement_list (tree_statement_list&); |
|
119 |
|
120 void visit_subplot (subplot&); |
|
121 |
3165
|
122 void visit_subplot_axes (subplot_axes&); |
|
123 |
2123
|
124 void visit_subplot_list (subplot_list&); |
|
125 |
|
126 void visit_subplot_style (subplot_style&); |
|
127 |
|
128 void visit_subplot_using (subplot_using&); |
|
129 |
2846
|
130 void visit_switch_case (tree_switch_case&); |
|
131 |
|
132 void visit_switch_case_list (tree_switch_case_list&); |
|
133 |
|
134 void visit_switch_command (tree_switch_command&); |
|
135 |
2123
|
136 void visit_try_catch_command (tree_try_catch_command&); |
|
137 |
|
138 void visit_unwind_protect_command (tree_unwind_protect_command&); |
|
139 |
|
140 void visit_while_command (tree_while_command&); |
|
141 |
3484
|
142 void visit_do_until_command (tree_do_until_command&); |
|
143 |
2123
|
144 private: |
|
145 |
3523
|
146 std::ostream& os; |
2123
|
147 |
3523
|
148 std::string prefix; |
2530
|
149 |
|
150 bool print_original_text; |
|
151 |
3708
|
152 // Current indentation. |
|
153 int curr_print_indent_level; |
|
154 |
|
155 // TRUE means we are at the beginning of a line. |
|
156 bool beginning_of_line; |
2123
|
157 |
3933
|
158 void reset_indent_level (void) { curr_print_indent_level = 0; } |
2123
|
159 |
3933
|
160 void increment_indent_level (void) { curr_print_indent_level += 2; } |
2123
|
161 |
3933
|
162 void decrement_indent_level (void) { curr_print_indent_level -= 2; } |
2123
|
163 |
|
164 void newline (void); |
|
165 |
|
166 void indent (void); |
|
167 |
|
168 void reset (void); |
|
169 |
2961
|
170 void print_parens (const tree_expression& expr, const char *txt); |
|
171 |
3665
|
172 void print_comment_list (octave_comment_list *comment_list); |
|
173 |
|
174 void print_comment_elt (const octave_comment_elt& comment_elt); |
|
175 |
|
176 void print_indented_comment (octave_comment_list *comment_list); |
|
177 |
2123
|
178 // Must create with an output stream! |
|
179 |
|
180 tree_print_code (void); |
|
181 |
|
182 // No copying! |
|
183 |
|
184 tree_print_code (const tree_print_code&); |
|
185 |
|
186 tree_print_code& operator = (const tree_print_code&); |
|
187 }; |
|
188 |
|
189 #endif |
|
190 |
|
191 /* |
|
192 ;;; Local Variables: *** |
|
193 ;;; mode: C++ *** |
|
194 ;;; End: *** |
|
195 */ |