1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580
|
////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002-2021 The Octave Project Developers
//
// See the file COPYRIGHT.md in the top-level directory of this
// distribution or <https://octave.org/copyright/>.
//
// This file is part of Octave.
//
// Octave is free software: you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Octave is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Octave; see the file COPYING. If not, see
// <https://www.gnu.org/licenses/>.
//
////////////////////////////////////////////////////////////////////////
#if ! defined (octave_interpreter_h)
#define octave_interpreter_h 1
#include "octave-config.h"
#include <map>
#include <stack>
#include <string>
#include "child-list.h"
#include "oct-time.h"
#include "quit.h"
#include "str-vec.h"
#include "cdef-manager.h"
#include "display.h"
#include "dynamic-ld.h"
#include "environment.h"
#include "error.h"
#include "event-manager.h"
#include "graphics.h"
#include "gtk-manager.h"
#include "help.h"
#include "input.h"
#include "load-path.h"
#include "load-save.h"
#include "oct-hist.h"
#include "oct-stream.h"
#include "ov-typeinfo.h"
#include "pager.h"
#include "pt-eval.h"
#include "settings.h"
#include "symtab.h"
#include "url-handle-manager.h"
extern OCTINTERP_API bool quit_allowed;
// TRUE means we are ready to interpret commands, but not everything
// is ready for interactive use.
extern OCTINTERP_API bool octave_interpreter_ready;
// TRUE means we've processed all the init code and we are good to go.
extern OCTINTERP_API bool octave_initialized;
#include "oct-time.h"
namespace octave
{
class profiler;
class child_list;
// The time we last time we changed directories.
extern sys::time Vlast_chdir_time;
// The application object contains a pointer to the current
// interpreter and the interpreter contains a pointer back to the
// application context so we need a forward declaration for one (or
// both) of them...
class application;
class temporary_file_list
{
public:
temporary_file_list (void) : m_files () { }
// No copying!
temporary_file_list (const temporary_file_list&) = delete;
temporary_file_list& operator = (const temporary_file_list&) = delete;
~temporary_file_list (void);
void insert (const std::string& file);
void cleanup (void);
private:
// List of temporary files to delete when we exit.
std::set<std::string> m_files;
};
class OCTINTERP_API interpreter
{
public:
// Create an interpreter object and perform basic initialization.
interpreter (application *app_context = nullptr);
// No copying, at least not yet...
interpreter (const interpreter&) = delete;
interpreter& operator = (const interpreter&) = delete;
// Clean up the interpreter object.
~interpreter (void);
void intern_nargin (octave_idx_type nargs);
// If creating an embedded interpreter, you may inhibit reading
// the command history file by calling initialize_history with
// read_history_file = false prior to calling initialize.
void initialize_history (bool read_history_file = false);
// If creating an embedded interpreter, you may inhibit setting
// the default compiled-in path by calling initialize_load_path
// with set_initial_path = false prior calling initialize. After
// that, you can add directories to the load path to set up a
// custom path.
void initialize_load_path (bool set_initial_path = true);
// Load command line history, set the load path.
void initialize (void);
// Initialize the interpreter (if not already done by an explicit
// call to initialize), execute startup files, --eval option code,
// script files, and/or interactive commands.
int execute (void);
void shutdown (void);
bool interactive (void) const
{
return m_interactive;
}
void interactive (bool arg)
{
m_interactive = arg;
}
void read_site_files (bool flag)
{
m_read_site_files = flag;
}
void read_init_files (bool flag)
{
m_read_init_files = flag;
}
void verbose (bool flag)
{
m_verbose = flag;
}
void inhibit_startup_message (bool flag)
{
m_inhibit_startup_message = flag;
}
bool in_top_level_repl (void) const
{
return m_in_top_level_repl;
}
bool initialized (void) const
{
return m_initialized;
}
display_info& get_display_info (void)
{
return m_display_info;
}
environment& get_environment (void)
{
return m_environment;
}
settings& get_settings (void)
{
return m_settings;
}
error_system& get_error_system (void)
{
return m_error_system;
}
help_system& get_help_system (void)
{
return m_help_system;
}
input_system& get_input_system (void)
{
return m_input_system;
}
output_system& get_output_system (void)
{
return m_output_system;
}
history_system& get_history_system (void)
{
return m_history_system;
}
dynamic_loader& get_dynamic_loader (void)
{
return m_dynamic_loader;
}
load_path& get_load_path (void)
{
return m_load_path;
}
load_save_system& get_load_save_system (void)
{
return m_load_save_system;
}
type_info& get_type_info (void)
{
return m_type_info;
}
symbol_table& get_symbol_table (void)
{
return m_symbol_table;
}
tree_evaluator& get_evaluator (void);
symbol_scope get_top_scope (void) const;
symbol_scope get_current_scope (void) const;
symbol_scope require_current_scope (const std::string& who) const;
profiler& get_profiler (void);
stream_list& get_stream_list (void);
child_list& get_child_list (void)
{
return m_child_list;
}
url_handle_manager& get_url_handle_manager (void);
cdef_manager& get_cdef_manager (void)
{
return m_cdef_manager;
}
gtk_manager& get_gtk_manager (void)
{
return m_gtk_manager;
}
event_manager& get_event_manager (void)
{
return m_event_manager;
}
gh_manager& get_gh_manager (void)
{
return *m_gh_manager;
}
// Any Octave code that needs to change the current directory should
// call this function instead of calling the system chdir function
// directly so that the load-path and GUI may be notified of the
// change.
int chdir (const std::string& dir);
void mlock (bool skip_first = false) const;
void munlock (bool skip_first = false) const;
bool mislocked (bool skip_first = false) const;
// NOTE: since we have a version that accepts a bool argument, we
// can't rely on automatic conversion from char* to std::string.
void munlock (const char *nm);
void munlock (const std::string& nm);
bool mislocked (const char *nm);
bool mislocked (const std::string& nm);
std::string mfilename (const std::string& opt = "") const;
octave_value_list eval_string (const std::string& eval_str, bool silent,
int& parse_status, int nargout);
octave_value eval_string (const std::string& eval_str, bool silent,
int& parse_status);
octave_value_list eval_string (const octave_value& arg, bool silent,
int& parse_status, int nargout);
octave_value_list eval (const std::string& try_code, int nargout);
octave_value_list eval (const std::string& try_code,
const std::string& catch_code, int nargout);
octave_value_list evalin (const std::string& context,
const std::string& try_code, int nargout);
octave_value_list evalin (const std::string& context,
const std::string& try_code,
const std::string& catch_code, int nargout);
octave_value_list
feval (const char *name,
const octave_value_list& args = octave_value_list (),
int nargout = 0);
octave_value_list
feval (const std::string& name,
const octave_value_list& args = octave_value_list (),
int nargout = 0);
octave_value_list
feval (octave_function *fcn,
const octave_value_list& args = octave_value_list (),
int nargout = 0);
octave_value_list
feval (const octave_value& f_arg,
const octave_value_list& args = octave_value_list (),
int nargout = 0);
octave_value_list feval (const octave_value_list& args, int nargout = 0);
octave_value make_function_handle (const std::string& name);
void install_variable (const std::string& name, const octave_value& value,
bool global);
void set_global_value (const std::string& name, const octave_value& value);
octave_value global_varval (const std::string& name) const;
void global_assign (const std::string& name,
const octave_value& val = octave_value ());
octave_value top_level_varval (const std::string& name) const;
void top_level_assign (const std::string& name,
const octave_value& val = octave_value ());
bool is_variable (const std::string& name) const;
bool is_local_variable (const std::string& name) const;
octave_value varval (const std::string& name) const;
void assign (const std::string& name,
const octave_value& val = octave_value ());
void assignin (const std::string& context, const std::string& varname,
const octave_value& val = octave_value ());
void source_file (const std::string& file_name,
const std::string& context = "",
bool verbose = false, bool require_file = true);
bool at_top_level (void) const;
bool isglobal (const std::string& name) const;
octave_value find (const std::string& name);
void clear_all (bool force = false);
void clear_objects (void);
void clear_variable (const std::string& name);
void clear_variable_pattern (const std::string& pattern);
void clear_variable_regexp (const std::string& pattern);
void clear_variables (void);
void clear_global_variable (const std::string& name);
void clear_global_variable_pattern (const std::string& pattern);
void clear_global_variable_regexp (const std::string& pattern);
void clear_global_variables (void);
void clear_functions (bool force = false);
void clear_function (const std::string& name);
void clear_symbol (const std::string& name);
void clear_function_pattern (const std::string& pat);
void clear_function_regexp (const std::string& pat);
void clear_symbol_pattern (const std::string& pat);
void clear_symbol_regexp (const std::string& pat);
std::list<std::string> variable_names (void);
std::list<std::string> top_level_variable_names (void);
std::list<std::string> global_variable_names (void);
std::list<std::string> user_function_names (void);
std::list<std::string> autoloaded_functions (void) const;
void handle_exception (const execution_exception& e);
void recover_from_exception (void);
void mark_for_deletion (const std::string& file);
void cleanup_tmp_files (void);
void quit (int exit_status, bool force = false, bool confirm = true);
void cancel_quit (bool flag) { m_cancel_quit = flag; }
bool executing_finish_script (void) const
{
return m_executing_finish_script;
}
void add_atexit_fcn (const std::string& fname);
bool remove_atexit_fcn (const std::string& fname);
OCTAVE_DEPRECATED (6, "use interpreter::add_atexit_fcn member function instead")
static void add_atexit_function (const std::string& fname);
OCTAVE_DEPRECATED (6, "use interpreter::remove_atexit_fcn member function instead")
static bool remove_atexit_function (const std::string& fname);
static interpreter * the_interpreter (void) { return instance; }
private:
// The interpreter instance; Currently it is only possible to
// have one, so OCTAVE_THREAD_LOCAL will normally be defined to be
// empty. Eventually we would like to allow multiple interpreters
// to be active at once, but they will still be limited to one per
// thread. When that is possible, OCTAVE_THREAD_LOCAL can be
// replaced by the C++ thread_local keyword. For now, use a macro
// to allow experimenting with thread_local storage.
OCTAVE_THREAD_LOCAL static interpreter *instance;
void display_startup_message (void) const;
int execute_startup_files (void);
int execute_eval_option_code (void);
int execute_command_line_file (void);
int main_loop (void);
void execute_atexit_fcns (void);
application *m_app_context;
temporary_file_list m_tmp_files;
std::list<std::string> m_atexit_fcns;
display_info m_display_info;
environment m_environment;
settings m_settings;
error_system m_error_system;
help_system m_help_system;
input_system m_input_system;
output_system m_output_system;
history_system m_history_system;
dynamic_loader m_dynamic_loader;
load_path m_load_path;
load_save_system m_load_save_system;
type_info m_type_info;
symbol_table m_symbol_table;
tree_evaluator m_evaluator;
stream_list m_stream_list;
child_list m_child_list;
url_handle_manager m_url_handle_manager;
cdef_manager m_cdef_manager;
gtk_manager m_gtk_manager;
event_manager m_event_manager;
gh_manager *m_gh_manager;
// TRUE means this is an interactive interpreter (forced or not).
bool m_interactive;
bool m_read_site_files;
bool m_read_init_files;
bool m_verbose;
bool m_inhibit_startup_message;
bool m_load_path_initialized;
bool m_history_initialized;
// TRUE if we are in the top level interactive read eval print loop.
bool m_in_top_level_repl;
bool m_cancel_quit;
bool m_executing_finish_script;
bool m_executing_atexit;
bool m_initialized;
void maximum_braindamage (void);
void execute_pkg_add (const std::string& dir);
};
}
#endif
|