20#include <initializer_list>
70 for(
const auto * obj :
deque_->stldeque_ )
85 [[nodiscard]]
SOK *
dup()
const override {
return new SOK( *
this ); }
90 [[nodiscard]]
SOK *
clone()
const override;
96 std::string
type()
const override {
return "stacktype"; }
98 bool equal(
const SO * p_other )
const override {
99 auto o =
dynamic_cast<const SOK *
>( p_other);
100 return o ?
deque_ == o->deque_ :
false;
118 delete deque_->stldeque_[p_index];
119 deque_->stldeque_[p_index] = p_sop;
131 return deque_->stldeque_[ p_pos ];
141 return deque_->stldeque_.back();
152 deque_->stldeque_.pop_back();
163 delete deque_->stldeque_.back();
164 deque_->stldeque_.pop_back();
175 deque_->stldeque_.push_back( p_o1 );
185 DBC_PRE( p_o1 !=
nullptr and p_o2 !=
nullptr );
187 deque_->stldeque_.push_back( p_o1 );
188 deque_->stldeque_.push_back( p_o2 );
196 void push( std::initializer_list<SOp> p_list ) {
197 for(
auto obj : p_list ) {
199 deque_->stldeque_.push_back( obj );
213 deque_->stldeque_.push_front( p_obj );
225 bool otchecker(
const std::string & p_s )
const;
232 return peek()->
ot() == p_code;
260 [[nodiscard]] __int128
getI();
Semantic Object Stack.
Definition: sok.h:36
bool invariant() const noexcept override
Checks class invariants.
Definition: sok.h:67
SOp peek() const
Returns a copy of the SOp of the top most position.
Definition: sok.h:138
void push(SOp p_o1, SOp p_o2)
Pushes the 2 objects onto the SOK and transfers ownership to the SOK.
Definition: sok.h:184
void pop_delete()
Removes the top most object from SOK, and the referenced SO will be deleted.
Definition: sok.h:160
__int128 getI()
I from SOK.
Definition: sok.cpp:112
OTCode ot() const override
Returns an OTCode.
Definition: sok.h:94
void setSO(size_t p_index, SOp p_sop)
Setter for a stack object.
Definition: sok.h:115
std::string opequalequal() const override
For operators '==' and 'pstack'.
Definition: sok.cpp:44
bool otchecker(const std::string &p_s) const
Checks SO classes on the operand stack against a string of given OTCodes.
Definition: sok.cpp:68
SOK * clone() const override
Creates a new instance as copy with deep cloning.
Definition: sok.cpp:33
SOK()
Ctor.
Definition: sok.h:80
void push_front(SOp p_obj)
Pushes the object onto the front side of the SOK and transfers ownership to the SOK.
Definition: sok.h:210
bool otchecker(OTCode p_code) const
Checks SO classes on the operand stack against an OTCodes.
Definition: sok.h:229
size_t getWatermark() const
Returns the watermark.
Definition: sok.h:107
SOp findValue(const SO *p_key) const
Finds the given key within the whole stack, assuming a stack with dictionaries only.
Definition: sok.cpp:85
__float128 getIorRasR()
I or R from SOK as R Deletes the top object after reading its value.
Definition: sok.cpp:134
bool underflowcheck(size_t p_size) const
Checks SOK against given size.
Definition: sok.h:220
size_t getISize_t()
I from SOK as size_t.
Definition: sok.cpp:124
std::shared_ptr< SOKDeque > deque_
The shared deque.
Definition: sok.h:51
SOp findDict(const SO *p_key) const
Finds the dictionary storing the given key within the whole stack, assuming a stack with dictionaries...
Definition: sok.cpp:99
SOp pop()
Returns a copy of the top SOp, removes the SOp from the SOK.
Definition: sok.h:148
void watermark()
Update watermark_ if necessary.
Definition: sok.h:55
SOp at(size_t p_pos) const
Returns a copy of the SOp at the given position.
Definition: sok.h:128
void push(SOp p_o1)
Pushes the object onto the SOK and transfers ownership to the SOK.
Definition: sok.h:172
void push(std::initializer_list< SOp > p_list)
Pushes n objects onto the SOK and transfers ownership to the SOK.
Definition: sok.h:196
size_t watermark_
The watermark for the size of the stack.
Definition: sok.h:52
bool countto(size_t &p_retval, OTCode p_code) const
Count the objects on the SOK down to but excluding the object from the given type.
Definition: sok.cpp:58
size_t getSize() const override
Getter for the number of characters or number of objects.
Definition: sok.h:103
std::string type() const override
Returns a type name.
Definition: sok.h:96
SOK * dup() const override
Creates a new instance as copy following the red book definition.
Definition: sok.h:85
bool equal(const SO *p_other) const override
Equality.
Definition: sok.h:98
Semantic Object.
Definition: so.h:30
virtual OTCode ot() const =0
Returns an OTCode.
Compound Semantic Object.
Definition: so.h:122
Helpers for design by contract idioms.
#define DBC_INV_CTOR(T)
Assert for invariant checks in ctors and dtors.
Definition: dbc.h:91
#define DBC_INV
Assert for invariant checks in member functions.
Definition: dbc.h:86
#define DBC_PRE(XXX)
Assert for preconditions.
Definition: dbc.h:80
Miscellaneous definitions and functions.
char OTCode
OTCode - the Object Type Code.
Definition: helper.h:43
Semantic Object Stack - deque member class.
Definition: sok.h:41
std::deque< SOp > stldeque_
The deque.
Definition: sok.h:42
~SOKDeque()
Dtor.
Definition: sok.h:45