Bash++
Bash++ compiler internal documentation
Public Member Functions | Protected Attributes | List of all members
bpp::bpp_entity Class Reference

The base class for all entities in the Bash++ compiler. More...

#include <bpp.h>

Inheritance diagram for bpp::bpp_entity:
Inheritance graph
[legend]

Public Member Functions

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::shared_ptr< bpp_classget_class () const
 
virtual std::string get_address () const
 
virtual std::string get_name () const
 
virtual std::weak_ptr< bpp::bpp_classget_containing_class () const
 Get the class which contains this entity. More...
 
virtual bool set_containing_class (std::weak_ptr< bpp::bpp_class > containing_class)
 
virtual void inherit (std::shared_ptr< bpp_entity > parent)
 Inherit from a parent entity. More...
 
virtual void inherit (std::shared_ptr< bpp_class > parent)
 
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_classget_class (const std::string &name)
 
virtual std::shared_ptr< bpp_objectget_object (const std::string &name)
 

Protected Attributes

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_classtype = nullptr
 
std::weak_ptr< bpp_classcontaining_class
 
std::vector< std::shared_ptr< bpp_class > > parents
 

Detailed Description

The base class for all entities in the Bash++ compiler.

An entity is a class, object, method, or other construct in the Bash++ compiler. This class provides the basic functionality for all entities.

Constructor & Destructor Documentation

◆ ~bpp_entity()

virtual bpp::bpp_entity::~bpp_entity ( )
virtualdefault

Member Function Documentation

◆ add_class()

bool bpp::bpp_entity::add_class ( std::shared_ptr< bpp_class class_)
virtual

Add a class to this entity's list of classes.

Parameters
class_The class to add
Returns
true if the class was added, false if the class already exists

Reimplemented in bpp::bpp_program.

◆ add_object()

bool bpp::bpp_entity::add_object ( std::shared_ptr< bpp_object object)
virtual

Add an object to this entity's list of objects.

Parameters
objectThe object to add
Returns
true if the object was added, false if the object already exists

Reimplemented in bpp::bpp_code_entity.

◆ get_address()

std::string bpp::bpp_entity::get_address ( ) const
virtual

Reimplemented in bpp::bpp_datamember, and bpp::bpp_object.

◆ get_class() [1/2]

std::shared_ptr< bpp_class > bpp::bpp_entity::get_class ( ) const
virtual

Reimplemented in bpp::bpp_class, and bpp::bpp_object.

◆ get_class() [2/2]

std::shared_ptr< bpp::bpp_class > bpp::bpp_entity::get_class ( const std::string &  name)
virtual

◆ get_classes()

std::unordered_map< std::string, std::shared_ptr< bpp_class > > bpp::bpp_entity::get_classes ( ) const
virtual

◆ get_containing_class()

std::weak_ptr< bpp::bpp_class > bpp::bpp_entity::get_containing_class ( ) const
virtual

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 in bpp::bpp_class.

◆ get_name()

std::string bpp::bpp_entity::get_name ( ) const
virtual

◆ get_object()

std::shared_ptr< bpp::bpp_object > bpp::bpp_entity::get_object ( const std::string &  name)
virtual

◆ get_objects()

std::unordered_map< std::string, std::shared_ptr< bpp_object > > bpp::bpp_entity::get_objects ( ) const
virtual

◆ inherit() [1/2]

void bpp::bpp_entity::inherit ( std::shared_ptr< bpp_class parent)
virtual

Reimplemented in bpp::bpp_class.

◆ inherit() [2/2]

void bpp::bpp_entity::inherit ( std::shared_ptr< bpp_entity parent)
virtual

Inherit from a parent entity.

This function copies all classes and objects from the parent entity into this entity.

Parameters
parentThe parent entity to inherit from

◆ set_containing_class()

bool bpp::bpp_entity::set_containing_class ( std::weak_ptr< bpp::bpp_class containing_class)
virtual

Reimplemented in bpp::bpp_class.

Member Data Documentation

◆ classes

bpp::bpp_entity::classes
protected

A map of class names to class objects within this entity.

◆ containing_class

std::weak_ptr<bpp_class> bpp::bpp_entity::containing_class
protected

◆ local_objects

bpp::bpp_entity::local_objects
protected

Like objects, but only for objects whose scope is local to this entity.

◆ objects

bpp::bpp_entity::objects
protected

A map of object names to bpp_objects within this entity.

◆ parents

std::vector<std::shared_ptr<bpp_class> > bpp::bpp_entity::parents
protected

◆ type

std::shared_ptr<bpp_class> bpp::bpp_entity::type = nullptr
protected

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