view libinterp/octave-value/cdef-manager.h @ 27932:b018f553fd85

maint: Use Octave coding conventions in libinterp/ * __ftp__.cc, __ichol__.cc, call-stack.cc, error.h, event-manager.cc, file-io.cc, gl-render.cc, graphics.cc, help.cc, input.cc, interpreter.cc, load-path.cc, load-save.cc, ls-hdf5.cc, ls-hdf5.h, mex.cc, oct-hist.cc, oct-stream.cc, sighandlers.h, stack-frame.cc, stack-frame.h, strfns.cc, syminfo.cc, sysdep.cc, text-engine.h, url-handle-manager.h, urlwrite.cc, xpow.cc, __init_fltk__.cc, __ode15__.cc, ccolamd.cc, colamd.cc, cdef-class.cc, cdef-manager.cc, cdef-manager.h, cdef-method.cc, cdef-object.cc, cdef-package.h, cdef-property.cc, ov-class.cc, ov-classdef.cc, ov-cx-sparse.cc, ov-fcn-handle.cc, ov-fcn-inline.cc, ov-fcn.h, ov-java.cc, ov-typeinfo.h, bp-table.cc, jit-ir.h, jit-typeinfo.h, pt-classdef.h, pt-eval.cc, pt-eval.h, pt-idx.cc: Use Octave coding conventions in libinterp.
author Rik <rik@octave.org>
date Fri, 10 Jan 2020 17:25:12 -0800
parents bd51beb6205e
children 853e60367cb6 0a5b15007766
line wrap: on
line source

////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2012-2020 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_cdef_manager_h)
#define octave_cdef_manager_h 1

#include "octave-config.h"

#include "cdef-class.h"
#include "cdef-method.h"
#include "cdef-package.h"
#include "cdef-property.h"
#include "ov-builtin.h"

namespace octave
{
  class interpreter;

  class cdef_manager
  {
  public:

    cdef_manager (interpreter& interp);

    // No copying!

    cdef_manager (const cdef_manager&) = delete;

    cdef_manager& operator = (const cdef_manager&) = delete;

    ~cdef_manager (void) = default;

    cdef_class find_class (const std::string& name,
                           bool error_if_not_found = true,
                           bool load_if_not_found = true);

    octave_value find_method_symbol (const std::string& method_name,
                                     const std::string& class_name);

    cdef_package find_package (const std::string& name,
                               bool error_if_not_found = true,
                               bool load_if_not_found = true);

    octave_value find_package_symbol (const std::string& pack_name);

    void register_class (const cdef_class& cls)
    {
      m_all_classes[cls.get_name ()] = cls;
    }

    void unregister_class (const cdef_class& cls)
    {
      m_all_classes.erase(cls.get_name ());
    }

    void register_package (const cdef_package& pkg)
    {
      m_all_packages[pkg.get_name ()] = pkg;
    }

    void unregister_package (const cdef_package& pkg)
    {
      m_all_packages.erase (pkg.get_name ());
    }

    const cdef_class& meta_class (void) const { return m_meta_class; }
    const cdef_class& meta_property (void) const { return m_meta_property; }
    const cdef_class& meta_method (void) const { return m_meta_method; }
    const cdef_class& meta_package (void) const { return m_meta_package; }

    const cdef_package& meta (void) const { return m_meta; }

    cdef_class make_class (const std::string& name,
                           const std::list<cdef_class>& super_list = std::list<cdef_class> ());

    cdef_class make_class (const std::string& name, const cdef_class& super);

    cdef_class make_meta_class (const std::string& name,
                                const cdef_class& super);

    cdef_property make_property (const cdef_class& cls,
                                 const std::string& name,
                                 const octave_value& get_method = Matrix (),
                                 const std::string& get_access = "public",
                                 const octave_value& set_method = Matrix (),
                                 const std::string& set_access = "public");

    cdef_property make_attribute (const cdef_class& cls,
                                  const std::string& name);

    cdef_method make_method (const cdef_class& cls,
                             const std::string& name,
                             const octave_value& fcn,
                             const std::string& m_access = "public",
                             bool is_static = false);

    cdef_method make_method (const cdef_class& cls,
                             const std::string& name,
                             octave_builtin::fcn ff,
                             const std::string& m_access = "public",
                             bool is_static = false);

    cdef_method make_method (const cdef_class& cls,
                             const std::string& name,
                             octave_builtin::meth mm,
                             const std::string& m_access = "public",
                             bool is_static = false);

    cdef_package make_package (const std::string& nm,
                               const std::string& parent = "");

    octave_value find_method (const std::string& class_name,
                              const std::string& name) const;

  private:

    interpreter& m_interpreter;

    // All registered/loaded classes
    std::map<std::string, cdef_class> m_all_classes;

    // All registered/loaded packages
    std::map<std::string, cdef_package> m_all_packages;

    cdef_class m_meta_class;
    cdef_class m_meta_property;
    cdef_class m_meta_method;
    cdef_class m_meta_package;

    cdef_package m_meta;
  };
}

#endif