Interpreter status.
More...
#include <interpreter.h>
|
| Interpreter (const Interpreter &)=delete |
| Delete the copy ctor.
|
|
| Interpreter (Interpreter &&)=delete |
| Delete the move ctor.
|
|
Interpreter & | operator= (const Interpreter &)=delete |
| Delete copy assignement.
|
|
Interpreter & | operator= (Interpreter &&)=delete |
| Delete move assignement.
|
|
virtual | ~Interpreter () |
| Dtor. More...
|
|
bool | getVerbose () const |
| Getter for verbose mode.
|
|
void | setContext (Context *p_c) |
| Setter for current context.
|
|
__int128 | getClockStart () const |
| Getter for clock start. More...
|
|
void | setCompile (bool p_compile) |
| Setter for compile_.
|
|
bool | getCompile () const |
| Getter for compile_.
|
|
size_t | getCompileIterations () const |
| Getter for compileiterations_.
|
|
std::ostream & | getCout () |
| Getter for cout_.
|
|
bool | getLine (std::string &p_line) const |
| Wrapper around getline to hide input stream. More...
|
|
void | shutdown () |
| Shut down. More...
|
|
void | commandline (int p_argc, char *p_argv[]) |
| Command line parsing.
|
|
void | statistics (bool p_force=false) |
| Dumps statistical data. More...
|
|
void | snap () |
| Snapshot of system state to Interpreter-cout. More...
|
|
|
static auto | get () |
| Get the singleton pointer. More...
|
|
static Context * | getContext () |
| Get the current context.
|
|
static void | ksnline (std::string &p_line, Context &k) |
| Processes one line of the KSN-format input. More...
|
|
|
bool | invariant () const noexcept override |
| Checks class invariants. More...
|
|
virtual bool | invariant () const noexcept |
| Checks the invariants of the class in which it is defined. More...
|
|
|
| Interpreter () |
| Private ctor.
|
|
void | helpExit () |
| Command line help text and exit(1).
|
|
|
static std::string | strEscape (const std::string &p_s) |
| Substitutes double backslashes by single backslashes and sequences backslash + 'n' by the ASCII CR code.
|
|
Interpreter status.
- Invariant
- Singleton.
-
pimpltime_ is not null
◆ ~Interpreter()
Interpreter::~Interpreter |
( |
| ) |
|
|
virtual |
Dtor.
It's virtual, because DbC has a virtual bool invariant()
member.
◆ get()
static auto Interpreter::get |
( |
| ) |
|
|
inlinestatic |
Get the singleton pointer.
- Postcondition
- return value != nullptr
◆ getClockStart()
__int128 Interpreter::getClockStart |
( |
| ) |
const |
Getter for clock start.
Hides implementation with a struct PimplTime.
◆ getLine()
bool Interpreter::getLine |
( |
std::string & |
p_line | ) |
const |
Wrapper around getline to hide input stream.
- Precondition
- linesource != nullptr
◆ invariant()
bool Interpreter::invariant |
( |
| ) |
const |
|
inlineoverrideprotectedvirtualnoexcept |
Checks class invariants.
- Returns
- bool ... Indicates whether the class invariants are maintained.
Reimplemented from DbC.
◆ ksnline()
void Interpreter::ksnline |
( |
std::string & |
p_line, |
|
|
Context & |
k |
|
) |
| |
|
static |
Processes one line of the KSN-format input.
Executable names outside of procedures and '{', '}' are pushed onto the execution stack. Everything else is pushed onto the operand stack.
◆ shutdown()
void Interpreter::shutdown |
( |
| ) |
|
Shut down.
Closes the line source.
◆ snap()
void Interpreter::snap |
( |
| ) |
|
Snapshot of system state to Interpreter-cout.
Includes statistics().
◆ statistics()
void Interpreter::statistics |
( |
bool |
p_force = false | ) |
|
Dumps statistical data.
Dumps it only if (i) there are open memory allocations or (ii) the verbose mode is set or (iii) p_force is true
◆ compile_
bool Interpreter::compile_ = false |
|
private |
Interpreter Property.
Controls if the operator bind
includes compile features.
◆ compileiterations_
size_t Interpreter::compileiterations_ = 10 |
|
private |
Interpreter Property.
Maximum compile iterations even if there are possible optimizations.
◆ cout_
std::ostream Interpreter::cout_ { std::cout.rdbuf() } |
|
private |
Interpreter Property.
Our out ostream. Prepares for rerouting.
◆ curctx_
◆ linesource_
The documentation for this class was generated from the following files: