18Mutex* Console::mutex =
nullptr;
19vector<string>* Console::messages =
nullptr;
20Console::LogWriterThread Console::logWriterThread;
22Console::LogWriterThread::LogWriterThread():
Thread(
"console-logwriter-thread") {
25 ofstream ofs(
"console.log", ofstream::trunc);
38 while (isStopRequested() ==
false) {
51 cout <<
"Console::LogWriterThread::flush()\n";
52 ofstream ofs(
"console.log", ofstream::app);
74 (*messages)[
messages->size() - 1]+= str;
88 cout <<
"Console::shutdown()\n";
89 ofstream ofs(
"console.log", ofstream::app);
void unlock()
Unlocks this mutex.
void lock()
Locks the mutex, additionally mutex locks will block until other locks have been unlocked.
void start()
Starts this objects thread.
void join()
Blocks caller thread until this thread has been terminated.
void stop()
Requests that this thread should be stopped.
void run()
Abstract run() method, should be implemented by subclassed class, will be called after spawn by start...
static void println()
Print new line to console.
static void shutdown()
Shutdown console logging and especially writing log to file.
static void print(const string &str)
Print given string.
static STATIC_DLL_IMPEXT Mutex * mutex
static STATIC_DLL_IMPEXT LogWriterThread logWriterThread
static STATIC_DLL_IMPEXT vector< string > * messages