OSDN Git Service

Made lamexp_arguments() thread-safe, just to be sure.
[lamexp/LameXP.git] / src / Global.cpp
index dfa7659..9ad35a5 100644 (file)
@@ -1,6 +1,6 @@
 ///////////////////////////////////////////////////////////////////////////////
 // LameXP - Audio Encoder Front-End
-// Copyright (C) 2004-2011 LoRd_MuldeR <MuldeR2@GMX.de>
+// Copyright (C) 2004-2012 LoRd_MuldeR <MuldeR2@GMX.de>
 //
 // This program is free software; you can redistribute it and/or modify
 // it under the terms of the GNU General Public License as published by
 #include <QTranslator>
 #include <QEventLoop>
 #include <QTimer>
+#include <QLibraryInfo>
+#include <QEvent>
+#include <QReadWriteLock>
+#include <QReadLocker>
+#include <QWriteLocker>
 
 //LameXP includes
 #include "Resource.h"
 #include "LockedFile.h"
 
 //CRT includes
+#include <iostream>
+#include <fstream>
 #include <io.h>
 #include <fcntl.h>
 #include <intrin.h>
 #include <math.h>
+#include <time.h>
+#include <process.h>
+
+//Shell API
+#include <Shellapi.h>
 
 //COM includes
 #include <Objbase.h>
+#include <PowrProf.h>
 
 //Debug only includes
 #if LAMEXP_DEBUG
 
 //Initialize static Qt plugins
 #ifdef QT_NODLL
-Q_IMPORT_PLUGIN(qgif)
+#if QT_VERSION < QT_VERSION_CHECK(5,0,0)
 Q_IMPORT_PLUGIN(qico)
 Q_IMPORT_PLUGIN(qsvg)
+#else
+Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin)
+Q_IMPORT_PLUGIN(QICOPlugin)
+#endif
 #endif
 
 ///////////////////////////////////////////////////////////////////////////////
 // TYPES
 ///////////////////////////////////////////////////////////////////////////////
 
+static const size_t g_lamexp_ipc_slots = 128;
+
 typedef struct
 {
        unsigned int command;
        unsigned int reserved_1;
        unsigned int reserved_2;
        char parameter[4096];
-} lamexp_ipc_t;
+}
+lamexp_ipc_data_t;
+
+typedef struct
+{
+       unsigned int pos_write;
+       unsigned int pos_read;
+       lamexp_ipc_data_t data[g_lamexp_ipc_slots];
+}
+lamexp_ipc_t;
 
 ///////////////////////////////////////////////////////////////////////////////
 // GLOBAL VARS
@@ -116,9 +144,9 @@ static bool g_lamexp_console_attached = false;
        #if (__INTEL_COMPILER >= 1200)
                static const char *g_lamexp_version_compiler = "ICL 12.x";
        #elif (__INTEL_COMPILER >= 1100)
-               static const char *g_lamexp_version_compiler = "ICL 11.x";
+               static const char *g_lamexp_version_compiler = "ICL 11.x";
        #elif (__INTEL_COMPILER >= 1000)
-               static const char *g_lamexp_version_compiler = "ICL 10.x";
+               static const char *g_lamexp_version_compiler = "ICL 10.x";
        #else
                #error Compiler is not supported!
        #endif
@@ -164,15 +192,29 @@ static bool g_lamexp_console_attached = false;
 static const char *g_lamexp_website_url = "http://lamexp.sourceforge.net/";
 static const char *g_lamexp_support_url = "http://forum.doom9.org/showthread.php?t=157726";
 
-//Tool versions (expected)
+//Tool versions (expected versions!)
 static const unsigned int g_lamexp_toolver_neroaac = VER_LAMEXP_TOOL_NEROAAC;
+static const unsigned int g_lamexp_toolver_fhgaacenc = VER_LAMEXP_TOOL_FHGAACENC;
+static const unsigned int g_lamexp_toolver_qaacenc = VER_LAMEXP_TOOL_QAAC;
+static const unsigned int g_lamexp_toolver_coreaudio = VER_LAMEXP_TOOL_COREAUDIO;
 
 //Special folders
-static QString g_lamexp_temp_folder;
+static struct
+{
+       QString temp;
+       QString knownFolders[3];
+       QReadWriteLock lock;
+}
+g_lamexp_folder;
 
 //Tools
-static QMap<QString, LockedFile*> g_lamexp_tool_registry;
-static QMap<QString, unsigned int> g_lamexp_tool_versions;
+static struct
+{
+       QMap<QString, LockedFile*> registry;
+       QMap<QString, unsigned int> versions;
+       QReadWriteLock lock;
+}
+g_lamexp_tools;
 
 //Languages
 static struct
@@ -180,30 +222,43 @@ static struct
        QMap<QString, QString> files;
        QMap<QString, QString> names;
        QMap<QString, unsigned int> sysid;
+       QMap<QString, unsigned int> cntry;
+       QReadWriteLock lock;
 }
 g_lamexp_translation;
 
 //Translator
-static QTranslator *g_lamexp_currentTranslator = NULL;
+static struct
+{
+       QVariant instance;
+       QReadWriteLock lock;
+}
+g_lamexp_currentTranslator;
 
 //Shared memory
 static const struct
 {
        char *sharedmem;
        char *semaphore_read;
+       char *semaphore_read_mutex;
        char *semaphore_write;
+       char *semaphore_write_mutex;
 }
 g_lamexp_ipc_uuid =
 {
        "{21A68A42-6923-43bb-9CF6-64BF151942EE}",
        "{7A605549-F58C-4d78-B4E5-06EFC34F405B}",
-       "{60AA8D04-F6B8-497d-81EB-0F600F4A65B5}"
+       "{60AA8D04-F6B8-497d-81EB-0F600F4A65B5}",
+       "{726061D5-1615-4B82-871C-75FD93458E46}",
+       "{1A616023-AA6A-4519-8AF3-F7736E899977}"
 };
 static struct
 {
        QSharedMemory *sharedmem;
        QSystemSemaphore *semaphore_read;
+       QSystemSemaphore *semaphore_read_mutex;
        QSystemSemaphore *semaphore_write;
+       QSystemSemaphore *semaphore_write_mutex;
 }
 g_lamexp_ipc_ptr =
 {
@@ -211,7 +266,7 @@ g_lamexp_ipc_ptr =
 };
 
 //Image formats
-static const char *g_lamexp_imageformats[] = {"png", "jpg", "gif", "ico", "svg", NULL};
+static const char *g_lamexp_imageformats[] = {"bmp", "png", "jpg", "gif", "ico", "xpm", NULL}; //"svg"
 
 //Global locks
 static QMutex g_lamexp_message_mutex;
@@ -219,6 +274,16 @@ static QMutex g_lamexp_message_mutex;
 //Main thread ID
 static const DWORD g_main_thread_id = GetCurrentThreadId();
 
+//Log file
+static FILE *g_lamexp_log_file = NULL;
+
+//CLI Arguments
+static struct
+{
+       QStringList list;
+       QReadWriteLock lock;
+}
+g_lamexp_argv;
 
 ///////////////////////////////////////////////////////////////////////////////
 // GLOBAL FUNCTIONS
@@ -235,6 +300,9 @@ const char *lamexp_version_time(void) { return g_lamexp_version_raw_time; }
 const char *lamexp_version_compiler(void) { return g_lamexp_version_compiler; }
 const char *lamexp_version_arch(void) { return g_lamexp_version_arch; }
 unsigned int lamexp_toolver_neroaac(void) { return g_lamexp_toolver_neroaac; }
