Kryptostack
Classes | Public Member Functions | Static Public Member Functions | Protected Member Functions | Private Member Functions | Static Private Member Functions | Private Attributes | List of all members
Interpreter Class Reference

Interpreter status. More...

#include <interpreter.h>

+ Inheritance diagram for Interpreter:
+ Collaboration diagram for Interpreter:

Classes

struct  PimplTime
 Pointer to Implementation for Time. More...
 

Public Member Functions

 Interpreter (const Interpreter &)=delete
 Delete the copy ctor.
 
 Interpreter (Interpreter &&)=delete
 Delete the move ctor.
 
Interpreteroperator= (const Interpreter &)=delete
 Delete copy assignement.
 
Interpreteroperator= (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 Public Member Functions

static auto get ()
 Get the singleton pointer. More...
 
static ContextgetContext ()
 Get the current context.
 
static void ksnline (std::string &p_line, Context &k)
 Processes one line of the KSN-format input. More...
 

Protected Member Functions

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...
 

Private Member Functions

 Interpreter ()
 Private ctor.
 
void helpExit ()
 Command line help text and exit(1).
 

Static Private Member Functions

static std::string strEscape (const std::string &p_s)
 Substitutes double backslashes by single backslashes and sequences backslash + 'n' by the ASCII CR code.
 

Private Attributes

bool verbose_ = false
 Execution in verbose mode or not.
 
Contextcurctx_ {}
 Access to the current Context. More...
 
LineSourcelinesource_ {}
 Read from cin or from file. More...
 
PimplTimepimpltime_
 Pointer to implemenation of time functions - opaque pointer.
 
bool compile_ = false
 Interpreter Property. More...
 
size_t compileiterations_ = 10
 Interpreter Property. More...
 
std::ostream cout_ { std::cout.rdbuf() }
 Interpreter Property. More...
 

Detailed Description

Interpreter status.

Invariant
Singleton.
pimpltime_ is not null

Constructor & Destructor Documentation

◆ ~Interpreter()

Interpreter::~Interpreter ( )
virtual

Dtor.

It's virtual, because DbC has a virtual bool invariant() member.

Member Function Documentation

◆ 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

Member Data Documentation

◆ 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_

Context* Interpreter::curctx_ {}
private

Access to the current Context.

Interpreter ist not the owner.

◆ linesource_

LineSource* Interpreter::linesource_ {}
private

Read from cin or from file.

Interpreter is the owner. Interpreter allocates memory on demand.


The documentation for this class was generated from the following files: