GNU Octave  6.2.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
octave::cdef_class::cdef_class_rep Class Reference
Inheritance diagram for octave::cdef_class::cdef_class_rep:
Collaboration diagram for octave::cdef_class::cdef_class_rep:

Public Member Functions

 cdef_class_rep (const std::list< cdef_class > &superclasses)
 
 cdef_class_rep (void)
 
 ~cdef_class_rep (void)=default
 
virtual Array< cdef_objectarray_value (void) const
 
std::string class_name (void) const
 
cdef_object_repclone (void) const
 
octave_value construct (const octave_value_list &args)
 
cdef_object construct_object (const octave_value_list &args)
 
cdef_object_repcopy (void) const
 
void delete_object (const cdef_object &obj)
 
void destroy (void)
 
dim_vector dims (void) const
 
void doc_string (const std::string &txt)
 
std::string doc_string (void) const
 
cdef_object_repempty_clone (void) const
 
cdef_method find_method (const std::string &nm, bool local=false)
 
cdef_property find_property (const std::string &nm)
 
octave_value get (const std::string &pname) const
 
cdef_class get_class (void) const
 
std::string get_directory (void) const
 
octave_value get_method (const std::string &name) const
 
std::map< std::string, cdef_methodget_method_map (bool only_inherited, bool include_ctor)
 
Cell get_methods (bool include_ctor)
 
std::string get_name (void) const
 
string_vector get_names (void)
 
Cell get_properties (int mode)
 
octave_value get_property (octave_idx_type idx, const std::string &pname) const
 
std::map< std::string, cdef_propertyget_property_map (int mode)
 
void initialize_object (cdef_object &obj)
 
void install_method (const cdef_method &meth)
 
void install_property (const cdef_property &prop)
 
bool is_abstract (void) const
 
virtual bool is_array (void) const
 
bool is_class (void) const
 
bool is_constructed (void) const
 
bool is_constructed_for (const cdef_class &cls) const
 
bool is_handle_class (void) const
 
bool is_handle_object (void) const
 
bool is_meta_class (void) const
 
bool is_meta_object (void) const
 
virtual bool is_method (void) const
 
virtual bool is_package (void) const
 
bool is_partially_constructed_for (const cdef_class &cls) const
 
virtual bool is_property (void) const
 
bool is_sealed (void) const
 
bool is_valid (void) const
 
virtual bool is_value_object (void) const
 
cdef_object_repmake_array (void) const
 
virtual string_vector map_keys (void) const
 
void mark_as_constructed (const cdef_class &cls)
 
void mark_as_constructed (void)
 
void mark_as_handle_class (void)
 
void mark_as_meta_class (void)
 
void mark_for_construction (const cdef_class &)
 
bool meta_accepts_postfix_index (char type) const
 
void meta_release (void)
 
octave_value_list meta_subsref (const std::string &type, const std::list< octave_value_list > &idx, int nargout)
 
cdef_class_repoperator= (const cdef_class_rep &)=delete
 
void put (const std::string &pname, const octave_value &val)
 
void release (const cdef_object &obj)
 
void run_constructor (cdef_object &obj, const octave_value_list &args)
 
void set_class (const cdef_class &cls)
 
void set_directory (const std::string &dir)
 
void set_name (const std::string &nm)
 
void set_property (octave_idx_type idx, const std::string &pname, const octave_value &pval)
 
octave_idx_type static_count (void) const
 
octave_value subsasgn (const std::string &type, const std::list< octave_value_list > &idx, const octave_value &rhs)
 
octave_value_list subsref (const std::string &type, const std::list< octave_value_list > &idx, int nargout, size_t &skip, const cdef_class &context, bool auto_add)
 

Protected Attributes

std::map< cdef_class, std::list< cdef_class > > ctor_list
 
refcount< octave_idx_typem_count
 
octave_scalar_map map
 

Private Types

typedef std::map< std::string, cdef_method >::const_iterator method_const_iterator
 
typedef std::map< std::string, cdef_method >::iterator method_iterator
 
