Kryptostack
so.h
Go to the documentation of this file.
1
17#pragma once
18
19#include <string>
20
21#include "dbc.h"
22#include "counter.h"
23#include "helper.h"
24#include "error.h"
25
26
30class SO : public Counter<SO>, protected DbC {
31 bool exec_;
33public:
35 explicit SO( bool p_exec = false ) : exec_(p_exec) {}
36
39 virtual ~SO() = default;
40
41public: /* accessor */
43 bool getExec() const {
44 return exec_;
45 }
46
48 void setExec( bool p_exec ) {
49 exec_ = p_exec;
50 }
51
53 virtual size_t getSize() const {
54 return 1;
55 }
56
57public: /* virtual */
59 [[nodiscard]] virtual SO * dup() const = 0;
60
62 [[nodiscard]] virtual SO * clone() const {
63 return dup();
64 }
65
67 virtual std::string opequal() const = 0;
68
71 virtual std::string opequalequal() const {
72 return opequal();
73 }
74
79 virtual OTCode ot() const = 0;
80
84 virtual std::string type() const = 0;
85
96 virtual bool equal( const SO * /* unused */ ) const = 0;
97
102 virtual bool gt( const SO * /* unused */ ) const {
103 opErrExit( typecheck );
104 }
105
110 virtual bool ge( const SO * /* unused */ ) const {
111 opErrExit( typecheck );
112 }
113};
114
116using SOp = SO *;
117
118
122class SOcomp : public SO {
123
124public:
126 using SO::SO;
127
128public: /* virtual */
129 std::string opequal() const override {
130 return "--nostringval--";
131 }
132};
Counter base class.
Definition: counter.h:23
Design by contract interface class.
Definition: dbc.h:25
Semantic Object.
Definition: so.h:30
virtual bool equal(const SO *) const =0
Equality.
void setExec(bool p_exec)
Setter for exec_.
Definition: so.h:48
virtual std::string type() const =0
Returns a type name.
virtual SO * dup() const =0
Creates a new instance as copy following the red book definition.
SO(bool p_exec=false)
Ctor.
Definition: so.h:35
virtual ~SO()=default
Virtual dtor.
virtual std::string opequalequal() const
For operators '==' and 'pstack'.
Definition: so.h:71
virtual std::string opequal() const =0
For operators '=', 'cvs' and 'stack'.
virtual bool ge(const SO *) const
Greater or equal.
Definition: so.h:110
virtual OTCode ot() const =0
Returns an OTCode.
virtual bool gt(const SO *) const
Greater than.
Definition: so.h:102
bool getExec() const
Getter for exec_.
Definition: so.h:43
virtual SO * clone() const
Creates a new instance as copy with deep cloning.
Definition: so.h:62
bool exec_
All SOs have executive vs literal attribut.
Definition: so.h:31
virtual size_t getSize() const
Getter for the number of characters or number of objects.
Definition: so.h:53
Compound Semantic Object.
Definition: so.h:122
std::string opequal() const override
For operators '=', 'cvs' and 'stack'.
Definition: so.h:129
The class Counter.
Helpers for design by contract idioms.
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
Definitions and functions for error handling.
Miscellaneous definitions and functions.
char OTCode
OTCode - the Object Type Code.
Definition: helper.h:43