GNU Octave  4.2.1
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
pt-pr-code.h
Go to the documentation of this file.
1 /*
2 
3 Copyright (C) 1996-2017 John W. Eaton
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 3 of the License, or (at your
10 option) any 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, see
19 <http://www.gnu.org/licenses/>.
20 
21 */
22 
23 #if ! defined (octave_pt_pr_code_h)
24 #define octave_pt_pr_code_h 1
25 
26 #include "octave-config.h"
27 
28 #include <stack>
29 #include <string>
30 
31 #include "comment-list.h"
32 #include "pt-walk.h"
33 
34 class tree_decl_command;
35 class tree_expression;
36 
37 // How to print the code that the parse trees represent.
38 
39 class
41 {
42 public:
43 
44  tree_print_code (std::ostream& os_arg,
45  const std::string& pfx = "",
46  bool pr_orig_txt = true)
47  : os (os_arg), prefix (pfx), nesting (),
48  print_original_text (pr_orig_txt),
49  curr_print_indent_level (0), beginning_of_line (true),
50  suppress_newlines (0)
51  {
52  // For "none".
53  nesting.push ('n');
54  }
55 
56  ~tree_print_code (void) { }
57 
58  void visit_anon_fcn_handle (tree_anon_fcn_handle&);
59 
60  void visit_argument_list (tree_argument_list&);
61 
62  void visit_binary_expression (tree_binary_expression&);
63 
64  void visit_break_command (tree_break_command&);
65 
66  void visit_colon_expression (tree_colon_expression&);
67 
68  void visit_continue_command (tree_continue_command&);
69 
70  void visit_global_command (tree_global_command&);
71 
72  void visit_persistent_command (tree_persistent_command&);
73 
74  void visit_decl_elt (tree_decl_elt&);
75 
76  void visit_decl_init_list (tree_decl_init_list&);
77 
78  void visit_simple_for_command (tree_simple_for_command&);
79 
80  void visit_complex_for_command (tree_complex_for_command&);
81 
82  void visit_octave_user_script (octave_user_script&);
83 
84  void visit_octave_user_function (octave_user_function&);
85 
86  void visit_octave_user_function_header (octave_user_function&);
87 
88  void visit_octave_user_function_trailer (octave_user_function&);
89 
90  void visit_function_def (tree_function_def&);
91 
92  void visit_identifier (tree_identifier&);
93 
94  void visit_if_clause (tree_if_clause&);
95 
96  void visit_if_command (tree_if_command&);
97 
98  void visit_if_command_list (tree_if_command_list&);
99 
100  void visit_index_expression (tree_index_expression&);
101 
102  void visit_matrix (tree_matrix&);
103 
104  void visit_cell (tree_cell&);
105 
106  void visit_multi_assignment (tree_multi_assignment&);
107 
108  void visit_no_op_command (tree_no_op_command&);
109 
110  void visit_constant (tree_constant&);
111 
112  void visit_fcn_handle (tree_fcn_handle&);
113 
114  void visit_funcall (tree_funcall&);
115 
116  void visit_parameter_list (tree_parameter_list&);
117 
118  void visit_postfix_expression (tree_postfix_expression&);
119 
120  void visit_prefix_expression (tree_prefix_expression&);
121 
122  void visit_return_command (tree_return_command&);
123 
124  void visit_return_list (tree_return_list&);
125 
126  void visit_simple_assignment (tree_simple_assignment&);
127 
128  void visit_statement (tree_statement&);
129 
130  void visit_statement_list (tree_statement_list&);
131 
132  void visit_switch_case (tree_switch_case&);
133 
134  void visit_switch_case_list (tree_switch_case_list&);
135 
136  void visit_switch_command (tree_switch_command&);
137 
138  void visit_try_catch_command (tree_try_catch_command&);
139 
140  void visit_unwind_protect_command (tree_unwind_protect_command&);
141 
142  void visit_while_command (tree_while_command&);
143 
144  void visit_do_until_command (tree_do_until_command&);
145 
146  void print_fcn_handle_body (tree_statement_list *);
147 
148 private:
149 
150  std::ostream& os;
151 
153 
154  std::stack<char> nesting;
155 
157 
158  // Current indentation.
160 
161  // TRUE means we are at the beginning of a line.
163 
164  // Nonzero means we are not printing newlines and indenting.
166 
167  void do_decl_command (tree_decl_command& cmd);
168 
169  void reset_indent_level (void) { curr_print_indent_level = 0; }
170 
171  void increment_indent_level (void) { curr_print_indent_level += 2; }
172 
173  void decrement_indent_level (void) { curr_print_indent_level -= 2; }
174 
175  void newline (const char *alt_txt = ", ");
176 
177  void indent (void);
178 
179  void reset (void);
180 
181  void print_parens (const tree_expression& expr, const char *txt);
182 
183  void print_comment_list (octave_comment_list *comment_list);
184 
185  void print_comment_elt (const octave_comment_elt& comment_elt);
186 
187  void print_indented_comment (octave_comment_list *comment_list);
188 
189  // Must create with an output stream!
190 
191  tree_print_code (void);
192 
193  // No copying!
194 
196 
198 };
199 
200 #endif
void decrement_indent_level(void)
Definition: pt-pr-code.h:173
bool print_original_text
Definition: pt-pr-code.h:156
bool beginning_of_line
Definition: pt-pr-code.h:162
void increment_indent_level(void)
Definition: pt-pr-code.h:171
tree_expression & operator=(const tree_expression &)
std::ostream & os
Definition: pt-pr-code.h:150
~tree_print_code(void)
Definition: pt-pr-code.h:56
void reset_indent_level(void)
Definition: pt-pr-code.h:169
std::stack< char > nesting
Definition: pt-pr-code.h:154
std::string prefix
Definition: pt-pr-code.h:152
tree_print_code(std::ostream &os_arg, const std::string &pfx="", bool pr_orig_txt=true)
Definition: pt-pr-code.h:44
int curr_print_indent_level
Definition: pt-pr-code.h:159
If this string is the system will ring the terminal sometimes it is useful to be able to print the original representation of the string
Definition: utils.cc:854