typedef std::map< std::string, cdef_property >::const_iterator property_const_iterator
 
typedef std::map< std::string, cdef_property >::iterator property_iterator
 

Private Member Functions

 cdef_class_rep (const cdef_class_rep &c)=default
 
OCTAVE_NORETURN void err_invalid_object (const char *who) const
 
void find_methods (std::map< std::string, cdef_method > &meths, bool only_inherited, bool include_ctor=false)
 
void find_names (std::set< std::string > &names, bool all)
 
void find_properties (std::map< std::string, cdef_property > &props, int mode=0)
 
void load_all_methods (void)
 
cdef_class wrap (void)
 

Private Attributes

std::string directory
 
bool handle_class
 
std::list< cdef_classimplicit_ctor_list
 
cdef_object klass
 
std::string m_doc_string
 
octave_idx_type member_count
 
bool meta
 
std::map< std::string, cdef_methodmethod_map
 
std::map< std::string, cdef_propertyproperty_map
 

Detailed Description

Definition at line 55 of file cdef-class.h.

Member Typedef Documentation

◆ method_const_iterator

typedef std::map<std::string,cdef_method>::const_iterator octave::cdef_class::cdef_class_rep::method_const_iterator
private

Definition at line 213 of file cdef-class.h.

◆ method_iterator

typedef std::map<std::string,cdef_method>::iterator octave::cdef_class::cdef_class_rep::method_iterator
private

Definition at line 212 of file cdef-class.h.

◆ property_const_iterator

typedef std::map<std::string,cdef_property>::const_iterator octave::cdef_class::cdef_class_rep::property_const_iterator
private

Definition at line 215 of file cdef-class.h.

◆ property_iterator

typedef std::map<std::string,cdef_property>::iterator octave::cdef_class::cdef_class_rep::property_iterator
private

Definition at line 214 of file cdef-class.h.

Constructor & Destructor Documentation

◆ cdef_class_rep() [1/3]

octave::cdef_class::cdef_class_rep::cdef_class_rep ( void  )
inline

Definition at line 59 of file cdef-class.h.

◆ cdef_class_rep() [2/3]

octave::cdef_class::cdef_class_rep::cdef_class_rep ( const std::list< cdef_class > &  superclasses)

◆ ~cdef_class_rep()

octave::cdef_class::cdef_class_rep::~cdef_class_rep ( void  )
default

◆ cdef_class_rep() [3/3]

octave::cdef_class::cdef_class_rep::cdef_class_rep ( const cdef_class_rep c)
privatedefault

Member Function Documentation

◆ array_value()

virtual Array<cdef_object> octave::cdef_object_rep::array_value ( void  ) const
inlinevirtualinherited

Reimplemented in octave::cdef_object_array.

Definition at line 98 of file cdef-object.h.

◆ class_name()

std::string octave::cdef_object_rep::class_name ( void  ) const
inherited

◆ clone()

cdef_object_rep* octave::handle_cdef_object::clone ( void  ) const
inlinevirtualinherited

Reimplemented from octave::cdef_object_rep.

Definition at line 539 of file cdef-object.h.

References octave::cdef_object_rep::m_count.

◆ construct()

octave_value octave::cdef_class::cdef_class_rep::construct ( const octave_value_list args)

◆ construct_object()

◆ copy()

cdef_object_rep* octave::cdef_class::cdef_class_rep::copy ( void  ) const
inlinevirtual

Reimplemented from octave::cdef_object_rep.

Definition at line 70 of file cdef-class.h.

◆ delete_object()

◆ destroy()

void octave::cdef_class::cdef_class_rep::destroy ( void  )
inlinevirtual

Reimplemented from octave::cdef_object_rep.

Definition at line 135 of file cdef-class.h.

◆ dims()

dim_vector octave::cdef_object_scalar::dims ( void  ) const
inlinevirtualinherited

Reimplemented from octave::cdef_object_rep.

Definition at line 456 of file cdef-object.h.

◆ doc_string() [1/2]

void octave::cdef_class::cdef_class_rep::doc_string ( const std::string &  txt)
inline

