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

A pattern for a case statement in Bash++. More...

#include <bpp.h>

Inheritance diagram for bpp::bash_case_pattern:
Inheritance graph
[legend]
Collaboration diagram for bpp::bash_case_pattern:
Collaboration graph
[legend]

Public Member Functions

 bash_case_pattern ()
 
void set_pattern (const std::string &pattern)
 
void set_containing_case (std::shared_ptr< bpp::bash_case > containing_case)
 
const std::string & get_pattern () const
 
std::shared_ptr< bpp::bash_caseget_containing_case () const
 
- Public Member Functions inherited from bpp::bpp_code_entity
 bpp_code_entity ()
 
virtual ~bpp_code_entity ()=default
 
virtual void add_code (const std::string &code, bool add_newline=true)
 Add code to the code entity. More...
 
virtual void add_code_to_previous_line (const std::string &code)
 Add code to the code entity's pre-code buffer. More...
 
virtual void add_code_to_next_line (const std::string &code)
 Add code to the code entity's post-code buffer. More...
 
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 std::string get_code () const
 Return the contents of the main code buffer as a string. More...
 
virtual std::string get_pre_code () const
 Return the contents of the pre-code buffer as a string. More...
 
virtual std::string get_post_code () const
 Return the contents of the post-code buffer as a string. More...
 
- Public Member Functions inherited from bpp::bpp_entity
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_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)
 

Private Attributes

std::string pattern = ""
 
std::shared_ptr< bpp::bash_casecontaining_case
 

Additional Inherited Members

- Protected Attributes inherited from bpp::bpp_code_entity
std::shared_ptr< std::ostream > code = std::make_shared<std::ostringstream>()
 
std::string nextline_buffer = ""
 
std::string postline_buffer = ""
 
bool buffers_flushed = false
 
- Protected Attributes inherited from bpp::bpp_entity
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

A pattern for a case statement in Bash++.

This entity contains a pattern to be matched in a case statement.

The 'bash_' prefix signifies that this is used to parse ordinary Bash code, not anything specific to Bash++

Constructor & Destructor Documentation

◆ bash_case_pattern()

bpp::bash_case_pattern::bash_case_pattern ( )

Member Function Documentation

◆ get_containing_case()

std::shared_ptr< bpp::bash_case > bpp::bash_case_pattern::get_containing_case ( ) const

◆ get_pattern()

const std::string & bpp::bash_case_pattern::get_pattern ( ) const

◆ set_containing_case()

void bpp::bash_case_pattern::set_containing_case ( std::shared_ptr< bpp::bash_case containing_case)

◆ set_pattern()

void bpp::bash_case_pattern::set_pattern ( const std::string &  pattern)

Member Data Documentation

◆ containing_case

std::shared_ptr<bpp::bash_case> bpp::bash_case_pattern::containing_case
private

◆ pattern

std::string bpp::bash_case_pattern::pattern = ""
private

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