Kryptostack
|
Semantic Object Array. More...
#include <socomp.h>
Classes | |
struct | SOAArray |
Semantic Object Array - array member class. More... | |
Public Member Functions | |
SOA (size_t p_len=0, bool p_exec=false) | |
Ctor. | |
void | setSO (size_t p_index, SOp p_sop) |
Setter for an array object. More... | |
SOp | at (size_t p_pos) const |
Returns a copy of the SOp at the given position. More... | |
SOA * | dup () const override |
Creates a new instance as copy following the red book definition. More... | |
SOA * | clone () const override |
Creates a new instance as copy with deep cloning. More... | |
std::string | opequalequal () const override |
For operators '==' and 'pstack'. More... | |
OTCode | ot () const override |
Returns an OTCode. More... | |
std::string | type () const override |
Returns a type name. More... | |
bool | equal (const SO *p_other) const override |
Equality. More... | |
size_t | getSize () const override |
Getter for the number of characters or number of objects. More... | |
void | reduce () |
Reduces the array by one SO at the end. More... | |
void | unfold2exec (Context &k) const |
Unfolds duplicates of the array-content to the execution stack. | |
SOp | front_pop () |
Returns a copy of the SOp at position 0 and removes this first position from the array. More... | |
void | bind (Context &k) |
Replaces executable names with operator objects recursively into elements that are SOA. | |
![]() | |
std::string | opequal () const override |
For operators '=', 'cvs' and 'stack'. More... | |
SO (bool p_exec=false) | |
Ctor. | |
![]() | |
SO (bool p_exec=false) | |
Ctor. | |
virtual | ~SO ()=default |
Virtual dtor. More... | |
bool | getExec () const |
Getter for exec_. | |
void | setExec (bool p_exec) |
Setter for exec_. | |
virtual size_t | getSize () const |
Getter for the number of characters or number of objects. More... | |
virtual SO * | dup () const =0 |
Creates a new instance as copy following the red book definition. More... | |
virtual SO * | clone () const |
Creates a new instance as copy with deep cloning. More... | |
virtual std::string | opequal () const =0 |
For operators '=', 'cvs' and 'stack'. More... | |
virtual std::string | opequalequal () const |
For operators '==' and 'pstack'. More... | |
virtual OTCode | ot () const =0 |
Returns an OTCode. More... | |
virtual std::string | type () const =0 |
Returns a type name. More... | |
virtual bool | equal (const SO *) const =0 |
Equality. More... | |
virtual bool | gt (const SO *) const |
Greater than. More... | |
virtual bool | ge (const SO *) const |
Greater or equal. More... | |
![]() | |
Counter (Counter< SO > &&)=delete | |
Counter< SO > & | operator= (const Counter< SO > &)=delete |
Counter< SO > & | operator= (Counter< SO > &&)=delete |
Protected Member Functions | |
bool | invariant () const noexcept override |
Checks class invariants. More... | |
![]() | |
Counter () | |
Ctor. | |
Counter (const Counter< SO > &) | |
Copy ctor. | |
~Counter () | |
Dtor. | |
virtual bool | invariant () const noexcept |
Checks the invariants of the class in which it is defined. More... | |
Private Attributes | |
std::shared_ptr< SOAArray > | vec_ |
The shared array. | |
Additional Inherited Members | |
![]() | |
static int | getTotalCounter () |
Static getter for totaly created objects. | |
static int | getAliveCounter () |
Static getter for objects alive. | |
static int | getWatermarkCounter () |
Static getter for the object counter watermark. | |
Semantic Object Array.
SOA owns its objects.
|
inline |
Returns a copy of the SOp at the given position.
The arrays keeps ownership of the element.
[in] | p_pos | position, which is not checked. |
|
overridevirtual |
Creates a new instance as copy with deep cloning.
Reimplemented from SO.
|
inlineoverridevirtual |
Creates a new instance as copy following the red book definition.
Implements SO.
|
inlineoverridevirtual |
Equality.
Equality means: SOL und SOM are always equal.
For SOD and SOK, share_ptr<> points to the same object.
For SOA, share_ptr<> points to the same object, but empty arrays are equal nonetheless.
For SOO and SOo the function pointer must be the same.
Otherwise the value must be the same, even for SOS with shared_ptr<>.
Implements SO.
|
inline |
Returns a copy of the SOp at position 0 and removes this first position from the array.
Has an undefined result if size of vector is 0.
|
inlineoverridevirtual |
Getter for the number of characters or number of objects.
Reimplemented from SO.
|
inlineoverrideprotectedvirtualnoexcept |
Checks class invariants.
Reimplemented from DbC.
|
overridevirtual |
For operators '==' and 'pstack'.
This function attempts to produce a result that resembles the red book syntax for creating the object.
Reimplemented from SO.
|
inlineoverridevirtual |
Returns an OTCode.
A "manual" implementation of polymorphism, where C++-polymorphisms fail
Implements SO.
void SOA::reduce | ( | ) |
Reduces the array by one SO at the end.
The element will be deleted. An empty array stays unchanged without an error condition.
|
inline |
|
inlineoverridevirtual |