+unsigned int lamexp_toolver_fhgaacenc(void) { return g_lamexp_toolver_fhgaacenc; }
+unsigned int lamexp_toolver_qaacenc(void) { return g_lamexp_toolver_qaacenc; }
+unsigned int lamexp_toolver_coreaudio(void) { return g_lamexp_toolver_coreaudio; }
 
 /*
  * URL getters
@@ -265,7 +333,7 @@ bool lamexp_version_demo(void)
  */
 QDate lamexp_version_expires(void)
 {
-       return lamexp_version_date().addDays(LAMEXP_DEBUG ? 2 : 30);
+       return lamexp_version_date().addDays(LAMEXP_DEBUG ? 7 : 30);
 }
 
 /*
@@ -275,39 +343,30 @@ const QDate &lamexp_version_date(void)
 {
        if(!g_lamexp_version_date.isValid())
        {
-               char temp[32];
-               int date[3];
-
-               char *this_token = NULL;
-               char *next_token = NULL;
+               int date[3] = {0, 0, 0}; char temp[12] = {'\0'};
+               strncpy_s(temp, 12, g_lamexp_version_raw_date, _TRUNCATE);
 
-               strncpy_s(temp, 32, g_lamexp_version_raw_date, _TRUNCATE);
-               this_token = strtok_s(temp, " ", &next_token);
-
-               for(int i = 0; i < 3; i++)
+               if(strlen(temp) == 11)
                {
-                       date[i] = -1;
-                       if(this_token)
+                       temp[3] = temp[6] = '\0';
+                       date[2] = atoi(&temp[4]);
+                       date[0] = atoi(&temp[7]);
+                       
+                       for(int j = 0; j < 12; j++)
                        {
-                               for(int j = 0; j < 12; j++)
-                               {
-                                       if(!_strcmpi(this_token, g_lamexp_months[j]))
-                                       {
-                                               date[i] = j+1;
-                                               break;
-                                       }
-                               }
-                               if(date[i] < 0)
+                               if(!_strcmpi(&temp[0], g_lamexp_months[j]))
                                {
-                                       date[i] = atoi(this_token);
+                                       date[1] = j+1;
+                                       break;
                                }
-                               this_token = strtok_s(NULL, " ", &next_token);
                        }
+
+                       g_lamexp_version_date = QDate(date[0], date[1], date[2]);
                }
 
-               if(date[0] >= 0 && date[1] >= 0 && date[2] >= 0)
+               if(!g_lamexp_version_date.isValid())
                {
-                       g_lamexp_version_date = QDate(date[2], date[0], date[1]);
+                       qFatal("Internal error: Date format could not be recognized!");
                }
        }
 
@@ -315,6 +374,61 @@ const QDate &lamexp_version_date(void)
 }
 
 /*
+ * Get the native operating system version
+ */
+DWORD lamexp_get_os_version(void)
+{
+       static DWORD osVersion = 0;
+       
+       if(!osVersion)
+       {
+               OSVERSIONINFO osVerInfo;
+               memset(&osVerInfo, 0, sizeof(OSVERSIONINFO));
+               osVerInfo.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
+       
+               if(GetVersionEx(&osVerInfo) == TRUE)
+               {
+                       if(osVerInfo.dwPlatformId != VER_PLATFORM_WIN32_NT)
+                       {
+                               throw "Ouuups: Not running under Windows NT. This is not supposed to happen!";
+                       }
+                       const DWORD osVerHi = (DWORD)(((DWORD)(osVerInfo.dwMajorVersion)) << 16);
+                       const DWORD osVerLo = (DWORD)(((DWORD)(osVerInfo.dwMinorVersion)) & ((DWORD)(0xffff)));
+                       osVersion = (DWORD)(((DWORD)(osVerHi)) | ((DWORD)(osVerLo)));
+               }
+               else
+               {
+                       throw "GetVersionEx() has failed. This is not supposed to happen!";
+               }
+       }
+
+       return osVersion;
+}
+
+/*
+ * Check if we are running under wine
+ */
+bool lamexp_detect_wine(void)
+{
+       static bool isWine = false;
+       static bool isWine_initialized = false;
+
+       if(!isWine_initialized)
+       {
+               QLibrary ntdll("ntdll.dll");
+               if(ntdll.load())
+               {
+                       if(ntdll.resolve("wine_nt_to_unix_file_name") != NULL) isWine = true;
+                       if(ntdll.resolve("wine_get_version") != NULL) isWine = true;
+                       ntdll.unload();
+               }
+               isWine_initialized = true;
+       }
+
+       return isWine;
+}
+
+/*
  * Global exception handler
  */
 LONG WINAPI lamexp_exception_handler(__in struct _EXCEPTION_POINTERS *ExceptionInfo)
@@ -323,10 +437,9 @@ LONG WINAPI lamexp_exception_handler(__in struct _EXCEPTION_POINTERS *ExceptionI
        {
                HANDLE mainThread = OpenThread(THREAD_TERMINATE, FALSE, g_main_thread_id);
                if(mainThread) TerminateThread(mainThread, ULONG_MAX);
-               
        }
        
-       FatalAppExit(0, L"Unhandeled exception error, application will exit!");
+       FatalAppExit(0, L"Unhandeled exception handler invoked, application will exit!");
        TerminateProcess(GetCurrentProcess(), -1);
        return LONG_MAX;
 }
@@ -365,16 +478,17 @@ static void lamexp_console_color(FILE* file, WORD attributes)
 void lamexp_message_handler(QtMsgType type, const char *msg)
 {
        static const char *GURU_MEDITATION = "\n\nGURU MEDITATION !!!\n\n";
-
-       const char *text = msg;
-       const char *buffer = NULL;
        
        QMutexLocker lock(&g_lamexp_message_mutex);
 
-       if((strlen(msg) > 8) && (_strnicmp(msg, "@BASE64@", 8) == 0))
+       if(g_lamexp_log_file)
        {
-               buffer = _strdup(QByteArray::fromBase64(msg + 8).constData());
-               if(buffer) text = buffer;
+               static char prefix[] = "DWCF";
+               int index = qBound(0, static_cast<int>(type), 3);
+               unsigned int timestamp = static_cast<unsigned int>(_time64(NULL) % 3600I64);
+               QString str = QString::fromUtf8(msg).trimmed().replace('\n', '\t');
+               fprintf(g_lamexp_log_file, "[%c][%04u] %s\r\n", prefix[index], timestamp, str.toUtf8().constData());
+               fflush(g_lamexp_log_file);
        }
 
        if(g_lamexp_console_attached)
@@ -390,17 +504,17 @@ void lamexp_message_handler(QtMsgType type, const char *msg)
                        fflush(stderr);
                        lamexp_console_color(stderr, FOREGROUND_RED | FOREGROUND_INTENSITY);
                        fprintf(stderr, GURU_MEDITATION);
-                       fprintf(stderr, "%s\n", text);
+                       fprintf(stderr, "%s\n", msg);
                        fflush(stderr);
                        break;
                case QtWarningMsg:
                        lamexp_console_color(stderr, FOREGROUND_GREEN | FOREGROUND_RED | FOREGROUND_INTENSITY);
-                       fprintf(stderr, "%s\n", text);
+                       fprintf(stderr, "%s\n", msg);
                        fflush(stderr);
                        break;
                default:
                        lamexp_console_color(stderr, FOREGROUND_BLUE | FOREGROUND_GREEN | FOREGROUND_RED | FOREGROUND_INTENSITY);
-                       fprintf(stderr, "%s\n", text);
+                       fprintf(stderr, "%s\n", msg);
                        fflush(stderr);
                        break;
                }
@@ -410,60 +524,77 @@ void lamexp_message_handler(QtMsgType type, const char *msg)
        }
        else
        {
-               char temp[1024] = {'\0'};
+               QString temp("[LameXP][%1] %2");
                
                switch(type)
                {
                case QtCriticalMsg:
                case QtFatalMsg:
-                       _snprintf_s(temp, 1024, _TRUNCATE, "[LameXP][C] %s", text);
+                       temp = temp.arg("C", QString::fromUtf8(msg));
                        break;
                case QtWarningMsg:
-                       _snprintf_s(temp, 1024, _TRUNCATE, "[LameXP][C] %s", text);
+                       temp = temp.arg("W", QString::fromUtf8(msg));
                        break;
                default:
-                       _snprintf_s(temp, 1024, _TRUNCATE, "[LameXP][C] %s", text);
+                       temp = temp.arg("I", QString::fromUtf8(msg));
                        break;
                }
 
-               char *ptr = strchr(temp, '\n');
-               while(ptr != NULL)
-               {
-                       *ptr = '\t';
-                       ptr = strchr(temp, '\n');
-               }
-               
-               strncat_s(temp, 1024, "\n", _TRUNCATE);
-               OutputDebugStringA(temp);
+               temp.replace("\n", "\t").append("\n");
+               OutputDebugStringA(temp.toLatin1().constData());
        }
 
        if(type == QtCriticalMsg || type == QtFatalMsg)
        {
                lock.unlock();
-               MessageBoxW(NULL, QWCHAR(QString::fromUtf8(text)), L"LameXP - GURU MEDITATION", MB_ICONERROR | MB_TOPMOST | MB_TASKMODAL);
+
+               if(GetCurrentThreadId() != g_main_thread_id)
+               {
+                       HANDLE mainThread = OpenThread(THREAD_TERMINATE, FALSE, g_main_thread_id);
+                       if(mainThread) TerminateThread(mainThread, ULONG_MAX);
+               }
+
+               MessageBoxW(NULL, QWCHAR(QString::fromUtf8(msg)), L"LameXP - GURU MEDITATION", MB_ICONERROR | MB_TOPMOST | MB_TASKMODAL);
                FatalAppExit(0, L"The application has encountered a critical error and will exit now!");
                TerminateProcess(GetCurrentProcess(), -1);
        }
-
-       LAMEXP_SAFE_FREE(buffer);
 }
 
 /*
  * Initialize the console
  */
