Bash++
Bash++ compiler internal documentation
|
A class in Bash++. More...
#include <bpp.h>
Public Member Functions | |
bpp_class () | |
std::weak_ptr< bpp_class > | get_containing_class () const override |
Get the class which contains this entity. More... | |
bool | set_containing_class (std::weak_ptr< bpp::bpp_class > containing_class) override |
std::shared_ptr< bpp_class > | get_class () const override |
void | set_name (const std::string &name) |
bool | add_method (std::shared_ptr< bpp_method > method) |
Add a method to the class. More... | |
bool | add_datamember (std::shared_ptr< bpp_datamember > datamember) |
Add a datamember to the class. More... | |
bool | set_constructor (std::shared_ptr< bpp_constructor > constructor) |
bool | set_destructor (std::shared_ptr< bpp_destructor > destructor) |
std::string | get_name () const |
std::vector< std::shared_ptr< bpp_method > > | get_methods () const |
std::vector< std::shared_ptr< bpp_datamember > > | get_datamembers () const |
std::shared_ptr< bpp_constructor > | get_constructor () const |
std::shared_ptr< bpp_destructor > | get_destructor () const |
bool | has_constructor () const |
bool | has_destructor () const |
std::shared_ptr< bpp_method > | get_method (const std::string &name, std::shared_ptr< bpp_entity > context) |
Get a method by name. More... | |
std::shared_ptr< bpp_method > | get_method_UNSAFE (const std::string &name) |
Get a method by name without checking the context. More... | |
std::shared_ptr< bpp_datamember > | get_datamember (const std::string &name, std::shared_ptr< bpp_entity > context) |
Get a datamember by name. More... | |
void | inherit (std::shared_ptr< bpp_class > parent) override |
Inherit from a parent class. More... | |
std::shared_ptr< bpp::bpp_class > | get_parent () |
![]() | |
virtual | ~bpp_entity ()=default |
virtual bool | add_class (std::shared_ptr< bpp_class > class_) |
Add a class to this entity's list of classes. More... | |
virtual bool | add_object (std::shared_ptr< bpp_object > object) |
Add an object to this entity's list of objects. More... | |
virtual std::string | get_address () const |
virtual void | inherit (std::shared_ptr< bpp_entity > parent) |
Inherit from a parent entity. More... | |
virtual std::unordered_map< std::string, std::shared_ptr< bpp_class > > | get_classes () const |
virtual std::unordered_map< std::string, std::shared_ptr< bpp_object > > | get_objects () const |
virtual std::shared_ptr< bpp_class > | get_class (const std::string &name) |
virtual std::shared_ptr< bpp_object > | get_object (const std::string &name) |
Private Member Functions | |
void | remove_default_toPrimitive () |
Remove the default toPrimitive method. More... | |
void | add_default_toPrimitive () |
Add the default toPrimitive method. More... | |
Private Attributes | |
std::string | name |
std::vector< std::shared_ptr< bpp_method > > | methods |
std::vector< std::shared_ptr< bpp_datamember > > | datamembers |
std::shared_ptr< bpp_constructor > | constructor |
std::shared_ptr< bpp_destructor > | destructor |
bool | constructor_set = false |
bool | destructor_set = false |
bool | has_custom_toPrimitive = false |
Additional Inherited Members | |
![]() | |
std::unordered_map< std::string, std::shared_ptr< bpp_class > > | classes |
A map of class names to class objects within this entity. More... | |
std::unordered_map< std::string, std::shared_ptr< bpp_object > > | objects |
A map of object names to bpp_objects within this entity. More... | |
std::unordered_map< std::string, std::shared_ptr< bpp_object > > | local_objects |
Like objects, but only for objects whose scope is local to this entity. More... | |
std::shared_ptr< bpp_class > | type = nullptr |
std::weak_ptr< bpp_class > | containing_class |
std::vector< std::shared_ptr< bpp_class > > | parents |
A class in Bash++.
bpp::bpp_class::bpp_class | ( | ) |
bool bpp::bpp_class::add_datamember | ( | std::shared_ptr< bpp_datamember > | datamember | ) |
Add a datamember to the class.
|
private |
Add the default toPrimitive method.
Each class has a default toPrimitive method which simply echoes the class name. This method is only added if the class does not have a custom toPrimitive method.
bool bpp::bpp_class::add_method | ( | std::shared_ptr< bpp_method > | method | ) |
Add a method to the class.
|
overridevirtual |
Reimplemented from bpp::bpp_entity.
std::shared_ptr< bpp_constructor > bpp::bpp_class::get_constructor | ( | ) | const |
|
overridevirtual |
Get the class which contains this entity.
Useful in many cases, for example in the event that this entity is a method of a particular class
Reimplemented from bpp::bpp_entity.
std::shared_ptr< bpp::bpp_datamember > bpp::bpp_class::get_datamember | ( | const std::string & | name, |
std::shared_ptr< bpp_entity > | context | ||
) |
Get a datamember by name.
This function returns a datamember by name, taking into account the scope of the datamember.
If the datamember is public, it is returned.
If the datamember is private or protected, it is returned only if the context permits. Otherwise, we return bpp::inaccessible_datamember.
name | The name of the datamember to get |
context | The context in which the datamember is being accessed |
std::vector< std::shared_ptr< bpp_datamember > > bpp::bpp_class::get_datamembers | ( | ) | const |
std::shared_ptr< bpp_destructor > bpp::bpp_class::get_destructor | ( | ) | const |
std::shared_ptr< bpp::bpp_method > bpp::bpp_class::get_method | ( | const std::string & | name, |
std::shared_ptr< bpp_entity > | context | ||
) |
Get a method by name.
This function returns a method by name, taking into account the scope of the method.
If the method is public, it is returned.
If the method is private or protected, it is returned only if the context permits. Otherwise, we return bpp::inaccessible_method.
name | The name of the method to get |
context | The context in which the method is being accessed |
std::shared_ptr< bpp::bpp_method > bpp::bpp_class::get_method_UNSAFE | ( | const std::string & | name | ) |
Get a method by name without checking the context.
This function returns a method by name without checking the context.
This function is UNSAFE and should only be used when the context is known to be correct or the consequences of an incorrect context are acceptable.
name | The name of the method to get |
std::vector< std::shared_ptr< bpp_method > > bpp::bpp_class::get_methods | ( | ) | const |
|
virtual |
Reimplemented from bpp::bpp_entity.
std::shared_ptr< bpp::bpp_class > bpp::bpp_class::get_parent | ( | ) |
bool bpp::bpp_class::has_constructor | ( | ) | const |
bool bpp::bpp_class::has_destructor | ( | ) | const |
|
overridevirtual |
Inherit from a parent class.
This function copies all methods and datamembers from the parent class into this class.
parent | The parent class to inherit from |
Reimplemented from bpp::bpp_entity.
|
private |
Remove the default toPrimitive method.
Each class has a default toPrimitive method which simply echoes the class name. This method is only added if the class does not have a custom toPrimitive method.
bool bpp::bpp_class::set_constructor | ( | std::shared_ptr< bpp_constructor > | constructor | ) |
|
overridevirtual |
Reimplemented from bpp::bpp_entity.
bool bpp::bpp_class::set_destructor | ( | std::shared_ptr< bpp_destructor > | destructor | ) |
void bpp::bpp_class::set_name | ( | const std::string & | name | ) |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |