The context of execution.
Definition: context.h:35
size_t getMaxopeelevel() const
Getter for maximum opee level.
Definition: context.h:116
SOK os_
The operand stack.
Definition: context.h:37
auto getSnapKSNline() const
Getter for snapKSNline_.
Definition: context.h:128
size_t getRealPrecision() const
Getter for realprecision_.
Definition: context.h:131
Context & operator=(const Context &)=delete
Delete copy assignement.
void stopInterpreterLoop()
Sets run_ to false.
Definition: context.h:122
Context(Context &&)=delete
Delete the move ctor.
SOK ds_
The dictionary stack.
Definition: context.h:39
virtual ~Context()
Dtor.
Definition: context.cpp:165
bool invariant() const noexcept override
Checks class invariants.
Definition: context.h:60
SOK & opst()
Access to the operand stack.
Definition: context.h:97
auto getAngularUnit() const
Getter for angularunit_.
Definition: context.h:137
void incProclevel()
Increments the procedure level.
Definition: context.h:144
bool run_
Control variable for the interpreter loop.
Definition: context.h:41
int getProclevel() const
Getter for procedure level.
Definition: context.h:113
static const std::map< const char *, core * > kryptodictmap_
Maps SON data to SOO data for the kryptodict.
Definition: context.h:70
void setAngularUnit(AngularUnit p_unit)
Setter for angularunit_.
Definition: context.h:140
Context()
Ctor.
Definition: context.cpp:136
AngularUnit angularunit_
Context Property.
Definition: context.h:43
void setSnapKSNline(const std::string &p_line)
Setter for snapKSNline_.
Definition: context.h:125
std::ostream & getCout()
Getter for cout_.
Definition: context.h:108
void(Context &) core
A shortcut for the core code functions, the C++ implementations of the operators.
Definition: context.h:49
size_t realprecision_
Context Property.
Definition: context.h:45
static constexpr size_t mindictstack_
Corresponds with the setup in the ctor.
Definition: context.h:50
void setRealPrecision(size_t p_prec)
Setter for realprecision_.
Definition: context.h:134
void decProclevel()
Decrements the procedure level.
Definition: context.h:151
SOK & exst()
Access to the execution stack.
Definition: context.h:100
static const std::map< const char *, core * > systemdictmap_
Maps SON data to SOO data for the systemdict.
Definition: context.h:68
SOK & dist()
Access to the dictionary stack.
Definition: context.h:103
std::string snapKSNline_
For debugging purposes a copy of the current KSN line.
Definition: context.h:36
int getInterpreterLoop() const
Getter for interpreter loop control variable run_.
Definition: context.h:119
int proclevel_
The process level is incremented by one for every { on input.
Definition: context.h:40
size_t maxopeelevel_
Context Property.
Definition: context.h:44
Context & operator=(Context &&)=delete
Delete move assignement.
Context(const Context &)=delete
Delete the copy ctor.
SOK es_
The execution stack.
Definition: context.h:38
Counter base class.
Definition: counter.h:23
Design by contract interface class.
Definition: dbc.h:25
static auto get()
Get the singleton pointer.
Definition: interpreter.h:96
Semantic Object Stack.
Definition: sok.h:36
Helpers for design by contract idioms.
#define DBC_INV_RAII(TT)
Defines an instance of the class DbCRAIIassert<>, which calls the invariant()-function at the return ...
Definition: dbc.h:73
Miscellaneous definitions and functions.
AngularUnit
Angular Unit for trigonometric functions.
Definition: helper.h:51
The main status of the interpreter.