-void lamexp_init_console(int argc, char* argv[])
+void lamexp_init_console(const QStringList &argv)
 {
        bool enableConsole = lamexp_version_demo();
 
+       if(_environ)
+       {
+               wchar_t *logfile = NULL;
+               size_t logfile_len = 0;
+               if(!_wdupenv_s(&logfile, &logfile_len, L"LAMEXP_LOGFILE"))
+               {
+                       if(logfile && (logfile_len > 0))
+                       {
+                               FILE *temp = NULL;
+                               if(!_wfopen_s(&temp, logfile, L"wb"))
+                               {
+                                       fprintf(temp, "%c%c%c", 0xEF, 0xBB, 0xBF);
+                                       g_lamexp_log_file = temp;
+                               }
+                               free(logfile);
+                       }
+               }
+       }
+
        if(!LAMEXP_DEBUG)
        {
-               for(int i = 0; i < argc; i++)
+               for(int i = 0; i < argv.count(); i++)
                {
-                       if(!_stricmp(argv[i], "--console"))
+                       if(!argv.at(i).compare("--console", Qt::CaseInsensitive))
                        {
                                enableConsole = true;
                        }
-                       else if(!_stricmp(argv[i], "--no-console"))
+                       else if(!argv.at(i).compare("--no-console", Qt::CaseInsensitive))
                        {
                                enableConsole = false;
                        }
@@ -491,10 +622,10 @@ void lamexp_init_console(int argc, char* argv[])
                        const int flags = _O_WRONLY | _O_U8TEXT;
                        int hCrtStdOut = _open_osfhandle((intptr_t) GetStdHandle(STD_OUTPUT_HANDLE), flags);
                        int hCrtStdErr = _open_osfhandle((intptr_t) GetStdHandle(STD_ERROR_HANDLE), flags);
-                       FILE *hfStdOut = _fdopen(hCrtStdOut, "w");
-                       FILE *hfStderr = _fdopen(hCrtStdErr, "w");
-                       if(hfStdOut) *stdout = *hfStdOut;
-                       if(hfStderr) *stderr = *hfStderr;
+                       FILE *hfStdOut = (hCrtStdOut >= 0) ? _fdopen(hCrtStdOut, "wb") : NULL;
+                       FILE *hfStdErr = (hCrtStdErr >= 0) ? _fdopen(hCrtStdErr, "wb") : NULL;
+                       if(hfStdOut) { *stdout = *hfStdOut; std::cout.rdbuf(new std::filebuf(hfStdOut)); }
+                       if(hfStdErr) { *stderr = *hfStdErr; std::cerr.rdbuf(new std::filebuf(hfStdErr)); }
                }
 
                HWND hwndConsole = GetConsoleWindow();
@@ -505,8 +636,9 @@ void lamexp_init_console(int argc, char* argv[])
                        EnableMenuItem(hMenu, SC_CLOSE, MF_BYCOMMAND | MF_GRAYED);
                        RemoveMenu(hMenu, SC_CLOSE, MF_BYCOMMAND);
 
-                       SetWindowLong(hwndConsole, GWL_STYLE, GetWindowLong(hwndConsole, GWL_STYLE) & (~WS_MAXIMIZEBOX));
-                       SetWindowLong(hwndConsole, GWL_STYLE, GetWindowLong(hwndConsole, GWL_STYLE) & (~WS_MINIMIZEBOX));
+                       SetWindowPos(hwndConsole, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE|SWP_NOZORDER|SWP_FRAMECHANGED);
+                       SetWindowLong(hwndConsole, GWL_STYLE, GetWindowLong(hwndConsole, GWL_STYLE) & (~WS_MAXIMIZEBOX) & (~WS_MINIMIZEBOX));
+                       SetWindowPos(hwndConsole, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE|SWP_NOZORDER|SWP_FRAMECHANGED);
                }
        }
 }
@@ -514,7 +646,7 @@ void lamexp_init_console(int argc, char* argv[])
 /*
  * Detect CPU features
  */
-lamexp_cpu_t lamexp_detect_cpu_features(void)
+lamexp_cpu_t lamexp_detect_cpu_features(const QStringList &argv)
 {
        typedef BOOL (WINAPI *IsWow64ProcessFun)(__in HANDLE hProcess, __out PBOOL Wow64Process);
        typedef VOID (WINAPI *GetNativeSystemInfoFun)(__out LPSYSTEM_INFO lpSystemInfo);
@@ -555,7 +687,7 @@ lamexp_cpu_t lamexp_detect_cpu_features(void)
        }
 
        __cpuid(CPUInfo, 0x80000000);
-       int nExIds = max(min(CPUInfo[0], 0x80000004), 0x80000000);
+       int nExIds = qMax<int>(qMin<int>(CPUInfo[0], 0x80000004), 0x80000000);
 
        for(int i = 0x80000002; i <= nExIds; ++i)
        {
@@ -602,42 +734,78 @@ lamexp_cpu_t lamexp_detect_cpu_features(void)
        {
                GetSystemInfo(&systemInfo);
        }
-       features.count = systemInfo.dwNumberOfProcessors;
+       features.count = qBound(1UL, systemInfo.dwNumberOfProcessors, 64UL);
 #else
        GetNativeSystemInfo(&systemInfo);
        features.count = systemInfo.dwNumberOfProcessors;
        features.x64 = true;
 #endif
 
+       if(argv.count() > 0)
+       {
+               bool flag = false;
+               for(int i = 0; i < argv.count(); i++)
+               {
+                       if(!argv[i].compare("--force-cpu-no-64bit", Qt::CaseInsensitive)) { flag = true; features.x64 = false; }
+                       if(!argv[i].compare("--force-cpu-no-sse", Qt::CaseInsensitive)) { flag = true; features.sse = features.sse2 = features.sse3 = features.ssse3 = false; }
+                       if(!argv[i].compare("--force-cpu-no-intel", Qt::CaseInsensitive)) { flag = true; features.intel = false; }
+               }
+               if(flag) qWarning("CPU flags overwritten by user-defined parameters. Take care!\n");
+       }
+
        return features;
 }
 
 /*
  * Check for debugger (detect routine)
  */
