Kryptostack
Public Types | Public Member Functions | Static Public Attributes | Protected Member Functions | Private Attributes | Static Private Attributes | List of all members
Context Class Reference

The context of execution. More...

#include <context.h>

+ Inheritance diagram for Context:
+ Collaboration diagram for Context:

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.
 
Contextoperator= (const Context &)=delete
 Delete copy assignement.
 
Contextoperator= (Context &&)=delete
 Delete move assignement.
 
virtual ~Context ()
 Dtor. More...
 
SOKopst ()
 Access to the operand stack.
 
SOKexst ()
 Access to the execution stack.
 
SOKdist ()
 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.
 
- Public Member Functions inherited from Counter< Context >
 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...
 
- Protected Member Functions inherited from Counter< Context >
 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 Public Member Functions inherited from Counter< Context >
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.
 

Detailed Description

The context of execution.

Invariant
process level >= 0

Constructor & Destructor Documentation

◆ Context()

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.

Postcondition
mindictstack_ == ds_.getSize()

◆ ~Context()

Context::~Context ( )
virtual

Dtor.

Frees all resources to enable a comprehensive memory leak analysis upon program exit.

Member Function Documentation

◆ getCout()

std::ostream & Context::getCout ( )
inline

Getter for cout_.

We use the Interpreter stream until a split of streams for multiple Contexts will be implemented.

◆ invariant()

bool Context::invariant ( ) const
inlineoverrideprotectedvirtualnoexcept

Checks class invariants.

Returns
bool ... Indicates whether the class invariants are maintained.

Reimplemented from DbC.

Member Data Documentation

◆ angularunit_

AngularUnit Context::angularunit_ = DEG
private

Context Property.

The angular unit for trigonometric functions.

◆ kryptodictmap_

const std::map< const char *, Context::core * > Context::kryptodictmap_
staticprivate
Initial value:
= {
{ "dictstack$", &sox_dictstack$ },
{ "__endstack", &sox___endstack }, { "$", &sox___endstack },
{ "execstack$", &sox_execstack$ },
{ "gcd", &sox_gcd }, { "ggT", &sox_gcd },
{ "index$", &sox_index$ },
{ "is$", &sox_is$ },
{ "lcm", &sox_lcm }, { "kgV", &sox_lcm },
{ "pop$", &sox_pop$ },
{ "push$", &sox_push$ },
{ "xgcd", &sox_xgcd }, { "xggT", &sox_xgcd }
}
void sox_xgcd(Context &k)
Extension operator xgcd.
Definition: opext.cpp:177
void sox_dictstack$(Context &k)
Extension operator dictstack$.
Definition: opext.cpp:42
void sox___endstack(Context &k)
Extension operator __endstack.
Definition: opext.cpp:58
void sox_is$(Context &k)
Extension operator is$.
Definition: opext.cpp:117
void sox_pop$(Context &k)
Extension operator pop$.
Definition: opext.cpp:143
void sox_lcm(Context &k)
Extension operator lcm.
Definition: opext.cpp:130
void sox_execstack$(Context &k)
Extension operator execstack$.
Definition: opext.cpp:75
void sox_push$(Context &k)
Extension operator push$.
Definition: opext.cpp:160
void sox_gcd(Context &k)
Extension operator gcd.
Definition: opext.cpp:85
void sox_index$(Context &k)
Extension operator index$.
Definition: opext.cpp:99

Maps SON data to SOO data for the kryptodict.

◆ maxopeelevel_

size_t Context::maxopeelevel_ = 2
private

Context Property.

A maximum for the nesting level of printed SOA, SOD and SOK in the "OPerator Equal Equal".

◆ realprecision_

size_t Context::realprecision_ = 10
private

Context Property.

Precison of printf() output of SOR values.


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