Kryptostack
sok.h
Go to the documentation of this file.
1
17#pragma once
18
19#include <deque>
20#include <initializer_list>
21#include <memory>
22
23#include "dbc.h"
24#include "counter.h"
25#include "helper.h"
26#include "so.h"
27
28
36class SOK : public SOcomp {
37
41 struct SOKDeque {
42 std::deque<SOp> stldeque_;
46 for( const auto & ptr : stldeque_ )
47 delete ptr;
48 }
49 };
50
51 std::shared_ptr<SOKDeque> deque_;
52 size_t watermark_{};
55 void watermark() {
56 if( getSize() > watermark_ )
58 }
59
60protected:
61
62#ifndef DBC_IS_VOID
63
67 bool invariant() const noexcept override { /* LCOV_EXCL_START */
68 if( deque_ == nullptr )
69 return false;
70 for( const auto * obj : deque_->stldeque_ )
71 if( obj == nullptr )
72 return false;
73 return true;
74 } /* LCOV_EXCL_STOP */
75
76#endif
77
78public:
80 SOK() : deque_(std::make_shared<SOKDeque>()) {
82 }
83
84public: /* virtual */
85 [[nodiscard]] SOK * dup() const override { return new SOK( *this ); }
86
90 [[nodiscard]] SOK * clone() const override;
91
92 std::string opequalequal() const override;
93
94 OTCode ot() const override { return 'K'; }
95
96 std::string type() const override { return "stacktype"; }
97
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;
101 }
102
103 size_t getSize() const override { return deque_->stldeque_.size(); }
104
105public: /* accessor */
107 size_t getWatermark() const { return watermark_; }
108
115 void setSO( size_t p_index, SOp p_sop ) {
116 DBC_PRE( p_index < getSize() and p_sop != nullptr );
117
118 delete deque_->stldeque_[p_index];
119 deque_->stldeque_[p_index] = p_sop;
120
121 DBC_INV;
122 }
123
128 SOp at( size_t p_pos ) const {
129 DBC_PRE( p_pos < getSize() );
130
131 return deque_->stldeque_[ p_pos ];
132 }
133
138 SOp peek() const {
139 DBC_PRE( getSize() > 0 );
140
141 return deque_->stldeque_.back();
142 }
143
144public: /* other */
148 [[nodiscard]] SOp pop() {
149 DBC_PRE( getSize() > 0 );
150
151 SOp retval = deque_->stldeque_.back();
152 deque_->stldeque_.pop_back();
153
154 DBC_INV;
155 return retval;
156 }
157
160 void pop_delete() {
161 DBC_PRE( getSize() > 0 );
162
163 delete deque_->stldeque_.back();
164 deque_->stldeque_.pop_back();
165
166 DBC_INV;
167 }
168
172 void push( SOp p_o1 ) {
173 DBC_PRE( p_o1 != nullptr );
174
175 deque_->stldeque_.push_back( p_o1 );
176 watermark();
177
178 DBC_INV;
179 }
180
184 void push( SOp p_o1, SOp p_o2 ) {
185 DBC_PRE( p_o1 != nullptr and p_o2 != nullptr );
186
187 deque_->stldeque_.push_back( p_o1 );
188 deque_->stldeque_.push_back( p_o2 );
189 watermark();
190
191 DBC_INV;
192 }
193
196 void push( std::initializer_list<SOp> p_list ) {
197 for( auto obj : p_list ) {
198 DBC_PRE( obj != nullptr );
199 deque_->stldeque_.push_back( obj );
200 }
201 watermark();
202
203 DBC_INV;
204 }
205
210 void push_front( SOp p_obj ) {
211 DBC_PRE( p_obj != nullptr );
212
213 deque_->stldeque_.push_front( p_obj );
214 watermark();
215
216 DBC_INV;
217 }
218
220 bool underflowcheck( size_t p_size ) const { return getSize() >= p_size; }
221
225 bool otchecker( const std::string & p_s ) const;
226
229 bool otchecker( OTCode p_code ) const {
230 DBC_PRE( !deque_->stldeque_.empty() );
231
232 return peek()->ot() == p_code;
233 }
234
240 bool countto( size_t & p_retval, OTCode p_code ) const;
241
246 SOp findValue( const SO * p_key ) const;
247
253 SOp findDict( const SO * p_key ) const;
254
260 [[nodiscard]] __int128 getI();
261
267 [[nodiscard]] __float128 getIorRasR();
268
275 [[nodiscard]] size_t getISize_t();
276};
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
The class Counter.
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
Class semantic object.
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