-static bool lamexp_check_for_debugger(void)
+static __forceinline bool lamexp_check_for_debugger(void)
 {
+       if(IsDebuggerPresent())
+       {
+               return true;
+       }
+       
+       __try
+       {
+               CloseHandle((HANDLE) 0x7FFFFFFF);
+       }
+       __except(EXCEPTION_EXECUTE_HANDLER)
+       {
+               return true;
+       }
+
        __try 
        {
                DebugBreak();
        }
-       __except(GetExceptionCode() == EXCEPTION_BREAKPOINT ? EXCEPTION_EXECUTE_HANDLER : EXCEPTION_CONTINUE_SEARCH
+       __except(EXCEPTION_EXECUTE_HANDLER
        {
                return false;
        }
+       
        return true;
 }
 
 /*
  * Check for debugger (thread proc)
  */
-static void WINAPI lamexp_debug_thread_proc(__in LPVOID lpParameter)
+static unsigned int __stdcall lamexp_debug_thread_proc(LPVOID lpParameter)
 {
-       while(!(IsDebuggerPresent() || lamexp_check_for_debugger()))
+       while(!lamexp_check_for_debugger())
        {
-               Sleep(333);
+               Sleep(32);
+       }
+       if(HANDLE thrd = OpenThread(THREAD_TERMINATE, FALSE, g_main_thread_id))
+       {
+               if(TerminateThread(thrd, -1))
+               {
+                       FatalAppExit(0, L"Not a debug build. Please unload debugger and try again!");
+               }
+               CloseHandle(thrd);
        }
        TerminateProcess(GetCurrentProcess(), -1);
+       return 666;
 }
 
 /*
@@ -645,28 +813,28 @@ static void WINAPI lamexp_debug_thread_proc(__in LPVOID lpParameter)
  */
 static HANDLE lamexp_debug_thread_init(void)
 {
-       if(IsDebuggerPresent() || lamexp_check_for_debugger())
+       if(lamexp_check_for_debugger())
        {
                FatalAppExit(0, L"Not a debug build. Please unload debugger and try again!");
                TerminateProcess(GetCurrentProcess(), -1);
        }
 
-       return CreateThread(NULL, NULL, reinterpret_cast<LPTHREAD_START_ROUTINE>(&lamexp_debug_thread_proc), NULL, NULL, NULL);
+       return (HANDLE) _beginthreadex(NULL, 0, lamexp_debug_thread_proc, NULL, 0, NULL);
 }
 
 /*
  * Check for compatibility mode
  */
-static bool lamexp_check_compatibility_mode(const char *exportName, const char *executableName)
+static bool lamexp_check_compatibility_mode(const char *exportName, const QString &executableName)
 {
        QLibrary kernel32("kernel32.dll");
 
-       if(exportName != NULL)
+       if((exportName != NULL) && kernel32.load())
        {
                if(kernel32.resolve(exportName) != NULL)
                {
                        qWarning("Function '%s' exported from 'kernel32.dll' -> Windows compatibility mode!", exportName);
-                       qFatal("%s", QApplication::tr("Executable '%1' doesn't support Windows compatibility mode.").arg(QString::fromLatin1(executableName)).toLatin1().constData());
+                       qFatal("%s", QApplication::tr("Executable '%1' doesn't support Windows compatibility mode.").arg(executableName).toLatin1().constData());
                        return false;
                }
        }
@@ -675,6 +843,161 @@ static bool lamexp_check_compatibility_mode(const char *exportName, const char *
 }
 
 /*
+ * Computus according to H. Lichtenberg
+ */
+static bool lamexp_computus(const QDate &date)
+{
+       int X = date.year();
+       int A = X % 19;
+       int K = X / 100;
+       int M = 15 + (3*K + 3) / 4 - (8*K + 13) / 25;
+       int D = (19*A + M) % 30;
+       int S = 2 - (3*K + 3) / 4;
+       int R = D / 29 + (D / 28 - D / 29) * (A / 11);
+       int OG = 21 + D - R;
+       int SZ = 7 - (X + X / 4 + S) % 7;
+       int OE = 7 - (OG - SZ) % 7;
+       int OS = (OG + OE);
+
+       if(OS > 31)
+       {
+               return (date.month() == 4) && (date.day() == (OS - 31));
+       }
+       else
+       {
+               return (date.month() == 3) && (date.day() == OS);
+       }
+}
+
+/*
+ * Check for Thanksgiving
+ */
+static bool lamexp_thanksgiving(const QDate &date)
+{
+       int day = 0;
+
+       switch(QDate(date.year(), 11, 1).dayOfWeek())
+       {
+               case 1: day = 25; break; 
+               case 2: day = 24; break; 
+               case 3: day = 23; break; 
+               case 4: day = 22; break; 
+               case 5: day = 28; break; 
+               case 6: day = 27; break; 
+               case 7: day = 26; break;
+       }
+
+       return (date.month() == 11) && (date.day() == day);
+}
+
+/*
+ * Initialize app icon
+ */
+QIcon lamexp_app_icon(const QDate *date, const QTime *time)
+{
+       QDate currentDate = (date) ? QDate(*date) : QDate::currentDate();
+       QTime currentTime = (time) ? QTime(*time) : QTime::currentTime();
+       
+       if(lamexp_thanksgiving(currentDate))
+       {
+               return QIcon(":/MainIcon6.png");
+       }
+       else if(((currentDate.month() == 12) && (currentDate.day() == 31) && (currentTime.hour() >= 20)) || ((currentDate.month() == 1) && (currentDate.day() == 1)  && (currentTime.hour() <= 19)))
+       {
+               return QIcon(":/MainIcon5.png");
+       }
+       else if(((currentDate.month() == 10) && (currentDate.day() == 31) && (currentTime.hour() >= 12)) || ((currentDate.month() == 11) && (currentDate.day() == 1)  && (currentTime.hour() <= 11)))
+       {
+               return QIcon(":/MainIcon4.png");
+       }
+       else if((currentDate.month() == 12) && (currentDate.day() >= 24) && (currentDate.day() <= 26))
+       {
+               return QIcon(":/MainIcon3.png");
+       }
+       else if(lamexp_computus(currentDate))
+       {
+               return QIcon(":/MainIcon2.png");
+       }
+       else
+       {
+               return QIcon(":/MainIcon1.png");
+       }
+}
+
+/*
+ * Broadcast event to all windows
+ */
+static bool lamexp_broadcast(int eventType, bool onlyToVisible)
+{
+       if(QApplication *app = dynamic_cast<QApplication*>(QApplication::instance()))
+       {
+               qDebug("Broadcasting %d", eventType);
+               
+               bool allOk = true;
+               QEvent poEvent(static_cast<QEvent::Type>(eventType));
+               QWidgetList list = app->topLevelWidgets();
+
+               while(!list.isEmpty())
+               {
+                       QWidget *widget = list.takeFirst();
+                       if(!onlyToVisible || widget->isVisible())
+                       {
+                               if(!app->sendEvent(widget, &poEvent))
+                               {
+                                       allOk = false;
+                               }
+                       }
+               }
+
+               qDebug("Broadcast %d done (%s)", eventType, (allOk ? "OK" : "Stopped"));
+               return allOk;
+       }
+       else
+       {
+               qWarning("Broadcast failed, could not get QApplication instance!");
+               return false;
+       }
+}
+
+/*
+ * Qt event filter
+ */
+static bool lamexp_event_filter(void *message, long *result)
+{
+       if((!(LAMEXP_DEBUG)) && lamexp_check_for_debugger())
+       {
+               FatalAppExit(0, L"Not a debug build. Please unload debugger and try again!");
+               TerminateProcess(GetCurrentProcess(), -1);
+       }
+       
+       switch(reinterpret_cast<MSG*>(message)->message)
+       {
+       case WM_QUERYENDSESSION:
+               qWarning("WM_QUERYENDSESSION message received!");
+               *result = lamexp_broadcast(lamexp_event_queryendsession, false) ? TRUE : FALSE;
+               return true;
+       case WM_ENDSESSION:
+               qWarning("WM_ENDSESSION message received!");
+               if(reinterpret_cast<MSG*>(message)->wParam == TRUE)
+               {
+                       lamexp_broadcast(lamexp_event_endsession, false);
+                       if(QApplication *app = reinterpret_cast<QApplication*>(QApplication::instance()))
+                       {
+                               app->closeAllWindows();
+                               app->quit();
+                       }
+                       lamexp_finalization();
+                       exit(1);
+               }
+               *result = 0;
+               return true;
+       default:
+               /*ignore this message and let Qt handle it*/
+               return false;
+       }
+}
+
+/*
  * Check for process elevation
  */
 static bool lamexp_check_elevation(void)
@@ -724,15 +1047,15 @@ static bool lamexp_check_elevation(void)
 bool lamexp_init_qt(int argc, char* argv[])
 {
        static bool qt_initialized = false;
-       bool isWine = false;
        typedef BOOL (WINAPI *SetDllDirectoryProc)(WCHAR *lpPathName);
+       const QStringList &arguments = lamexp_arguments();
 
        //Don't initialized again, if done already
        if(qt_initialized)
        {
                return true;
        }
-       
+
        //Secure DLL loading
        QLibrary kernel32("kernel32.dll");
        if(kernel32.load())
@@ -743,23 +1066,53 @@ bool lamexp_init_qt(int argc, char* argv[])
        }
 
        //Extract executable name from argv[] array
-       char *executableName = argv[0];
-       while(char *temp = strpbrk(executableName, "\\/:?"))
+       QString executableName = QLatin1String("LameXP.exe");
+       if(arguments.count() > 0)
        {
-               executableName = temp + 1;
+               static const char *delimiters = "\\/:?";
+               executableName = arguments[0].trimmed();
+               for(int i = 0; delimiters[i]; i++)
+               {
+                       int temp = executableName.lastIndexOf(QChar(delimiters[i]));
+                       if(temp >= 0) executableName = executableName.mid(temp + 1);
+               }
+               executableName = executableName.trimmed();
+               if(executableName.isEmpty())
+               {
+                       executableName = QLatin1String("LameXP.exe");
+               }
        }
 
        //Check Qt version
-       qDebug("Using Qt Framework v%s, compiled with Qt v%s [%s]", qVersion(), QT_VERSION_STR, QT_PACKAGEDATE_STR);
+#ifdef QT_BUILD_KEY
+       qDebug("Using Qt v%s [%s], %s, %s", qVersion(), QLibraryInfo::buildDate().toString(Qt::ISODate).toLatin1().constData(), (qSharedBuild() ? "DLL" : "Static"), QLibraryInfo::buildKey().toLatin1().constData());
+       qDebug("Compiled with Qt v%s [%s], %s\n", QT_VERSION_STR, QT_PACKAGEDATE_STR, QT_BUILD_KEY);
        if(_stricmp(qVersion(), QT_VERSION_STR))
        {
-               qFatal("%s", QApplication::tr("Executable '%1' requires Qt v%2, but found Qt v%3.").arg(QString::fromLatin1(executableName), QString::fromLatin1(QT_VERSION_STR), QString::fromLatin1(qVersion())).toLatin1().constData());
+               qFatal("%s", QApplication::tr("Executable '%1' requires Qt v%2, but found Qt v%3.").arg(executableName, QString::fromLatin1(QT_VERSION_STR), QString::fromLatin1(qVersion())).toLatin1().constData());
+               return false;
+       }
+       if(QLibraryInfo::buildKey().compare(QString::fromLatin1(QT_BUILD_KEY), Qt::CaseInsensitive))
+       {
+               qFatal("%s", QApplication::tr("Executable '%1' was built for Qt '%2', but found Qt '%3'.").arg(executableName, QString::fromLatin1(QT_BUILD_KEY), QLibraryInfo::buildKey()).toLatin1().constData());
                return false;
        }
+#else
+       qDebug("Using Qt v%s [%s], %s", qVersion(), QLibraryInfo::buildDate().toString(Qt::ISODate).toLatin1().constData(), (qSharedBuild() ? "DLL" : "Static"));
+       qDebug("Compiled with Qt v%s [%s]\n", QT_VERSION_STR, QT_PACKAGEDATE_STR);
+#endif
 
        //Check the Windows version
        switch(QSysInfo::windowsVersion() & QSysInfo::WV_NT_based)
        {
+       case 0:
+       case QSysInfo::WV_NT:
+               qFatal("%s", QApplication::tr("Executable '%1' requires Windows 2000 or later.").arg(executableName).toLatin1().constData());
+               break;
+       case QSysInfo::WV_2000:
+               qDebug("Running on Windows 2000 (not officially supported!).\n");
+               lamexp_check_compatibility_mode("GetNativeSystemInfo", executableName);
+               break;
        case QSysInfo::WV_XP:
                qDebug("Running on Windows XP.\n");
                lamexp_check_compatibility_mode("GetLargePageMinimum", executableName);
@@ -774,36 +1127,48 @@ bool lamexp_init_qt(int argc, char* argv[])
                break;
        case QSysInfo::WV_WINDOWS7:
                qDebug("Running on Windows 7 or Windows Server 2008 R2.\n");
-               lamexp_check_compatibility_mode(NULL, executableName);
+               lamexp_check_compatibility_mode("CreateFile2", executableName);
                break;
        default:
-               qFatal("%s", QApplication::tr("Executable '%1' requires Windows XP or later.").arg(QString::fromLatin1(executableName)).toLatin1().constData());
+               {
+                       DWORD osVersionNo = lamexp_get_os_version();
+                       if(LAMEXP_EQL_OS_VER(osVersionNo, 6, 2))
+                       {
+                               qDebug("Running on Windows 8 or Windows Server 2012\n");
+                               lamexp_check_compatibility_mode(NULL, executableName);
+                       }
+                       else
+                       {
+                               qWarning("Running on an unknown/untested WinNT-based OS (v%u.%u).\n", HIWORD(osVersionNo), LOWORD(osVersionNo));
+                       }
+               }
                break;
        }
 
        //Check for Wine
-       QLibrary ntdll("ntdll.dll");
-       if(ntdll.load())
+       if(lamexp_detect_wine())
        {
-               if(ntdll.resolve("wine_nt_to_unix_file_name") != NULL) isWine = true;
-               if(ntdll.resolve("wine_get_version") != NULL) isWine = true;
-               if(isWine) qWarning("It appears we are running under Wine, unexpected things might happen!\n");
-               ntdll.unload();
+               qWarning("It appears we are running under Wine, unexpected things might happen!\n");
        }
 
-       //Create Qt application instance and setup version info
-       QDate date = QDate::currentDate();
+       //Set text Codec for locale
+       QTextCodec::setCodecForLocale(QTextCodec::codecForName("UTF-8"));
+
+       //Create Qt application instance
        QApplication *application = new QApplication(argc, argv);
-       application->setApplicationName("LameXP - Audio Encoder Front-End");
-       application->setApplicationVersion(QString().sprintf("%d.%02d.%04d", lamexp_version_major(), lamexp_version_minor(), lamexp_version_build())); 
-       application->setOrganizationName("LoRd_MuldeR");
-       application->setOrganizationDomain("mulder.dummwiedeutsch.de");
-       application->setWindowIcon((date.month() == 12 && date.day() >= 24 && date.day() <= 26) ? QIcon(":/MainIcon2.png") : QIcon(":/MainIcon.png"));
-       
+
        //Load plugins from application directory
        QCoreApplication::setLibraryPaths(QStringList() << QApplication::applicationDirPath());
        qDebug("Library Path:\n%s\n", QApplication::libraryPaths().first().toUtf8().constData());
 
+       //Set application properties
+       application->setApplicationName("LameXP - Audio Encoder Front-End");
+       application->setApplicationVersion(QString().sprintf("%d.%02d.%04d", lamexp_version_major(), lamexp_version_minor(), lamexp_version_build())); 
+       application->setOrganizationName("LoRd_MuldeR");
+       application->setOrganizationDomain("mulder.at.gg");
+       application->setWindowIcon(lamexp_app_icon());
+       application->setEventFilter(lamexp_event_filter);
+
        //Check for supported image formats
        QList<QByteArray> supportedFormats = QImageReader::supportedImageFormats();
        for(int i = 0; g_lamexp_imageformats[i]; i++)
@@ -814,22 +1179,28 @@ bool lamexp_init_qt(int argc, char* argv[])
                        return false;
                }
        }
-
+       
        //Add default translations
+       QWriteLocker writeLockTranslations(&g_lamexp_translation.lock);
        g_lamexp_translation.files.insert(LAMEXP_DEFAULT_LANGID, "");
        g_lamexp_translation.names.insert(LAMEXP_DEFAULT_LANGID, "English");
+       writeLockTranslations.unlock();
 
        //Check for process elevation
-       if(!lamexp_check_elevation())
+       if((!lamexp_check_elevation()) && (!lamexp_detect_wine()))
        {
-               if(QMessageBox::warning(NULL, "LameXP", "<nobr>LameXP was started with elevated rights. This is a potential security risk!</nobr>", "Quit Program (Recommended)", "Ignore") == 0)
+               QMessageBox messageBox(QMessageBox::Warning, "LameXP", "<nobr>LameXP was started with 'elevated' rights, altough LameXP does not need these rights.<br>Running an applications with unnecessary rights is a potential security risk!</nobr>", QMessageBox::NoButton, NULL, Qt::Dialog | Qt::MSWindowsFixedSizeDialogHint | Qt::WindowStaysOnTopHint);
+               messageBox.addButton("Quit Program (Recommended)", QMessageBox::NoRole);
+               messageBox.addButton("Ignore", QMessageBox::NoRole);
+               if(messageBox.exec() == 0)
                {
                        return false;
                }
        }
 
        //Update console icon, if a console is attached
-       if(g_lamexp_console_attached && !isWine)
+#if QT_VERSION < QT_VERSION_CHECK(5,0,0)
+       if(g_lamexp_console_attached && (!lamexp_detect_wine()))
        {
                typedef DWORD (__stdcall *SetConsoleIconFun)(HICON);
                QLibrary kernel32("kernel32.dll");
@@ -840,6 +1211,7 @@ bool lamexp_init_qt(int argc, char* argv[])
                        kernel32.unload();
                }
        }
+#endif
 
        //Done
        qt_initialized = true;
@@ -851,19 +1223,23 @@ bool lamexp_init_qt(int argc, char* argv[])
  */
 int lamexp_init_ipc(void)
 {
-       if(g_lamexp_ipc_ptr.sharedmem && g_lamexp_ipc_ptr.semaphore_read && g_lamexp_ipc_ptr.semaphore_write)
+       if(g_lamexp_ipc_ptr.sharedmem && g_lamexp_ipc_ptr.semaphore_read && g_lamexp_ipc_ptr.semaphore_write && g_lamexp_ipc_ptr.semaphore_read_mutex && g_lamexp_ipc_ptr.semaphore_write_mutex)
        {
                return 0;
        }
 
        g_lamexp_ipc_ptr.semaphore_read = new QSystemSemaphore(QString(g_lamexp_ipc_uuid.semaphore_read), 0);
        g_lamexp_ipc_ptr.semaphore_write = new QSystemSemaphore(QString(g_lamexp_ipc_uuid.semaphore_write), 0);
+       g_lamexp_ipc_ptr.semaphore_read_mutex = new QSystemSemaphore(QString(g_lamexp_ipc_uuid.semaphore_read_mutex), 0);
+       g_lamexp_ipc_ptr.semaphore_write_mutex = new QSystemSemaphore(QString(g_lamexp_ipc_uuid.semaphore_write_mutex), 0);
 
        if(g_lamexp_ipc_ptr.semaphore_read->error() != QSystemSemaphore::NoError)
        {
                QString errorMessage = g_lamexp_ipc_ptr.semaphore_read->errorString();
                LAMEXP_DELETE(g_lamexp_ipc_ptr.semaphore_read);
                LAMEXP_DELETE(g_lamexp_ipc_ptr.semaphore_write);
+               LAMEXP_DELETE(g_lamexp_ipc_ptr.semaphore_read_mutex);
+               LAMEXP_DELETE(g_lamexp_ipc_ptr.semaphore_write_mutex);
                qFatal("Failed to create system smaphore: %s", errorMessage.toUtf8().constData());
                return -1;
        }
@@ -872,6 +1248,28 @@ int lamexp_init_ipc(void)
                QString errorMessage = g_lamexp_ipc_ptr.semaphore_write->errorString();
                LAMEXP_DELETE(g_lamexp_ipc_ptr.semaphore_read);
                LAMEXP_DELETE(g_lamexp_ipc_ptr.semaphore_write);
+               LAMEXP_DELETE(g_lamexp_ipc_ptr.semaphore_read_mutex);
+               LAMEXP_DELETE(g_lamexp_ipc_ptr.semaphore_write_mutex);
+               qFatal("Failed to create system smaphore: %s", errorMessage.toUtf8().constData());
+               return -1;
+       }
+       if(g_lamexp_ipc_ptr.semaphore_read_mutex->error() != QSystemSemaphore::NoError)
+       {
+               QString errorMessage = g_lamexp_ipc_ptr.semaphore_read_mutex->errorString();
+               LAMEXP_DELETE(g_lamexp_ipc_ptr.semaphore_read);
+               LAMEXP_DELETE(g_lamexp_ipc_ptr.semaphore_write);
+               LAMEXP_DELETE(g_lamexp_ipc_ptr.semaphore_read_mutex);
+               LAMEXP_DELETE(g_lamexp_ipc_ptr.semaphore_write_mutex);
+               qFatal("Failed to create system smaphore: %s", errorMessage.toUtf8().constData());
+               return -1;
+       }
+       if(g_lamexp_ipc_ptr.semaphore_write_mutex->error() != QSystemSemaphore::NoError)
+       {
+               QString errorMessage = g_lamexp_ipc_ptr.semaphore_write_mutex->errorString();
+               LAMEXP_DELETE(g_lamexp_ipc_ptr.semaphore_read);
+               LAMEXP_DELETE(g_lamexp_ipc_ptr.semaphore_write);
+               LAMEXP_DELETE(g_lamexp_ipc_ptr.semaphore_read_mutex);
+               LAMEXP_DELETE(g_lamexp_ipc_ptr.semaphore_write_mutex);
                qFatal("Failed to create system smaphore: %s", errorMessage.toUtf8().constData());
                return -1;
        }
@@ -890,6 +1288,7 @@ int lamexp_init_ipc(void)
                        else
                        {
                                QString errorMessage = g_lamexp_ipc_ptr.sharedmem->errorString();
+                               LAMEXP_DELETE(g_lamexp_ipc_ptr.sharedmem);
                                qFatal("Failed to attach to shared memory: %s", errorMessage.toUtf8().constData());
                                return -1;
                        }
@@ -897,13 +1296,16 @@ int lamexp_init_ipc(void)
                else
                {
                        QString errorMessage = g_lamexp_ipc_ptr.sharedmem->errorString();
+                       LAMEXP_DELETE(g_lamexp_ipc_ptr.sharedmem);
                        qFatal("Failed to create shared memory: %s", errorMessage.toUtf8().constData());
                        return -1;
                }
        }
 
        memset(g_lamexp_ipc_ptr.sharedmem->data(), 0, sizeof(lamexp_ipc_t));
-       g_lamexp_ipc_ptr.semaphore_write->release();
+       g_lamexp_ipc_ptr.semaphore_write->release(g_lamexp_ipc_slots);
+       g_lamexp_ipc_ptr.semaphore_read_mutex->release();
+       g_lamexp_ipc_ptr.semaphore_write_mutex->release();
 
        return 0;
 }
