TDME2 1.9.121
Console.cpp
Go to the documentation of this file.
1#include <fstream>
2#include <iostream>
3#include <string>
4
5#include <tdme/tdme.h>
10
11using namespace std;
12
17
18Mutex* Console::mutex = nullptr;
19vector<string>* Console::messages = nullptr;
20Console::LogWriterThread Console::logWriterThread;
21
22Console::LogWriterThread::LogWriterThread(): Thread("console-logwriter-thread") {
23 Console::mutex = new Mutex("console");
24 Console::messages = new vector<string>();
25 ofstream ofs("console.log", ofstream::trunc);
26 ofs.close();
27 start();
28}
29
33}
34
35
37 Console::println("Console::LogWriterThread(): start");
38 while (isStopRequested() == false) {
40 if (Console::messages->size() > 100) flush();
42 Thread::sleep(1000);
43 }
45 if (Console::messages->size() > 0) flush();
47 Console::println("Console::LogWriterThread(): done");
48}
49
51 cout << "Console::LogWriterThread::flush()\n";
52 ofstream ofs("console.log", ofstream::app);
53 for (auto message: *Console::messages) {
54 ofs << message;
55 ofs << "\n";
56 }
57 ofs.close();
58 Console::messages->clear();
59}
60
61void Console::println(const string& str)
62{
63 mutex->lock();
64 cout << str << endl;
65 messages->push_back(str);
66 mutex->unlock();
67}
68
69void Console::print(const string& str)
70{
71 mutex->lock();
72 cout << str;
73 if (messages->size() == 0) messages->push_back("");
74 (*messages)[messages->size() - 1]+= str;
75 mutex->unlock();
76}
77
79{
80 mutex->lock();
81 cout << endl;
82 messages->push_back("");
83 mutex->unlock();
84}
85
87 mutex->lock();
88 cout << "Console::shutdown()\n";
89 ofstream ofs("console.log", ofstream::app);
90 for (auto message: *Console::messages) {
91 ofs << message;
92 ofs << "\n";
93 }
94 ofs.close();
95 Console::messages->clear();
96 mutex->unlock();
97}
Mutex implementation.
Definition: Mutex.h:27
void unlock()
Unlocks this mutex.
Definition: Mutex.cpp:48
void lock()
Locks the mutex, additionally mutex locks will block until other locks have been unlocked.
Definition: Mutex.cpp:39
Base class for threads.
Definition: Thread.h:26
void start()
Starts this objects thread.
Definition: Thread.cpp:65
void join()
Blocks caller thread until this thread has been terminated.
Definition: Thread.cpp:55
void stop()
Requests that this thread should be stopped.
Definition: Thread.cpp:94
void run()
Abstract run() method, should be implemented by subclassed class, will be called after spawn by start...
Definition: Console.cpp:36
Console class.
Definition: Console.h:26
static void println()
Print new line to console.
Definition: Console.cpp:78
static void shutdown()
Shutdown console logging and especially writing log to file.
Definition: Console.cpp:86
static void print(const string &str)
Print given string.
Definition: Console.cpp:69
static STATIC_DLL_IMPEXT Mutex * mutex
Definition: Console.h:65
static STATIC_DLL_IMPEXT LogWriterThread logWriterThread
Definition: Console.h:67
static STATIC_DLL_IMPEXT vector< string > * messages
Definition: Console.h:66
Time utility class.
Definition: Time.h:21