Kryptostack
|
The context of execution. More...
#include <context.h>
Public Types | |
using | core = void(Context &) |
A shortcut for the core code functions, the C++ implementations of the operators. | |
Public Member Functions | |
Context () | |
Ctor. More... | |
Context (const Context &)=delete | |
Delete the copy ctor. | |
Context (Context &&)=delete | |
Delete the move ctor. | |
Context & | operator= (const Context &)=delete |
Delete copy assignement. | |
Context & | operator= (Context &&)=delete |
Delete move assignement. | |
virtual | ~Context () |
Dtor. More... | |
SOK & | opst () |
Access to the operand stack. | |
SOK & | exst () |
Access to the execution stack. | |
SOK & | dist () |
Access to the dictionary stack. | |
std::ostream & | getCout () |
Getter for cout_. More... | |
int | getProclevel () const |
Getter for procedure level. | |
size_t | getMaxopeelevel () const |
Getter for maximum opee level. | |
int | getInterpreterLoop () const |
Getter for interpreter loop control variable run_. | |
void | stopInterpreterLoop () |
Sets run_ to false. | |
void | setSnapKSNline (const std::string &p_line) |
Setter for snapKSNline_. | |
auto | getSnapKSNline () const |
Getter for snapKSNline_. | |
size_t | getRealPrecision () const |
Getter for realprecision_. | |
void | setRealPrecision (size_t p_prec) |
Setter for realprecision_. | |
auto | getAngularUnit () const |
Getter for angularunit_. | |
void | setAngularUnit (AngularUnit p_unit) |
Setter for angularunit_. | |
void | incProclevel () |
Increments the procedure level. | |
void | decProclevel () |
Decrements the procedure level. | |
![]() | |
Counter (Counter< Context > &&)=delete | |
Counter< Context > & | operator= (const Counter< Context > &)=delete |
Counter< Context > & | operator= (Counter< Context > &&)=delete |
Static Public Attributes | |
static constexpr size_t | mindictstack_ = 3 |
Corresponds with the setup in the ctor. | |
Protected Member Functions | |
bool | invariant () const noexcept override |
Checks class invariants. More... | |
![]() | |
Counter () | |
Ctor. | |
Counter (const Counter< Context > &) | |
Copy ctor. | |
~Counter () | |
Dtor. | |
virtual bool | invariant () const noexcept |
Checks the invariants of the class in which it is defined. More... | |
Private Attributes | |
std::string | snapKSNline_ |
For debugging purposes a copy of the current KSN line. | |
SOK | os_ |
The operand stack. | |
SOK | es_ |
The execution stack. | |
SOK | ds_ |
The dictionary stack. | |
int | proclevel_ = 0 |
The process level is incremented by one for every { on input. | |
bool | run_ = true |
Control variable for the interpreter loop. | |
AngularUnit | angularunit_ = DEG |
Context Property. More... | |
size_t | maxopeelevel_ = 2 |
Context Property. More... | |
size_t | realprecision_ = 10 |
Context Property. More... | |
Static Private Attributes | |
static const std::map< const char *, core * > | systemdictmap_ |
Maps SON data to SOO data for the systemdict. | |
static const std::map< const char *, core * > | kryptodictmap_ |
Maps SON data to SOO data for the kryptodict. More... | |
Additional Inherited Members | |
![]() | |
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. | |
The context of execution.
Context::Context | ( | ) |
Ctor.
Pushes and initializes a user dictionary, a crypto dictionary, and a system dictionary onto the dictionary stack. Sets up empty stacks and all Context parameters.
|
virtual |
Dtor.
Frees all resources to enable a comprehensive memory leak analysis upon program exit.
|
inline |
Getter for cout_.
We use the Interpreter stream until a split of streams for multiple Contexts will be implemented.
|
inlineoverrideprotectedvirtualnoexcept |
Checks class invariants.
Reimplemented from DbC.
|
private |
Context Property.
The angular unit for trigonometric functions.
|
staticprivate |
|
private |
|
private |