Definition at line 154 of file cdef-class.h.

◆ doc_string() [2/2]

std::string octave::cdef_class::cdef_class_rep::doc_string ( void  ) const
inline

Definition at line 156 of file cdef-class.h.

◆ empty_clone()

cdef_object_rep* octave::cdef_object_base::empty_clone ( void  ) const
inlinevirtualinherited

Reimplemented from octave::cdef_object_rep.

Definition at line 358 of file cdef-object.h.

◆ err_invalid_object()

OCTAVE_NORETURN void octave::cdef_object_rep::err_invalid_object ( const char *  who) const
inlineprivateinherited

Definition at line 191 of file cdef-object.h.

References error().

Referenced by octave::cdef_object_rep::get_class().

◆ find_method()

cdef_method octave::cdef_class::cdef_class_rep::find_method ( const std::string &  nm,
bool  local = false 
)

◆ find_methods()

void octave::cdef_class::cdef_class_rep::find_methods ( std::map< std::string, cdef_method > &  meths,
bool  only_inherited,
bool  include_ctor = false 
)
private

◆ find_names()

void octave::cdef_class::cdef_class_rep::find_names ( std::set< std::string > &  names,
bool  all 
)
private

◆ find_properties()

◆ find_property()

cdef_property octave::cdef_class::cdef_class_rep::find_property ( const std::string &  nm)

◆ get()

octave_value octave::cdef_object_scalar::get ( const std::string &  pname) const
inlinevirtualinherited

Reimplemented from octave::cdef_object_rep.

Definition at line 463 of file cdef-object.h.

References error(), and Array< T >::numel().

Referenced by octave::cdef_property::cdef_property_rep::get_value().

◆ get_class()

◆ get_directory()

std::string octave::cdef_class::cdef_class_rep::get_directory ( void  ) const
inline

Definition at line 104 of file cdef-class.h.

◆ get_method()

octave_value octave::cdef_class::cdef_class_rep::get_method ( const std::string &  name) const

Definition at line 707 of file cdef-class.cc.

References name, and octave_value().

◆ get_method_map()

std::map< std::string, cdef_method > octave::cdef_class::cdef_class_rep::get_method_map ( bool  only_inherited,
bool  include_ctor 
)

Definition at line 304 of file cdef-class.cc.

◆ get_methods()

Cell octave::cdef_class::cdef_class_rep::get_methods ( bool  include_ctor)

Definition at line 287 of file cdef-class.cc.

References octave::to_ov().

◆ get_name()

std::string octave::cdef_class::cdef_class_rep::get_name ( void  ) const
inline

Definition at line 74 of file cdef-class.h.

◆ get_names()

string_vector octave::cdef_class::cdef_class_rep::get_names ( void  )

Definition at line 517 of file cdef-class.cc.

References string_vector::sort().

◆ get_properties()

Cell octave::cdef_class::cdef_class_rep::get_properties ( int  mode)

Definition at line 396 of file cdef-class.cc.

References octave::cdef_class::get_property_map(), and octave::to_ov().

◆ get_property()

octave_value octave::cdef_object_scalar::get_property ( octave_idx_type  idx,
const std::string &  pname 
) const
inlinevirtualinherited

Reimplemented from octave::cdef_object_rep.

Definition at line 483 of file cdef-object.h.

References error().

◆ get_property_map()

std::map< std::string, cdef_property > octave::cdef_class::cdef_class_rep::get_property_map ( int  mode)

Definition at line 413 of file cdef-class.cc.

◆ initialize_object()

void octave::cdef_class::cdef_class_rep::initialize_object ( cdef_object obj)

◆ install_method()

◆ install_property()

void octave::cdef_class::cdef_class_rep::install_property ( const cdef_property prop)

Definition at line 388 of file cdef-class.cc.

References octave::cdef_property::get_name().

◆ is_abstract()

bool octave::cdef_class::cdef_class_rep::is_abstract ( void  ) const
inline

Definition at line 79 of file cdef-class.h.

◆ is_array()

virtual bool octave::cdef_object_rep::is_array ( void  ) const
inlinevirtualinherited

Reimplemented in octave::cdef_object_array.

Definition at line 90 of file cdef-object.h.

◆ is_class()

bool octave::cdef_class::cdef_class_rep::is_class ( void  ) const
inlinevirtual

Reimplemented from octave::cdef_meta_object_rep.

Definition at line 72 of file cdef-class.h.

◆ is_constructed()

bool octave::cdef_object_scalar::is_constructed ( void  ) const
inlinevirtualinherited

◆ is_constructed_for()

bool octave::cdef_object_scalar::is_constructed_for ( const cdef_class cls) const
virtualinherited

◆ is_handle_class()

bool octave::cdef_class::cdef_class_rep::is_handle_class ( void  ) const
inline

Definition at line 131 of file cdef-class.h.

◆ is_handle_object()

bool octave::handle_cdef_object::is_handle_object ( void  ) const
inlinevirtualinherited

Reimplemented from octave::cdef_object_rep.

Definition at line 553 of file cdef-object.h.

◆ is_meta_class()

bool octave::cdef_class::cdef_class_rep::is_meta_class ( void  ) const
inline

Definition at line 152 of file cdef-class.h.

◆ is_meta_object()

bool octave::cdef_meta_object_rep::is_meta_object ( void  ) const
inlinevirtualinherited

Reimplemented from octave::cdef_object_rep.

Definition at line 607 of file cdef-object.h.

◆ is_method()

virtual bool octave::cdef_meta_object_rep::is_method ( void  ) const
inlinevirtualinherited

Reimplemented in octave::cdef_method::cdef_method_rep.

Definition at line 613 of file cdef-object.h.

◆ is_package()

virtual bool octave::cdef_meta_object_rep::is_package ( void  ) const
inlinevirtualinherited

Reimplemented in octave::cdef_package::cdef_package_rep.

Definition at line 615 of file cdef-object.h.

◆ is_partially_constructed_for()

bool octave::cdef_object_scalar::is_partially_constructed_for ( const cdef_class cls) const
virtualinherited

◆ is_property()

virtual bool octave::cdef_meta_object_rep::is_property ( void  ) const
inlinevirtualinherited

Reimplemented in octave::cdef_property::cdef_property_rep.

Definition at line 611 of file cdef-object.h.

◆ is_sealed()

bool octave::cdef_class::cdef_class_rep::is_sealed ( void  ) const
inline

Definition at line 81 of file cdef-class.h.

◆ is_valid()

bool octave::handle_cdef_object::is_valid ( void  ) const
inlinevirtualinherited

Reimplemented from octave::cdef_object_rep.

Definition at line 551 of file cdef-object.h.

◆ is_value_object()

virtual bool octave::cdef_object_rep::is_value_object ( void  ) const
inlinevirtualinherited

Reimplemented in octave::value_cdef_object.

Definition at line 92 of file cdef-object.h.

◆ load_all_methods()

void octave::cdef_class::cdef_class_rep::load_all_methods ( void  )
private

Definition at line 281 of file cdef-class.cc.

◆ make_array()

cdef_object_rep * octave::cdef_object_base::make_array ( void  ) const
virtualinherited

Reimplemented from octave::cdef_object_rep.

Definition at line 206 of file cdef-object.cc.

References octave::cdef_object_base::get_class(), and r.

◆ map_keys()

string_vector octave::cdef_object_rep::map_keys ( void  ) const
virtualinherited

◆ mark_as_constructed() [1/2]

void octave::cdef_object_scalar::mark_as_constructed ( const cdef_class cls)
virtualinherited

Reimplemented from octave::cdef_object_rep.

Definition at line 725 of file cdef-object.cc.

References octave::cdef_object_scalar::ctor_list.

◆ mark_as_constructed() [2/2]

void octave::cdef_object_scalar::mark_as_constructed ( void  )
inlinevirtualinherited

Reimplemented from octave::cdef_object_rep.

Definition at line 506 of file cdef-object.h.