@@ -913,26 +1315,31 @@ int lamexp_init_ipc(void)
  */
 void lamexp_ipc_send(unsigned int command, const char* message)
 {
-       if(!g_lamexp_ipc_ptr.sharedmem || !g_lamexp_ipc_ptr.semaphore_read || !g_lamexp_ipc_ptr.semaphore_write)
+       if(!g_lamexp_ipc_ptr.sharedmem || !g_lamexp_ipc_ptr.semaphore_read || !g_lamexp_ipc_ptr.semaphore_write || !g_lamexp_ipc_ptr.semaphore_read_mutex || !g_lamexp_ipc_ptr.semaphore_write_mutex)
        {
                throw "Shared memory for IPC not initialized yet.";
        }
 
-       lamexp_ipc_t *lamexp_ipc = new lamexp_ipc_t;
-       memset(lamexp_ipc, 0, sizeof(lamexp_ipc_t));
-       lamexp_ipc->command = command;
+       lamexp_ipc_data_t ipc_data;
+       memset(&ipc_data, 0, sizeof(lamexp_ipc_data_t));
+       ipc_data.command = command;
+       
        if(message)
        {
-               strncpy_s(lamexp_ipc->parameter, 4096, message, _TRUNCATE);
+               strncpy_s(ipc_data.parameter, 4096, message, _TRUNCATE);
        }
 
        if(g_lamexp_ipc_ptr.semaphore_write->acquire())
        {
-               memcpy(g_lamexp_ipc_ptr.sharedmem->data(), lamexp_ipc, sizeof(lamexp_ipc_t));
-               g_lamexp_ipc_ptr.semaphore_read->release();
+               if(g_lamexp_ipc_ptr.semaphore_write_mutex->acquire())
+               {
+                       lamexp_ipc_t *ptr = reinterpret_cast<lamexp_ipc_t*>(g_lamexp_ipc_ptr.sharedmem->data());
+                       memcpy(&ptr->data[ptr->pos_write], &ipc_data, sizeof(lamexp_ipc_data_t));
+                       ptr->pos_write = (ptr->pos_write + 1) % g_lamexp_ipc_slots;
+                       g_lamexp_ipc_ptr.semaphore_read->release();
+                       g_lamexp_ipc_ptr.semaphore_write_mutex->release();
+               }
        }
-
-       LAMEXP_DELETE(lamexp_ipc);
 }
 
 /*
@@ -943,31 +1350,35 @@ void lamexp_ipc_read(unsigned int *command, char* message, size_t buffSize)
        *command = 0;
        message[0] = '\0';
        
-       if(!g_lamexp_ipc_ptr.sharedmem || !g_lamexp_ipc_ptr.semaphore_read || !g_lamexp_ipc_ptr.semaphore_write)
+       if(!g_lamexp_ipc_ptr.sharedmem || !g_lamexp_ipc_ptr.semaphore_read || !g_lamexp_ipc_ptr.semaphore_write || !g_lamexp_ipc_ptr.semaphore_read_mutex || !g_lamexp_ipc_ptr.semaphore_write_mutex)
        {
                throw "Shared memory for IPC not initialized yet.";
        }
 
-       lamexp_ipc_t *lamexp_ipc = new lamexp_ipc_t;
-       memset(lamexp_ipc, 0, sizeof(lamexp_ipc_t));
+       lamexp_ipc_data_t ipc_data;
+       memset(&ipc_data, 0, sizeof(lamexp_ipc_data_t));
 
        if(g_lamexp_ipc_ptr.semaphore_read->acquire())
        {
-               memcpy(lamexp_ipc, g_lamexp_ipc_ptr.sharedmem->data(), sizeof(lamexp_ipc_t));
-               g_lamexp_ipc_ptr.semaphore_write->release();
-
-               if(!(lamexp_ipc->reserved_1 || lamexp_ipc->reserved_2))
-               {
-                       *command = lamexp_ipc->command;
-                       strncpy_s(message, buffSize, lamexp_ipc->parameter, _TRUNCATE);
-               }
-               else
+               if(g_lamexp_ipc_ptr.semaphore_read_mutex->acquire())
                {
-                       qWarning("Malformed IPC message, will be ignored");
+                       lamexp_ipc_t *ptr = reinterpret_cast<lamexp_ipc_t*>(g_lamexp_ipc_ptr.sharedmem->data());
+                       memcpy(&ipc_data, &ptr->data[ptr->pos_read], sizeof(lamexp_ipc_data_t));
+                       ptr->pos_read = (ptr->pos_read + 1) % g_lamexp_ipc_slots;
+                       g_lamexp_ipc_ptr.semaphore_write->release();
+                       g_lamexp_ipc_ptr.semaphore_read_mutex->release();
+
+                       if(!(ipc_data.reserved_1 || ipc_data.reserved_2))
+                       {
+                               *command = ipc_data.command;
+                               strncpy_s(message, buffSize, ipc_data.parameter, _TRUNCATE);
+                       }
+                       else
+                       {
+                               qWarning("Malformed IPC message, will be ignored");
+                       }
                }
        }
-
-       LAMEXP_DELETE(lamexp_ipc);
 }
 
 /*
@@ -976,7 +1387,9 @@ void lamexp_ipc_read(unsigned int *command, char* message, size_t buffSize)
 bool lamexp_portable_mode(void)
 {
        QString baseName = QFileInfo(QApplication::applicationFilePath()).completeBaseName();
-       return baseName.contains("lamexp", Qt::CaseInsensitive) && baseName.contains("portable", Qt::CaseInsensitive);
+       int idx1 = baseName.indexOf("lamexp", 0, Qt::CaseInsensitive);
+       int idx2 = baseName.lastIndexOf("portable", -1, Qt::CaseInsensitive);
+       return (idx1 >= 0) && (idx2 >= 0) && (idx1 < idx2);
 }
 
 /*
@@ -1000,23 +1413,25 @@ QString lamexp_rand_str(void)
  */
 const QString &lamexp_temp_folder2(void)
 {
-       static const char *TEMP_STR = "Temp";
-       const QString WRITE_TEST_DATA = lamexp_rand_str();
-       const QString SUB_FOLDER = lamexp_rand_str();
+       QReadLocker readLock(&g_lamexp_folder.lock);
 
        //Already initialized?
-       if(!g_lamexp_temp_folder.isEmpty())
+       if(!g_lamexp_folder.temp.isEmpty())
        {
-               if(QDir(g_lamexp_temp_folder).exists())
+               if(QDir(g_lamexp_folder.temp).exists())
                {
-                       return g_lamexp_temp_folder;
-               }
-               else
-               {
-                       g_lamexp_temp_folder.clear();
+                       return g_lamexp_folder.temp;
                }
        }
        
+       readLock.unlock();
+       QWriteLocker writeLock(&g_lamexp_folder.lock);
+       g_lamexp_folder.temp.clear();
+
+       static const char *TEMP_STR = "Temp";
+       const QString WRITE_TEST_DATA = lamexp_rand_str();
+       const QString SUB_FOLDER = lamexp_rand_str();
+
        //Try the %TMP% or %TEMP% directory first
        QDir temp = QDir::temp();
        if(temp.exists())
@@ -1029,14 +1444,14 @@ const QString &lamexp_temp_folder2(void)
                        {
                                if(testFile.write(WRITE_TEST_DATA.toLatin1().constData()) >= strlen(WRITE_TEST_DATA.toLatin1().constData()))
                                {
-                                       g_lamexp_temp_folder = temp.canonicalPath();
+                                       g_lamexp_folder.temp = temp.canonicalPath();
                                }
                                testFile.remove();
                        }
                }
-               if(!g_lamexp_temp_folder.isEmpty())
+               if(!g_lamexp_folder.temp.isEmpty())
                {
-                       return g_lamexp_temp_folder;
+                       return g_lamexp_folder.temp;
                }
        }
 
@@ -1064,22 +1479,22 @@ const QString &lamexp_temp_folder2(void)
                                        {
                                                if(testFile.write(WRITE_TEST_DATA.toLatin1().constData()) >= strlen(WRITE_TEST_DATA.toLatin1().constData()))
                                                {
-                                                       g_lamexp_temp_folder = localAppData.canonicalPath();
+                                                       g_lamexp_folder.temp = localAppData.canonicalPath();
                                                }
                                                testFile.remove();
                                        }
                                }
                        }
                }
-               if(!g_lamexp_temp_folder.isEmpty())
+               if(!g_lamexp_folder.temp.isEmpty())
                {
-                       return g_lamexp_temp_folder;
+                       return g_lamexp_folder.temp;
                }
        }
 
        //Failed to create TEMP folder!
        qFatal("Temporary directory could not be initialized!\n\nFirst attempt:\n%s\n\nSecond attempt:\n%s", temp.canonicalPath().toUtf8().constData(), localAppData.canonicalPath().toUtf8().constData());
