39 std::shared_ptr<std::string>
str_;
58 explicit SOS(
const std::string & p_str ) :
str_(std::make_shared<std::string>(p_str)) {
68 void setch(
size_t p_index,
int p_char );
71 [[nodiscard]]
SOS *
dup()
const override {
return new SOS( *
this ); }
91 std::string
type()
const override {
return "stringtype"; }
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;
98 bool gt(
const SO * p_other )
const override {
99 auto o =
dynamic_cast<const SOS *
>( p_other );
102 return *
str_ > *(o->str_);
105 bool ge(
const SO * p_other )
const override {
106 auto o =
dynamic_cast<const SOS *
>( p_other );
109 return *
str_ >= *(o->str_);
124 void replace(
size_t p_pos,
const std::string & p_src ) {
127 str_->replace( p_pos, p_src.size(), p_src );
152 std::shared_ptr<SOAArray>
vec_;
162 if(
vec_ ==
nullptr )
164 for(
const auto * obj :
vec_->stlvec_ )
175 explicit SOA(
size_t p_len = 0,
bool p_exec =
false );
189 delete vec_->stlvec_[p_index];
190 vec_->stlvec_[p_index] = p_sop;
203 return vec_->stlvec_[ p_pos ];
207 [[nodiscard]]
SOA *
dup()
const override {
return new SOA( *
this ); }
212 [[nodiscard]]
SOA *
clone()
const override;
220 std::string
type()
const override {
return "arraytype"; }
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 )
227 return vec_ == o->vec_;
248 SOp retval =
at( 0 );
249 vec_->stlvec_.erase(
vec_->stlvec_.begin() );
270 for(
const auto & ptr :
stlmap_ ) {
287 if(
map_ ==
nullptr )
289 for(
const auto & obj :
map_->stlmap_ )
290 if( obj.first ==
nullptr or obj.second ==
nullptr )
304 [[nodiscard]]
SOD *
dup()
const override {
return new SOD( *
this ); }
309 [[nodiscard]]
SOD *
clone()
const override;
315 std::string
type()
const override {
return "dicttype"; }
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;
332 void insert(
SOp p_key,
SOp p_value,
bool p_forcebegin =
false );
346 auto it =
map_->stlmap_.begin();
347 std::pair<SOp,SOp> retval( *it );
348 map_->stlmap_.erase( it );
355 void undef(
const SO * p_key )
const;
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
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