view libinterp/octave-value/cdef-package.h @ 27918:b442ec6dda5c

use centralized file for copyright info for individual contributors * COPYRIGHT.md: New file. * In most other files, use "Copyright (C) YYYY-YYYY The Octave Project Developers" instead of tracking individual names in separate source files. The motivation is to reduce the effort required to update the notices each year. Until now, the Octave source files contained copyright notices that list individual contributors. I adopted these file-scope copyright notices because that is what everyone was doing 30 years ago in the days before distributed version control systems. But now, with many contributors and modern version control systems, having these file-scope copyright notices causes trouble when we update copyright years or refactor code. Over time, the file-scope copyright notices may become outdated as new contributions are made or code is moved from one file to another. Sometimes people contribute significant patches but do not add a line claiming copyright. Other times, people add a copyright notice for their contribution but then a later refactoring moves part or all of their contribution to another file and the notice is not moved with the code. As a practical matter, moving such notices is difficult -- determining what parts are due to a particular contributor requires a time-consuming search through the project history. Even managing the yearly update of copyright years is problematic. We have some contributors who are no longer living. Should we update the copyright dates for their contributions when we release new versions? Probably not, but we do still want to claim copyright for the project as a whole. To minimize the difficulty of maintaining the copyright notices, I would like to change Octave's sources to use what is described here: https://softwarefreedom.org/resources/2012/ManagingCopyrightInformation.html in the section "Maintaining centralized copyright notices": The centralized notice approach consolidates all copyright notices in a single location, usually a top-level file. This file should contain all of the copyright notices provided project contributors, unless the contribution was clearly insignificant. It may also credit -- without a copyright notice -- anyone who helped with the project but did not contribute code or other copyrighted material. This approach captures less information about contributions within individual files, recognizing that the DVCS is better equipped to record those details. As we mentioned before, it does have one disadvantage as compared to the file-scope approach: if a single file is separated from the distribution, the recipient won't see the contributors' copyright notices. But this can be easily remedied by including a single copyright notice in each file's header, pointing to the top-level file: Copyright YYYY-YYYY The Octave Project Developers See the COPYRIGHT file at the top-level directory of this distribution or at https://octave.org/COPYRIGHT.html. followed by the usual GPL copyright statement. For more background, see the discussion here: https://lists.gnu.org/archive/html/octave-maintainers/2020-01/msg00009.html Most files in the following directories have been skipped intentinally in this changeset: doc libgui/qterminal liboctave/external m4
author John W. Eaton <jwe@octave.org>
date Mon, 06 Jan 2020 15:38:17 -0500
parents 568c2ab2782d
children 1891570abac8
line wrap: on
line source

/*

Copyright (C) 2012-2019 The Octave Project Developers

See the file COPYRIGHT.md in the top-level directory of this distribution
or <https://octave.org/COPYRIGHT.html/>.


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_package_h)
#define octave_cdef_package_h 1

#include "octave-config.h"

#include <map>
#include <set>
#include <string>

#include "oct-refcount.h"

#include "cdef-object.h"
#include "ov.h"

namespace octave
{
  class interpreter;

  class
  cdef_package : public cdef_meta_object
  {
    friend class cdef_class;

  private:

    class
    cdef_package_rep : public cdef_meta_object_rep
    {
    public:

      cdef_package_rep (void) : cdef_meta_object_rep (), member_count (0) { }

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

      ~cdef_package_rep (void) = default;

      cdef_object_rep * copy (void) const { return new cdef_package_rep (*this); }

      bool is_package (void) const { return true; }

      std::string get_name (void) const { return get("Name").string_value (); }

      void set_name (const std::string& nm) { put ("Name", nm); }

      void install_class (const cdef_class& cls, const std::string& nm);

      void install_function (const octave_value& fcn, const std::string& nm);

      void install_package (const cdef_package& pack, const std::string& nm);

      Cell get_classes (void) const;

      Cell get_functions (void) const;

      Cell get_packages (void) const;

      octave_idx_type static_count (void) const { return member_count; }

      void destroy (void)
      {
        if (member_count)
          {
            m_count++;
            cdef_package lock (this);

            member_count = 0;
            class_map.clear ();
            package_map.clear ();
          }
        else
          delete this;
      }

      octave_value_list
      meta_subsref (const std::string& type,
                    const std::list<octave_value_list>& idx, int nargout);

      void meta_release (void);

      bool meta_accepts_postfix_index (char type) const
      {
        return (type == '.');
      }

      octave_value find (const std::string& nm);

    private:

      std::string full_name;
      std::map<std::string, cdef_class> class_map;
      std::map<std::string, octave_value> function_map;
      std::map<std::string, cdef_package> package_map;

      // The number of registered members in this package (classes, packages).
      // This only accounts for the members that back-reference to this package.
      octave_idx_type member_count;

      typedef std::map<std::string, cdef_class>::iterator class_iterator;
      typedef std::map<std::string, cdef_class>::const_iterator class_const_iterator;
      typedef std::map<std::string, octave_value>::iterator function_iterator;
      typedef std::map<std::string, octave_value>::const_iterator function_const_iterator;
      typedef std::map<std::string, cdef_package>::iterator package_iterator;
      typedef std::map<std::string, cdef_package>::const_iterator package_const_iterator;

      cdef_package_rep (const cdef_package_rep& p)
        : cdef_meta_object_rep (p), full_name (p.full_name),
          class_map (p.class_map), function_map (p.function_map),
          package_map (p.package_map), member_count (p.member_count)
      { }

      cdef_package wrap (void)
      {
        m_count++;
        return cdef_package (this);
      }
    };

  public:

    cdef_package (void) : cdef_meta_object () { }

    cdef_package (const std::string& nm)
      : cdef_meta_object (new cdef_package_rep ())
    {
      get_rep ()->set_name (nm);
    }

    cdef_package (const cdef_package& pack) : cdef_meta_object (pack) { }

    cdef_package (const cdef_object& obj)
      : cdef_meta_object (obj)
    {
      // This should never happen...
      if (! is_package ())
        error ("internal error: invalid assignment from %s to meta.package object",
               class_name ().c_str ());
    }

    cdef_package& operator = (const cdef_package& pack)
    {
      cdef_object::operator = (pack);

      return *this;
    }

    ~cdef_package (void) = default;

    void install_class (const cdef_class& cls, const std::string& nm)
    {
      get_rep ()->install_class (cls, nm);
    }

    void install_function (const octave_value& fcn, const std::string& nm)
    {
      get_rep ()->install_function (fcn, nm);
    }

    void install_package (const cdef_package& pack, const std::string& nm)
    {
      get_rep ()->install_package (pack, nm);
    }

    Cell get_classes (void) const
    {
      return get_rep ()->get_classes ();
    }

    Cell get_functions (void) const
    {
      return get_rep ()->get_functions ();
    }

    Cell get_packages (void) const
    {
      return get_rep ()->get_packages ();
    }

    std::string get_name (void) const { return get_rep ()->get_name (); }

    octave_value find (const std::string& nm)
    {
      return get_rep ()->find (nm);
    }

  private:

    cdef_package_rep * get_rep (void)
    {
      return dynamic_cast<cdef_package_rep *> (cdef_object::get_rep ());
    }

    const cdef_package_rep * get_rep (void) const
    {
      return dynamic_cast<const cdef_package_rep *> (cdef_object::get_rep ());
    }

    friend void install_classdef (interpreter& interp);
  };
}

#endif