-       return g_lamexp_temp_folder;
+       return g_lamexp_folder.temp;
 }
 
 /*
@@ -1117,13 +1532,15 @@ bool lamexp_clean_folder(const QString &folderPath)
  */
 void lamexp_register_tool(const QString &toolName, LockedFile *file, unsigned int version)
 {
-       if(g_lamexp_tool_registry.contains(toolName.toLower()))
+       QWriteLocker writeLock(&g_lamexp_tools.lock);
+       
+       if(g_lamexp_tools.registry.contains(toolName.toLower()))
        {
                throw "lamexp_register_tool: Tool is already registered!";
        }
 
-       g_lamexp_tool_registry.insert(toolName.toLower(), file);
-       g_lamexp_tool_versions.insert(toolName.toLower(), version);
+       g_lamexp_tools.registry.insert(toolName.toLower(), file);
+       g_lamexp_tools.versions.insert(toolName.toLower(), version);
 }
 
 /*
@@ -1131,7 +1548,8 @@ void lamexp_register_tool(const QString &toolName, LockedFile *file, unsigned in
  */
 bool lamexp_check_tool(const QString &toolName)
 {
-       return g_lamexp_tool_registry.contains(toolName.toLower());
+       QReadLocker readLock(&g_lamexp_tools.lock);
+       return g_lamexp_tools.registry.contains(toolName.toLower());
 }
 
 /*
@@ -1139,9 +1557,11 @@ bool lamexp_check_tool(const QString &toolName)
  */
 const QString lamexp_lookup_tool(const QString &toolName)
 {
-       if(g_lamexp_tool_registry.contains(toolName.toLower()))
+       QReadLocker readLock(&g_lamexp_tools.lock);
+
+       if(g_lamexp_tools.registry.contains(toolName.toLower()))
        {
-               return g_lamexp_tool_registry.value(toolName.toLower())->filePath();
+               return g_lamexp_tools.registry.value(toolName.toLower())->filePath();
        }
        else
        {
@@ -1154,9 +1574,11 @@ const QString lamexp_lookup_tool(const QString &toolName)
  */
 unsigned int lamexp_tool_version(const QString &toolName)
 {
-       if(g_lamexp_tool_versions.contains(toolName.toLower()))
+       QReadLocker readLock(&g_lamexp_tools.lock);
+
+       if(g_lamexp_tools.versions.contains(toolName.toLower()))
        {
-               return g_lamexp_tool_versions.value(toolName.toLower());
+               return g_lamexp_tools.versions.value(toolName.toLower());
        }
        else
        {
@@ -1198,8 +1620,10 @@ const QString lamexp_version2string(const QString &pattern, unsigned int version
 /*
  * Register a new translation
  */
-bool lamexp_translation_register(const QString &langId, const QString &qmFile, const QString &langName, unsigned int &systemId)
+bool lamexp_translation_register(const QString &langId, const QString &qmFile, const QString &langName, unsigned int &systemId, unsigned int &country)
 {
+       QWriteLocker writeLockTranslations(&g_lamexp_translation.lock);
+
        if(qmFile.isEmpty() || langName.isEmpty() || systemId < 1)
        {
                return false;
@@ -1208,6 +1632,7 @@ bool lamexp_translation_register(const QString &langId, const QString &qmFile, c
        g_lamexp_translation.files.insert(langId, qmFile);
        g_lamexp_translation.names.insert(langId, langName);
        g_lamexp_translation.sysid.insert(langId, systemId);
+       g_lamexp_translation.cntry.insert(langId, country);
 
        return true;
 }
@@ -1217,6 +1642,7 @@ bool lamexp_translation_register(const QString &langId, const QString &qmFile, c
  */
 QStringList lamexp_query_translations(void)
 {
+       QReadLocker writeLockTranslations(&g_lamexp_translation.lock);
        return g_lamexp_translation.files.keys();
 }
 
@@ -1225,6 +1651,7 @@ QStringList lamexp_query_translations(void)
  */
 QString lamexp_translation_name(const QString &langId)
 {
+       QReadLocker writeLockTranslations(&g_lamexp_translation.lock);
        return g_lamexp_translation.names.value(langId.toLower(), QString());
 }
 
@@ -1233,10 +1660,20 @@ QString lamexp_translation_name(const QString &langId)
  */
 unsigned int lamexp_translation_sysid(const QString &langId)
 {
+       QReadLocker writeLockTranslations(&g_lamexp_translation.lock);
        return g_lamexp_translation.sysid.value(langId.toLower(), 0);
 }
 
 /*
+ * Get translation script id
+ */
+unsigned int lamexp_translation_country(const QString &langId)
+{
+       QReadLocker writeLockTranslations(&g_lamexp_translation.lock);
+       return g_lamexp_translation.cntry.value(langId.toLower(), 0);
+}
+
+/*
  * Install a new translator
  */
 bool lamexp_install_translator(const QString &langId)
@@ -1249,6 +1686,7 @@ bool lamexp_install_translator(const QString &langId)
        }
        else
        {
+               QReadLocker readLock(&g_lamexp_translation.lock);
                QString qmFile = g_lamexp_translation.files.value(langId.toLower(), QString());
                if(!qmFile.isEmpty())
                {
@@ -1268,33 +1706,66 @@ bool lamexp_install_translator(const QString &langId)
  */
 bool lamexp_install_translator_from_file(const QString &qmFile)
 {
+       QWriteLocker writeLock(&g_lamexp_currentTranslator.lock);
        bool success = false;
 
-       if(!g_lamexp_currentTranslator)
+       if(!g_lamexp_currentTranslator.instance.isValid())
        {
-               g_lamexp_currentTranslator = new QTranslator();
+               g_lamexp_currentTranslator.instance.setValue<QObject*>(new QTranslator());
        }
 
        if(!qmFile.isEmpty())
        {
                QString qmPath = QFileInfo(qmFile).canonicalFilePath();
-               QApplication::removeTranslator(g_lamexp_currentTranslator);
-               success = g_lamexp_currentTranslator->load(qmPath);
-               QApplication::installTranslator(g_lamexp_currentTranslator);
-               if(!success)
+               QTranslator *poTranslator = dynamic_cast<QTranslator*>(g_lamexp_currentTranslator.instance.value<QObject*>());
+               QApplication::removeTranslator(poTranslator);
+               if(success = poTranslator->load(qmPath))
+               {
+                       QApplication::installTranslator(poTranslator);
+               }
+               else
                {
                        qWarning("Failed to load translation:\n\"%s\"", qmPath.toLatin1().constData());
                }
        }
        else
        {
-               QApplication::removeTranslator(g_lamexp_currentTranslator);
+               QApplication::removeTranslator(dynamic_cast<QTranslator*>(g_lamexp_currentTranslator.instance.value<QObject*>()));
                success = true;
        }
 
        return success;
 }
 
+const QStringList &lamexp_arguments(void)
+{
+       QReadLocker readLock(&g_lamexp_argv.lock);
+       
+       if(g_lamexp_argv.list.isEmpty())
+       {
+               readLock.unlock();
+               QWriteLocker writeLock(&g_lamexp_argv.lock);
+
+               int nArgs = 0;
+               LPWSTR *szArglist = CommandLineToArgvW(GetCommandLineW(), &nArgs);
+
+               if(NULL != szArglist)
+               {
+                       for(int i = 0; i < nArgs; i++)
+                       {
+                               g_lamexp_argv.list << WCHAR2QSTR(szArglist[i]);
+                       }
+                       LocalFree(szArglist);
+               }
+               else
+               {
+                       qWarning("CommandLineToArgvW() has failed !!!");
+               }
+       }
+
+       return g_lamexp_argv.list;
+}
+
 /*
  * Locate known folder on local system
  */
@@ -1311,39 +1782,57 @@ QString lamexp_known_folder(lamexp_known_folder_t folder_id)
        static const GUID GUID_PROGRAM_FILES = {0x905e63b6,0xc1bf,0x494e,{0xb2,0x9c,0x65,0xb7,0x32,0xd3,0xd2,0x1a}};
        static const GUID GUID_SYSTEM_FOLDER = {0x1AC14E77,0x02E7,0x4E5D,{0xB7,0x44,0x2E,0xB1,0xAE,0x51,0x98,0xB7}};
 
-       static QLibrary *Kernel32Lib = NULL;
-       static SHGetKnownFolderPathFun SHGetKnownFolderPathPtr = NULL;
-       static SHGetFolderPathFun SHGetFolderPathPtr = NULL;
-
-       if((!SHGetKnownFolderPathPtr) && (!SHGetFolderPathPtr))
-       {
-               if(!Kernel32Lib) Kernel32Lib = new QLibrary("shell32.dll");
-               SHGetKnownFolderPathPtr = (SHGetKnownFolderPathFun) Kernel32Lib->resolve("SHGetKnownFolderPath");
-               SHGetFolderPathPtr = (SHGetFolderPathFun) Kernel32Lib->resolve("SHGetFolderPathW");
-       }
+       QReadLocker readLock(&g_lamexp_folder.lock);
 
        int folderCSIDL = -1;
        GUID folderGUID = {0x0000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}};
+       size_t folderCacheId = size_t(-1);
 
        switch(folder_id)
        {
        case lamexp_folder_localappdata:
+               folderCacheId = 0;
                folderCSIDL = CSIDL_LOCAL_APPDATA;
                folderGUID = GUID_LOCAL_APPDATA;
                break;
        case lamexp_folder_programfiles:
+               folderCacheId = 1;
                folderCSIDL = CSIDL_PROGRAM_FILES;
                folderGUID = GUID_PROGRAM_FILES;
                break;
        case lamexp_folder_systemfolder:
+               folderCacheId = 2;
                folderCSIDL = CSIDL_SYSTEM_FOLDER;
                folderGUID = GUID_SYSTEM_FOLDER;
                break;
        default:
+               qWarning("Invalid 'known' folder was requested!");
                return QString();
                break;
        }
 
+       //Already in cache?
+       if(!g_lamexp_folder.knownFolders[folderCacheId].isEmpty())
+       {
+               return g_lamexp_folder.knownFolders[folderCacheId];
+       }
+
+       readLock.unlock();
+       QWriteLocker writeLock(&g_lamexp_folder.lock);
+
+       static SHGetKnownFolderPathFun SHGetKnownFolderPathPtr = NULL;
+       static SHGetFolderPathFun SHGetFolderPathPtr = NULL;
+
+       if((!SHGetKnownFolderPathPtr) && (!SHGetFolderPathPtr))
+       {
+               QLibrary kernel32Lib("shell32.dll");
+               if(kernel32Lib.load())
+               {
+                       SHGetKnownFolderPathPtr = (SHGetKnownFolderPathFun) kernel32Lib.resolve("SHGetKnownFolderPath");
+                       SHGetFolderPathPtr = (SHGetFolderPathFun) kernel32Lib.resolve("SHGetFolderPathW");
+               }
+       }
+
        QString folder;
 
        if(SHGetKnownFolderPathPtr)
@@ -1383,6 +1872,12 @@ QString lamexp_known_folder(lamexp_known_folder_t folder_id)
                delete [] path;
        }
 
+       //Update cache
+       if(!folder.isEmpty())
+       {
+               g_lamexp_folder.knownFolders[folderCacheId] = folder;
+       }
+
        return folder;
 }
 
@@ -1425,17 +1920,26 @@ bool lamexp_themes_enabled(void)
 {
        typedef int (WINAPI *IsAppThemedFun)(void);
        
-       bool isAppThemed = false;
-       QLibrary uxTheme(QString("%1/UxTheme.dll").arg(lamexp_known_folder(lamexp_folder_systemfolder)));
-       IsAppThemedFun IsAppThemedPtr = (IsAppThemedFun) uxTheme.resolve("IsAppThemed");
+       static bool isAppThemed = false;
+       static bool isAppThemed_initialized = false;
 
-       if(IsAppThemedPtr)
+       if(!isAppThemed_initialized)
        {
-               isAppThemed = IsAppThemedPtr();
-               if(!isAppThemed)
+               IsAppThemedFun IsAppThemedPtr = NULL;
+               QLibrary uxTheme(QString("%1/UxTheme.dll").arg(lamexp_known_folder(lamexp_folder_systemfolder)));
+               if(uxTheme.load())
                {
-                       qWarning("Theme support is disabled for this process!");
+                       IsAppThemedPtr = (IsAppThemedFun) uxTheme.resolve("IsAppThemed");
+               }
+               if(IsAppThemedPtr)
+               {
+                       isAppThemed = IsAppThemedPtr();
+                       if(!isAppThemed)
+                       {
+                               qWarning("Theme support is disabled for this process!");
+                       }
                }
+               isAppThemed_initialized = true;
        }
 
        return isAppThemed;
@@ -1444,23 +1948,43 @@ bool lamexp_themes_enabled(void)
 /*
  * Get number of free bytes on disk
  */
-__int64 lamexp_free_diskspace(const QString &path)
+unsigned __int64 lamexp_free_diskspace(const QString &path, bool *ok)
 {
        ULARGE_INTEGER freeBytesAvailable, totalNumberOfBytes, totalNumberOfFreeBytes;
        if(GetDiskFreeSpaceExW(reinterpret_cast<const wchar_t*>(QDir::toNativeSeparators(path).utf16()), &freeBytesAvailable, &totalNumberOfBytes, &totalNumberOfFreeBytes))
        {
+               if(ok) *ok = true;
                return freeBytesAvailable.QuadPart;
        }
        else
        {
+               if(ok) *ok = false;
                return 0;
        }
 }
 
 /*
+ * Check if computer does support hibernation
+ */
+bool lamexp_is_hibernation_supported(void)
+{
+       bool hibernationSupported = false;
+
+       SYSTEM_POWER_CAPABILITIES pwrCaps;
+       SecureZeroMemory(&pwrCaps, sizeof(SYSTEM_POWER_CAPABILITIES));
+       
+       if(GetPwrCapabilities(&pwrCaps))
+       {
+               hibernationSupported = pwrCaps.SystemS4 && pwrCaps.HiberFilePresent;
+       }
+
+       return hibernationSupported;
+}
+
+/*
  * Shutdown the computer
  */
-bool lamexp_shutdown_computer(const QString &message, const unsigned long timeout, const bool forceShutdown)
+bool lamexp_shutdown_computer(const QString &message, const unsigned long timeout, const bool forceShutdown, const bool hibernate)
 {
        HANDLE hToken = NULL;
 
@@ -1475,8 +1999,15 @@ bool lamexp_shutdown_computer(const QString &message, const unsigned long timeou
                {
                        if(AdjustTokenPrivileges(hToken, FALSE, &privileges, NULL, NULL, NULL))
                        {
+                               if(hibernate)
+                               {
+                                       if(SetSuspendState(TRUE, TRUE, TRUE))
+                                       {
+                                               return true;
+                                       }
+                               }
                                const DWORD reason = SHTDN_REASON_MAJOR_APPLICATION | SHTDN_REASON_FLAG_PLANNED;
-                               return InitiateSystemShutdownEx(NULL, const_cast<wchar_t*>(QWCHAR(message)), timeout, forceShutdown, FALSE, reason);
+                               return InitiateSystemShutdownEx(NULL, const_cast<wchar_t*>(QWCHAR(message)), timeout, forceShutdown ? TRUE : FALSE, FALSE, reason);
                        }
                }
        }
@@ -1541,6 +2072,7 @@ void lamexp_blink_window(QWidget *poWindow, unsigned int count, unsigned int del
 const QString lamexp_clean_filename(const QString &str)
 {
        QString newStr(str);
+       
        newStr.replace("\\", "-");
        newStr.replace(" / ", ", ");
        newStr.replace("/", ",");
@@ -1550,7 +2082,8 @@ const QString lamexp_clean_filename(const QString &str)
        newStr.replace("<", "[");
        newStr.replace(">", "]");
        newStr.replace("|", "!");
-       return newStr;
+       
+       return newStr.simplified();
 }
 
 /*
@@ -1569,44 +2102,97 @@ const QString lamexp_clean_filepath(const QString &str)
 }
 
 /*
+ * Get a list of all available Qt Text Codecs
+ */
+QStringList lamexp_available_codepages(bool noAliases)
+{
+       QStringList codecList;
+       
+       QList<QByteArray> availableCodecs = QTextCodec::availableCodecs();
+       while(!availableCodecs.isEmpty())
+       {
+               QByteArray current = availableCodecs.takeFirst();
+               if(!(current.startsWith("system") || current.startsWith("System")))
+               {
+                       codecList << QString::fromLatin1(current.constData(), current.size());
+                       if(noAliases)
+                       {
+                               if(QTextCodec *currentCodec = QTextCodec::codecForName(current.constData()))
+                               {
+                                       
+                                       QList<QByteArray> aliases = currentCodec->aliases();
+                                       while(!aliases.isEmpty()) availableCodecs.removeAll(aliases.takeFirst());
+                               }
+                       }
+               }
+       }
+
+       return codecList;
+}
+
+/*
+ * Application entry point (runs before static initializers)
+ */
+extern "C"
+{
+       int WinMainCRTStartup(void);
+       
+       int lamexp_entry_point(void)
+       {
+               if((!LAMEXP_DEBUG) && lamexp_check_for_debugger())
+               {
+                       FatalAppExit(0, L"Not a debug build. Please unload debugger and try again!");
+                       TerminateProcess(GetCurrentProcess(), -1);
+               }
+               return WinMainCRTStartup();
+       }
+}
+
+/*
  * Finalization function (final clean-up)
  */
 void lamexp_finalization(void)
 {
+       qDebug("lamexp_finalization()");
+       
        //Free all tools
-       if(!g_lamexp_tool_registry.isEmpty())
+       if(!g_lamexp_tools.registry.isEmpty())
        {
-               QStringList keys = g_lamexp_tool_registry.keys();
+               QStringList keys = g_lamexp_tools.registry.keys();
                for(int i = 0; i < keys.count(); i++)
                {
-                       LAMEXP_DELETE(g_lamexp_tool_registry[keys.at(i)]);
+                       LAMEXP_DELETE(g_lamexp_tools.registry[keys.at(i)]);
                }
-               g_lamexp_tool_registry.clear();
-               g_lamexp_tool_versions.clear();
+               g_lamexp_tools.registry.clear();
+               g_lamexp_tools.versions.clear();
        }
        
        //Delete temporary files
-       if(!g_lamexp_temp_folder.isEmpty())
+       if(!g_lamexp_folder.temp.isEmpty())
        {
                for(int i = 0; i < 100; i++)
                {
-                       if(lamexp_clean_folder(g_lamexp_temp_folder))
+                       if(lamexp_clean_folder(g_lamexp_folder.temp))
                        {
                                break;
                        }
                        Sleep(125);
                }
-               g_lamexp_temp_folder.clear();
+               g_lamexp_folder.temp.clear();
        }
 
        //Clear languages
-       if(g_lamexp_currentTranslator)
+       if(g_lamexp_currentTranslator.instance.isValid())
        {
-               QApplication::removeTranslator(g_lamexp_currentTranslator);
-               LAMEXP_DELETE(g_lamexp_currentTranslator);
+               QTranslator *poTranslator = dynamic_cast<QTranslator*>(g_lamexp_currentTranslator.instance.value<QObject*>());
+               g_lamexp_currentTranslator.instance.clear();
+               QApplication::removeTranslator(poTranslator);
+               LAMEXP_DELETE(poTranslator);
        }
        g_lamexp_translation.files.clear();
        g_lamexp_translation.names.clear();
+       g_lamexp_translation.cntry.clear();
+       g_lamexp_translation.sysid.clear();
 
        //Destroy Qt application object
        QApplication *application = dynamic_cast<QApplication*>(QApplication::instance());
@@ -1617,6 +2203,33 @@ void lamexp_finalization(void)
        LAMEXP_DELETE(g_lamexp_ipc_ptr.sharedmem);
        LAMEXP_DELETE(g_lamexp_ipc_ptr.semaphore_read);
        LAMEXP_DELETE(g_lamexp_ipc_ptr.semaphore_write);
+       LAMEXP_DELETE(g_lamexp_ipc_ptr.semaphore_read_mutex);
+       LAMEXP_DELETE(g_lamexp_ipc_ptr.semaphore_write_mutex);
+
+       //Free STDOUT and STDERR buffers
+       if(g_lamexp_console_attached)
+       {
+               if(std::filebuf *tmp = dynamic_cast<std::filebuf*>(std::cout.rdbuf()))
+               {
+                       std::cout.rdbuf(NULL);
+                       LAMEXP_DELETE(tmp);
+               }
+               if(std::filebuf *tmp = dynamic_cast<std::filebuf*>(std::cerr.rdbuf()))
+               {
+                       std::cerr.rdbuf(NULL);
+                       LAMEXP_DELETE(tmp);
+               }
+       }
+
+       //Close log file
+       if(g_lamexp_log_file)
+       {
+               fclose(g_lamexp_log_file);
+               g_lamexp_log_file = NULL;
+       }
+
+       //Free CLI Arguments
+       g_lamexp_argv.list.clear();
 }
 
 /*