GNU Octave  8.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
cdef-class.h
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////
2 //
3 // Copyright (C) 2012-2023 The Octave Project Developers
4 //
5 // See the file COPYRIGHT.md in the top-level directory of this
6 // distribution or <https://octave.org/copyright/>.
7 //
8 // This file is part of Octave.
9 //
10 // Octave is free software: you can redistribute it and/or modify it
11 // under the terms of the GNU General Public License as published by
12 // the Free Software Foundation, either version 3 of the License, or
13 // (at your option) any later version.
14 //
15 // Octave is distributed in the hope that it will be useful, but
16 // WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 // GNU General Public License for more details.
19 //
20 // You should have received a copy of the GNU General Public License
21 // along with Octave; see the file COPYING. If not, see
22 // <https://www.gnu.org/licenses/>.
23 //
24 ////////////////////////////////////////////////////////////////////////
25 
26 #if ! defined (octave_cdef_class_h)
27 #define octave_cdef_class_h 1
28 
29 #include "octave-config.h"
30 
31 #include <map>
32 #include <set>
33 #include <string>
34 
35 #include "oct-refcount.h"
36 
37 #include "cdef-fwd.h"
38 #include "cdef-method.h"
39 #include "cdef-object.h"
40 #include "cdef-package.h"
41 #include "cdef-property.h"
42 #include "error.h"
43 #include "ov.h"
44 #include "ovl.h"
45 
47 
48 class interpreter;
49 class tree_classdef;
50 
51 class
52 OCTINTERP_API
54 {
55 private:
56 
57  class
59  {
60  public:
62  : cdef_meta_object_rep (), m_member_count (0), m_handle_class (false),
63  m_meta (false)
64  { }
65 
66  OCTINTERP_API cdef_class_rep (const std::list<cdef_class>& superclasses);
67 
69 
70  ~cdef_class_rep (void) = default;
71 
72  cdef_object_rep * copy (void) const { return new cdef_class_rep (*this); }
73 
74  bool is_class (void) const { return true; }
75 
76  std::string get_name (void) const
77  { return get ("Name").string_value (); }
78 
79  void set_name (const std::string& nm) { put ("Name", nm); }
80 
81  bool is_abstract (void) const { return get ("Abstract").bool_value (); }
82 
83  bool is_sealed (void) const { return get ("Sealed").bool_value (); }
84 
85  OCTINTERP_API cdef_method
86  find_method (const std::string& nm, bool local = false);
87 
88  OCTINTERP_API void
89  install_method (const cdef_method& meth);
90 
91  OCTINTERP_API Cell
92  get_methods (bool include_ctor);
93 
94  OCTINTERP_API std::map<std::string, cdef_method>
95  get_method_map (bool only_inherited, bool include_ctor);
96 
97  OCTINTERP_API cdef_property find_property (const std::string& nm);
98 
99  OCTINTERP_API void install_property (const cdef_property& prop);
100 
101  OCTINTERP_API Cell get_properties (int mode);
102 
103  OCTINTERP_API std::map<std::string, cdef_property>
104  get_property_map (int mode);
105 
106  OCTINTERP_API string_vector get_names (void);
107 
108  void set_directory (const std::string& dir) { m_directory = dir; }
109 
110  std::string get_directory (void) const { return m_directory; }
111 
112  OCTINTERP_API void delete_object (const cdef_object& obj);
113 
114  OCTINTERP_API octave_value_list
115  meta_subsref (const std::string& type,
116  const std::list<octave_value_list>& idx, int nargout);
117 
118  OCTINTERP_API void meta_release (void);
119 
120  bool meta_accepts_postfix_index (char type) const
121  {
122  return (type == '(' || type == '.');
123  }
124 
125  OCTINTERP_API octave_value get_method (const std::string& name) const;
126 
127  OCTINTERP_API octave_value construct (const octave_value_list& args);
128 
129  OCTINTERP_API cdef_object
130  construct_object (const octave_value_list& args);
131 
132  OCTINTERP_API void initialize_object (cdef_object& obj);
133 
134  OCTINTERP_API void
135  run_constructor (cdef_object& obj, const octave_value_list& args);
136 
137  void mark_as_handle_class (void) { m_handle_class = true; }
138 
139  bool is_handle_class (void) const { return m_handle_class; }
140 
141  octave_idx_type static_count (void) const { return m_member_count; }
142 
143  void destroy (void)
144  {
145  if (m_member_count)
146  {
147  m_count++;
148  cdef_class lock (this);
149 
150  m_member_count = 0;
151  m_method_map.clear ();
152  m_property_map.clear ();
153  }
154  else
155  delete this;
156  }
157 
158  void mark_as_meta_class (void) { m_meta = true; }
159 
160  bool is_meta_class (void) const { return m_meta; }
161 
162  void doc_string (const std::string& txt) { m_doc_string = txt; }
163 
164  std::string doc_string (void) const { return m_doc_string; }
165 
166  void file_name (const std::string& nm) { m_file_name = nm; }
167 
168  std::string file_name (void) const { return m_file_name; }
169 
170  private:
171 
172  OCTINTERP_API void load_all_methods (void);
173 
174  OCTINTERP_API void find_names (std::set<std::string>& names, bool all);
175 
176  OCTINTERP_API void
177  find_properties (std::map<std::string, cdef_property>& props,
178  int mode = 0);
179 
180  OCTINTERP_API void
181  find_methods (std::map<std::string, cdef_method>& meths,
182  bool only_inherited, bool include_ctor = false);
183 
185  {
186  m_count++;
187  return cdef_class (this);
188  }
189 
190  // The @-directory were this class is loaded from.
191  // (not used yet)
192 
193  std::string m_directory;
194 
195  std::string m_doc_string;
196 
197  std::string m_file_name;
198 
199  // The methods defined by this class.
200 
201  std::map<std::string, cdef_method> m_method_map;
202 
203  // The properties defined by this class.
204 
205  std::map<std::string, cdef_property> m_property_map;
206 
207  // The number of members in this class (methods, properties...)
208 
210 
211  // TRUE if this class is a handle class. A class is a handle
212  // class when the abstract "handle" class is one of its superclasses.
213 
215 
216  // The list of super-class constructors that are called implicitly by the
217  // classdef engine when creating an object. These constructors are not
218  // called explicitly by the class constructor.
219 
220  std::list<cdef_class> m_implicit_ctor_list;
221 
222  // TRUE if this class is a built-in meta class.
223 
224  bool m_meta;
225 
226  // Utility iterator typedefs.
227 
228  typedef std::map<std::string, cdef_method>::iterator method_iterator;
229  typedef std::map<std::string, cdef_method>::const_iterator method_const_iterator;
230  typedef std::map<std::string, cdef_property>::iterator property_iterator;
231  typedef std::map<std::string, cdef_property>::const_iterator property_const_iterator;
232 
233  cdef_class_rep (const cdef_class_rep& c) = default;
234  };
235 
236 public:
237 
238  // Create an invalid class object.
239 
240  cdef_class (void) : cdef_meta_object () { }
241 
242  cdef_class (const std::string& nm,
243  const std::list<cdef_class>& superclasses)
244  : cdef_meta_object (new cdef_class_rep (superclasses))
245  {
246  get_rep ()->set_name (nm);
247  }
248 
249  cdef_class (const cdef_class& cls) : cdef_meta_object (cls) { }
250 
251  cdef_class (const cdef_object& obj)
252  : cdef_meta_object (obj)
253  {
254  // This should never happen...
255  if (! is_class ())
256  error ("internal error: invalid assignment from %s to meta.class object",
257  class_name ().c_str ());
258  }
259 
261  {
263 
264  return *this;
265  }
266 
267  ~cdef_class (void) = default;
268 
269  OCTINTERP_API cdef_method
270  find_method (const std::string& nm, bool local = false);
271 
272  void install_method (const cdef_method& meth)
273  {
274  get_rep ()->install_method (meth);
275  }
276 
277  Cell get_methods (bool include_ctor = false)
278  {
279  return get_rep ()->get_methods (include_ctor);
280  }
281 
282  std::map<std::string, cdef_method>
283  get_method_map (bool only_inherited = false, bool include_ctor = false)
284  {
285  return get_rep ()->get_method_map (only_inherited, include_ctor);
286  }
287 
288  OCTINTERP_API cdef_property find_property (const std::string& nm);
289 
290  void install_property (const cdef_property& prop)
291  {
292  get_rep ()->install_property (prop);
293  }
294 
295  Cell get_properties (int mode = property_normal)
296  {
297  return get_rep ()->get_properties (mode);
298  }
299 
300  std::map<std::string, cdef_property>
301  get_property_map (int mode = property_normal)
302  {
303  return get_rep ()->get_property_map (mode);
304  }
305 
306  string_vector get_names (void) { return get_rep ()->get_names (); }
307 
308  bool is_abstract (void) const { return get_rep ()->is_abstract (); }
309 
310  bool is_sealed (void) const { return get_rep ()->is_sealed (); }
311 
312  void set_directory (const std::string& dir)
313  {
314  get_rep ()->set_directory (dir);
315  }
316 
317  std::string get_directory (void) const
318  {
319  return get_rep ()->get_directory ();
320  }
321 
322  std::string get_name (void) const { return get_rep ()->get_name (); }
323 
324  bool is_builtin (void) const { return get_directory ().empty (); }
325 
326  void delete_object (const cdef_object& obj)
327  {
328  get_rep ()->delete_object (obj);
329  }
330 
331  //! Analyze the tree_classdef tree and transform it to a cdef_class
332  //!
333  //! <b>All attribute validation should occur here.</b>
334  //!
335  //! Classdef attribute values can be given in the form of
336  //! expressions. These expressions must be evaluated before
337  //! assigning them as attribute values. Evaluating them as they are
338  //! parsed causes trouble with possible recursion in the parser so we
339  //! do it here. For example
340  //!
341  //! @code
342  //! classdef recursion_class
343  //! methods (Access = ?recursion_class)
344  //! endmethods
345  //! endclassdef
346  //! @endcode
347  //!
348  //! will fail because each attempt to compute the metaclass of
349  //! recursion_class will cause recursion_class to be parsed again.
350 
351  static OCTINTERP_API cdef_class
353  bool is_at_folder = false);
354 
355  octave_value get_method (const std::string& nm) const
356  {
357  return get_rep ()->get_method (nm);
358  }
359 
360  OCTINTERP_API octave_value get_method_function (const std::string& nm);
361 
363  {
364  return get_method_function (get_name ());
365  }
366 
368  {
369  return get_rep ()->construct (args);
370  }
371 
373  {
374  return get_rep ()->construct_object (args);
375  }
376 
378  {
379  get_rep ()->initialize_object (obj);
380  }
381 
383  {
384  get_rep ()->run_constructor (obj, args);
385  }
386 
388  {
389  get_rep ()->mark_as_handle_class ();
390  }
391 
392  bool is_handle_class (void) const
393  {
394  return get_rep ()->is_handle_class ();
395  }
396 
397  void mark_as_meta_class (void) { get_rep ()->mark_as_meta_class (); }
398 
399  bool is_meta_class (void) const { return get_rep ()->is_meta_class (); }
400 
401  void doc_string (const std::string& txt) { get_rep ()->doc_string (txt); }
402 
403  std::string doc_string (void) const { return get_rep ()->doc_string (); }
404 
405  void file_name (const std::string& nm) { get_rep ()->file_name (nm); }
406 
407  std::string file_name (void) const { return get_rep ()->file_name (); }
408 
409 public:
410 
411  enum
412  {
415  property_all
416  };
417 
418 private:
419 
421  {
422  return dynamic_cast<cdef_class_rep *> (cdef_object::get_rep ());
423  }
424 
425  const cdef_class_rep * get_rep (void) const
426  {
427  return dynamic_cast<const cdef_class_rep *> (cdef_object::get_rep ());
428  }
429 
430  friend OCTINTERP_API bool operator == (const cdef_class&, const cdef_class&);
431  friend OCTINTERP_API bool operator != (const cdef_class&, const cdef_class&);
432  friend OCTINTERP_API bool operator < (const cdef_class&, const cdef_class&);
433 
434  friend void install_classdef (octave::interpreter& interp);
435 };
436 
437 inline bool
438 operator == (const cdef_class& clsa, const cdef_class& clsb)
439 {
440  // FIXME: is this really the right way to check class equality?
441 
442  return (clsa.get_rep () == clsb.get_rep ());
443 }
444 
445 inline bool
446 operator != (const cdef_class& clsa, const cdef_class& clsb)
447 {
448  return ! (clsa == clsb);
449 }
450 
451 // This is only to be able to use cdef_class as map keys.
452 
453 inline bool
454 operator < (const cdef_class& clsa, const cdef_class& clsb)
455 {
456  return clsa.get_rep () < clsb.get_rep ();
457 }
458 
459 inline cdef_method
460 cdef_class::find_method (const std::string& nm, bool local)
461 {
462  return get_rep ()->find_method (nm, local);
463 }
464 
465 inline cdef_property
466 cdef_class::find_property (const std::string& nm)
467 {
468  return get_rep ()->find_property (nm);
469 }
470 
472 
473 #endif
OCTAVE_END_NAMESPACE(octave)
bool operator==(const cdef_class &clsa, const cdef_class &clsb)
Definition: cdef-class.h:438
bool operator!=(const cdef_class &clsa, const cdef_class &clsb)
Definition: cdef-class.h:446
bool operator<(const cdef_class &clsa, const cdef_class &clsb)
Definition: cdef-class.h:454
class OCTINTERP_API cdef_class
Definition: cdef-fwd.h:33
Definition: Cell.h:43
octave_idx_type static_count(void) const
Definition: cdef-class.h:141
std::string get_name(void) const
Definition: cdef-class.h:76
void mark_as_handle_class(void)
Definition: cdef-class.h:137
std::map< std::string, cdef_property > m_property_map
Definition: cdef-class.h:205
void file_name(const std::string &nm)
Definition: cdef-class.h:166
bool is_meta_class(void) const
Definition: cdef-class.h:160
bool is_class(void) const
Definition: cdef-class.h:74
bool is_abstract(void) const
Definition: cdef-class.h:81
cdef_class_rep(const cdef_class_rep &c)=default
OCTINTERP_API cdef_property find_property(const std::string &nm)
Definition: cdef-class.cc:359
std::list< cdef_class > m_implicit_ctor_list
Definition: cdef-class.h:220
bool is_sealed(void) const
Definition: cdef-class.h:83
std::string get_directory(void) const
Definition: cdef-class.h:110
std::map< std::string, cdef_property >::const_iterator property_const_iterator
Definition: cdef-class.h:231
std::map< std::string, cdef_method >::const_iterator method_const_iterator
Definition: cdef-class.h:229
std::map< std::string, cdef_method > m_method_map
Definition: cdef-class.h:201
bool is_handle_class(void) const
Definition: cdef-class.h:139
~cdef_class_rep(void)=default
cdef_class wrap(void)
Definition: cdef-class.h:184
octave_idx_type m_member_count
Definition: cdef-class.h:209
OCTINTERP_API cdef_method find_method(const std::string &nm, bool local=false)
Definition: cdef-class.cc:92
void set_name(const std::string &nm)
Definition: cdef-class.h:79
std::map< std::string, cdef_property >::iterator property_iterator
Definition: cdef-class.h:230
void set_directory(const std::string &dir)
Definition: cdef-class.h:108
bool meta_accepts_postfix_index(char type) const
Definition: cdef-class.h:120
std::string doc_string(void) const
Definition: cdef-class.h:164
void doc_string(const std::string &txt)
Definition: cdef-class.h:162
std::string file_name(void) const
Definition: cdef-class.h:168
cdef_object_rep * copy(void) const
Definition: cdef-class.h:72
std::map< std::string, cdef_method >::iterator method_iterator
Definition: cdef-class.h:228
OCTINTERP_API cdef_method find_method(const std::string &nm, bool local=false)
Definition: cdef-class.h:460
octave_value construct(const octave_value_list &args)
Definition: cdef-class.h:367
void install_property(const cdef_property &prop)
Definition: cdef-class.h:290
std::string file_name(void) const
Definition: cdef-class.h:407
std::string get_name(void) const
Definition: cdef-class.h:322
cdef_class(const std::string &nm, const std::list< cdef_class > &superclasses)
Definition: cdef-class.h:242
void install_method(const cdef_method &meth)
Definition: cdef-class.h:272
std::string doc_string(void) const
Definition: cdef-class.h:403
string_vector get_names(void)
Definition: cdef-class.h:306
void run_constructor(cdef_object &obj, const octave_value_list &args)
Definition: cdef-class.h:382
cdef_class_rep * get_rep(void)
Definition: cdef-class.h:420
bool is_meta_class(void) const
Definition: cdef-class.h:399
octave_value get_method(const std::string &nm) const
Definition: cdef-class.h:355
octave_value get_constructor_function(void)
Definition: cdef-class.h:362
std::map< std::string, cdef_property > get_property_map(int mode=property_normal)
Definition: cdef-class.h:301
std::string get_directory(void) const
Definition: cdef-class.h:317
std::map< std::string, cdef_method > get_method_map(bool only_inherited=false, bool include_ctor=false)
Definition: cdef-class.h:283
bool is_abstract(void) const
Definition: cdef-class.h:308
const cdef_class_rep * get_rep(void) const
Definition: cdef-class.h:425
cdef_class(const cdef_class &cls)
Definition: cdef-class.h:249
void mark_as_meta_class(void)
Definition: cdef-class.h:397
void file_name(const std::string &nm)
Definition: cdef-class.h:405
@ property_inherited
Definition: cdef-class.h:414
@ property_normal
Definition: cdef-class.h:413
void initialize_object(cdef_object &obj)
Definition: cdef-class.h:377
void delete_object(const cdef_object &obj)
Definition: cdef-class.h:326
bool is_sealed(void) const
Definition: cdef-class.h:310
void doc_string(const std::string &txt)
Definition: cdef-class.h:401
bool is_builtin(void) const
Definition: cdef-class.h:324
OCTINTERP_API cdef_property find_property(const std::string &nm)
Definition: cdef-class.h:466
friend void install_classdef(octave::interpreter &interp)
bool is_handle_class(void) const
Definition: cdef-class.h:392
Cell get_properties(int mode=property_normal)
Definition: cdef-class.h:295
cdef_object construct_object(const octave_value_list &args)
Definition: cdef-class.h:372
cdef_class(const cdef_object &obj)
Definition: cdef-class.h:251
Cell get_methods(bool include_ctor=false)
Definition: cdef-class.h:277
void set_directory(const std::string &dir)
Definition: cdef-class.h:312
~cdef_class(void)=default
void mark_as_handle_class(void)
Definition: cdef-class.h:387
cdef_class(void)
Definition: cdef-class.h:240
cdef_object & operator=(const cdef_object &obj)
Definition: cdef-object.h:217
const cdef_object_rep * get_rep(void) const
Definition: cdef-object.h:310
tree_classdef & operator=(const tree_classdef &)=delete
octave_value make_meta_class(interpreter &interp, bool is_at_folder=false)
Definition: pt-classdef.cc:310
std::string m_file_name
Definition: pt-classdef.h:845
OCTAVE_BEGIN_NAMESPACE(octave) static octave_value daspk_fcn
void error(const char *fmt,...)
Definition: error.cc:979