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 |
5307
|
19 Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
20 02110-1301, USA. |
2123
|
21 |
|
22 */ |
|
23 |
|
24 #if !defined (octave_tree_print_code_h) |
|
25 #define octave_tree_print_code_h 1 |
|
26 |
4676
|
27 #include <stack> |
2530
|
28 #include <string> |
|
29 |
3665
|
30 #include "comment-list.h" |
2123
|
31 #include "pt-walk.h" |
|
32 |
2961
|
33 class tree_expression; |
|
34 |
2123
|
35 // How to print the code that the parse trees represent. |
|
36 |
|
37 class |
|
38 tree_print_code : public tree_walker |
|
39 { |
|
40 public: |
|
41 |
3708
|
42 tree_print_code (std::ostream& os_arg, |
|
43 const std::string& pfx = std::string (), |
2530
|
44 bool pr_orig_txt = true) |
4676
|
45 : os (os_arg), prefix (pfx), nesting (), |
|
46 print_original_text (pr_orig_txt), |
4980
|
47 curr_print_indent_level (0), beginning_of_line (true), |
|
48 printing_newlines (true) |
4676
|
49 { |
|
50 // For "none". |
|
51 nesting.push ('n'); |
|
52 } |
2123
|
53 |
|
54 ~tree_print_code (void) { } |
|
55 |
|
56 void visit_argument_list (tree_argument_list&); |
|
57 |
|
58 void visit_binary_expression (tree_binary_expression&); |
|
59 |
4207
|
60 void visit_break_command (tree_break_command&); |
2123
|
61 |
|
62 void visit_colon_expression (tree_colon_expression&); |
|
63 |
4207
|
64 void visit_continue_command (tree_continue_command&); |
2123
|
65 |
2846
|
66 void visit_decl_command (tree_decl_command&); |
|
67 |
|
68 void visit_decl_elt (tree_decl_elt&); |
|
69 |
|
70 void visit_decl_init_list (tree_decl_init_list&); |
|
71 |
2969
|
72 void visit_simple_for_command (tree_simple_for_command&); |
|
73 |
|
74 void visit_complex_for_command (tree_complex_for_command&); |
2123
|
75 |
2891
|
76 void visit_octave_user_function (octave_user_function&); |
2123
|
77 |
2891
|
78 void visit_octave_user_function_header (octave_user_function&); |
2123
|
79 |
2891
|
80 void visit_octave_user_function_trailer (octave_user_function&); |
2123
|
81 |
|
82 void visit_identifier (tree_identifier&); |
|
83 |
|
84 void visit_if_clause (tree_if_clause&); |
|
85 |
|
86 void visit_if_command (tree_if_command&); |
|
87 |
|
88 void visit_if_command_list (tree_if_command_list&); |
|
89 |
|
90 void visit_index_expression (tree_index_expression&); |
|
91 |
|
92 void visit_matrix (tree_matrix&); |
|
93 |
3351
|
94 void visit_cell (tree_cell&); |
|
95 |
2969
|
96 void visit_multi_assignment (tree_multi_assignment&); |
2123
|
97 |
2620
|
98 void visit_no_op_command (tree_no_op_command&); |
|
99 |
2372
|
100 void visit_constant (tree_constant&); |
2123
|
101 |
4342
|
102 void visit_fcn_handle (tree_fcn_handle&); |
|
103 |
2123
|
104 void visit_parameter_list (tree_parameter_list&); |
|
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 |
2846
|
120 void visit_switch_case (tree_switch_case&); |
|
121 |
|
122 void visit_switch_case_list (tree_switch_case_list&); |
|
123 |
|
124 void visit_switch_command (tree_switch_command&); |
|
125 |
2123
|
126 void visit_try_catch_command (tree_try_catch_command&); |
|
127 |
|
128 void visit_unwind_protect_command (tree_unwind_protect_command&); |
|
129 |
|
130 void visit_while_command (tree_while_command&); |
|
131 |
3484
|
132 void visit_do_until_command (tree_do_until_command&); |
|
133 |
4980
|
134 void suspend_newline (void) { printing_newlines = false; } |
|
135 |
|
136 void resume_newline (void) { printing_newlines = true; } |
|
137 |
2123
|
138 private: |
|
139 |
3523
|
140 std::ostream& os; |
2123
|
141 |
3523
|
142 std::string prefix; |
2530
|
143 |
4676
|
144 std::stack<char> nesting; |
|
145 |
2530
|
146 bool print_original_text; |
|
147 |
3708
|
148 // Current indentation. |
|
149 int curr_print_indent_level; |
|
150 |
|
151 // TRUE means we are at the beginning of a line. |
|
152 bool beginning_of_line; |
2123
|
153 |
4980
|
154 // TRUE means we are printing newlines and indenting. |
|
155 bool printing_newlines; |
|
156 |
3933
|
157 void reset_indent_level (void) { curr_print_indent_level = 0; } |
2123
|
158 |
3933
|
159 void increment_indent_level (void) { curr_print_indent_level += 2; } |
2123
|
160 |
3933
|
161 void decrement_indent_level (void) { curr_print_indent_level -= 2; } |
2123
|
162 |
4980
|
163 void newline (const char *alt_txt = ", "); |
2123
|
164 |
|
165 void indent (void); |
|
166 |
|
167 void reset (void); |
|
168 |
2961
|
169 void print_parens (const tree_expression& expr, const char *txt); |
|
170 |
3665
|
171 void print_comment_list (octave_comment_list *comment_list); |
|
172 |
|
173 void print_comment_elt (const octave_comment_elt& comment_elt); |
|
174 |
|
175 void print_indented_comment (octave_comment_list *comment_list); |
|
176 |
2123
|
177 // Must create with an output stream! |
|
178 |
|
179 tree_print_code (void); |
|
180 |
|
181 // No copying! |
|
182 |
|
183 tree_print_code (const tree_print_code&); |
|
184 |
|
185 tree_print_code& operator = (const tree_print_code&); |
|
186 }; |
|
187 |
|
188 #endif |
|
189 |
|
190 /* |
|
191 ;;; Local Variables: *** |
|
192 ;;; mode: C++ *** |
|
193 ;;; End: *** |
|
194 */ |