Kryptostack
sosimp.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 "adapter128.h"
28#include "so.h"
29
30class Context;
31
32/* ******************************************************************* */
33/* Simple Objects */
34/* SO's that store their data without indirect referencing */
35/* ******************************************************************* */
36
37
41class SOM : public SO {
42public: /* virtual */
43 [[nodiscard]] SOM * dup() const override { return new SOM; }
44
45 std::string opequal() const override { return "--nostringval--"; }
46
47 std::string opequalequal() const override { return "-mark-"; }
48
49 OTCode ot() const override { return 'M'; }
50
51 std::string type() const override { return "marktype"; }
52
53 bool equal( const SO * p_other ) const override {
54 return dynamic_cast<const SOM *>( p_other) != nullptr; // All SOM are equal
55 }
56};
57
58
62class SOL : public SO {
63public: /* virtual */
64 SOL * dup() const override { return new SOL; }
65
66 std::string opequal() const override { return "--nostringval--"; }
67
68 std::string opequalequal() const override { return "null"; }
69
70 OTCode ot() const override { return '0'; }
71
72 std::string type() const override { return "nulltype"; }
73
74 bool equal( const SO * p_other ) const override {
75 return dynamic_cast<const SOL *>( p_other) != nullptr; // All SOL are equal
76 }
77};
78
79
84class SOI : public SO {
85 __int128 i_;
87public:
89 explicit SOI( const std::string & p_s ) : i_(stoint128(p_s)) {}
90
92 explicit SOI( __int128 p_i ) : i_(p_i) {}
93
94public: /* accessor */
96 __int128 getInteger() const { return i_; }
97
99 void setInteger( __int128 p_i ) { i_=p_i; }
100
101public: /* virtual */
102 [[nodiscard]] SOI * dup() const override { return new SOI( i_ ); }
103
104 std::string opequal() const override { return to_string( i_ ); }
105
106 OTCode ot() const override { return 'I'; }
107
108 std::string type() const override { return "integertype"; }
109
110 bool equal( const SO * p_other ) const override {
111 auto o = dynamic_cast<const SOI*>( p_other );
112 return o ? i_ == o->i_ : false;
113 }
114
115 bool gt( const SO * p_other ) const override {
116 auto o = dynamic_cast<const SOI*>( p_other );
117 if( o == nullptr )
118 opErrExit( typecheck);
119 return i_ > o->i_;
120 }
121
122 bool ge( const SO * p_other ) const override {
123 auto o = dynamic_cast<const SOI*>( p_other );
124 if( o == nullptr )
125 opErrExit( typecheck);
126 return i_ >= o->i_;
127 }
128
129public: /* other */
131 void decrement() { i_--; }
132
134 void increment() { i_++; }
135};
136
137
140class SOB : public SO {
141 bool b_;
143public:
145 explicit SOB( const std::string & p_s ) : b_(p_s == "true") {}
146
148 explicit SOB( bool p_b ) : b_(p_b) {}
149
150public: /* accessor */
152 bool getB() const { return b_; }
153
155 void setB( bool p_b ) { b_ = p_b; }
156
157public: /* virtual */
158 [[nodiscard]] SOB * dup() const override { return new SOB( b_ ); }
159
160 std::string opequal() const override {
161 return b_ ? "true" : "false";
162 }
163
164 OTCode ot() const override { return 'B'; }
165
166 std::string type() const override { return "booleantype"; }
167
168 bool equal( const SO * p_other ) const override {
169 auto o = dynamic_cast<const SOB *>( p_other);
170 return o ? b_ == o->b_ : false;
171 }
172
173public: /* other */
175 void negation() { b_ = !b_; }
176};
177
178
185class SOR : public SO {
186 __float128 r_;
188public:
190 explicit SOR( const std::string & p_s ) : r_( stofloat128(p_s) ) {}
191
193 explicit SOR( __float128 p_r ) : r_(p_r) {}
194
195public: /* accessor */
197 __float128 getReal() const { return r_; }
198
200 void setReal( __float128 p_r ) { r_ = p_r; }
201
202public: /* virtual */
203 [[nodiscard]] SOR * dup() const override { return new SOR( r_ ); }
204
210 std::string opequal() const override;
211
212 OTCode ot() const override { return 'R'; }
213
214 std::string type() const override { return "realtype"; }
215
216 bool equal( const SO * p_other ) const override {
217 auto o = dynamic_cast<const SOR* >( p_other );
218 return o ? r_ == o->r_ : false;
219 }
220
221 bool gt( const SO * p_other ) const override {
222 auto o = dynamic_cast<const SOR *>( p_other );
223 if( o == nullptr )
224 opErrExit( typecheck);
225 return r_ > o->r_;
226 }
227
228 bool ge( const SO * p_other ) const override {
229 auto o = dynamic_cast<const SOR *>( p_other );
230 if( o == nullptr )
231 opErrExit( typecheck);
232 return r_ >= o->r_;
233 }
234};
235
236
240class SON : public SO {
241 std::string name_;
243protected:
244
245#ifndef DBC_IS_VOID
246
251 bool invariant() const noexcept override { /* LCOV_EXCL_START */
252 return !name_.empty();
253 } /* LCOV_EXCL_STOP */
254
255#endif
256
257public:
259 explicit SON( const std::string& p_name, bool p_exec = false ) : SO(p_exec), name_(p_name) {
261 }
262
263public: /* virtual */
264 [[nodiscard]] SON * dup() const override { return new SON( name_, getExec() ); }
265
266 std::string opequal() const override {
267 if( getExec() )
268 return name_;
269 return "/"+name_;
270 }
271
272 OTCode ot() const override {
273 return getExec() ? 'n' : 'N';
274 }
275
276 std::string type() const override { return "nametype"; }
277
278 bool equal( const SO * p_other ) const override {
279 auto o = dynamic_cast<const SON *>( p_other);
280 return o ? name_ == o->name_ : false;
281 }
282
283 size_t getSize() const override { return name_.size(); }
284
285public: /* other */
291 void load_exec( Context & k ) const;
292};
293
294
301class SOO : public SO {
302 void (* const core_)( Context &);
303 const char * const srep_;
305#ifndef DBC_IS_VOID
306
310 bool invariant() const noexcept override { /* LCOV_EXCL_START */
311 if( core_ == nullptr or srep_ == nullptr )
312 return false;
313 if( *srep_ == 0 )
314 return false;
315 return true;
316 } /* LCOV_EXCL_STOP */
317
318#endif
319
320public:
322 SOO( void (* const p_fun)( Context &), const char * p_str ) : core_(p_fun), srep_(p_str) {
324 }
325
326public: /* virtual */
327 [[nodiscard]] SOO * dup() const override { return new SOO( core_, srep_ ); }
328
329 std::string opequal() const override { return "--"+std::string(srep_)+"--"; }
330
331 OTCode ot() const override { return 'O'; }
332
333 std::string type() const override { return "operatortype"; }
334
335 bool equal( const SO * p_other ) const override {
336 const SOO* o = dynamic_cast<const SOO*>( p_other);
337 return o ? core_ == o->core_ : false;
338 }
339
340public: /* other */
342 void exec( Context & k ) const { core_(k); }
343};
344
345
351class SOo : public SOO {
352 size_t stackusage_;
354public:
356 SOo( void (*p_f)( Context & ), const char * p_s, size_t p_stackusage )
357 : SOO( p_f, p_s ), stackusage_(p_stackusage) {}
358
359public: /* accessor */
361 auto getStackusage() const { return stackusage_; }
362
363public: /* virtual */
364 OTCode ot() const override { return 'o'; }
365};
string to_string(const __int128 p_z)
We need an adapter function, because __int128 isn't supported by std::to_string().
Definition: adapter128.cpp:31
__int128 stoint128(const string &p_s)
We need an adapter function, because __float128 isn't supported by the standard library.
Definition: adapter128.cpp:59
__float128 stofloat128(const string &p_s)
We need an adapter function, because __float128 isn't supported by the standard library.
Definition: adapter128.cpp:69
Adapters for 128 bit versions of standard functions.
The context of execution.
Definition: context.h:35
Semantic Object Boolean.
Definition: sosimp.h:140
SOB(bool p_b)
Ctor.
Definition: sosimp.h:148
void negation()
Negation.
Definition: sosimp.h:175
OTCode ot() const override
Returns an OTCode.
Definition: sosimp.h:164
bool getB() const
Getter for boolean value.
Definition: sosimp.h:152
std::string opequal() const override
For operators '=', 'cvs' and 'stack'.
Definition: sosimp.h:160
bool equal(const SO *p_other) const override
Equality.
Definition: sosimp.h:168
void setB(bool p_b)
Setter for boolean value.
Definition: sosimp.h:155
bool b_
The boolean value.
Definition: sosimp.h:141
SOB(const std::string &p_s)
Ctor.
Definition: sosimp.h:145
std::string type() const override
Returns a type name.
Definition: sosimp.h:166
SOB * dup() const override
Creates a new instance as copy following the red book definition.
Definition: sosimp.h:158
Semantic Object Integer.
Definition: sosimp.h:84
bool equal(const SO *p_other) const override
Equality.
Definition: sosimp.h:110
SOI * dup() const override
Creates a new instance as copy following the red book definition.
Definition: sosimp.h:102
OTCode ot() const override
Returns an OTCode.
Definition: sosimp.h:106
SOI(const std::string &p_s)
Ctor.
Definition: sosimp.h:89
void increment()
Increment.
Definition: sosimp.h:134
void setInteger(__int128 p_i)
Setter for the integer value.
Definition: sosimp.h:99
void decrement()
Decrement.
Definition: sosimp.h:131
__int128 i_
The 128 bit integer.
Definition: sosimp.h:85
SOI(__int128 p_i)
Ctor.
Definition: sosimp.h:92
std::string type() const override
Returns a type name.
Definition: sosimp.h:108
bool gt(const SO *p_other) const override
Greater than.
Definition: sosimp.h:115
bool ge(const SO *p_other) const override
Greater or equal.
Definition: sosimp.h:122
std::string opequal() const override
For operators '=', 'cvs' and 'stack'.
Definition: sosimp.h:104
__int128 getInteger() const
Getter for the integer value.
Definition: sosimp.h:96
Semantic Object nuLl.
Definition: sosimp.h:62
SOL * dup() const override
Creates a new instance as copy following the red book definition.
Definition: sosimp.h:64
OTCode ot() const override
Returns an OTCode.
Definition: sosimp.h:70
std::string type() const override
Returns a type name.
Definition: sosimp.h:72
std::string opequal() const override
For operators '=', 'cvs' and 'stack'.
Definition: sosimp.h:66
std::string opequalequal() const override
For operators '==' and 'pstack'.
Definition: sosimp.h:68
bool equal(const SO *p_other) const override
Equality.
Definition: sosimp.h:74
Semantic Object Mark.
Definition: sosimp.h:41
std::string type() const override
Returns a type name.
Definition: sosimp.h:51
SOM * dup() const override
Creates a new instance as copy following the red book definition.
Definition: sosimp.h:43
std::string opequalequal() const override
For operators '==' and 'pstack'.
Definition: sosimp.h:47
std::string opequal() const override
For operators '=', 'cvs' and 'stack'.
Definition: sosimp.h:45
bool equal(const SO *p_other) const override
Equality.
Definition: sosimp.h:53
OTCode ot() const override
Returns an OTCode.
Definition: sosimp.h:49
Semantic Object Name.
Definition: sosimp.h:240
SON * dup() const override
Creates a new instance as copy following the red book definition.
Definition: sosimp.h:264
bool invariant() const noexcept override
Checks class invariants.
Definition: sosimp.h:251
size_t getSize() const override
Getter for the number of characters or number of objects.
Definition: sosimp.h:283
std::string opequal() const override
For operators '=', 'cvs' and 'stack'.
Definition: sosimp.h:266
OTCode ot() const override
Returns an OTCode.
Definition: sosimp.h:272
bool equal(const SO *p_other) const override
Equality.
Definition: sosimp.h:278
SON(const std::string &p_name, bool p_exec=false)
Ctor.
Definition: sosimp.h:259
std::string type() const override
Returns a type name.
Definition: sosimp.h:276
std::string name_
The name.
Definition: sosimp.h:241
void load_exec(Context &k) const
Look up a name and executes it.
Definition: sosimp.cpp:34
Semantic Object Operator.
Definition: sosimp.h:301
OTCode ot() const override
Returns an OTCode.
Definition: sosimp.h:331
std::string opequal() const override
For operators '=', 'cvs' and 'stack'.
Definition: sosimp.h:329
const char *const srep_
A name just for representation.
Definition: sosimp.h:303
SOO * dup() const override
Creates a new instance as copy following the red book definition.
Definition: sosimp.h:327
bool invariant() const noexcept override
Checks class invariants.
Definition: sosimp.h:310
void(*const core_)(Context &)
The core code, a C++ implementation of the operator.
Definition: sosimp.h:302
SOO(void(*const p_fun)(Context &), const char *p_str)
Ctor.
Definition: sosimp.h:322
std::string type() const override
Returns a type name.
Definition: sosimp.h:333
void exec(Context &k) const
Call the core code.
Definition: sosimp.h:342
bool equal(const SO *p_other) const override
Equality.
Definition: sosimp.h:335
Semantic Object Real.
Definition: sosimp.h:185
void setReal(__float128 p_r)
Setter for real value.
Definition: sosimp.h:200
SOR(const std::string &p_s)
Ctor.
Definition: sosimp.h:190
bool ge(const SO *p_other) const override
Greater or equal.
Definition: sosimp.h:228
std::string opequal() const override
For operators '=', 'cvs' and 'stack'.
Definition: sosimp.cpp:30
__float128 r_
The real value as decimal number.
Definition: sosimp.h:186
__float128 getReal() const
Getter for real value.
Definition: sosimp.h:197
bool equal(const SO *p_other) const override
Equality.
Definition: sosimp.h:216
SOR(__float128 p_r)
Ctor.
Definition: sosimp.h:193
bool gt(const SO *p_other) const override
Greater than.
Definition: sosimp.h:221
std::string type() const override
Returns a type name.
Definition: sosimp.h:214
SOR * dup() const override
Creates a new instance as copy following the red book definition.
Definition: sosimp.h:203
OTCode ot() const override
Returns an OTCode.
Definition: sosimp.h:212
Semantic Object.
Definition: so.h:30
bool getExec() const
Getter for exec_.
Definition: so.h:43
Semantic Object Operator unregistered section.
Definition: sosimp.h:351
auto getStackusage() const
Getter for stackusage_.
Definition: sosimp.h:361
OTCode ot() const override
Returns an OTCode.
Definition: sosimp.h:364
size_t stackusage_
The number of objects needed on the execution stack for execution.
Definition: sosimp.h:352
SOo(void(*p_f)(Context &), const char *p_s, size_t p_stackusage)
Ctor.
Definition: sosimp.h:356
Helpers for design by contract idioms.
#define DBC_INV_CTOR(T)
Assert for invariant checks in ctors and dtors.
Definition: dbc.h:91
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.