Kryptostack
interpreter.h
Go to the documentation of this file.
1
17#pragma once
18
19#include <iostream>
20#include <memory>
21
22#include "dbc.h"
23#include "helper.h"
24#include "error.h"
25
26class LineSource;
27class Context;
28
33class Interpreter : protected DbC {
34 bool verbose_ = false;
37 struct PimplTime;
40 bool compile_ = false;
41 size_t compileiterations_ = 10;
42 std::ostream cout_{ std::cout.rdbuf() };
46
48 [[noreturn]] void helpExit();
49
51 static std::string strEscape( const std::string & p_s );
52
53protected:
54
55#ifndef DBC_IS_VOID
56
61 bool invariant() const noexcept override { /* LCOV_EXCL_START */
62 if( pimpltime_ == nullptr )
63 return false;
64 return true;
65 } /* LCOV_EXCL_STOP */
66
67#endif
68
69public:
70
72 Interpreter( const Interpreter& ) = delete;
73
75 Interpreter( Interpreter&& ) = delete;
76
78 Interpreter& operator=( const Interpreter& ) = delete;
79
82
85 virtual ~Interpreter();
86
87public: /* accessor */
89 bool getVerbose() const { return verbose_; }
90
92 void setContext( Context * p_c ) { curctx_ = p_c; }
93
96 static auto get() {
97 static Interpreter * instance;
98 if( !instance )
99 instance = new Interpreter;
100
101 DBC_POST( instance != nullptr );
102 return instance;
103 }
104
106 static Context * getContext() {
107 Context * rv = get()->curctx_;
108 if( !rv )
109 inErrExit( internal, "the context is not initialized"); /* LCOV_EXCL_LINE */ // IDEA: Can be solved with an implementation of multiple contexts
110 return rv;
111 }
112
115 __int128 getClockStart() const;
116
118 void setCompile( bool p_compile ) { compile_ = p_compile; }
119
121 bool getCompile() const { return compile_; }
122
124 size_t getCompileIterations() const { return compileiterations_; }
125
127 std::ostream & getCout() { return cout_; }
128
129public: /* other */
133 static void ksnline( std::string & p_line, Context & k );
134
138 bool getLine( std::string & p_line ) const;
139
142 void shutdown();
143
145 void commandline( int p_argc, char* p_argv[] );
146
152 void statistics( bool p_force = false );
153
156 void snap();
157};
The context of execution.
Definition: context.h:35
Design by contract interface class.
Definition: dbc.h:25
Interpreter status.
Definition: interpreter.h:33
static Context * getContext()
Get the current context.
Definition: interpreter.h:106
Interpreter(const Interpreter &)=delete
Delete the copy ctor.
static auto get()
Get the singleton pointer.
Definition: interpreter.h:96
virtual ~Interpreter()
Dtor.
Definition: interpreter.cpp:53
void shutdown()
Shut down.
Definition: interpreter.cpp:82
void helpExit()
Command line help text and exit(1).
Definition: interpreter.cpp:64
static void ksnline(std::string &p_line, Context &k)
Processes one line of the KSN-format input.
Definition: interpreter.cpp:110
Interpreter & operator=(Interpreter &&)=delete
Delete move assignement.
bool getLine(std::string &p_line) const
Wrapper around getline to hide input stream.
Definition: interpreter.cpp:76
void setContext(Context *p_c)
Setter for current context.
Definition: interpreter.h:92
std::ostream cout_
Interpreter Property.
Definition: interpreter.h:42
bool getCompile() const
Getter for compile_.
Definition: interpreter.h:121
static std::string strEscape(const std::string &p_s)
Substitutes double backslashes by single backslashes and sequences backslash + 'n' by the ASCII CR co...
Definition: interpreter.cpp:89
__int128 getClockStart() const
Getter for clock start.
Definition: interpreter.cpp:60
size_t getCompileIterations() const
Getter for compileiterations_.
Definition: interpreter.h:124
std::ostream & getCout()
Getter for cout_.
Definition: interpreter.h:127
size_t compileiterations_
Interpreter Property.
Definition: interpreter.h:41
Interpreter()
Private ctor.
Definition: interpreter.cpp:48
Interpreter(Interpreter &&)=delete
Delete the move ctor.
void setCompile(bool p_compile)
Setter for compile_.
Definition: interpreter.h:118
PimplTime * pimpltime_
Pointer to implemenation of time functions - opaque pointer.
Definition: interpreter.h:38
void commandline(int p_argc, char *p_argv[])
Command line parsing.
Definition: interpreter.cpp:146
void snap()
Snapshot of system state to Interpreter-cout.
Definition: interpreter.cpp:196
bool verbose_
Execution in verbose mode or not.
Definition: interpreter.h:34
LineSource * linesource_
Read from cin or from file.
Definition: interpreter.h:36
void statistics(bool p_force=false)
Dumps statistical data.
Definition: interpreter.cpp:176
bool invariant() const noexcept override
Checks class invariants.
Definition: interpreter.h:61
bool getVerbose() const
Getter for verbose mode.
Definition: interpreter.h:89
Context * curctx_
Access to the current Context.
Definition: interpreter.h:35
bool compile_
Interpreter Property.
Definition: interpreter.h:40
Interpreter & operator=(const Interpreter &)=delete
Delete copy assignement.
Abstraction of input channel.
Definition: linesource.h:29
Helpers for design by contract idioms.
#define DBC_POST(XXX)
Assert for postconditions.
Definition: dbc.h:83
void inErrExit(InError p_err, const std::string &p_details, const std::source_location p_location)
Interpreter error message to interpreter cout_ and exit(1).
Definition: error.cpp:48
Definitions and functions for error handling.
Miscellaneous definitions and functions.
Pointer to Implementation for Time.
Definition: interpreter.cpp:43