OSDN Git Service

Implemented SetConsoleIcon() fallback method.
[mutilities/MUtilities.git] / src / Terminal_Win32.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // MuldeR's Utilities for Qt
3 // Copyright (C) 2004-2016 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version, but always including the *additional*
9 // restrictions defined in the "License.txt" file.
10 //
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 // GNU General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License along
17 // with this program; if not, write to the Free Software Foundation, Inc.,
18 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 //
20 // http://www.gnu.org/licenses/gpl-2.0.txt
21 ///////////////////////////////////////////////////////////////////////////////
22
23 //Windows includes
24 #define NOMINMAX
25 #define WIN32_LEAN_AND_MEAN 1
26 #include <Windows.h>
27
28 //Internal
29 #include <MUtils/Terminal.h>
30 #include <MUtils/Global.h>
31 #include <MUtils/OSSupport.h>
32 #include "Utils_Win32.h"
33 #include "CriticalSection_Win32.h"
34
35 //Qt
36 #include <QFile>
37 #include <QStringList>
38 #include <QIcon>
39
40 //CRT
41 #include <iostream>
42 #include <fstream>
43 #include <ctime>
44 #include <stdarg.h>
45 #include <io.h>
46 #include <fcntl.h>
47
48 #ifdef _MSC_VER
49 #define stricmp(X,Y) _stricmp((X),(Y))
50 #endif
51
52 #define VALID_HANLDE(X) (((X) != NULL) && ((X) != INVALID_HANDLE_VALUE))
53
54 ///////////////////////////////////////////////////////////////////////////////
55 // TERMINAL VARIABLES
56 ///////////////////////////////////////////////////////////////////////////////
57
58 //Critical section
59 static MUtils::Internal::CriticalSection g_terminal_lock;
60
61 //Is terminal attached?
62 static volatile bool g_terminal_attached = false;
63
64 //Terminal output buffer
65 static const size_t BUFF_SIZE = 8192;
66 static char g_conOutBuff[BUFF_SIZE] = { '\0' };
67
68 //Buffer objects
69 static QScopedPointer<std::filebuf> g_fileBuf_stdout;
70 static QScopedPointer<std::filebuf> g_fileBuf_stderr;
71
72 //The log file
73 static QScopedPointer<QFile> g_terminal_log_file;
74
75 //Terminal icon
76 static HICON g_terminal_icon = NULL;
77
78 ///////////////////////////////////////////////////////////////////////////////
79 // HELPER FUNCTIONS
80 ///////////////////////////////////////////////////////////////////////////////
81
82 static inline void make_timestamp(char *timestamp, const size_t &buffsize)
83 {
84         time_t rawtime;
85         struct tm timeinfo;
86
87         time(&rawtime);
88         if(localtime_s(&timeinfo, &rawtime) == 0)
89         {
90                 strftime(timestamp, buffsize, "%H:%M:%S", &timeinfo);
91         }
92         else
93         {
94                 timestamp[0] = '\0';
95         }
96 }
97
98 static inline bool null_or_whitespace(const char *const str)
99 {
100         if (str)
101         {
102                 size_t pos = 0;
103                 while (str[pos])
104                 {
105                         if (!(isspace(str[pos]) || iscntrl(str[pos])))
106                         {
107                                 return false;
108                         }
109                         pos++;
110                 }
111         }
112         return true;
113 }
114
115 static inline size_t clean_string(char *const str)
116 {
117         bool space_flag = true;
118         size_t src = 0, out = 0;
119
120         while (str[src])
121         {
122                 if (isspace(str[src]) || iscntrl(str[src])) /*replace any space-sequence with a single space character*/
123                 {
124                         src++;
125                         if (!space_flag)
126                         {
127                                 space_flag = true;
128                                 str[out++] = 0x20;
129                         }
130                 }
131                 else /*otherwise we'll just copy over the current character*/
132                 {
133                         if (src != out)
134                         {
135                                 str[out] = str[src];
136                         }
137                         space_flag = false;
138                         out++; src++;
139                 }
140         }
141
142         if (space_flag && (out > 0)) /*trim trailing space, if any*/
143         {
144                 out--;
145         }
146
147         str[out] = NULL;
148         return out;
149 }
150
151 static inline void set_hicon(HICON *const ptr, const HICON val)
152 {
153         if (*ptr)
154         {
155                 DestroyIcon(*ptr);
156         }
157         *ptr = val;
158 }
159
160 ///////////////////////////////////////////////////////////////////////////////
161 // TERMINAL SETUP
162 ///////////////////////////////////////////////////////////////////////////////
163
164 static inline std::filebuf *terminal_connect(FILE *const fs, std::ostream &os)
165 {
166         std::filebuf *result = NULL;
167         FILE *temp;
168         if (freopen_s(&temp, "CONOUT$", "wb", fs) == 0)
169         {
170                 os.rdbuf(result = new std::filebuf(temp));
171         }
172         return result;
173 }
174
175 static void terminal_shutdown(void)
176 {
177         MUtils::Internal::CSLocker lock(g_terminal_lock);
178
179         if (g_terminal_attached)
180         {
181                 g_fileBuf_stdout.reset();
182                 g_fileBuf_stderr.reset();
183                 FILE *temp[2];
184                 if(stdout) freopen_s(&temp[0], "NUL", "wb", stdout);
185                 if(stderr) freopen_s(&temp[1], "NUL", "wb", stderr);
186                 FreeConsole();
187                 set_hicon(&g_terminal_icon, NULL);
188                 g_terminal_attached = false;
189         }
190 }
191
192 void MUtils::Terminal::setup(int &argc, char **argv, const char* const appName, const bool forceEnabled)
193 {
194         MUtils::Internal::CSLocker lock(g_terminal_lock);
195         bool enableConsole = (MUTILS_DEBUG) || forceEnabled;
196
197         if(_environ)
198         {
199                 wchar_t *logfile = NULL; size_t logfile_len = 0;
200                 if(!_wdupenv_s(&logfile, &logfile_len, L"MUTILS_LOGFILE"))
201                 {
202                         if(logfile && (logfile_len > 0))
203                         {
204                                 g_terminal_log_file.reset(new QFile(MUTILS_QSTR(logfile)));
205                                 if(g_terminal_log_file->open(QIODevice::WriteOnly))
206                                 {
207                                         static const char MARKER[3] = { char(0xEF), char(0xBB), char(0xBF) };
208                                         g_terminal_log_file->write(MARKER, 3);
209                                 }
210                                 free(logfile);
211                         }
212                 }
213         }
214
215         if(!MUTILS_DEBUG)
216         {
217                 for(int i = 0; i < argc; i++)
218                 {
219                         if(!stricmp(argv[i], "--console"))
220                         {
221                                 enableConsole = true;
222                         }
223                         else if(!stricmp(argv[i], "--no-console"))
224                         {
225                                 enableConsole = false;
226                         }
227                 }
228         }
229
230         if(enableConsole)
231         {
232                 if(!g_terminal_attached)
233                 {
234                         if(AllocConsole() != FALSE)
235                         {
236                                 SetConsoleOutputCP(CP_UTF8);
237                                 SetConsoleCtrlHandler(NULL, TRUE);
238                                 if(appName && appName[0])
239                                 {
240                                         char title[128];
241                                         _snprintf_s(title, 128, _TRUNCATE, "%s | Debug Console", appName);
242                                         SetConsoleTitleA(title);
243                                 }
244                                 g_terminal_attached = true;
245                         }
246                 }
247
248                 if(g_terminal_attached)
249                 {
250                         g_fileBuf_stdout.reset(terminal_connect(stdout, std::cout));
251                         g_fileBuf_stderr.reset(terminal_connect(stderr, std::cerr));
252
253                         atexit(terminal_shutdown);
254
255                         const HWND hwndConsole = GetConsoleWindow();
256                         if((hwndConsole != NULL) && (hwndConsole != INVALID_HANDLE_VALUE))
257                         {
258                                 HMENU hMenu = GetSystemMenu(hwndConsole, 0);
259                                 EnableMenuItem(hMenu, SC_CLOSE, MF_BYCOMMAND | MF_GRAYED);
260                                 RemoveMenu(hMenu, SC_CLOSE, MF_BYCOMMAND);
261
262                                 SetWindowPos (hwndConsole, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE|SWP_NOZORDER|SWP_FRAMECHANGED);
263                                 SetWindowLong(hwndConsole, GWL_STYLE, GetWindowLong(hwndConsole, GWL_STYLE) & (~WS_MAXIMIZEBOX) & (~WS_MINIMIZEBOX));
264                                 SetWindowPos (hwndConsole, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE|SWP_NOZORDER|SWP_FRAMECHANGED);
265                         }
266                 }
267         }
268 }
269
270 ///////////////////////////////////////////////////////////////////////////////
271 // TERMINAL COLORS
272 ///////////////////////////////////////////////////////////////////////////////
273
274 //Colors
275 static const WORD COLOR_RED    = FOREGROUND_RED | FOREGROUND_INTENSITY;
276 static const WORD COLOR_YELLOW = FOREGROUND_GREEN | FOREGROUND_RED | FOREGROUND_INTENSITY;
277 static const WORD COLOR_WHITE  = FOREGROUND_BLUE | FOREGROUND_GREEN | FOREGROUND_RED | FOREGROUND_INTENSITY;
278 static const WORD COLOR_DEFAULT= FOREGROUND_BLUE | FOREGROUND_GREEN | FOREGROUND_RED;
279
280 static void set_terminal_color(FILE *const fp, const WORD &attributes)
281 {
282         if(_isatty(_fileno(fp)))
283         {
284                 const HANDLE hConsole = (HANDLE)(_get_osfhandle(_fileno(fp)));
285                 if (VALID_HANLDE(hConsole))
286                 {
287                         SetConsoleTextAttribute(hConsole, attributes);
288                 }
289         }
290 }
291
292 ///////////////////////////////////////////////////////////////////////////////
293 // WRITE TO TERMINAL
294 ///////////////////////////////////////////////////////////////////////////////
295
296 static const char *const FORMAT = "[%c][%s] %s\r\n";
297 static const char *const GURU_MEDITATION = "\n\nGURU MEDITATION !!!\n\n";
298
299 static void write_to_logfile(QFile *const file, const int &type, const char *const message)
300 {
301         int len = -1;
302
303         if (null_or_whitespace(message))
304         {
305                 return; /*don't write empty message to log file*/
306         }
307
308         static char timestamp[32];
309         make_timestamp(timestamp, 32);
310
311         switch(type)
312         {
313         case QtCriticalMsg:
314         case QtFatalMsg:
315                 len = _snprintf_s(g_conOutBuff, BUFF_SIZE, _TRUNCATE, FORMAT, 'C', timestamp, message);
316                 break;
317         case QtWarningMsg:
318                 len = _snprintf_s(g_conOutBuff, BUFF_SIZE, _TRUNCATE, FORMAT, 'W', timestamp, message);
319                 break;
320         default:
321                 len = _snprintf_s(g_conOutBuff, BUFF_SIZE, _TRUNCATE, FORMAT, 'I', timestamp, message);
322                 break;
323         }
324
325         if (len > 0)
326         {
327                 if (clean_string(g_conOutBuff) > 0)
328                 {
329                         file->write(g_conOutBuff);
330                         file->flush();
331                 }
332         }
333 }
334
335 static void write_to_debugger(const int &type, const char *const message)
336 {
337         int len = -1;
338
339         if (null_or_whitespace(message))
340         {
341                 return; /*don't send empty message to debugger*/
342         }
343
344         static char timestamp[32];
345         make_timestamp(timestamp, 32);
346
347         switch(type)
348         {
349         case QtCriticalMsg:
350         case QtFatalMsg:
351                 len = _snprintf_s(g_conOutBuff, BUFF_SIZE, _TRUNCATE, FORMAT, 'C', timestamp, message);
352                 break;
353         case QtWarningMsg:
354                 len = _snprintf_s(g_conOutBuff, BUFF_SIZE, _TRUNCATE, FORMAT, 'W', timestamp, message);
355                 break;
356         default:
357                 len = _snprintf_s(g_conOutBuff, BUFF_SIZE, _TRUNCATE, FORMAT, 'I', timestamp, message);
358                 break;
359         }
360
361         if (len > 0)
362         {
363                 if (clean_string(g_conOutBuff) > 0)
364                 {
365                         OutputDebugStringA(g_conOutBuff);
366                 }
367         }
368 }
369
370 static void write_to_terminal(const int &type, const char *const message)
371 {
372         switch(type)
373         {
374         case QtCriticalMsg:
375         case QtFatalMsg:
376                 set_terminal_color(stderr, COLOR_RED);
377                 fprintf(stderr, GURU_MEDITATION);
378                 fprintf(stderr, "%s\n", message);
379                 break;
380         case QtWarningMsg:
381                 set_terminal_color(stderr, COLOR_YELLOW);
382                 fprintf(stderr, "%s\n", message);
383                 break;
384         default:
385                 set_terminal_color(stderr, COLOR_WHITE);
386                 fprintf(stderr, "%s\n", message);
387                 break;
388         }
389
390         fflush(stderr);
391 }
392
393 void MUtils::Terminal::write(const int &type, const char *const message)
394 {
395         MUtils::Internal::CSLocker lock(g_terminal_lock);
396
397         if(g_terminal_attached)
398         {
399                 write_to_terminal(type, message);
400         }
401         else
402         {
403                 write_to_debugger(type, message);
404         }
405
406         if(!g_terminal_log_file.isNull())
407         {
408                 write_to_logfile(g_terminal_log_file.data(), type, message);
409         }
410 }
411
412 ///////////////////////////////////////////////////////////////////////////////
413 // TERMINAL ICON
414 ///////////////////////////////////////////////////////////////////////////////
415
416 void MUtils::Terminal::set_icon(const QIcon &icon)
417 {
418         MUtils::Internal::CSLocker lock(g_terminal_lock);
419
420         if(g_terminal_attached && (!(icon.isNull() || MUtils::OS::running_on_wine())))
421         {
422                 if(const HICON hIcon = (HICON) MUtils::Win32Utils::qicon_to_hicon(icon, 16, 16))
423                 {
424                         typedef BOOL(__stdcall *SetConsoleIconFun)(HICON);
425                         bool success = false;
426                         if (const SetConsoleIconFun pSetConsoleIconFun = MUtils::Win32Utils::resolve<SetConsoleIconFun>(QLatin1String("kernel32"), QLatin1String("SetConsoleIcon")))
427                         {
428                                 const DWORD before = GetLastError();
429                                 qWarning("[Before: 0x%08X]", before);
430                                 if (pSetConsoleIconFun(hIcon))
431                                 {
432                                         success = true;
433                                 }
434                                 else
435                                 {
436                                         const DWORD error = GetLastError();
437                                         qWarning("SetConsoleIcon() has failed! [Error: 0x%08X]", error);
438                                 }
439                         }
440                         if (!success)
441                         {
442                                 const HWND hwndConsole = GetConsoleWindow();
443                                 if ((hwndConsole != NULL) && (hwndConsole != INVALID_HANDLE_VALUE))
444                                 {
445                                         SendMessage(hwndConsole, WM_SETICON, ICON_SMALL, LPARAM(hIcon));
446                                         success = true;
447                                 }
448                         }
449                         if (success)
450                         {
451                                 set_hicon(&g_terminal_icon, hIcon);
452                         }
453                 }
454         }
455 }