view libinterp/corefcn/interpreter-private.h @ 27213:dc8df9a9e8b6

eliminate global direct access to call stack * interpreter-private.h, interpreter-private.cc (__get_call_stack__): Delete.
author John W. Eaton <jwe@octave.org>
date Tue, 02 Apr 2019 11:54:57 +0000
parents 6b0c61a5a0f0
children dccdc3b001a2
line wrap: on
line source

/*

Copyright (C) 2017-2019 John W. Eaton

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_private_h)
#define octave_interpreter_private_h 1

#include "octave-config.h"

#include <list>
#include <string>

#include "symtab.h"

namespace octave
{
  class bp_table;
  class cdef_manager;
  class child_list;
  class dynamic_loader;
  class error_system;
  class gtk_manager;
  class help_system;
  class history_system;
  class input_system;
  class interpreter;
  class load_path;
  class load_save_system;
  class output_system;
  class tree_evaluator;
  class type_info;

  extern interpreter& __get_interpreter__ (const std::string& who);

  extern dynamic_loader& __get_dynamic_loader__ (const std::string& who);

  extern error_system& __get_error_system__ (const std::string& who);

  extern help_system& __get_help_system__ (const std::string& who);

  extern history_system& __get_history_system__ (const std::string& who);

  extern input_system& __get_input_system__ (const std::string& who);

  extern load_path& __get_load_path__ (const std::string& who);

  extern load_save_system& __get_load_save_system__ (const std::string& who);

  extern output_system& __get_output_system__ (const std::string& who);

  extern type_info& __get_type_info__ (const std::string& who);

  extern symbol_table& __get_symbol_table__ (const std::string& who);

  extern symbol_scope __get_current_scope__ (const std::string& who);

  extern symbol_scope __require_current_scope__ (const std::string& who);

  extern tree_evaluator& __get_evaluator__ (const std::string& who);

  extern bp_table& __get_bp_table__ (const std::string& who);

  extern child_list& __get_child_list__ (const std::string& who);

  extern cdef_manager& __get_cdef_manager__ (const std::string& who);

  extern gtk_manager& __get_gtk_manager__ (const std::string& who);


  // Functions that could be methods in the interpreter class but maybe
  // shouldn't be exposed as part of the public interface.

  // Convert octave_value object ARG to be a function handle object.  It
  // may be a function handle, inline function, the name of a function,
  // or the text of an inline function that has the given argument names
  // PARAMETER_NAMES.  Use of the latter form is discouraged.

  octave_value
  get_function_handle (interpreter& interp, const octave_value& arg,
                       const std::string& parameter_name);

  octave_value
  get_function_handle (interpreter& interp, const octave_value& arg,
                       const std::list<std::string>& parameter_names
                         = std::list<std::string> ());
}

#endif