Kryptostack
Public Member Functions | Private Attributes | List of all members
SOI Class Reference

Semantic Object Integer. More...

#include <sosimp.h>

+ Inheritance diagram for SOI:
+ Collaboration diagram for SOI:

Public Member Functions

 SOI (const std::string &p_s)
 Ctor.
 
 SOI (__int128 p_i)
 Ctor.
 
__int128 getInteger () const
 Getter for the integer value.
 
void setInteger (__int128 p_i)
 Setter for the integer value.
 
SOIdup () const override
 Creates a new instance as copy following the red book definition. More...
 
std::string opequal () const override
 For operators '=', 'cvs' and 'stack'. More...
 
OTCode ot () const override
 Returns an OTCode. More...
 
std::string type () const override
 Returns a type name. More...
 
bool equal (const SO *p_other) const override
 Equality. More...
 
bool gt (const SO *p_other) const override
 Greater than. More...
 
bool ge (const SO *p_other) const override
 Greater or equal. More...
 
void decrement ()
 Decrement.
 
void increment ()
 Increment.
 
- Public Member Functions inherited from SO
 SO (bool p_exec=false)
 Ctor.
 
virtual ~SO ()=default
 Virtual dtor. More...
 
bool getExec () const
 Getter for exec_.
 
void setExec (bool p_exec)
 Setter for exec_.
 
virtual size_t getSize () const
 Getter for the number of characters or number of objects. More...
 
virtual SOdup () const =0
 Creates a new instance as copy following the red book definition. More...
 
virtual SOclone () const
 Creates a new instance as copy with deep cloning. More...
 
virtual std::string opequal () const =0
 For operators '=', 'cvs' and 'stack'. More...
 
virtual std::string opequalequal () const
 For operators '==' and 'pstack'. More...
 
virtual OTCode ot () const =0
 Returns an OTCode. More...
 
virtual std::string type () const =0
 Returns a type name. More...
 
virtual bool equal (const SO *) const =0
 Equality. More...
 
virtual bool gt (const SO *) const
 Greater than. More...
 
virtual bool ge (const SO *) const
 Greater or equal. More...
 
- Public Member Functions inherited from Counter< SO >
 Counter (Counter< SO > &&)=delete
 
Counter< SO > & operator= (const Counter< SO > &)=delete
 
Counter< SO > & operator= (Counter< SO > &&)=delete
 

Private Attributes

__int128 i_
 The 128 bit integer.
 

Additional Inherited Members

- Static Public Member Functions inherited from Counter< SO >
static int getTotalCounter ()
 Static getter for totaly created objects.
 
static int getAliveCounter ()
 Static getter for objects alive.
 
static int getWatermarkCounter ()
 Static getter for the object counter watermark.
 
- Protected Member Functions inherited from Counter< SO >
 Counter ()
 Ctor.
 
 Counter (const Counter< SO > &)
 Copy ctor.
 
 ~Counter ()
 Dtor.
 
- Protected Member Functions inherited from DbC
virtual bool invariant () const noexcept
 Checks the invariants of the class in which it is defined. More...
 

Detailed Description

Semantic Object Integer.

A 128-bit two's complement integer, thus -2^127 to 2^127-1

Invariant
None.

Member Function Documentation

◆ dup()

SOI * SOI::dup ( ) const
inlineoverridevirtual

Creates a new instance as copy following the red book definition.

Implements SO.

◆ equal()

bool SOI::equal ( const SO ) const
inlineoverridevirtual

Equality.

Equality means: SOL und SOM are always equal.
For SOD and SOK, share_ptr<> points to the same object.
For SOA, share_ptr<> points to the same object, but empty arrays are equal nonetheless.
For SOO and SOo the function pointer must be the same.
Otherwise the value must be the same, even for SOS with shared_ptr<>.

Returns
bool ... true if the SO's are of the same type and equal
See also
Will be used directly and unchanged as operator eq

Implements SO.

◆ ge()

bool SOI::ge ( const SO ) const
inlineoverridevirtual

Greater or equal.

Will be overwritten for SOI, SOR and SOS. The redundancy between equal(), gt() and ge() ist a matter of performance.

Reimplemented from SO.

◆ gt()

bool SOI::gt ( const SO ) const
inlineoverridevirtual

Greater than.

Will be overwritten for SOI, SOR and SOS. The redundancy between equal(), gt() and ge() ist a matter of performance.

Reimplemented from SO.

◆ opequal()

std::string SOI::opequal ( ) const
inlineoverridevirtual

For operators '=', 'cvs' and 'stack'.

Implements SO.

◆ ot()

OTCode SOI::ot ( ) const
inlineoverridevirtual

Returns an OTCode.

A "manual" implementation of polymorphism, where C++-polymorphisms fail

Returns
OTCode ... The OTCode of the instance.

Implements SO.

◆ type()

std::string SOI::type ( ) const
inlineoverridevirtual

Returns a type name.

Returns
std::string ... The type name of the instance.

Implements SO.


The documentation for this class was generated from the following file: