Bump version + updated changelog.
[simple-x264-launcher.git] / src / main.cpp
blob2d3c3f066e0792bb91fe8f83b1406fc43c7828c7
1 ///////////////////////////////////////////////////////////////////////////////
2 // Simple x264 Launcher
3 // Copyright (C) 2004-2018 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.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License along
16 // with this program; if not, write to the Free Software Foundation, Inc.,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 // http://www.gnu.org/licenses/gpl-2.0.txt
20 ///////////////////////////////////////////////////////////////////////////////
22 //Internal
23 #include "global.h"
24 #include "win_main.h"
25 #include "cli.h"
26 #include "ipc.h"
27 #include "thread_ipc_send.h"
29 //MUtils
30 #include <MUtils/Startup.h>
31 #include <MUtils/OSSupport.h>
32 #include <MUtils/CPUFeatures.h>
33 #include <MUtils/IPCChannel.h>
34 #include <MUtils/Version.h>
36 //Qt includes
37 #include <QApplication>
38 #include <QDate>
39 #include <QPlastiqueStyle>
41 //Windows includes
42 #define NOMINMAX
43 #define WIN32_LEAN_AND_MEAN
44 #include <Windows.h>
46 ///////////////////////////////////////////////////////////////////////////////
47 // Helper functions
48 ///////////////////////////////////////////////////////////////////////////////
50 static void x264_print_logo(void)
52 //Print version info
53 qDebug("Simple x264 Launcher v%u.%02u.%u - use 64-Bit x264 with 32-Bit Avisynth", x264_version_major(), x264_version_minor(), x264_version_build());
54 qDebug("Copyright (c) 2004-%04d LoRd_MuldeR <mulder2@gmx.de>. Some rights reserved.", qMax(MUtils::Version::app_build_date().year(), MUtils::OS::current_date().year()));
55 qDebug("Built on %s at %s with %s for Win-%s.\n", MUTILS_UTF8(MUtils::Version::app_build_date().toString(Qt::ISODate)), MUTILS_UTF8(MUtils::Version::app_build_time().toString(Qt::ISODate)), MUtils::Version::compiler_version(), MUtils::Version::compiler_arch());
57 //print license info
58 qDebug("This program is free software: you can redistribute it and/or modify");
59 qDebug("it under the terms of the GNU General Public License <http://www.gnu.org/>.");
60 qDebug("Note that this program is distributed with ABSOLUTELY NO WARRANTY.\n");
62 //Print library version
63 qDebug("This application is powerd by MUtils library v%u.%02u (%s, %s).\n", MUtils::Version::lib_version_major(), MUtils::Version::lib_version_minor(), MUTILS_UTF8(MUtils::Version::lib_build_date().toString(Qt::ISODate)), MUTILS_UTF8(MUtils::Version::lib_build_time().toString(Qt::ISODate)));
65 //Print warning, if this is a "debug" build
66 if(MUTILS_DEBUG)
68 qWarning("---------------------------------------------------------");
69 qWarning("DEBUG BUILD: DO NOT RELEASE THIS BINARY TO THE PUBLIC !!!");
70 qWarning("---------------------------------------------------------\n");
74 static int x264_initialize_ipc(MUtils::IPCChannel *const ipcChannel)
76 int iResult = 0;
78 if((iResult = ipcChannel->initialize()) != MUtils::IPCChannel::RET_SUCCESS_MASTER)
80 if(iResult == MUtils::IPCChannel::RET_SUCCESS_SLAVE)
82 qDebug("Simple x264 Launcher is already running, connecting to running instance...");
83 QScopedPointer<IPCThread_Send> messageProducerThread(new IPCThread_Send(ipcChannel));
84 messageProducerThread->start();
85 if(!messageProducerThread->wait(30000))
87 qWarning("MessageProducer thread has encountered timeout -> going to kill!");
88 messageProducerThread->terminate();
89 messageProducerThread->wait();
90 MUtils::OS::system_message_err(L"Simple x264 Launcher", L"Simple x264 Launcher is already running, but the running instance doesn't respond!");
91 return -1;
93 return 0;
95 else
97 qFatal("The IPC initialization has failed!");
98 return -1;
102 return 1;
105 ///////////////////////////////////////////////////////////////////////////////
106 // Main function
107 ///////////////////////////////////////////////////////////////////////////////
109 static int simple_x264_main(int &argc, char **argv)
111 int iResult = -1;
113 //Print logo
114 x264_print_logo();
116 //Get CLI arguments
117 const MUtils::OS::ArgumentMap &arguments = MUtils::OS::arguments();
119 //Enumerate CLI arguments
120 if(!arguments.isEmpty())
122 qDebug("Command-Line Arguments:");
123 foreach(const QString &key, arguments.uniqueKeys())
125 foreach(const QString &val, arguments.values(key))
127 if(!val.isEmpty())
129 qDebug("--%s = \"%s\"", MUTILS_UTF8(key), MUTILS_UTF8(val));
130 continue;
132 qDebug("--%s", MUTILS_UTF8(key));
135 qDebug(" ");
138 //Detect CPU capabilities
139 const MUtils::CPUFetaures::cpu_info_t cpuFeatures = MUtils::CPUFetaures::detect();
140 qDebug(" CPU vendor id : %s (Intel=%s)", cpuFeatures.idstr, MUTILS_BOOL2STR(cpuFeatures.vendor & MUtils::CPUFetaures::VENDOR_INTEL));
141 qDebug("CPU brand string : %s", cpuFeatures.brand);
142 qDebug(" CPU signature : Family=%d, Model=%d, Stepping=%d", cpuFeatures.family, cpuFeatures.model, cpuFeatures.stepping);
143 qDebug("CPU architecture : %s", cpuFeatures.x64 ? "x64 (64-Bit)" : "x86 (32-Bit)");
144 qDebug("CPU capabilities : CMOV=%s, MMX=%s, SSE=%s, SSE2=%s, SSE3=%s, SSSE3=%s", MUTILS_BOOL2STR(cpuFeatures.features & MUtils::CPUFetaures::FLAG_CMOV), MUTILS_BOOL2STR(cpuFeatures.features & MUtils::CPUFetaures::FLAG_MMX), MUTILS_BOOL2STR(cpuFeatures.features & MUtils::CPUFetaures::FLAG_SSE), MUTILS_BOOL2STR(cpuFeatures.features & MUtils::CPUFetaures::FLAG_SSE2), MUTILS_BOOL2STR(cpuFeatures.features & MUtils::CPUFetaures::FLAG_SSE3), MUTILS_BOOL2STR(cpuFeatures.features & MUtils::CPUFetaures::FLAG_SSSE3));
145 qDebug("CPU capabilities : SSE4.1=%s, SSE4.2=%s, AVX=%s, AVX2=%s, FMA3=%s, LZCNT=%s", MUTILS_BOOL2STR(cpuFeatures.features & MUtils::CPUFetaures::FLAG_SSE41), MUTILS_BOOL2STR(cpuFeatures.features & MUtils::CPUFetaures::FLAG_SSE42), MUTILS_BOOL2STR(cpuFeatures.features & MUtils::CPUFetaures::FLAG_AVX), MUTILS_BOOL2STR(cpuFeatures.features & MUtils::CPUFetaures::FLAG_AVX2), MUTILS_BOOL2STR(cpuFeatures.features & MUtils::CPUFetaures::FLAG_FMA3), MUTILS_BOOL2STR(cpuFeatures.features & MUtils::CPUFetaures::FLAG_LZCNT));
146 qDebug(" Number of CPU's : %d\n", cpuFeatures.count);
148 //Initialize Qt
149 QScopedPointer<QApplication> application(MUtils::Startup::create_qt(argc, argv, QLatin1String("Simple x264 Launcher")));
150 if(application.isNull())
152 return EXIT_FAILURE;
155 //Initialize application
156 application->setWindowIcon(QIcon(":/icons/movie.ico"));
157 application->setApplicationVersion(QString().sprintf("%d.%02d.%04d", x264_version_major(), x264_version_minor(), x264_version_build()));
159 //Initialize the IPC handler class
160 QScopedPointer<MUtils::IPCChannel> ipcChannel(new MUtils::IPCChannel("simple-x264-launcher", x264_version_build(), "instance"));
161 if((iResult = x264_initialize_ipc(ipcChannel.data())) < 1)
163 return (iResult == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
166 //Running in portable mode?
167 if(x264_is_portable())
169 qDebug("Application is running in portable mode!\n");
172 //Set style
173 if(!arguments.contains(CLI_PARAM_NO_GUI_STYLE))
175 qApp->setStyle(new QPlastiqueStyle());
178 //Create Main Window
179 QScopedPointer<MainWindow> mainWindow(new MainWindow(cpuFeatures, ipcChannel.data()));
180 mainWindow->show();
182 //Run application
183 int ret = qApp->exec();
185 //Exit program
186 return ret;
189 ///////////////////////////////////////////////////////////////////////////////
190 // Applicaton entry point
191 ///////////////////////////////////////////////////////////////////////////////
193 int main(int argc, char* argv[])
195 return MUtils::Startup::startup(argc, argv, simple_x264_main, "Simple x264 Launcher", x264_is_prerelease());