Mercurial > hg > octave-avbm
annotate src/toplev.cc @ 9483:25c2e92ee03c
correctly skip frame assigned to keyboard function
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Tue, 04 Aug 2009 12:59:16 -0400 |
parents | deb668d53e60 |
children | bbe033dcfe13 |
rev | line source |
---|---|
1683 | 1 /* |
2 | |
7017 | 3 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, |
8920 | 4 2004, 2005, 2006, 2007, 2008, 2009 John W. Eaton |
1683 | 5 |
6 This file is part of Octave. | |
7 | |
8 Octave is free software; you can redistribute it and/or modify it | |
9 under the terms of the GNU General Public License as published by the | |
7016 | 10 Free Software Foundation; either version 3 of the License, or (at your |
11 option) any later version. | |
1683 | 12 |
13 Octave is distributed in the hope that it will be useful, but WITHOUT | |
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
16 for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
7016 | 19 along with Octave; see the file COPYING. If not, see |
20 <http://www.gnu.org/licenses/>. | |
1683 | 21 |
22 */ | |
23 | |
24 #ifdef HAVE_CONFIG_H | |
25 #include <config.h> | |
26 #endif | |
27 | |
28 #include <cassert> | |
4489 | 29 #include <cerrno> |
1683 | 30 #include <cstdlib> |
31 #include <cstring> | |
4221 | 32 #include <new> |
1683 | 33 |
3503 | 34 #include <fstream> |
35 #include <iostream> | |
5765 | 36 #include <sstream> |
1728 | 37 #include <string> |
38 | |
1683 | 39 #ifdef HAVE_UNISTD_H |
2442 | 40 #ifdef HAVE_SYS_TYPES_H |
1683 | 41 #include <sys/types.h> |
2442 | 42 #endif |
1683 | 43 #include <unistd.h> |
44 #endif | |
45 | |
2926 | 46 #include "cmd-edit.h" |
47 #include "file-ops.h" | |
1683 | 48 #include "lo-error.h" |
2370 | 49 #include "lo-mappers.h" |
3020 | 50 #include "oct-env.h" |
4153 | 51 #include "quit.h" |
1755 | 52 #include "str-vec.h" |
8377
25bc2d31e1bf
improve OCTAVE_LOCAL_BUFFER
Jaroslav Hajek <highegg@gmail.com>
parents:
8347
diff
changeset
|
53 #include "oct-locbuf.h" |
1683 | 54 |
2492 | 55 #include <defaults.h> |
1683 | 56 #include "defun.h" |
57 #include "error.h" | |
58 #include "file-io.h" | |
59 #include "input.h" | |
60 #include "lex.h" | |
2492 | 61 #include <oct-conf.h> |
1742 | 62 #include "oct-hist.h" |
2162 | 63 #include "oct-map.h" |
2862 | 64 #include "oct-obj.h" |
1683 | 65 #include "pager.h" |
66 #include "parse.h" | |
67 #include "pathsearch.h" | |
68 #include "procstream.h" | |
2370 | 69 #include "ov.h" |
8658
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8581
diff
changeset
|
70 #include "pt-eval.h" |
2985 | 71 #include "pt-jump.h" |
2982 | 72 #include "pt-stmt.h" |
1683 | 73 #include "sighandlers.h" |
74 #include "sysdep.h" | |
2693 | 75 #include "syswait.h" |
1750 | 76 #include "toplev.h" |
1683 | 77 #include "unwind-prot.h" |
78 #include "utils.h" | |
79 #include "variables.h" | |
2492 | 80 #include <version.h> |
1683 | 81 |
9217
ee7cf4d963f3
smarter handling of quit()
Jaroslav Hajek <highegg@gmail.com>
parents:
9187
diff
changeset
|
82 void (*octave_exit) (int) = ::exit; |
ee7cf4d963f3
smarter handling of quit()
Jaroslav Hajek <highegg@gmail.com>
parents:
9187
diff
changeset
|
83 |
9255
1c2d2c9f4a8d
don't allow quit() in embedded mode by default, make configurable
Jaroslav Hajek <highegg@gmail.com>
parents:
9217
diff
changeset
|
84 // TRUE means the quit() call is allowed. |
1c2d2c9f4a8d
don't allow quit() in embedded mode by default, make configurable
Jaroslav Hajek <highegg@gmail.com>
parents:
9217
diff
changeset
|
85 bool quit_allowed = true; |
1c2d2c9f4a8d
don't allow quit() in embedded mode by default, make configurable
Jaroslav Hajek <highegg@gmail.com>
parents:
9217
diff
changeset
|
86 |
3020 | 87 // TRUE means we are exiting via the builtin exit or quit functions. |
9383 | 88 bool quitting_gracefully = false; |
89 // This stores the exit status. | |
90 int exit_status = 0; | |
1683 | 91 |
4217 | 92 // TRUE means we are ready to interpret commands, but not everything |
93 // is ready for interactive use. | |
94 bool octave_interpreter_ready = false; | |
95 | |
4172 | 96 // TRUE means we've processed all the init code and we are good to go. |
97 bool octave_initialized = false; | |
98 | |
1683 | 99 // Current command to execute. |
100 tree_statement_list *global_command = 0; | |
101 | |
5743 | 102 octave_call_stack *octave_call_stack::instance = 0; |
103 | |
7734
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
104 int |
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
105 octave_call_stack::do_current_line (void) const |
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
106 { |
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
107 tree_statement *stmt = do_top_statement (); |
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
108 |
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
109 return stmt ? stmt->line () : -1; |
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
110 } |
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
111 |
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
112 int |
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
113 octave_call_stack::do_current_column (void) const |
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
114 { |
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
115 tree_statement *stmt = do_top_statement (); |
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
116 |
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
117 return stmt ? stmt->column () : -1; |
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
118 } |
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
119 |
7877 | 120 int |
7923
c3d21b9b94b6
eliminate octave_call_stack member functions caller_user_script and caller_user_function, and unused difference_type args
John W. Eaton <jwe@octave.org>
parents:
7913
diff
changeset
|
121 octave_call_stack::do_caller_user_code_line (void) const |
7877 | 122 { |
123 int retval = -1; | |
124 | |
7890 | 125 const_iterator p = cs.end (); |
126 | |
127 while (p != cs.begin ()) | |
7877 | 128 { |
7890 | 129 const call_stack_elt& elt = *(--p); |
7877 | 130 |
131 octave_function *f = elt.fcn; | |
132 | |
133 if (f && f->is_user_code ()) | |
134 { | |
135 tree_statement *stmt = elt.stmt; | |
136 | |
137 if (stmt) | |
138 { | |
139 retval = stmt->line (); | |
140 break; | |
141 } | |
142 } | |
143 } | |
144 | |
145 return retval; | |
146 } | |
147 | |
148 int | |
7923
c3d21b9b94b6
eliminate octave_call_stack member functions caller_user_script and caller_user_function, and unused difference_type args
John W. Eaton <jwe@octave.org>
parents:
7913
diff
changeset
|
149 octave_call_stack::do_caller_user_code_column (void) const |
7877 | 150 { |
151 int retval = -1; | |
152 | |
7890 | 153 const_iterator p = cs.end (); |
154 | |
155 while (p != cs.begin ()) | |
7877 | 156 { |
7890 | 157 const call_stack_elt& elt = *(--p); |
7877 | 158 |
159 octave_function *f = elt.fcn; | |
160 | |
161 if (f && f->is_user_code ()) | |
162 { | |
163 tree_statement *stmt = elt.stmt; | |
164 | |
165 if (stmt) | |
166 { | |
167 retval = stmt->column (); | |
168 break; | |
169 } | |
170 } | |
171 } | |
172 | |
173 return retval; | |
174 } | |
175 | |
7901 | 176 size_t |
177 octave_call_stack::do_num_user_code_frames (octave_idx_type& curr_user_frame) const | |
178 { | |
179 size_t retval = 0; | |
180 | |
181 curr_user_frame = 0; | |
182 | |
183 // Look for the caller of dbstack. | |
184 size_t frame = cs[curr_frame].prev; | |
185 | |
186 bool found = false; | |
187 | |
188 size_t k = cs.size (); | |
189 | |
190 for (const_reverse_iterator p = cs.rbegin (); p != cs.rend (); p++) | |
191 { | |
192 octave_function *f = (*p).fcn; | |
193 | |
194 if (--k == frame) | |
195 found = true; | |
196 | |
197 if (f && f->is_user_code ()) | |
198 { | |
199 if (! found) | |
200 curr_user_frame++; | |
201 | |
202 retval++; | |
203 } | |
204 } | |
205 | |
206 // We counted how many user frames were not the one, in reverse. | |
207 // Now set curr_user_frame to be the index in the other direction. | |
208 curr_user_frame = retval - curr_user_frame - 1; | |
209 | |
210 return retval; | |
211 } | |
212 | |
7719
87eda1f8faaa
octave_user_code: new base class for octave_user_script and octave_user_function
John W. Eaton <jwe@octave.org>
parents:
7552
diff
changeset
|
213 octave_user_code * |
7923
c3d21b9b94b6
eliminate octave_call_stack member functions caller_user_script and caller_user_function, and unused difference_type args
John W. Eaton <jwe@octave.org>
parents:
7913
diff
changeset
|
214 octave_call_stack::do_caller_user_code (size_t nskip) const |
5744 | 215 { |
7719
87eda1f8faaa
octave_user_code: new base class for octave_user_script and octave_user_function
John W. Eaton <jwe@octave.org>
parents:
7552
diff
changeset
|
216 octave_user_code *retval = 0; |
5744 | 217 |
7890 | 218 const_iterator p = cs.end (); |
219 | |
220 while (p != cs.begin ()) | |
5744 | 221 { |
7890 | 222 const call_stack_elt& elt = *(--p); |
7734
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
223 |
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
224 octave_function *f = elt.fcn; |
5744 | 225 |
7719
87eda1f8faaa
octave_user_code: new base class for octave_user_script and octave_user_function
John W. Eaton <jwe@octave.org>
parents:
7552
diff
changeset
|
226 if (f && f->is_user_code ()) |
5744 | 227 { |
7923
c3d21b9b94b6
eliminate octave_call_stack member functions caller_user_script and caller_user_function, and unused difference_type args
John W. Eaton <jwe@octave.org>
parents:
7913
diff
changeset
|
228 if (nskip > 0) |
c3d21b9b94b6
eliminate octave_call_stack member functions caller_user_script and caller_user_function, and unused difference_type args
John W. Eaton <jwe@octave.org>
parents:
7913
diff
changeset
|
229 nskip--; |
c3d21b9b94b6
eliminate octave_call_stack member functions caller_user_script and caller_user_function, and unused difference_type args
John W. Eaton <jwe@octave.org>
parents:
7913
diff
changeset
|
230 else |
c3d21b9b94b6
eliminate octave_call_stack member functions caller_user_script and caller_user_function, and unused difference_type args
John W. Eaton <jwe@octave.org>
parents:
7913
diff
changeset
|
231 { |
c3d21b9b94b6
eliminate octave_call_stack member functions caller_user_script and caller_user_function, and unused difference_type args
John W. Eaton <jwe@octave.org>
parents:
7913
diff
changeset
|
232 retval = dynamic_cast<octave_user_code *> (f); |
c3d21b9b94b6
eliminate octave_call_stack member functions caller_user_script and caller_user_function, and unused difference_type args
John W. Eaton <jwe@octave.org>
parents:
7913
diff
changeset
|
233 break; |
c3d21b9b94b6
eliminate octave_call_stack member functions caller_user_script and caller_user_function, and unused difference_type args
John W. Eaton <jwe@octave.org>
parents:
7913
diff
changeset
|
234 } |
5744 | 235 } |
236 } | |
237 | |
238 return retval; | |
239 } | |
240 | |
7734
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
241 Octave_map |
7901 | 242 octave_call_stack::do_backtrace (size_t nskip, |
243 octave_idx_type& curr_user_frame) const | |
7734
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
244 { |
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
245 Octave_map retval; |
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
246 |
7901 | 247 size_t user_code_frames = do_num_user_code_frames (curr_user_frame); |
248 | |
249 size_t nframes = nskip <= user_code_frames ? user_code_frames - nskip : 0; | |
7734
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
250 |
7901 | 251 // Our list is reversed. |
252 curr_user_frame = nframes - curr_user_frame - 1; | |
253 | |
254 Cell keys (6, 1); | |
7734
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
255 |
7901 | 256 keys(0) = "file"; |
257 keys(1) = "name"; | |
258 keys(2) = "line"; | |
259 keys(3) = "column"; | |
260 keys(4) = "scope"; | |
261 keys(5) = "context"; | |
7890 | 262 |
7901 | 263 Cell file (nframes, 1); |
264 Cell name (nframes, 1); | |
265 Cell line (nframes, 1); | |
266 Cell column (nframes, 1); | |
267 Cell scope (nframes, 1); | |
268 Cell context (nframes, 1); | |
7734
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
269 |
7901 | 270 if (nframes > 0) |
271 { | |
272 int k = 0; | |
273 | |
274 for (const_reverse_iterator p = cs.rbegin (); p != cs.rend (); p++) | |
7734
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
275 { |
7901 | 276 const call_stack_elt& elt = *p; |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
277 |
7736 | 278 octave_function *f = elt.fcn; |
7734
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
279 |
7901 | 280 if (f && f->is_user_code ()) |
7736 | 281 { |
7901 | 282 if (nskip > 0) |
283 nskip--; | |
7736 | 284 else |
285 { | |
7901 | 286 scope(k) = elt.scope; |
287 context(k) = elt.context; | |
288 | |
289 file(k) = f->fcn_file_name (); | |
290 std::string parent_fcn_name = f->parent_fcn_name (); | |
291 if (parent_fcn_name == std::string ()) | |
292 name(k) = f->name (); | |
293 else | |
294 name(k) = f->parent_fcn_name () + Vfilemarker + f->name (); | |
295 | |
296 tree_statement *stmt = elt.stmt; | |
297 | |
298 if (stmt) | |
299 { | |
300 line(k) = stmt->line (); | |
301 column(k) = stmt->column (); | |
302 } | |
303 else | |
304 { | |
305 line(k) = -1; | |
306 column(k) = -1; | |
307 } | |
308 | |
309 k++; | |
7736 | 310 } |
7734
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
311 } |
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
312 } |
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
313 |
7736 | 314 retval.assign ("file", file); |
315 retval.assign ("name", name); | |
316 retval.assign ("line", line); | |
317 retval.assign ("column", column); | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
318 retval.assign ("scope", scope); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
319 retval.assign ("context", context); |
7734
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
320 } |
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
321 |
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
322 return retval; |
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
323 } |
2dee19385d32
eliminate tree_statement_stack; handle current statement info in octave_call_stack
John W. Eaton <jwe@octave.org>
parents:
7733
diff
changeset
|
324 |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
325 bool |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
326 octave_call_stack::do_goto_frame (size_t n, bool verbose) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
327 { |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
328 bool retval = false; |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
329 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
330 if (n < cs.size ()) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
331 { |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
332 retval = true; |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
333 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
334 curr_frame = n; |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
335 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
336 const call_stack_elt& elt = cs[n]; |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
337 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
338 symbol_table::set_scope_and_context (elt.scope, elt.context); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
339 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
340 if (verbose) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
341 { |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
342 octave_function *f = elt.fcn; |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
343 std::string nm = f ? f->name () : std::string ("<unknown>"); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
344 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
345 tree_statement *s = elt.stmt; |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
346 int l = -1; |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
347 int c = -1; |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
348 if (s) |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
349 { |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
350 l = s->line (); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
351 c = s->column (); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
352 } |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
353 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
354 octave_stdout << "stopped in " << nm |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
355 << " at line " << l << " column " << c |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
356 << " (" << elt.scope << "[" << elt.context << "])" |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
357 << std::endl; |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
358 } |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
359 } |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
360 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
361 return retval; |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
362 } |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
363 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
364 bool |
7901 | 365 octave_call_stack::do_goto_frame_relative (int nskip, bool verbose) |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
366 { |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
367 bool retval = false; |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
368 |
9483
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
369 int incr = 0; |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
370 |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
371 if (nskip < 0) |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
372 incr = -1; |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
373 else if (nskip > 0) |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
374 incr = 1; |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
375 |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
376 // Start looking with the caller of dbup/dbdown/keyboard. |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
377 size_t frame = cs[curr_frame].prev; |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
378 |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
379 while (true) |
7890 | 380 { |
9483
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
381 if ((incr < 0 && frame == 0) || (incr > 0 && frame == cs.size () - 1)) |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
382 break; |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
383 |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
384 frame += incr; |
7901 | 385 |
9483
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
386 const call_stack_elt& elt = cs[frame]; |
7901 | 387 |
9483
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
388 octave_function *f = elt.fcn; |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
389 |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
390 if (f && f->is_user_code ()) |
7901 | 391 { |
9483
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
392 if (nskip > 0) |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
393 nskip--; |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
394 else if (nskip < 0) |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
395 nskip++; |
7901 | 396 |
9483
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
397 if (nskip == 0) |
7901 | 398 { |
9483
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
399 curr_frame = frame; |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
400 cs[cs.size () - 1].prev = curr_frame; |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
401 |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
402 symbol_table::set_scope_and_context (elt.scope, elt.context); |
7901 | 403 |
9483
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
404 if (verbose) |
7901 | 405 { |
9483
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
406 tree_statement *s = elt.stmt; |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
407 int l = -1; |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
408 int c = -1; |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
409 if (s) |
7901 | 410 { |
9483
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
411 l = s->line (); |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
412 c = s->column (); |
7901 | 413 } |
414 | |
9483
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
415 std::ostringstream buf; |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
416 buf << f->name () << ": " << " line " << l |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
417 << ", column " << c << std::endl; |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
418 |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
419 octave_stdout << buf.str (); |
7901 | 420 } |
9483
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
421 |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
422 retval = true; |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
423 break; |
7901 | 424 } |
425 } | |
426 | |
427 // There is no need to set scope and context here. That will | |
9483
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
428 // happen when the dbup/dbdown/keyboard frame is popped and we |
25c2e92ee03c
correctly skip frame assigned to keyboard function
John W. Eaton <jwe@octave.org>
parents:
9452
diff
changeset
|
429 // jump to the new "prev" frame set above. |
7890 | 430 } |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
431 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
432 return retval; |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
433 } |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
434 |
5744 | 435 void |
7901 | 436 octave_call_stack::do_goto_caller_frame (void) |
437 { | |
438 size_t frame = curr_frame; | |
439 | |
440 bool skipped = false; | |
441 | |
442 while (frame != 0) | |
443 { | |
444 frame = cs[frame].prev; | |
445 | |
446 const call_stack_elt& elt = cs[frame]; | |
447 | |
448 octave_function *f = elt.fcn; | |
449 | |
8581
6adcafc70c32
toplev.cc (octave_call_stack::do_goto_caller_frame): allow caller frame to be base frame
John W. Eaton <jwe@octave.org>
parents:
8574
diff
changeset
|
450 if (frame == 0 || (f && f->is_user_code ())) |
7901 | 451 { |
452 if (! skipped) | |
453 // We found the current user code frame, so skip it. | |
454 skipped = true; | |
455 else | |
456 { | |
457 // We found the caller user code frame. | |
458 call_stack_elt tmp (elt); | |
459 tmp.prev = curr_frame; | |
460 | |
461 curr_frame = cs.size (); | |
462 | |
463 cs.push_back (tmp); | |
464 | |
465 symbol_table::set_scope_and_context (tmp.scope, tmp.context); | |
466 | |
467 break; | |
468 } | |
469 } | |
470 } | |
471 } | |
472 | |
473 void | |
474 octave_call_stack::do_goto_base_frame (void) | |
475 { | |
476 call_stack_elt tmp (cs[0]); | |
477 tmp.prev = curr_frame; | |
478 | |
479 curr_frame = cs.size (); | |
480 | |
481 cs.push_back (tmp); | |
482 | |
483 symbol_table::set_scope_and_context (tmp.scope, tmp.context); | |
484 } | |
485 | |
486 void | |
8013
b3e667f1ab4c
call backtrace_error_message in eval functions, not when popping stack
John W. Eaton <jwe@octave.org>
parents:
8011
diff
changeset
|
487 octave_call_stack::do_backtrace_error_message (void) const |
8011
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
488 { |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
489 if (error_state > 0) |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
490 { |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
491 error_state = -1; |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
492 |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
493 error ("called from:"); |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
494 } |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
495 |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
496 if (! cs.empty ()) |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
497 { |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
498 const call_stack_elt& elt = cs.back (); |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
499 |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
500 octave_function *fcn = elt.fcn; |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
501 tree_statement *stmt = elt.stmt; |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
502 |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
503 std::string fcn_name = "?unknown?"; |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
504 |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
505 if (fcn) |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
506 { |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
507 fcn_name = fcn->fcn_file_name (); |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
508 |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
509 if (fcn_name.empty ()) |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
510 fcn_name = fcn->name (); |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
511 } |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
512 |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
513 int line = stmt ? stmt->line () : -1; |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
514 int column = stmt ? stmt->column () : -1; |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
515 |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
516 error (" %s at line %d, column %d", |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
517 fcn_name.c_str (), line, column); |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
518 } |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
519 } |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
520 |
3100283874d7
improve backtrace error messages
John W. Eaton <jwe@octave.org>
parents:
7968
diff
changeset
|
521 void |
4180 | 522 recover_from_exception (void) |
523 { | |
524 can_interrupt = true; | |
4182 | 525 octave_interrupt_immediately = 0; |
4180 | 526 octave_interrupt_state = 0; |
5142 | 527 octave_signal_caught = 0; |
7481
78f3811155f7
use exceptions in liboctave error handler
John W. Eaton <jwe@octave.org>
parents:
7409
diff
changeset
|
528 octave_exception_state = octave_no_exception; |
4180 | 529 octave_restore_signal_mask (); |
530 octave_catch_interrupts (); | |
531 } | |
532 | |
1907 | 533 int |
5189 | 534 main_loop (void) |
1907 | 535 { |
2016 | 536 octave_save_signal_mask (); |
537 | |
3020 | 538 can_interrupt = true; |
1907 | 539 |
5142 | 540 octave_signal_hook = octave_signal_handler; |
4429 | 541 octave_interrupt_hook = unwind_protect::run_all; |
542 octave_bad_alloc_hook = unwind_protect::run_all; | |
543 | |
2554 | 544 octave_catch_interrupts (); |
1907 | 545 |
4172 | 546 octave_initialized = true; |
547 | |
1907 | 548 // The big loop. |
549 | |
4153 | 550 int retval = 0; |
1907 | 551 do |
552 { | |
4180 | 553 try |
1907 | 554 { |
9377
610bf90fce2a
update unwind_protect usage everywhere
Jaroslav Hajek <highegg@gmail.com>
parents:
9260
diff
changeset
|
555 unwind_protect::frame_id_t uwp_frame = unwind_protect::begin_frame (); |
9260
9c2349a51218
properly unmark forced variables
John W. Eaton <jwe@octave.org>
parents:
9255
diff
changeset
|
556 |
4318 | 557 reset_error_handler (); |
558 | |
4153 | 559 reset_parser (); |
2620 | 560 |
9260
9c2349a51218
properly unmark forced variables
John W. Eaton <jwe@octave.org>
parents:
9255
diff
changeset
|
561 // Do this with an unwind-protect cleanup function so that |
9c2349a51218
properly unmark forced variables
John W. Eaton <jwe@octave.org>
parents:
9255
diff
changeset
|
562 // the forced variables will be unmarked in the event of an |
9c2349a51218
properly unmark forced variables
John W. Eaton <jwe@octave.org>
parents:
9255
diff
changeset
|
563 // interrupt. |
9c2349a51218
properly unmark forced variables
John W. Eaton <jwe@octave.org>
parents:
9255
diff
changeset
|
564 symbol_table::scope_id scope = symbol_table::top_scope (); |
9396
17af7cce7d1b
yet more unwind_protect improvements
Jaroslav Hajek <highegg@gmail.com>
parents:
9395
diff
changeset
|
565 unwind_protect::add_fcn (symbol_table::unmark_forced_variables, scope); |
9260
9c2349a51218
properly unmark forced variables
John W. Eaton <jwe@octave.org>
parents:
9255
diff
changeset
|
566 |
4753 | 567 // This is the same as yyparse in parse.y. |
568 retval = octave_parse (); | |
2620 | 569 |
4153 | 570 if (retval == 0) |
571 { | |
7913
f46e73bcb85b
toplev.cc (main_loop): undo previous change; input.cc (get_debug_input): don't delete global_command here
John W. Eaton <jwe@octave.org>
parents:
7903
diff
changeset
|
572 if (global_command) |
3804 | 573 { |
8658
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8581
diff
changeset
|
574 global_command->accept (*current_evaluator); |
3883 | 575 |
7913
f46e73bcb85b
toplev.cc (main_loop): undo previous change; input.cc (get_debug_input): don't delete global_command here
John W. Eaton <jwe@octave.org>
parents:
7903
diff
changeset
|
576 delete global_command; |
3883 | 577 |
7913
f46e73bcb85b
toplev.cc (main_loop): undo previous change; input.cc (get_debug_input): don't delete global_command here
John W. Eaton <jwe@octave.org>
parents:
7903
diff
changeset
|
578 global_command = 0; |
3883 | 579 |
4171 | 580 OCTAVE_QUIT; |
581 | |
3883 | 582 if (! (interactive || forced_interactive)) |
583 { | |
4207 | 584 bool quit = (tree_return_command::returning |
585 || tree_break_command::breaking); | |
4153 | 586 |
4207 | 587 if (tree_return_command::returning) |
588 tree_return_command::returning = 0; | |
4153 | 589 |
4207 | 590 if (tree_break_command::breaking) |
591 tree_break_command::breaking--; | |
4153 | 592 |
593 if (quit) | |
594 break; | |
595 } | |
596 | |
597 if (error_state) | |
598 { | |
599 if (! (interactive || forced_interactive)) | |
600 { | |
601 // We should exit with a non-zero status. | |
602 retval = 1; | |
603 break; | |
604 } | |
605 } | |
606 else | |
607 { | |
608 if (octave_completion_matches_called) | |
609 octave_completion_matches_called = false; | |
610 else | |
611 command_editor::increment_current_command_number (); | |
3883 | 612 } |
613 } | |
4153 | 614 else if (parser_end_of_input) |
615 break; | |
2620 | 616 } |
9260
9c2349a51218
properly unmark forced variables
John W. Eaton <jwe@octave.org>
parents:
9255
diff
changeset
|
617 |
9377
610bf90fce2a
update unwind_protect usage everywhere
Jaroslav Hajek <highegg@gmail.com>
parents:
9260
diff
changeset
|
618 unwind_protect::run_frame (uwp_frame); |
4153 | 619 } |
4182 | 620 catch (octave_interrupt_exception) |
4153 | 621 { |
4180 | 622 recover_from_exception (); |
9383 | 623 octave_stdout << "\n"; |
624 if (quitting_gracefully) | |
625 { | |
626 clean_up_and_exit (exit_status); | |
627 break; // If user has overriden the exit func. | |
628 } | |
4180 | 629 } |
8704
236ff50db90f
load-path.cc: catch execution exception in getcwd
John W. Eaton <jwe@octave.org>
parents:
8669
diff
changeset
|
630 catch (octave_execution_exception) |
236ff50db90f
load-path.cc: catch execution exception in getcwd
John W. Eaton <jwe@octave.org>
parents:
8669
diff
changeset
|
631 { |
236ff50db90f
load-path.cc: catch execution exception in getcwd
John W. Eaton <jwe@octave.org>
parents:
8669
diff
changeset
|
632 recover_from_exception (); |
236ff50db90f
load-path.cc: catch execution exception in getcwd
John W. Eaton <jwe@octave.org>
parents:
8669
diff
changeset
|
633 std::cerr |
236ff50db90f
load-path.cc: catch execution exception in getcwd
John W. Eaton <jwe@octave.org>
parents:
8669
diff
changeset
|
634 << "error: unhandled execution exception -- trying to return to prompt" |
236ff50db90f
load-path.cc: catch execution exception in getcwd
John W. Eaton <jwe@octave.org>
parents:
8669
diff
changeset
|
635 << std::endl; |
236ff50db90f
load-path.cc: catch execution exception in getcwd
John W. Eaton <jwe@octave.org>
parents:
8669
diff
changeset
|
636 } |
4181 | 637 catch (std::bad_alloc) |
4180 | 638 { |
639 recover_from_exception (); | |
640 std::cerr | |
6680 | 641 << "error: memory exhausted or requested size too large for range of Octave's index type -- trying to return to prompt" |
642 << std::endl; | |
1907 | 643 } |
644 } | |
645 while (retval == 0); | |
646 | |
647 return retval; | |
648 } | |
649 | |
9452
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
650 // Call a function with exceptions handled to avoid problems with |
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
651 // errors while shutting down. |
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
652 |
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
653 #define IGNORE_EXCEPTION(E) \ |
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
654 catch (E) \ |
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
655 { \ |
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
656 std::cerr << "error: ignoring " #E " while preparing to exit" << std::endl; \ |
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
657 recover_from_exception (); \ |
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
658 } |
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
659 |
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
660 #define SAFE_CALL(F, ARGS) \ |
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
661 try \ |
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
662 { \ |
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
663 F ARGS; \ |
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
664 } \ |
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
665 IGNORE_EXCEPTION (octave_interrupt_exception) \ |
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
666 IGNORE_EXCEPTION (octave_execution_exception) \ |
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
667 IGNORE_EXCEPTION (std::bad_alloc) |
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
668 |
1683 | 669 // Fix up things before exiting. |
670 | |
671 void | |
3162 | 672 clean_up_and_exit (int retval) |
673 { | |
3216 | 674 do_octave_atexit (); |
1683 | 675 |
9452
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
676 SAFE_CALL (sysdep_cleanup, ()) |
5451 | 677 |
9217
ee7cf4d963f3
smarter handling of quit()
Jaroslav Hajek <highegg@gmail.com>
parents:
9187
diff
changeset
|
678 if (octave_exit) |
ee7cf4d963f3
smarter handling of quit()
Jaroslav Hajek <highegg@gmail.com>
parents:
9187
diff
changeset
|
679 (*octave_exit) (retval == EOF ? 0 : retval); |
1683 | 680 } |
681 | |
3180 | 682 DEFUN (quit, args, nargout, |
3332 | 683 "-*- texinfo -*-\n\ |
684 @deftypefn {Built-in Function} {} exit (@var{status})\n\ | |
685 @deftypefnx {Built-in Function} {} quit (@var{status})\n\ | |
686 Exit the current Octave session. If the optional integer value\n\ | |
687 @var{status} is supplied, pass that value to the operating system as the\n\ | |
6615 | 688 Octave's exit status. The default value is zero.\n\ |
3333 | 689 @end deftypefn") |
1683 | 690 { |
2086 | 691 octave_value_list retval; |
2068 | 692 |
9255
1c2d2c9f4a8d
don't allow quit() in embedded mode by default, make configurable
Jaroslav Hajek <highegg@gmail.com>
parents:
9217
diff
changeset
|
693 if (! quit_allowed) |
1c2d2c9f4a8d
don't allow quit() in embedded mode by default, make configurable
Jaroslav Hajek <highegg@gmail.com>
parents:
9217
diff
changeset
|
694 error ("quit: not supported in embedded mode."); |
1c2d2c9f4a8d
don't allow quit() in embedded mode by default, make configurable
Jaroslav Hajek <highegg@gmail.com>
parents:
9217
diff
changeset
|
695 else if (nargout == 0) |
2068 | 696 { |
3180 | 697 if (args.length () > 0) |
698 { | |
3202 | 699 int tmp = args(0).nint_value (); |
1683 | 700 |
3202 | 701 if (! error_state) |
702 exit_status = tmp; | |
3180 | 703 } |
704 | |
9383 | 705 if (! error_state) |
706 { | |
707 quitting_gracefully = true; | |
708 | |
709 // Simulate interrupt. | |
710 | |
711 octave_interrupt_state = -1; | |
712 | |
713 octave_throw_interrupt_exception (); | |
714 } | |
2068 | 715 } |
3180 | 716 else |
717 error ("quit: invalid number of output arguments"); | |
2068 | 718 |
1683 | 719 return retval; |
720 } | |
721 | |
722 DEFALIAS (exit, quit); | |
723 | |
1957 | 724 DEFUN (warranty, , , |
3446 | 725 "-*- texinfo -*-\n\ |
726 @deftypefn {Built-in Function} {} warranty ()\n\ | |
727 Describe the conditions for copying and distributing Octave.\n\ | |
728 @end deftypefn") | |
1683 | 729 { |
2086 | 730 octave_value_list retval; |
1683 | 731 |
3922 | 732 octave_stdout << "\n" \ |
733 OCTAVE_NAME_VERSION_AND_COPYRIGHT "\n\ | |
734 \n\ | |
1683 | 735 This program is free software; you can redistribute it and/or modify\n\ |
736 it under the terms of the GNU General Public License as published by\n\ | |
7016 | 737 the Free Software Foundation; either version 3 of the License, or\n\ |
1683 | 738 (at your option) any later version.\n\ |
739 \n\ | |
740 This program is distributed in the hope that it will be useful,\n\ | |
741 but WITHOUT ANY WARRANTY; without even the implied warranty of\n\ | |
742 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n\ | |
743 GNU General Public License for more details.\n\ | |
744 \n\ | |
745 You should have received a copy of the GNU General Public License\n\ | |
7016 | 746 along with this program. If not, see <http://www.gnu.org/licenses/>.\n\ |
1683 | 747 \n"; |
748 | |
749 return retval; | |
750 } | |
751 | |
752 // Execute a shell command. | |
753 | |
1965 | 754 static void |
755 cleanup_iprocstream (void *p) | |
756 { | |
3060 | 757 iprocstream *cmd = static_cast<iprocstream *> (p); |
758 | |
759 octave_child_list::remove (cmd->pid ()); | |
760 | |
761 delete cmd; | |
1965 | 762 } |
763 | |
6316 | 764 static int |
765 wait_for_input (int fid) | |
766 { | |
767 int retval = -1; | |
768 | |
769 #if defined (HAVE_SELECT) | |
770 if (fid >= 0) | |
771 { | |
772 fd_set set; | |
773 | |
774 FD_ZERO (&set); | |
775 FD_SET (fid, &set); | |
776 | |
777 retval = select (FD_SETSIZE, &set, 0, 0, 0); | |
778 } | |
779 #else | |
780 retval = 1; | |
781 #endif | |
782 | |
783 return retval; | |
784 } | |
785 | |
2086 | 786 static octave_value_list |
3523 | 787 run_command_and_return_output (const std::string& cmd_str) |
2083 | 788 { |
2086 | 789 octave_value_list retval; |
2083 | 790 |
791 iprocstream *cmd = new iprocstream (cmd_str.c_str ()); | |
792 | |
3060 | 793 if (cmd) |
2083 | 794 { |
3060 | 795 unwind_protect::add (cleanup_iprocstream, cmd); |
796 | |
797 if (*cmd) | |
798 { | |
6316 | 799 int fid = cmd->file_number (); |
2095 | 800 |
6316 | 801 std::ostringstream output_buf; |
4494 | 802 |
3060 | 803 char ch; |
3147 | 804 |
4489 | 805 for (;;) |
3147 | 806 { |
4489 | 807 if (cmd->get (ch)) |
808 output_buf.put (ch); | |
809 else | |
810 { | |
811 if (! cmd->eof () && errno == EAGAIN) | |
812 { | |
813 cmd->clear (); | |
3147 | 814 |
6316 | 815 if (wait_for_input (fid) != 1) |
816 break; | |
4489 | 817 } |
818 else | |
819 break; | |
820 } | |
3147 | 821 } |
822 | |
3252 | 823 int cmd_status = cmd->close (); |
2083 | 824 |
3060 | 825 if (WIFEXITED (cmd_status)) |
826 cmd_status = WEXITSTATUS (cmd_status); | |
827 else | |
828 cmd_status = 127; | |
2083 | 829 |
8810
c9e1db15035b
eliminate unnecessary casts
John W. Eaton <jwe@octave.org>
parents:
8772
diff
changeset
|
830 retval(0) = cmd_status; |
5765 | 831 retval(1) = output_buf.str (); |
3060 | 832 } |
833 | |
834 unwind_protect::run (); | |
2083 | 835 } |
836 else | |
837 error ("unable to start subprocess for `%s'", cmd_str.c_str ()); | |
838 | |
839 return retval; | |
840 } | |
841 | |
5285 | 842 enum system_exec_type { et_sync, et_async }; |
843 | |
1957 | 844 DEFUN (system, args, nargout, |
3301 | 845 "-*- texinfo -*-\n\ |
846 @deftypefn {Built-in Function} {} system (@var{string}, @var{return_output}, @var{type})\n\ | |
847 Execute a shell command specified by @var{string}. The second\n\ | |
848 argument is optional. If @var{type} is @code{\"async\"}, the process\n\ | |
849 is started in the background and the process id of the child process\n\ | |
850 is returned immediately. Otherwise, the process is started, and\n\ | |
8347
fa78cb8d8a5c
corrections for typos
Brian Gough<bjg@network-theory.co.uk>
parents:
8013
diff
changeset
|
851 Octave waits until it exits. If the @var{type} argument is omitted, a\n\ |
3301 | 852 value of @code{\"sync\"} is assumed.\n\ |
2083 | 853 \n\ |
3301 | 854 If two input arguments are given (the actual value of\n\ |
855 @var{return_output} is irrelevant) and the subprocess is started\n\ | |
856 synchronously, or if @var{system} is called with one input argument and\n\ | |
857 one or more output arguments, the output from the command is returned.\n\ | |
5097 | 858 Otherwise, if the subprocess is executed synchronously, its output is\n\ |
2321 | 859 sent to the standard output. To send the output of a command executed\n\ |
3301 | 860 with @var{system} through the pager, use a command like\n\ |
2321 | 861 \n\ |
3301 | 862 @example\n\ |
863 disp (system (cmd, 1));\n\ | |
864 @end example\n\ | |
2321 | 865 \n\ |
3301 | 866 @noindent\n\ |
2321 | 867 or\n\ |
868 \n\ | |
3301 | 869 @example\n\ |
9079
4d610aba7347
Cleanup documentation for system.texi, package.texi
Rik <rdrider0-list@yahoo.com>
parents:
9035
diff
changeset
|
870 printf (\"%s\\n\", system (cmd, 1));\n\ |
3301 | 871 @end example\n\ |
872 \n\ | |
5659 | 873 The @code{system} function can return two values. The first is the\n\ |
874 exit status of the command and the second is any output from the\n\ | |
875 command that was written to the standard output stream. For example,\n\ | |
3301 | 876 \n\ |
877 @example\n\ | |
5717 | 878 [status, output] = system (\"echo foo; exit 2\");\n\ |
3301 | 879 @end example\n\ |
880 \n\ | |
881 @noindent\n\ | |
882 will set the variable @code{output} to the string @samp{foo}, and the\n\ | |
883 variable @code{status} to the integer @samp{2}.\n\ | |
884 @end deftypefn") | |
1683 | 885 { |
2086 | 886 octave_value_list retval; |
1683 | 887 |
9377
610bf90fce2a
update unwind_protect usage everywhere
Jaroslav Hajek <highegg@gmail.com>
parents:
9260
diff
changeset
|
888 unwind_protect::frame_id_t uwp_frame = unwind_protect::begin_frame (); |
3834 | 889 |
1683 | 890 int nargin = args.length (); |
891 | |
2083 | 892 if (nargin > 0 && nargin < 4) |
1683 | 893 { |
5672 | 894 bool return_output = (nargout > 1 || nargin > 1); |
2083 | 895 |
3523 | 896 std::string cmd_str = args(0).string_value (); |
2083 | 897 |
5285 | 898 system_exec_type type = et_sync; |
2083 | 899 |
900 if (! error_state) | |
901 { | |
902 if (nargin > 2) | |
903 { | |
3523 | 904 std::string type_str = args(2).string_value (); |
1683 | 905 |
2083 | 906 if (! error_state) |
907 { | |
908 if (type_str == "sync") | |
5285 | 909 type = et_sync; |
2083 | 910 else if (type_str == "async") |
5285 | 911 type = et_async; |
2083 | 912 else |
913 error ("system: third arg must be \"sync\" or \"async\""); | |
914 } | |
915 else | |
916 error ("system: third argument must be a string"); | |
917 } | |
918 } | |
919 else | |
3523 | 920 error ("system: expecting std::string as first argument"); |
1683 | 921 |
2083 | 922 if (! error_state) |
923 { | |
7104 | 924 #if defined (__WIN32__) && ! defined (__CYGWIN__) |
925 // Work around weird double-quote handling on Windows systems. | |
926 if (type == et_sync) | |
927 cmd_str = "\"" + cmd_str + "\""; | |
928 #endif | |
929 | |
5285 | 930 if (type == et_async) |
2083 | 931 { |
6222 | 932 // FIXME -- maybe this should go in sysdep.cc? |
4086 | 933 #ifdef HAVE_FORK |
2083 | 934 pid_t pid = fork (); |
935 | |
936 if (pid < 0) | |
937 error ("system: fork failed -- can't create child process"); | |
938 else if (pid == 0) | |
939 { | |
5775 | 940 // FIXME -- should probably replace this |
3273 | 941 // call with something portable. |
942 | |
5510 | 943 execl ("/bin/sh", "sh", "-c", cmd_str.c_str (), |
944 static_cast<void *> (0)); | |
3273 | 945 |
946 panic_impossible (); | |
2083 | 947 } |
948 else | |
4254 | 949 retval(0) = pid; |
6222 | 950 #elif defined (__WIN32__) |
951 STARTUPINFO si; | |
952 PROCESS_INFORMATION pi; | |
953 ZeroMemory (&si, sizeof (si)); | |
954 ZeroMemory (&pi, sizeof (pi)); | |
955 OCTAVE_LOCAL_BUFFER (char, xcmd_str, cmd_str.length()+1); | |
6676 | 956 strcpy (xcmd_str, cmd_str.c_str ()); |
6222 | 957 |
958 if (! CreateProcess (0, xcmd_str, 0, 0, FALSE, 0, 0, 0, &si, &pi)) | |
959 error ("system: CreateProcess failed -- can't create child process"); | |
960 else | |
961 { | |
962 retval(0) = pi.dwProcessId; | |
963 CloseHandle (pi.hProcess); | |
964 CloseHandle (pi.hThread); | |
965 } | |
4086 | 966 #else |
967 error ("asynchronous system calls are not supported"); | |
968 #endif | |
2083 | 969 } |
2321 | 970 else if (return_output) |
971 retval = run_command_and_return_output (cmd_str); | |
2083 | 972 else |
2321 | 973 { |
974 int status = system (cmd_str.c_str ()); | |
975 | |
976 // The value in status is as returned by waitpid. If | |
977 // the process exited normally, extract the actual exit | |
978 // status of the command. Otherwise, return 127 as a | |
979 // failure code. | |
980 | |
2693 | 981 if (WIFEXITED (status)) |
982 status = WEXITSTATUS (status); | |
2321 | 983 |
4233 | 984 retval(0) = status; |
2321 | 985 } |
2083 | 986 } |
1683 | 987 } |
988 else | |
5823 | 989 print_usage (); |
1683 | 990 |
9377
610bf90fce2a
update unwind_protect usage everywhere
Jaroslav Hajek <highegg@gmail.com>
parents:
9260
diff
changeset
|
991 unwind_protect::run_frame (uwp_frame); |
3834 | 992 |
1683 | 993 return retval; |
994 } | |
995 | |
996 DEFALIAS (shell_cmd, system); | |
997 | |
5775 | 998 // FIXME -- this should really be static, but that causes |
2614 | 999 // problems on some systems. |
6680 | 1000 std::list<std::string> octave_atexit_functions; |
2077 | 1001 |
1002 void | |
1003 do_octave_atexit (void) | |
1004 { | |
3216 | 1005 static bool deja_vu = false; |
1006 | |
2077 | 1007 while (! octave_atexit_functions.empty ()) |
1008 { | |
6680 | 1009 std::string fcn = octave_atexit_functions.front (); |
4214 | 1010 |
6680 | 1011 octave_atexit_functions.pop_front (); |
2077 | 1012 |
9452
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
1013 SAFE_CALL (reset_error_handler, ()) |
5237 | 1014 |
9452
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
1015 SAFE_CALL (feval, (fcn, octave_value_list (), 0)) |
3215 | 1016 |
9452
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
1017 SAFE_CALL (flush_octave_stdout, ()) |
2077 | 1018 } |
3216 | 1019 |
1020 if (! deja_vu) | |
1021 { | |
1022 deja_vu = true; | |
1023 | |
6068 | 1024 // Do this explicitly so that destructors for mex file objects |
1025 // are called, so that functions registered with mexAtExit are | |
1026 // called. | |
9452
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
1027 SAFE_CALL (clear_mex_functions, ()) |
6068 | 1028 |
9452
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
1029 SAFE_CALL (command_editor::restore_terminal_state, ()) |
3216 | 1030 |
5775 | 1031 // FIXME -- is this needed? Can it cause any trouble? |
9452
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
1032 SAFE_CALL (raw_mode, (0)) |
3216 | 1033 |
9452
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
1034 SAFE_CALL (octave_history_write_timestamp, ()) |
5305 | 1035 |
8735
afbfd7f4fd93
toplev.cc (do_octave_atexit): only save history if Vsaving_history is true
John W. Eaton <jwe@octave.org>
parents:
8719
diff
changeset
|
1036 if (Vsaving_history) |
9452
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
1037 SAFE_CALL (command_history::clean_up_and_save, ()) |
3216 | 1038 |
9452
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
1039 SAFE_CALL (close_files, ()) |
3216 | 1040 |
9452
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
1041 SAFE_CALL (cleanup_tmp_files, ()) |
3216 | 1042 |
9452
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
1043 SAFE_CALL (flush_octave_stdout, ()) |
3216 | 1044 |
5305 | 1045 if (! quitting_gracefully && (interactive || forced_interactive)) |
5629 | 1046 { |
1047 octave_stdout << "\n"; | |
1048 | |
1049 // Yes, we want this to be separate from the call to | |
1050 // flush_octave_stdout above. | |
1051 | |
9452
deb668d53e60
toplev.cc: handle exceptions while preparing to exit
John W. Eaton <jwe@octave.org>
parents:
9396
diff
changeset
|
1052 SAFE_CALL (flush_octave_stdout, ()) |
5629 | 1053 } |
3216 | 1054 } |
2077 | 1055 } |
1056 | |
7409 | 1057 void |
1058 octave_add_atexit_function (const std::string& fname) | |
1059 { | |
1060 octave_atexit_functions.push_front (fname); | |
1061 } | |
1062 | |
1063 bool | |
1064 octave_remove_atexit_function (const std::string& fname) | |
1065 { | |
1066 bool found = false; | |
1067 | |
1068 for (std::list<std::string>::iterator p = octave_atexit_functions.begin (); | |
1069 p != octave_atexit_functions.end (); p++) | |
1070 { | |
1071 if (*p == fname) | |
1072 { | |
1073 octave_atexit_functions.erase (p); | |
1074 found = true; | |
1075 break; | |
1076 } | |
1077 } | |
1078 | |
1079 return found; | |
1080 } | |
1081 | |
1082 | |
6680 | 1083 DEFUN (atexit, args, nargout, |
3332 | 1084 "-*- texinfo -*-\n\ |
1085 @deftypefn {Built-in Function} {} atexit (@var{fcn})\n\ | |
9133
c0cef1436788
Update help text for sections 2.2 and 2.3 of basics.txi
Rik <rdrider0-list@yahoo.com>
parents:
9079
diff
changeset
|
1086 @deftypefnx {Built-in Function} {} atexit (@var{fcn}, @var{flag})\n\ |
3332 | 1087 Register a function to be called when Octave exits. For example,\n\ |
2077 | 1088 \n\ |
3332 | 1089 @example\n\ |
1090 @group\n\ | |
9035
57649dcecb55
Documentation cleanup of basics.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
1091 function last_words ()\n\ |
6620 | 1092 disp (\"Bye bye\");\n\ |
3332 | 1093 endfunction\n\ |
9035
57649dcecb55
Documentation cleanup of basics.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
1094 atexit (\"last_words\");\n\ |
3332 | 1095 @end group\n\ |
1096 @end example\n\ | |
1097 \n\ | |
1098 @noindent\n\ | |
6620 | 1099 will print the message \"Bye bye\" when Octave exits.\n\ |
6680 | 1100 \n\ |
9133
c0cef1436788
Update help text for sections 2.2 and 2.3 of basics.txi
Rik <rdrider0-list@yahoo.com>
parents:
9079
diff
changeset
|
1101 The additional argument @var{flag} will register or unregister\n\ |
c0cef1436788
Update help text for sections 2.2 and 2.3 of basics.txi
Rik <rdrider0-list@yahoo.com>
parents:
9079
diff
changeset
|
1102 @var{fcn} from the list of functions to be called when Octave\n\ |
c0cef1436788
Update help text for sections 2.2 and 2.3 of basics.txi
Rik <rdrider0-list@yahoo.com>
parents:
9079
diff
changeset
|
1103 exits. If @var{flag} is true, the function is registered, and if\n\ |
c0cef1436788
Update help text for sections 2.2 and 2.3 of basics.txi
Rik <rdrider0-list@yahoo.com>
parents:
9079
diff
changeset
|
1104 @var{flag} is false, it is unregistered. For example,\n\ |
c0cef1436788
Update help text for sections 2.2 and 2.3 of basics.txi
Rik <rdrider0-list@yahoo.com>
parents:
9079
diff
changeset
|
1105 after registering the function @code{last_words} above,\n\ |
6680 | 1106 \n\ |
1107 @example\n\ | |
9035
57649dcecb55
Documentation cleanup of basics.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
1108 atexit (\"last_words\", false);\n\ |
6680 | 1109 @end example\n\ |
1110 \n\ | |
1111 @noindent\n\ | |
1112 will remove the function from the list and Octave will not call\n\ | |
9133
c0cef1436788
Update help text for sections 2.2 and 2.3 of basics.txi
Rik <rdrider0-list@yahoo.com>
parents:
9079
diff
changeset
|
1113 @code{last_words} when it exits.\n\ |
6680 | 1114 \n\ |
7001 | 1115 Note that @code{atexit} only removes the first occurrence of a function\n\ |
6680 | 1116 from the list, so if a function was placed in the list multiple\n\ |
1117 times with @code{atexit}, it must also be removed from the list\n\ | |
1118 multiple times.\n\ | |
3333 | 1119 @end deftypefn") |
2077 | 1120 { |
2086 | 1121 octave_value_list retval; |
2077 | 1122 |
1123 int nargin = args.length (); | |
1124 | |
6680 | 1125 if (nargin == 1 || nargin == 2) |
2077 | 1126 { |
3523 | 1127 std::string arg = args(0).string_value (); |
2077 | 1128 |
1129 if (! error_state) | |
6680 | 1130 { |
1131 bool add_mode = true; | |
1132 | |
1133 if (nargin == 2) | |
1134 { | |
1135 add_mode = args(1).bool_value (); | |
1136 | |
1137 if (error_state) | |
1138 error ("atexit: second argument must be a logical value"); | |
1139 } | |
1140 | |
1141 if (! error_state) | |
1142 { | |
1143 if (add_mode) | |
7409 | 1144 octave_add_atexit_function (arg); |
6680 | 1145 else |
1146 { | |
7409 | 1147 bool found = octave_remove_atexit_function (arg); |
6680 | 1148 |
1149 if (nargout > 0) | |
1150 retval(0) = found; | |
1151 } | |
1152 } | |
1153 } | |
2077 | 1154 else |
6680 | 1155 error ("atexit: argument must be a string"); |
2077 | 1156 } |
1157 else | |
5823 | 1158 print_usage (); |
2077 | 1159 |
1160 return retval; | |
1161 } | |
1162 | |
2689 | 1163 DEFUN (octave_config_info, args, , |
3301 | 1164 "-*- texinfo -*-\n\ |
1165 @deftypefn {Built-in Function} {} octave_config_info (@var{option})\n\ | |
1166 Return a structure containing configuration and installation\n\ | |
1167 information for Octave.\n\ | |
2689 | 1168 \n\ |
3301 | 1169 if @var{option} is a string, return the configuration information for the\n\ |
2689 | 1170 specified option.\n\ |
1171 \n\ | |
3301 | 1172 @end deftypefn") |
2162 | 1173 { |
2689 | 1174 octave_value retval; |
1175 | |
4128 | 1176 #if defined (ENABLE_DYNAMIC_LINKING) |
2689 | 1177 bool octave_supports_dynamic_linking = true; |
1178 #else | |
1179 bool octave_supports_dynamic_linking = false; | |
1180 #endif | |
1181 | |
4357 | 1182 static bool initialized = false; |
1183 static Octave_map m; | |
2162 | 1184 |
6274 | 1185 struct conf_info_struct |
1186 { | |
1187 bool subst_home; | |
1188 const char *key; | |
1189 const char *val; | |
1190 }; | |
1191 | |
1192 static const conf_info_struct conf_info[] = | |
4357 | 1193 { |
6274 | 1194 { false, "ALL_CFLAGS", OCTAVE_CONF_ALL_CFLAGS }, |
1195 { false, "ALL_CXXFLAGS", OCTAVE_CONF_ALL_CXXFLAGS }, | |
1196 { false, "ALL_FFLAGS", OCTAVE_CONF_ALL_FFLAGS }, | |
1197 { false, "ALL_LDFLAGS", OCTAVE_CONF_ALL_LDFLAGS }, | |
1198 { false, "AR", OCTAVE_CONF_AR }, | |
1199 { false, "ARFLAGS", OCTAVE_CONF_ARFLAGS }, | |
1200 { false, "BLAS_LIBS", OCTAVE_CONF_BLAS_LIBS }, | |
8772
aeedc045cfe3
toplev.cc (Foctave_config_info): add CARBON_LIBS, X11_INCFLAGS, and X11_LIBS to the struct
John W. Eaton <jwe@octave.org>
parents:
8735
diff
changeset
|
1201 { false, "CARBON_LIBS", OCTAVE_CONF_CARBON_LIBS }, |
6274 | 1202 { false, "CC", OCTAVE_CONF_CC }, |
1203 { false, "CC_VERSION", OCTAVE_CONF_CC_VERSION }, | |
1204 { false, "CFLAGS", OCTAVE_CONF_CFLAGS }, | |
1205 { false, "CPICFLAG", OCTAVE_CONF_CPICFLAG }, | |
1206 { false, "CPPFLAGS", OCTAVE_CONF_CPPFLAGS }, | |
1207 { false, "CURL_LIBS", OCTAVE_CONF_CURL_LIBS }, | |
1208 { false, "CXX", OCTAVE_CONF_CXX }, | |
1209 { false, "CXXCPP", OCTAVE_CONF_CXXCPP }, | |
1210 { false, "CXXFLAGS", OCTAVE_CONF_CXXFLAGS }, | |
1211 { false, "CXXPICFLAG", OCTAVE_CONF_CXXPICFLAG }, | |
1212 { false, "CXX_VERSION", OCTAVE_CONF_CXX_VERSION }, | |
1213 { false, "DEFAULT_PAGER", OCTAVE_DEFAULT_PAGER }, | |
1214 { false, "DEFS", OCTAVE_CONF_DEFS }, | |
1215 { false, "DL_LD", OCTAVE_CONF_DL_LD }, | |
1216 { false, "DL_LDFLAGS", OCTAVE_CONF_DL_LDFLAGS }, | |
1217 { false, "ENABLE_DYNAMIC_LINKING", OCTAVE_CONF_ENABLE_DYNAMIC_LINKING }, | |
1218 { false, "EXEEXT", OCTAVE_CONF_EXEEXT }, | |
1219 { false, "F77", OCTAVE_CONF_F77 }, | |
1220 { false, "F77_FLOAT_STORE_FLAG", OCTAVE_CONF_F77_FLOAT_STORE_FLAG }, | |
1221 { false, "FC", OCTAVE_CONF_FC }, | |
1222 { false, "FFLAGS", OCTAVE_CONF_FFLAGS }, | |
1223 { false, "FFTW_LIBS", OCTAVE_CONF_FFTW_LIBS }, | |
1224 { false, "FLIBS", OCTAVE_CONF_FLIBS }, | |
1225 { false, "FPICFLAG", OCTAVE_CONF_FPICFLAG }, | |
1226 { false, "GLPK_LIBS", OCTAVE_CONF_GLPK_LIBS }, | |
7361 | 1227 { false, "GNUPLOT", OCTAVE_CONF_GNUPLOT }, |
6274 | 1228 { false, "INCFLAGS", OCTAVE_CONF_INCFLAGS }, |
1229 { false, "LDFLAGS", OCTAVE_CONF_LDFLAGS }, | |
1230 { false, "LD_CXX", OCTAVE_CONF_LD_CXX }, | |
1231 { false, "LD_STATIC_FLAG", OCTAVE_CONF_LD_STATIC_FLAG }, | |
1232 { false, "LEX", OCTAVE_CONF_LEX }, | |
1233 { false, "LEXLIB", OCTAVE_CONF_LEXLIB }, | |
1234 { false, "LFLAGS", OCTAVE_CONF_LFLAGS }, | |
1235 { false, "LIBCRUFT", OCTAVE_CONF_LIBCRUFT }, | |
1236 { false, "LIBEXT", OCTAVE_CONF_LIBEXT }, | |
1237 { false, "LIBFLAGS", OCTAVE_CONF_LIBFLAGS }, | |
1238 { false, "LIBOCTAVE", OCTAVE_CONF_LIBOCTAVE }, | |
1239 { false, "LIBOCTINTERP", OCTAVE_CONF_LIBOCTINTERP }, | |
1240 { false, "LIBREADLINE", OCTAVE_CONF_LIBREADLINE }, | |
1241 { false, "LIBS", OCTAVE_CONF_LIBS }, | |
1242 { false, "LN_S", OCTAVE_CONF_LN_S }, | |
7926
d74f996e005d
__magick_read__.cc: configuration and style fixes
John W. Eaton <jwe@octave.org>
parents:
7923
diff
changeset
|
1243 { false, "MAGICK_INCFLAGS", OCTAVE_CONF_MAGICK_INCFLAGS }, |
d74f996e005d
__magick_read__.cc: configuration and style fixes
John W. Eaton <jwe@octave.org>
parents:
7923
diff
changeset
|
1244 { false, "MAGICK_LIBS", OCTAVE_CONF_MAGICK_LIBS }, |
6274 | 1245 { false, "MKOCTFILE_DL_LDFLAGS", OCTAVE_CONF_MKOCTFILE_DL_LDFLAGS }, |
1246 { false, "RANLIB", OCTAVE_CONF_RANLIB }, | |
1247 { false, "RDYNAMIC_FLAG", OCTAVE_CONF_RDYNAMIC_FLAG }, | |
1248 { false, "RLD_FLAG", OCTAVE_CONF_RLD_FLAG }, | |
1249 { false, "SED", OCTAVE_CONF_SED }, | |
1250 { false, "SHARED_LIBS", OCTAVE_CONF_SHARED_LIBS }, | |
1251 { false, "SHLEXT", OCTAVE_CONF_SHLEXT }, | |
1252 { false, "SHLEXT_VER", OCTAVE_CONF_SHLEXT_VER }, | |
1253 { false, "SH_LD", OCTAVE_CONF_SH_LD }, | |
1254 { false, "SH_LDFLAGS", OCTAVE_CONF_SH_LDFLAGS }, | |
1255 { false, "SONAME_FLAGS", OCTAVE_CONF_SONAME_FLAGS }, | |
1256 { false, "STATIC_LIBS", OCTAVE_CONF_STATIC_LIBS }, | |
1257 { false, "UGLY_DEFS", OCTAVE_CONF_UGLY_DEFS }, | |
1258 { false, "USE_64_BIT_IDX_T", OCTAVE_CONF_USE_64_BIT_IDX_T }, | |
8772
aeedc045cfe3
toplev.cc (Foctave_config_info): add CARBON_LIBS, X11_INCFLAGS, and X11_LIBS to the struct
John W. Eaton <jwe@octave.org>
parents:
8735
diff
changeset
|
1259 { false, "X11_INCFLAGS", OCTAVE_CONF_X11_INCFLAGS }, |
aeedc045cfe3
toplev.cc (Foctave_config_info): add CARBON_LIBS, X11_INCFLAGS, and X11_LIBS to the struct
John W. Eaton <jwe@octave.org>
parents:
8735
diff
changeset
|
1260 { false, "X11_LIBS", OCTAVE_CONF_X11_LIBS }, |
6274 | 1261 { false, "XTRA_CFLAGS", OCTAVE_CONF_XTRA_CFLAGS }, |
1262 { false, "XTRA_CXXFLAGS", OCTAVE_CONF_XTRA_CXXFLAGS }, | |
1263 { false, "YACC", OCTAVE_CONF_YACC }, | |
1264 { false, "YFLAGS", OCTAVE_CONF_YFLAGS }, | |
1265 { false, "api_version", OCTAVE_API_VERSION }, | |
1266 { true, "archlibdir", OCTAVE_ARCHLIBDIR }, | |
1267 { true, "bindir", OCTAVE_BINDIR }, | |
1268 { false, "canonical_host_type", OCTAVE_CANONICAL_HOST_TYPE }, | |
1269 { false, "config_opts", OCTAVE_CONF_config_opts }, | |
1270 { true, "datadir", OCTAVE_DATADIR }, | |
1271 { true, "datarootdir", OCTAVE_DATAROOTDIR }, | |
6276 | 1272 { true, "exec_prefix", OCTAVE_EXEC_PREFIX }, |
6274 | 1273 { true, "fcnfiledir", OCTAVE_FCNFILEDIR }, |
1274 { true, "imagedir", OCTAVE_IMAGEDIR }, | |
1275 { true, "includedir", OCTAVE_INCLUDEDIR }, | |
1276 { true, "infodir", OCTAVE_INFODIR }, | |
6276 | 1277 { true, "infofile", OCTAVE_INFOFILE }, |
6274 | 1278 { true, "libdir", OCTAVE_LIBDIR }, |
1279 { true, "libexecdir", OCTAVE_LIBEXECDIR }, | |
6311 | 1280 { true, "localapiarchlibdir", OCTAVE_LOCALAPIARCHLIBDIR }, |
6274 | 1281 { true, "localapifcnfiledir", OCTAVE_LOCALAPIFCNFILEDIR }, |
1282 { true, "localapioctfiledir", OCTAVE_LOCALAPIOCTFILEDIR }, | |
1283 { true, "localarchlibdir", OCTAVE_LOCALARCHLIBDIR }, | |
1284 { true, "localfcnfiledir", OCTAVE_LOCALFCNFILEDIR }, | |
1285 { true, "localoctfiledir", OCTAVE_LOCALOCTFILEDIR }, | |
1286 { true, "localstartupfiledir", OCTAVE_LOCALSTARTUPFILEDIR }, | |
1287 { true, "localverarchlibdir", OCTAVE_LOCALVERARCHLIBDIR }, | |
1288 { true, "localverfcnfiledir", OCTAVE_LOCALVERFCNFILEDIR }, | |
1289 { true, "localveroctfiledir", OCTAVE_LOCALVEROCTFILEDIR }, | |
1290 { true, "man1dir", OCTAVE_MAN1DIR }, | |
1291 { false, "man1ext", OCTAVE_MAN1EXT }, | |
1292 { true, "mandir", OCTAVE_MANDIR }, | |
1293 { true, "octfiledir", OCTAVE_OCTFILEDIR }, | |
8719
679c270b7584
install DOC and NEWS in $octetcdir
John W. Eaton <jwe@octave.org>
parents:
8704
diff
changeset
|
1294 { true, "octetcdir", OCTAVE_OCTETCDIR }, |
6274 | 1295 { true, "octincludedir", OCTAVE_OCTINCLUDEDIR }, |
1296 { true, "octlibdir", OCTAVE_OCTLIBDIR }, | |
6276 | 1297 { true, "prefix", OCTAVE_PREFIX }, |
6274 | 1298 { true, "startupfiledir", OCTAVE_STARTUPFILEDIR }, |
1299 { false, "version", OCTAVE_VERSION }, | |
1300 { false, 0, 0 } | |
4357 | 1301 }; |
1302 | |
1303 if (! initialized) | |
1304 { | |
4675 | 1305 m.assign ("dld", octave_value (octave_supports_dynamic_linking)); |
4357 | 1306 |
4697 | 1307 oct_mach_info::float_format ff = oct_mach_info::native_float_format (); |
1308 m.assign ("float_format", | |
1309 octave_value (oct_mach_info::float_format_as_string (ff))); | |
1310 | |
1311 m.assign ("words_big_endian", | |
1312 octave_value (oct_mach_info::words_big_endian ())); | |
1313 | |
1314 m.assign ("words_little_endian", | |
1315 octave_value (oct_mach_info::words_little_endian ())); | |
1316 | |
4357 | 1317 int i = 0; |
4440 | 1318 |
1319 while (true) | |
4357 | 1320 { |
6274 | 1321 const conf_info_struct& elt = conf_info[i++]; |
1322 | |
1323 const char *key = elt.key; | |
4357 | 1324 |
1325 if (key) | |
6274 | 1326 { |
1327 if (elt.subst_home) | |
1328 m.assign (key, octave_value (subst_octave_home (elt.val))); | |
1329 else | |
1330 m.assign (key, octave_value (elt.val)); | |
1331 } | |
4357 | 1332 else |
1333 break; | |
1334 } | |
1335 | |
4691 | 1336 bool unix_system = true; |
7013 | 1337 bool mac_system = false; |
4691 | 1338 bool windows_system = false; |
1339 | |
1340 #if defined (WIN32) | |
1341 windows_system = true; | |
1342 #if !defined (__CYGWIN__) | |
1343 unix_system = false; | |
1344 #endif | |
1345 #endif | |
1346 | |
8574
83b8c739d626
toplev.cc: check OCTAVE_USE_OS_X_API instead of __APPLE__ && __MACH__
John W. Eaton <jwe@octave.org>
parents:
8377
diff
changeset
|
1347 #if defined (OCTAVE_USE_OS_X_API) |
7010 | 1348 mac_system = true; |
1349 #endif | |
1350 | |
4691 | 1351 m.assign ("unix", octave_value (unix_system)); |
7010 | 1352 m.assign ("mac", octave_value (mac_system)); |
4691 | 1353 m.assign ("windows", octave_value (windows_system)); |
1354 | |
4357 | 1355 initialized = true; |
1356 } | |
2162 | 1357 |
2689 | 1358 int nargin = args.length (); |
1359 | |
1360 if (nargin == 1) | |
1361 { | |
3523 | 1362 std::string arg = args(0).string_value (); |
2689 | 1363 |
1364 if (! error_state) | |
4675 | 1365 { |
1366 Cell c = m.contents (arg.c_str ()); | |
5199 | 1367 |
1368 if (c.is_empty ()) | |
1369 error ("octave_config_info: no info for `%s'", arg.c_str ()); | |
1370 else | |
1371 retval = c(0); | |
4675 | 1372 } |
2689 | 1373 } |
1374 else if (nargin == 0) | |
4233 | 1375 retval = m; |
2689 | 1376 else |
5823 | 1377 print_usage (); |
2689 | 1378 |
1379 return retval; | |
2162 | 1380 } |
1381 | |
1683 | 1382 #if defined (__GNUG__) && defined (DEBUG_NEW_DELETE) |
2806 | 1383 |
1683 | 1384 int debug_new_delete = 0; |
1385 | |
1386 typedef void (*vfp)(void); | |
1387 extern vfp __new_handler; | |
1388 | |
1389 void * | |
1390 __builtin_new (size_t sz) | |
1391 { | |
1392 void *p; | |
1393 | |
1394 /* malloc (0) is unpredictable; avoid it. */ | |
1395 if (sz == 0) | |
1396 sz = 1; | |
2800 | 1397 p = malloc (sz); |
1683 | 1398 while (p == 0) |
1399 { | |
1400 (*__new_handler) (); | |
2800 | 1401 p = malloc (sz); |
1683 | 1402 } |
1403 | |
1404 if (debug_new_delete) | |
5629 | 1405 std::cerr << "__builtin_new: " << p << std::endl; |
1683 | 1406 |
1407 return p; | |
1408 } | |
1409 | |
1410 void | |
1411 __builtin_delete (void *ptr) | |
1412 { | |
1413 if (debug_new_delete) | |
5629 | 1414 std::cerr << "__builtin_delete: " << ptr << std::endl; |
1683 | 1415 |
1416 if (ptr) | |
1417 free (ptr); | |
1418 } | |
2806 | 1419 |
1683 | 1420 #endif |
1421 | |
1422 /* | |
1423 ;;; Local Variables: *** | |
1424 ;;; mode: C++ *** | |
1425 ;;; End: *** | |
1426 */ |