GNU Octave  9.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
pt-pr-code.h
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////
2 //
3 // Copyright (C) 1996-2024 The Octave Project Developers
4 //
5 // See the file COPYRIGHT.md in the top-level directory of this
6 // distribution or <https://octave.org/copyright/>.
7 //
8 // This file is part of Octave.
9 //
10 // Octave is free software: you can redistribute it and/or modify it
11 // under the terms of the GNU General Public License as published by
12 // the Free Software Foundation, either version 3 of the License, or
13 // (at your option) any later version.
14 //
15 // Octave is distributed in the hope that it will be useful, but
16 // WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 // GNU General Public License for more details.
19 //
20 // You should have received a copy of the GNU General Public License
21 // along with Octave; see the file COPYING. If not, see
22 // <https://www.gnu.org/licenses/>.
23 //
24 ////////////////////////////////////////////////////////////////////////
25 
26 #if ! defined (octave_pt_pr_code_h)
27 #define octave_pt_pr_code_h 1
28 
29 #include "octave-config.h"
30 
31 #include <stack>
32 #include <string>
33 
34 #include "pt-walk.h"
35 
37 
38 class comment_elt;
39 class comment_list;
40 class tree_decl_command;
41 class tree_expression;
42 
43 // How to print the code that the parse trees represent.
44 
46 {
47 public:
48 
49  tree_print_code (std::ostream& os_arg,
50  const std::string& pfx = "",
51  bool pr_orig_txt = true)
52  : m_os (os_arg), m_prefix (pfx), m_nesting (),
53  m_print_original_text (pr_orig_txt),
54  m_curr_print_indent_level (0), m_beginning_of_line (true),
55  m_suppress_newlines (0)
56  {
57  // For "none".
58  m_nesting.push ('n');
59  }
60 
61  OCTAVE_DISABLE_COPY_MOVE (tree_print_code)
62 
63  ~tree_print_code () = default;
64 
66 
68 
70 
72 
74 
76 
78 
80 
82 
84 
86 
88 
90 
92 
94 
96 
98 
100 
102 
104 
106 
108 
110 
112 
114 
116 
118 
120 
121  void visit_matrix (tree_matrix&);
122 
123  void visit_cell (tree_cell&);
124 
126 
128 
130 
132 
134 
136 
138 
140 
142 
144 
146 
148 
150 
152 
154 
156 
158 
160 
162 
164 
165 private:
166 
167  std::ostream& m_os;
168 
169  std::string m_prefix;
170 
171  std::stack<char> m_nesting;
172 
173  bool m_print_original_text;
174 
175  // Current indentation.
176  int m_curr_print_indent_level;
177 
178  // TRUE means we are at the beginning of a line.
179  bool m_beginning_of_line;
180 
181  // Nonzero means we are not printing newlines and indenting.
182  int m_suppress_newlines;
183 
184  void reset_indent_level () { m_curr_print_indent_level = 0; }
185 
186  void increment_indent_level () { m_curr_print_indent_level += 2; }
187 
188  void decrement_indent_level () { m_curr_print_indent_level -= 2; }
189 
190  void newline (const char *alt_txt = ", ");
191 
192  void indent ();
193 
194  void reset ();
195 
196  void print_parens (const tree_expression& expr, const char *txt);
197 
198  void print_comment_list (comment_list *comment_list);
199 
200  void print_comment_elt (const comment_elt& comment_elt);
201 
202  void print_indented_comment (comment_list *comment_list);
203 
204  // Must create with an output stream!
205 
206  tree_print_code ();
207 };
208 
209 OCTAVE_END_NAMESPACE(octave)
210 
211 #endif
void visit_binary_expression(tree_binary_expression &)
Definition: pt-pr-code.cc:118
void visit_continue_command(tree_continue_command &)
Definition: pt-pr-code.cc:181
void visit_switch_case(tree_switch_case &)
Definition: pt-pr-code.cc:939
void visit_decl_init_list(tree_decl_init_list &)
Definition: pt-pr-code.cc:202
void visit_constant(tree_constant &)
Definition: pt-pr-code.cc:749
void visit_postfix_expression(tree_postfix_expression &)
Definition: pt-pr-code.cc:833
void visit_superclass_ref(tree_superclass_ref &)
Definition: pt-pr-code.cc:1179
void visit_no_op_command(tree_no_op_command &)
Definition: pt-pr-code.cc:738
void visit_args_block_attribute_list(tree_args_block_attribute_list &)
Definition: pt-pr-code.cc:88
void visit_while_command(tree_while_command &)
Definition: pt-pr-code.cc:1109
void visit_fcn_handle(tree_fcn_handle &)
Definition: pt-pr-code.cc:761
void visit_arguments_block(tree_arguments_block &)
Definition: pt-pr-code.cc:79
~tree_print_code()=default
void visit_switch_command(tree_switch_command &)
Definition: pt-pr-code.cc:972
void visit_prefix_expression(tree_prefix_expression &)
Definition: pt-pr-code.cc:850
void visit_octave_user_function_header(octave_user_function &)
Definition: pt-pr-code.cc:396
void visit_simple_assignment(tree_simple_assignment &)
Definition: pt-pr-code.cc:875
void visit_decl_command(tree_decl_command &)
Definition: pt-pr-code.cc:189
void visit_if_clause(tree_if_clause &)
Definition: pt-pr-code.cc:465
tree_print_code(std::ostream &os_arg, const std::string &pfx="", bool pr_orig_txt=true)
Definition: pt-pr-code.h:49
void visit_index_expression(tree_index_expression &)
Definition: pt-pr-code.cc:540
void print_fcn_handle_body(tree_expression *)
Definition: pt-pr-code.cc:1191
void visit_statement(tree_statement &)
Definition: pt-pr-code.cc:897
void visit_break_command(tree_break_command &)
Definition: pt-pr-code.cc:140
void visit_return_command(tree_return_command &)
Definition: pt-pr-code.cc:867
void visit_if_command(tree_if_command &)
Definition: pt-pr-code.cc:487
void visit_unwind_protect_command(tree_unwind_protect_command &)
Definition: pt-pr-code.cc:1061
void visit_identifier(tree_identifier &)
Definition: pt-pr-code.cc:452
void visit_complex_for_command(tree_complex_for_command &)
Definition: pt-pr-code.cc:292
void visit_multi_assignment(tree_multi_assignment &)
Definition: pt-pr-code.cc:700
void visit_matrix(tree_matrix &)
Definition: pt-pr-code.cc:638
void visit_if_command_list(tree_if_command_list &)
Definition: pt-pr-code.cc:508
void visit_try_catch_command(tree_try_catch_command &)
Definition: pt-pr-code.cc:1006
void visit_do_until_command(tree_do_until_command &)
Definition: pt-pr-code.cc:1143
void visit_arg_validation(tree_arg_validation &)
Definition: pt-pr-code.cc:100
void visit_octave_user_function(octave_user_function &)
Definition: pt-pr-code.cc:375
void visit_parameter_list(tree_parameter_list &)
Definition: pt-pr-code.cc:773
void visit_statement_list(tree_statement_list &)
Definition: pt-pr-code.cc:929
void visit_spmd_command(tree_spmd_command &)
Definition: pt-pr-code.cc:335
void visit_decl_elt(tree_decl_elt &)
Definition: pt-pr-code.cc:221
void visit_args_block_validation_list(tree_args_block_validation_list &)
Definition: pt-pr-code.cc:94
void visit_arg_size_spec(tree_arg_size_spec &)
Definition: pt-pr-code.cc:106
void visit_simple_for_command(tree_simple_for_command &)
Definition: pt-pr-code.cc:239
void visit_anon_fcn_handle(tree_anon_fcn_handle &)
Definition: pt-pr-code.cc:41
void visit_argument_list(tree_argument_list &)
Definition: pt-pr-code.cc:60
void visit_colon_expression(tree_colon_expression &)
Definition: pt-pr-code.cc:148
void visit_octave_user_script(octave_user_script &)
Definition: pt-pr-code.cc:364
void visit_arg_validation_fcns(tree_arg_validation_fcns &)
Definition: pt-pr-code.cc:112
void visit_cell(tree_cell &)
Definition: pt-pr-code.cc:669
void visit_octave_user_function_trailer(octave_user_function &)
Definition: pt-pr-code.cc:431
void visit_metaclass_query(tree_metaclass_query &)
Definition: pt-pr-code.cc:1185
void visit_function_def(tree_function_def &)
Definition: pt-pr-code.cc:439
OCTAVE_BEGIN_NAMESPACE(octave) static octave_value daspk_fcn