42 std::ostream
cout_{ std::cout.rdbuf() };
51 static std::string
strEscape(
const std::string & p_s );
109 inErrExit( internal,
"the context is not initialized");
138 bool getLine( std::string & p_line )
const;
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