GNU Octave 7.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-2022 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
46namespace octave
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
68 cdef_class_rep& operator = (const cdef_class_rep&) = delete;
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 // the 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
241
242 cdef_class (const std::string& nm, const std::list<cdef_class>& superclasses)
243 : cdef_meta_object (new cdef_class_rep (superclasses))
244 {
245 get_rep ()->set_name (nm);
246 }
247
248 cdef_class (const cdef_class& cls) : cdef_meta_object (cls) { }
249
251 : cdef_meta_object (obj)
252 {
253 // This should never happen...
254 if (! is_class ())
255 error ("internal error: invalid assignment from %s to meta.class object",
256 class_name ().c_str ());
257 }
258
259 cdef_class& operator = (const cdef_class& cls)
260 {
262
263 return *this;
264 }
265
266 ~cdef_class (void) = default;
267
268 OCTINTERP_API cdef_method
269 find_method (const std::string& nm, bool local = false);
270
271 void install_method (const cdef_method& meth)
272 {
273 get_rep ()->install_method (meth);
274 }
275
276 Cell get_methods (bool include_ctor = false)
277 {
278 return get_rep ()->get_methods (include_ctor);
279 }
280
281 std::map<std::string, cdef_method>
282 get_method_map (bool only_inherited = false, bool include_ctor = false)
283 {
284 return get_rep ()->get_method_map (only_inherited, include_ctor);
285 }
286
287 OCTINTERP_API cdef_property find_property (const std::string& nm);
288
290 {
291 get_rep ()->install_property (prop);
292 }
293
294 Cell get_properties (int mode = property_normal)
295 {
296 return get_rep ()->get_properties (mode);
297 }
298
299 std::map<std::string, cdef_property>
300 get_property_map (int mode = property_normal)
301 {
302 return get_rep ()->get_property_map (mode);
303 }
304
305 string_vector get_names (void) { return get_rep ()->get_names (); }
306
307 bool is_abstract (void) const { return get_rep ()->is_abstract (); }
308
309 bool is_sealed (void) const { return get_rep ()->is_sealed (); }
310
311 void set_directory (const std::string& dir)
312 {
313 get_rep ()->set_directory (dir);
314 }
315
316 std::string get_directory (void) const
317 {
318 return get_rep ()->get_directory ();
319 }
320
321 std::string get_name (void) const { return get_rep ()->get_name (); }
322
323 bool is_builtin (void) const { return get_directory ().empty (); }
324
325 void delete_object (const cdef_object& obj)
326 {
327 get_rep ()->delete_object (obj);
328 }
329
330 //! Analyze the tree_classdef tree and transform it to a cdef_class
331 //!
332 //! <b>All attribute validation should occur here.</b>
333 //!
334 //! Classdef attribute values can be given in the form of
335 //! expressions. These expressions must be evaluated before
336 //! assigning them as attribute values. Evaluating them as they are
337 //! parsed causes trouble with possible recursion in the parser so we
338 //! do it here. For example
339 //!
340 //! @code
341 //! classdef recursion_class
342 //! methods (Access = ?recursion_class)
343 //! endmethods
344 //! endclassdef
345 //! @endcode
346 //!
347 //! will fail because each attempt to compute the metaclass of
348 //! recursion_class will cause recursion_class to be parsed again.
349
350 static OCTINTERP_API cdef_class
351 make_meta_class (interpreter& interp, tree_classdef *t,
352 bool is_at_folder = false);
353
354 octave_value get_method (const std::string& nm) const
355 {
356 return get_rep ()->get_method (nm);
357 }
358
359 OCTINTERP_API octave_value get_method_function (const std::string& nm);
360
362 {
363 return get_method_function (get_name ());
364 }
365
367 {
368 return get_rep ()->construct (args);
369 }
370
372 {
373 return get_rep ()->construct_object (args);
374 }
375
377 {
378 get_rep ()->initialize_object (obj);
379 }
380
382 {
383 get_rep ()->run_constructor (obj, args);
384 }
385
387 {
388 get_rep ()->mark_as_handle_class ();
389 }
390
391 bool is_handle_class (void) const
392 {
393 return get_rep ()->is_handle_class ();
394 }
395
396 void mark_as_meta_class (void) { get_rep ()->mark_as_meta_class (); }
397
398 bool is_meta_class (void) const { return get_rep ()->is_meta_class (); }
399
400 void doc_string (const std::string& txt) { get_rep ()->doc_string (txt); }
401
402 std::string doc_string (void) const { return get_rep ()->doc_string (); }
403
404 void file_name (const std::string& nm) { get_rep ()->file_name (nm); }
405
406 std::string file_name (void) const { return get_rep ()->file_name (); }
407
408 public:
409
410 enum
411 {
414 property_all
415 };
416
417 private:
418
420 {
421 return dynamic_cast<cdef_class_rep *> (cdef_object::get_rep ());
422 }
423
424 const cdef_class_rep * get_rep (void) const
425 {
426 return dynamic_cast<const cdef_class_rep *> (cdef_object::get_rep ());
427 }
428
429 friend OCTINTERP_API bool operator == (const cdef_class&, const cdef_class&);
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
433 friend OCTINTERP_API void install_classdef (interpreter& interp);
434 };
435
436 inline bool
437 operator == (const cdef_class& clsa, const cdef_class& clsb)
438 {
439 // FIXME: is this really the right way to check class equality?
440
441 return (clsa.get_rep () == clsb.get_rep ());
442 }
443
444 inline bool
445 operator != (const cdef_class& clsa, const cdef_class& clsb)
446 {
447 return ! (clsa == clsb);
448 }
449
450 // This is only to be able to use cdef_class as map keys.
451
452 inline bool
453 operator < (const cdef_class& clsa, const cdef_class& clsb)
454 {
455 return clsa.get_rep () < clsb.get_rep ();
456 }
457
458 inline cdef_method
459 cdef_class::find_method (const std::string& nm, bool local)
460 {
461 return get_rep ()->find_method (nm, local);
462 }
463
464 inline cdef_property
465 cdef_class::find_property (const std::string& nm)
466 {
467 return get_rep ()->find_property (nm);
468 }
469}
470
471#endif
Definition: Cell.h:43
void set_name(const std::string &nm)
Definition: cdef-class.h:79
octave_idx_type static_count(void) const
Definition: cdef-class.h:141
std::string doc_string(void) const
Definition: cdef-class.h:164
bool meta_accepts_postfix_index(char type) const
Definition: cdef-class.h:120
std::map< std::string, cdef_method > m_method_map
Definition: cdef-class.h:201
std::map< std::string, cdef_property >::iterator property_iterator
Definition: cdef-class.h:230
std::list< cdef_class > m_implicit_ctor_list
Definition: cdef-class.h:220
OCTINTERP_API cdef_property find_property(const std::string &nm)
Definition: cdef-class.cc:358
void set_directory(const std::string &dir)
Definition: cdef-class.h:108
void file_name(const std::string &nm)
Definition: cdef-class.h:166
std::map< std::string, cdef_property > m_property_map
Definition: cdef-class.h:205
cdef_class_rep(const cdef_class_rep &c)=default
std::map< std::string, cdef_method >::const_iterator method_const_iterator
Definition: cdef-class.h:229
void doc_string(const std::string &txt)
Definition: cdef-class.h:162
std::map< std::string, cdef_property >::const_iterator property_const_iterator
Definition: cdef-class.h:231
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.cc:92
cdef_object_rep * copy(void) const
Definition: cdef-class.h:72
std::string file_name(void) const
Definition: cdef-class.h:168
std::string get_name(void) const
Definition: cdef-class.h:76
std::string get_directory(void) const
Definition: cdef-class.h:110
~cdef_class(void)=default
std::string file_name(void) const
Definition: cdef-class.h:406
std::string doc_string(void) const
Definition: cdef-class.h:402
Cell get_methods(bool include_ctor=false)
Definition: cdef-class.h:276
std::map< std::string, cdef_property > get_property_map(int mode=property_normal)
Definition: cdef-class.h:300
void delete_object(const cdef_object &obj)
Definition: cdef-class.h:325
void set_directory(const std::string &dir)
Definition: cdef-class.h:311
void install_property(const cdef_property &prop)
Definition: cdef-class.h:289
std::map< std::string, cdef_method > get_method_map(bool only_inherited=false, bool include_ctor=false)
Definition: cdef-class.h:282
bool is_builtin(void) const
Definition: cdef-class.h:323
friend OCTINTERP_API void install_classdef(interpreter &interp)
void doc_string(const std::string &txt)
Definition: cdef-class.h:400
void install_method(const cdef_method &meth)
Definition: cdef-class.h:271
bool is_meta_class(void) const
Definition: cdef-class.h:398
cdef_class(const cdef_object &obj)
Definition: cdef-class.h:250
bool is_abstract(void) const
Definition: cdef-class.h:307
std::string get_directory(void) const
Definition: cdef-class.h:316
bool is_sealed(void) const
Definition: cdef-class.h:309
OCTINTERP_API cdef_method find_method(const std::string &nm, bool local=false)
Definition: cdef-class.h:459
cdef_class(const cdef_class &cls)
Definition: cdef-class.h:248
const cdef_class_rep * get_rep(void) const
Definition: cdef-class.h:424
OCTINTERP_API cdef_property find_property(const std::string &nm)
Definition: cdef-class.h:465
octave_value get_method(const std::string &nm) const
Definition: cdef-class.h:354
string_vector get_names(void)
Definition: cdef-class.h:305
void initialize_object(cdef_object &obj)
Definition: cdef-class.h:376
Cell get_properties(int mode=property_normal)
Definition: cdef-class.h:294
octave_value construct(const octave_value_list &args)
Definition: cdef-class.h:366
cdef_class(const std::string &nm, const std::list< cdef_class > &superclasses)
Definition: cdef-class.h:242
void mark_as_handle_class(void)
Definition: cdef-class.h:386
bool is_handle_class(void) const
Definition: cdef-class.h:391
void file_name(const std::string &nm)
Definition: cdef-class.h:404
std::string get_name(void) const
Definition: cdef-class.h:321
cdef_class_rep * get_rep(void)
Definition: cdef-class.h:419
void mark_as_meta_class(void)
Definition: cdef-class.h:396
octave_value get_constructor_function(void)
Definition: cdef-class.h:361
void run_constructor(cdef_object &obj, const octave_value_list &args)
Definition: cdef-class.h:381
cdef_object construct_object(const octave_value_list &args)
Definition: cdef-class.h:371
cdef_object & operator=(const cdef_object &obj)
Definition: cdef-object.h:216
const cdef_object_rep * get_rep(void) const
Definition: cdef-object.h:308
void error(const char *fmt,...)
Definition: error.cc:980
QString name
class OCTINTERP_API cdef_class
Definition: cdef-fwd.h:33
bool operator<(const cdef_class &clsa, const cdef_class &clsb)
Definition: cdef-class.h:453
bool operator!=(const cdef_class &clsa, const cdef_class &clsb)
Definition: cdef-class.h:445
bool operator==(const cdef_class &clsa, const cdef_class &clsb)
Definition: cdef-class.h:437