Kryptostack
socomp.h
Go to the documentation of this file.
1
17#pragma once
18
19#include <string>
20#include <map>
21#include <numeric>
22#include <vector>
23#include <memory>
24
25#include "dbc.h"
26#include "helper.h"
27#include "so.h"
28
29class Context;
30
31/* ************************************************************ */
32/* Composite Objects */
33/* SO's that reference their data with shared_ptr<> */
34/* ************************************************************ */
35
38class SOS : public SOcomp {
39 std::shared_ptr<std::string> str_;
41protected:
42
43#ifndef DBC_IS_VOID
44
48 bool invariant() const noexcept override { /* LCOV_EXCL_START */
49 if( str_ == nullptr )
50 return false;
51 return true;
52 } /* LCOV_EXCL_STOP */
53
54#endif
55
56public:
58 explicit SOS( const std::string & p_str ) : str_(std::make_shared<std::string>(p_str)) {
60 }
61
62public: /* accessor */
64 std::string getString() const { return *str_; }
65
68 void setch( size_t p_index, int p_char );
69
70public: /* virtual */
71 [[nodiscard]] SOS * dup() const override { return new SOS( *this ); }
72
76 [[nodiscard]] SOS * clone() const override {
77 auto rv = new SOS( *str_ );
78 rv->setExec( getExec() );
79
80 DBC_POST( rv != nullptr );
81 DBC_POST( rv->invariant() );
82 return rv;
83 }
84
85 std::string opequal() const override { return *str_; }
86
87 std::string opequalequal() const override { return "(" + *str_ + ")"; } // TODO: Should print "\000" for character 0 within string length.
88
89 OTCode ot() const override { return 'S'; }
90
91 std::string type() const override { return "stringtype"; }
92
93 bool equal( const SO * p_other ) const override {
94 auto o = dynamic_cast<const SOS *>( p_other );
95 return o ? *str_ == *(o->str_) : false; // SOS are equal if their value is equal, even with non-shared pointers
96 }
97
98 bool gt( const SO * p_other ) const override {
99 auto o = dynamic_cast<const SOS *>( p_other );
100 if( o == nullptr )
101 opErrExit( typecheck);
102 return *str_ > *(o->str_);
103 }
104
105 bool ge( const SO * p_other ) const override {
106 auto o = dynamic_cast<const SOS *>( p_other );
107 if( o == nullptr )
108 opErrExit( typecheck);
109 return *str_ >= *(o->str_);
110 }
111
112 size_t getSize() const override { return str_->size(); }
113
114public: /* other */
116 void erase0() {
117 str_->erase(0,1);
118
119 DBC_INV;
120 }
121
124 void replace( size_t p_pos, const std::string & p_src ) {
125 DBC_PRE( p_pos + p_src.size() <= getSize() );
126
127 str_->replace( p_pos, p_src.size(), p_src );
128
129 DBC_INV;
130 }
131};
132
133
138class SOA : public SOcomp {
142 struct SOAArray {
143 std::vector<SOp> stlvec_;
147 for( auto * ptr : stlvec_ )
148 delete ptr;
149 }
150 };
151
152 std::shared_ptr<SOAArray> vec_;
154protected:
155
156#ifndef DBC_IS_VOID
157
161 bool invariant() const noexcept override { /* LCOV_EXCL_START */
162 if( vec_ == nullptr )
163 return false;
164 for( const auto * obj : vec_->stlvec_ ) // IDEA: use std::all_of()
165 if( obj == nullptr )
166 return false;
167 return true;
168 } /* LCOV_EXCL_STOP */
169
170#endif
171
172
173public:
175 explicit SOA( size_t p_len = 0, bool p_exec = false );
176
177public: /* accessor */
185 void setSO( size_t p_index, SOp p_sop ) {
186 DBC_PRE( p_index < getSize() );
187 DBC_PRE( p_sop != nullptr );
188
189 delete vec_->stlvec_[p_index];
190 vec_->stlvec_[p_index] = p_sop;
191
192 DBC_INV;
193 }
194
200 SOp at( size_t p_pos ) const {
201 DBC_PRE( p_pos < getSize() );
202
203 return vec_->stlvec_[ p_pos ];
204 }
205
206public: /* virtual */
207 [[nodiscard]] SOA * dup() const override { return new SOA( *this ); }
208
212 [[nodiscard]] SOA * clone() const override;
213
214 std::string opequalequal() const override;
215
216 OTCode ot() const override {
217 return getExec() ? 'a' : 'A';
218 }
219
220 std::string type() const override { return "arraytype"; }
221
222 bool equal( const SO * p_other ) const override {
223 auto o = dynamic_cast<const SOA*>( p_other );
224 if( !o ) return false;
225 if( getSize() == 0 && o->getSize() == 0 )
226 return true; // Exception: arrays of size zero are always equal.
227 return vec_ == o->vec_;
228 }
229
230 size_t getSize() const override { return vec_->stlvec_.size(); }
231
232public: /* other */
236 void reduce();
237
239 void unfold2exec( Context & k ) const;
240
245 DBC_PRE( getSize() > 0 );
247
248 SOp retval = at( 0 );
249 vec_->stlvec_.erase( vec_->stlvec_.begin() );
250 return retval;
251 }
252
254 void bind( Context & k );
255};
256
257
261class SOD : public SOcomp {
265 struct SODMap {
266 std::map<SOp,SOp> stlmap_;
270 for( const auto & ptr : stlmap_ ) {
271 delete ptr.first;
272 delete ptr.second;
273 }
274 }
275 };
276
277 std::shared_ptr<SODMap> map_;
279protected:
280
281#ifndef DBC_IS_VOID
282
286 bool invariant() const noexcept override { /* LCOV_EXCL_START */
287 if( map_ == nullptr )
288 return false;
289 for( const auto & obj : map_->stlmap_ )
290 if( obj.first == nullptr or obj.second == nullptr )
291 return false;
292 return true;
293 } /* LCOV_EXCL_STOP */
294
295#endif
296
297public:
299 SOD() : map_(std::make_shared<SODMap>()) {
301 }
302
303public: /* virtual */
304 [[nodiscard]] SOD * dup() const override { return new SOD( *this ); }
305
309 [[nodiscard]] SOD * clone() const override;
310
311 std::string opequalequal() const override;
312
313 OTCode ot() const override { return 'D'; }
314
315 std::string type() const override { return "dicttype"; }
316
317 bool equal( const SO * p_other ) const override {
318 auto o = dynamic_cast<const SOD*>( p_other);
319 return o ? map_ == o->map_ : false;
320 }
321
322 size_t getSize() const override { return map_->stlmap_.size(); }
323
324public: /* other */
332 void insert( SOp p_key, SOp p_value, bool p_forcebegin = false );
333
338 SOp find( const SO * p_key ) const;
339
342 auto any_pop() {
343 DBC_PRE( getSize() > 0 );
344 DBC_INV_RAII( SOD );
345
346 auto it = map_->stlmap_.begin();
347 std::pair<SOp,SOp> retval( *it );
348 map_->stlmap_.erase( it );
349 return retval;
350 }
351
355 void undef( const SO * p_key ) const;
356};
The context of execution.
Definition: context.h:35
Semantic Object Array.
Definition: socomp.h:138
SOp front_pop()
Returns a copy of the SOp at position 0 and removes this first position from the array.
Definition: socomp.h:244
size_t getSize() const override
Getter for the number of characters or number of objects.
Definition: socomp.h:230
void unfold2exec(Context &k) const
Unfolds duplicates of the array-content to the execution stack.
Definition: socomp.cpp:84
std::string type() const override
Returns a type name.
Definition: socomp.h:220
SOA * clone() const override
Creates a new instance as copy with deep cloning.
Definition: socomp.cpp:73
void bind(Context &k)
Replaces executable names with operator objects recursively into elements that are SOA.
Definition: socomp.cpp:58
SOp at(size_t p_pos) const
Returns a copy of the SOp at the given position.
Definition: socomp.h:200
std::shared_ptr< SOAArray > vec_
The shared array.
Definition: socomp.h:152
void setSO(size_t p_index, SOp p_sop)
Setter for an array object.
Definition: socomp.h:185
bool equal(const SO *p_other) const override
Equality.
Definition: socomp.h:222
OTCode ot() const override
Returns an OTCode.
Definition: socomp.h:216
bool invariant() const noexcept override
Checks class invariants.
Definition: socomp.h:161
void reduce()
Reduces the array by one SO at the end.
Definition: socomp.cpp:109
SOA(size_t p_len=0, bool p_exec=false)
Ctor.
Definition: socomp.cpp:48
SOA * dup() const override
Creates a new instance as copy following the red book definition.
Definition: socomp.h:207
std::string opequalequal() const override
For operators '==' and 'pstack'.
Definition: socomp.cpp:89
Semantic Object Dictionary.
Definition: socomp.h:261
SOD * dup() const override
Creates a new instance as copy following the red book definition.
Definition: socomp.h:304
void insert(SOp p_key, SOp p_value, bool p_forcebegin=false)
Insert with the red book definition of equal.
Definition: socomp.cpp:154
size_t getSize() const override
Getter for the number of characters or number of objects.
Definition: socomp.h:322
SOD * clone() const override
Creates a new instance as copy with deep cloning.
Definition: socomp.cpp:123
std::string opequalequal() const override
For operators '==' and 'pstack'.
Definition: socomp.cpp:134
OTCode ot() const override
Returns an OTCode.
Definition: socomp.h:313
std::string type() const override
Returns a type name.
Definition: socomp.h:315
SOp find(const SO *p_key) const
Searches for p_key in the dictionary.
Definition: socomp.cpp:175
SOD()
Ctor.
Definition: socomp.h:299
bool equal(const SO *p_other) const override
Equality.
Definition: socomp.h:317
bool invariant() const noexcept override
Checks class invariants.
Definition: socomp.h:286
std::shared_ptr< SODMap > map_
The shared dictionary.
Definition: socomp.h:277
auto any_pop()
Returns a pair from the dictionary.
Definition: socomp.h:342
void undef(const SO *p_key) const
Removes both p_key and its value from the dictionary.
Definition: socomp.cpp:184
Semantic Object String.
Definition: socomp.h:38
std::string getString() const
Getter for the string value.
Definition: socomp.h:64
SOS * dup() const override
Creates a new instance as copy following the red book definition.
Definition: socomp.h:71
SOS * clone() const override
Creates a new instance as copy with deep cloning.
Definition: socomp.h:76
bool ge(const SO *p_other) const override
Greater or equal.
Definition: socomp.h:105
bool gt(const SO *p_other) const override
Greater than.
Definition: socomp.h:98
std::string opequal() const override
For operators '=', 'cvs' and 'stack'.
Definition: socomp.h:85
bool invariant() const noexcept override
Checks class invariants.
Definition: socomp.h:48
void replace(size_t p_pos, const std::string &p_src)
Replaces characters at position p_pos.
Definition: socomp.h:124
void setch(size_t p_index, int p_char)
Sets a single character within the string.
Definition: socomp.cpp:36
bool equal(const SO *p_other) const override
Equality.
Definition: socomp.h:93
void erase0()
Erases the fist character of the String.
Definition: socomp.h:116
size_t getSize() const override
Getter for the number of characters or number of objects.
Definition: socomp.h:112
std::string type() const override
Returns a type name.
Definition: socomp.h:91
std::shared_ptr< std::string > str_
The string value.
Definition: socomp.h:39
OTCode ot() const override
Returns an OTCode.
Definition: socomp.h:89
std::string opequalequal() const override
For operators '==' and 'pstack'.
Definition: socomp.h:87
SOS(const std::string &p_str)
Ctor.
Definition: socomp.h:58
Semantic Object.
Definition: so.h:30
bool getExec() const
Getter for exec_.
Definition: so.h:43
Compound Semantic Object.
Definition: so.h:122
Helpers for design by contract idioms.
#define DBC_POST(XXX)
Assert for postconditions.
Definition: dbc.h:83
#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
#define DBC_INV_RAII(TT)
Defines an instance of the class DbCRAIIassert<>, which calls the invariant()-function at the return ...
Definition: dbc.h:73
void opErrExit(OpError p_err, const std::string &p_details, const std::source_location p_location)
Operator error message to interpreter cout_ and exit(1).
Definition: error.cpp:27
Miscellaneous definitions and functions.
char OTCode
OTCode - the Object Type Code.
Definition: helper.h:43
Class semantic object.
Semantic Object Array - array member class.
Definition: socomp.h:142
~SOAArray()
Dtor.
Definition: socomp.h:146
std::vector< SOp > stlvec_
The inner array.
Definition: socomp.h:143
Semantic Object Dictionary - map member class.
Definition: socomp.h:265
std::map< SOp, SOp > stlmap_
The map.
Definition: socomp.h:266
~SODMap()
Dtor.
Definition: socomp.h:269