Kryptostack
context.h
Go to the documentation of this file.
1
17#pragma once
18
19#include <string>
20#include <iostream>
21#include <map>
22
23#include "dbc.h"
24#include "interpreter.h"
25#include "counter.h"
26#include "helper.h"
27
28#include "sok.h"
29
30
35class Context : public Counter<Context>, protected DbC {
36 std::string snapKSNline_;
40 int proclevel_ = 0;
41 bool run_ = true;
44 size_t maxopeelevel_ = 2;
45 size_t realprecision_ = 10;
47public:
49 using core = void( Context & );
50 constexpr static size_t mindictstack_ = 3;
52protected:
53
54#ifndef DBC_IS_VOID
55
60 bool invariant() const noexcept override { /* LCOV_EXCL_START */
61 return proclevel_ >= 0;
62 } /* LCOV_EXCL_STOP */
63
64#endif
65
66private:
68 static const std::map<const char *, core *> systemdictmap_,
71
72public:
77 Context();
78
80 Context( const Context & ) = delete;
81
83 Context( Context && ) = delete;
84
86 Context & operator=( const Context & ) = delete;
87
89 Context & operator=( Context && ) = delete;
90
93 virtual ~Context();
94
95public: /* accessor */
97 SOK & opst() { return os_; }
98
100 SOK & exst() { return es_; }
101
103 SOK & dist() { return ds_; }
104
108 std::ostream & getCout() {
109 return Interpreter::get()->getCout();
110 }
111
113 int getProclevel() const { return proclevel_; }
114
116 size_t getMaxopeelevel() const { return maxopeelevel_; }
117
119 int getInterpreterLoop() const { return run_; }
120
122 void stopInterpreterLoop() { run_ = false; }
123
125 void setSnapKSNline( const std::string & p_line ) { snapKSNline_ = p_line; }
126
128 auto getSnapKSNline() const { return snapKSNline_; }
129
131 size_t getRealPrecision() const { return realprecision_; }
132
134 void setRealPrecision( size_t p_prec ) { realprecision_ = p_prec; }
135
137 auto getAngularUnit() const { return angularunit_; }
138
140 void setAngularUnit( AngularUnit p_unit ) { angularunit_ = p_unit; }
141
142public: /* other */
146
147 proclevel_++;
148 }
149
153
154 proclevel_--;
155 }
156};
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
The class Counter.
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.
Class SOK.