Bash++
Bash++ compiler internal documentation
|
An if statement in Bash++. More...
#include <bpp.h>
Public Member Functions | |
bash_if () | |
void | add_conditional_branch_pre_code (const std::string &pre_code) |
void | add_conditional_branch_post_code (const std::string &post_code) |
void | new_branch () |
void | add_condition_code (const std::string &condition_code) |
void | add_branch_code (const std::string &branch_code) |
std::string | get_conditional_branch_pre_code () const |
std::string | get_conditional_branch_post_code () const |
const std::vector< std::pair< std::string, std::string > > & | get_conditional_branches () const |
![]() | |
bpp_string () | |
void | add_code (const std::string &code, bool add_newline=true) override |
Add code to the primary buffer. More... | |
void | add_code_to_previous_line (const std::string &code) override |
Add code to the pre-code buffer. More... | |
void | add_code_to_next_line (const std::string &code) override |
Add code to the post-code buffer. More... | |
std::string | get_code () const override |
Return the contents of the main code buffer as a string. More... | |
std::string | get_pre_code () const override |
Return the contents of the pre-code buffer as a string. More... | |
std::string | get_post_code () const override |
Return the contents of the post-code buffer as a string. More... | |
![]() | |
bpp_code_entity () | |
virtual | ~bpp_code_entity ()=default |
bool | add_object (std::shared_ptr< bpp_object > object) override |
Add an object to the code entity. More... | |
virtual void | flush_nextline_buffer () |
virtual void | flush_postline_buffer () |
virtual void | flush_code_buffers () |
virtual void | clear_all_buffers () |
![]() | |
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 std::shared_ptr< bpp_class > | get_class () const |
virtual std::string | get_address () const |
virtual std::string | get_name () const |
virtual std::weak_ptr< bpp::bpp_class > | get_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_class > | get_class (const std::string &name) |
virtual std::shared_ptr< bpp_object > | get_object (const std::string &name) |
Private Attributes | |
std::string | conditional_branch_pre_code = "" |
std::string | conditional_branch_post_code = "" |
std::vector< std::pair< std::string, std::string > > | conditional_branches = {} |
Additional Inherited Members | |
![]() | |
std::shared_ptr< std::ostream > | code = std::make_shared<std::ostringstream>() |
std::string | nextline_buffer = "" |
std::string | postline_buffer = "" |
bool | buffers_flushed = false |
![]() | |
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 |
An if statement in Bash++.
This entity gets pushed onto the entity stack when an if statement is encountered in Bash++ code. It contains a vector of conditional branches, each of which contains a condition and a branch of code
The reason this requires its own entity type is similar to the reason for bash_while_loop: The conditions for the if statement may contain references which need to be resolved, And the pre- and post-code for those references need to be added in specific places in the compiled code.
In the case of 'if' statements, the pre- and post-code is added before and after the entire if statement. If these were parsed without their own entity type (e.g., just using a bpp_code_entity), the pre- and post-code would be added before and after each individual conditional branch, which is incorrect.
The 'bash_' prefix signifies that this is used to parse ordinary Bash code, not anything specific to Bash++
bpp::bash_if::bash_if | ( | ) |
void bpp::bash_if::add_branch_code | ( | const std::string & | branch_code | ) |
void bpp::bash_if::add_condition_code | ( | const std::string & | condition_code | ) |
void bpp::bash_if::add_conditional_branch_post_code | ( | const std::string & | post_code | ) |
void bpp::bash_if::add_conditional_branch_pre_code | ( | const std::string & | pre_code | ) |
std::string bpp::bash_if::get_conditional_branch_post_code | ( | ) | const |
std::string bpp::bash_if::get_conditional_branch_pre_code | ( | ) | const |
const std::vector< std::pair< std::string, std::string > > & bpp::bash_if::get_conditional_branches | ( | ) | const |
void bpp::bash_if::new_branch | ( | ) |
|
private |
|
private |
|
private |