◆ mark_as_handle_class()

void octave::cdef_class::cdef_class_rep::mark_as_handle_class ( void  )
inline

Definition at line 129 of file cdef-class.h.

◆ mark_as_meta_class()

void octave::cdef_class::cdef_class_rep::mark_as_meta_class ( void  )
inline

Definition at line 150 of file cdef-class.h.

◆ mark_for_construction()

void octave::cdef_object_scalar::mark_for_construction ( const cdef_class cls)
virtualinherited

◆ meta_accepts_postfix_index()

bool octave::cdef_class::cdef_class_rep::meta_accepts_postfix_index ( char  type) const
inlinevirtual

Reimplemented from octave::cdef_meta_object_rep.

Definition at line 114 of file cdef-class.h.

◆ meta_release()

void octave::cdef_class::cdef_class_rep::meta_release ( void  )
virtual

◆ meta_subsref()

◆ operator=()

cdef_class_rep& octave::cdef_class::cdef_class_rep::operator= ( const cdef_class_rep )
delete

◆ put()

void octave::cdef_object_scalar::put ( const std::string &  pname,
const octave_value val 
)
inlinevirtualinherited

Reimplemented from octave::cdef_object_rep.

Definition at line 458 of file cdef-object.h.

Referenced by cdef_class_rep().

◆ release()

◆ run_constructor()

◆ set_class()

void octave::cdef_object_base::set_class ( const cdef_class cls)
virtualinherited

◆ set_directory()

void octave::cdef_class::cdef_class_rep::set_directory ( const std::string &  dir)
inline

Definition at line 102 of file cdef-class.h.

◆ set_name()

void octave::cdef_class::cdef_class_rep::set_name ( const std::string &  nm)
inline

Definition at line 77 of file cdef-class.h.

◆ set_property()

void octave::cdef_object_scalar::set_property ( octave_idx_type  idx,
const std::string &  pname,
const octave_value pval 
)
inlinevirtualinherited

Reimplemented from octave::cdef_object_rep.

Definition at line 473 of file cdef-object.h.

References error().

◆ static_count()

octave_idx_type octave::cdef_class::cdef_class_rep::static_count ( void  ) const
inlinevirtual

Reimplemented from octave::cdef_object_rep.

Definition at line 133 of file cdef-class.h.

◆ subsasgn()

◆ subsref()

◆ wrap()

cdef_class octave::cdef_class::cdef_class_rep::wrap ( void  )
inlineprivate

Definition at line 170 of file cdef-class.h.

Member Data Documentation

◆ ctor_list

◆ directory

std::string octave::cdef_class::cdef_class_rep::directory
private

Definition at line 179 of file cdef-class.h.

◆ handle_class

bool octave::cdef_class::cdef_class_rep::handle_class
private

Definition at line 198 of file cdef-class.h.

◆ implicit_ctor_list

std::list<cdef_class> octave::cdef_class::cdef_class_rep::implicit_ctor_list
private

Definition at line 204 of file cdef-class.h.

Referenced by cdef_class_rep().

◆ klass

cdef_object octave::cdef_object_base::klass
privateinherited

◆ m_count

◆ m_doc_string

std::string octave::cdef_class::cdef_class_rep::m_doc_string
private

Definition at line 181 of file cdef-class.h.

◆ map

octave_scalar_map octave::cdef_object_scalar::map
protectedinherited

Definition at line 515 of file cdef-object.h.

◆ member_count

octave_idx_type octave::cdef_class::cdef_class_rep::member_count
private

Definition at line 193 of file cdef-class.h.

◆ meta

bool octave::cdef_class::cdef_class_rep::meta
private

Definition at line 208 of file cdef-class.h.

◆ method_map

std::map<std::string,cdef_method> octave::cdef_class::cdef_class_rep::method_map
private

Definition at line 185 of file cdef-class.h.

◆ property_map

std::map<std::string,cdef_property> octave::cdef_class::cdef_class_rep::property_map
private

Definition at line 189 of file cdef-class.h.


The documentation for this class was generated from the following files: