2012-01-28 16:40:14 +01:00
///////////////////////////////////////////////////////////////////////////////
// Simple x264 Launcher
2015-01-31 19:56:04 +01:00
// Copyright (C) 2004-2015 LoRd_MuldeR <MuldeR2@GMX.de>
2012-01-28 16:40:14 +01:00
//
// 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
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
// http://www.gnu.org/licenses/gpl-2.0.txt
///////////////////////////////////////////////////////////////////////////////
2015-02-01 16:33:31 +01:00
//Internal
2012-01-28 16:40:14 +01:00
# include "global.h"
# include "win_main.h"
2014-02-01 19:19:06 +01:00
# include "cli.h"
2014-01-27 20:21:29 +01:00
# include "ipc.h"
2012-02-08 00:29:47 +01:00
# include "taskbar7.h"
2015-02-01 16:33:31 +01:00
# include "thread_ipc_send.h"
//MUtils
# include <MUtils/Startup.h>
# include <MUtils/OSSupport.h>
# include <MUtils/CPUFeatures.h>
# include <MUtils/IPCChannel.h>
# include <MUtils/Version.h>
2012-01-28 16:40:14 +01:00
//Qt includes
2013-11-14 02:29:18 +01:00
# include <QApplication>
2012-01-28 16:40:14 +01:00
# include <QDate>
2012-01-28 18:55:40 +01:00
# include <QPlastiqueStyle>
2012-01-28 16:40:14 +01:00
2013-11-03 18:34:20 +01:00
//Windows includes
# define NOMINMAX
# define WIN32_LEAN_AND_MEAN
# include <Windows.h>
2012-01-28 16:40:14 +01:00
///////////////////////////////////////////////////////////////////////////////
2015-02-01 16:33:31 +01:00
// Helper functions
2012-01-28 16:40:14 +01:00
///////////////////////////////////////////////////////////////////////////////
2015-02-01 16:33:31 +01:00
static void x264_print_logo ( void )
2012-01-28 16:40:14 +01:00
{
//Print version info
2012-02-11 00:19:24 +01:00
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 ( ) ) ;
2015-02-01 16:33:31 +01:00
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 ( ) ) ) ;
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 ( ) ) ;
2012-01-28 16:40:14 +01:00
//print license info
qDebug ( " This program is free software: you can redistribute it and/or modify " ) ;
qDebug ( " it under the terms of the GNU General Public License <http://www.gnu.org/>. " ) ;
qDebug ( " Note that this program is distributed with ABSOLUTELY NO WARRANTY. \n " ) ;
2015-02-01 16:33:31 +01:00
//Print library version
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 ) ) ) ;
2012-01-28 16:40:14 +01:00
//Print warning, if this is a "debug" build
if ( X264_DEBUG )
{
qWarning ( " --------------------------------------------------------- " ) ;
qWarning ( " DEBUG BUILD: DO NOT RELEASE THIS BINARY TO THE PUBLIC !!! " ) ;
qWarning ( " --------------------------------------------------------- \n " ) ;
}
2015-02-01 16:33:31 +01:00
}
2012-01-28 16:40:14 +01:00
2015-02-01 16:33:31 +01:00
static int x264_initialize_ipc ( MUtils : : IPCChannel * const ipcChannel )
{
int iResult = 0 ;
2014-02-02 15:54:39 +01:00
2015-02-01 16:33:31 +01:00
if ( ( iResult = ipcChannel - > initialize ( ) ) ! = MUtils : : IPCChannel : : RET_SUCCESS_MASTER )
2014-01-27 20:21:29 +01:00
{
2015-02-01 16:33:31 +01:00
if ( iResult = = MUtils : : IPCChannel : : RET_SUCCESS_SLAVE )
2014-01-27 20:21:29 +01:00
{
2015-02-01 16:33:31 +01:00
qDebug ( " Simple x264 Launcher is already running, connecting to running instance... " ) ;
QScopedPointer < IPCThread_Send > messageProducerThread ( new IPCThread_Send ( ipcChannel ) ) ;
messageProducerThread - > start ( ) ;
if ( ! messageProducerThread - > wait ( 30000 ) )
{
qWarning ( " MessageProducer thread has encountered timeout -> going to kill! " ) ;
messageProducerThread - > terminate ( ) ;
messageProducerThread - > wait ( ) ;
MUtils : : OS : : system_message_err ( L " Simple x264 Launcher " , L " Simple x264 Launcher is already running, but the running instance doesn't respond! " ) ;
return - 1 ;
}
2014-01-27 20:21:29 +01:00
return 0 ;
}
2015-02-01 16:33:31 +01:00
else
{
qFatal ( " The IPC initialization has failed! " ) ;
return - 1 ;
}
2014-01-27 20:21:29 +01:00
}
2015-02-01 16:33:31 +01:00
return 1 ;
}
///////////////////////////////////////////////////////////////////////////////
// Main function
///////////////////////////////////////////////////////////////////////////////
static int simple_x264_main ( int & argc , char * * argv )
{
int iResult = - 1 ;
//Print logo
x264_print_logo ( ) ;
//Get CLI arguments
const MUtils : : OS : : ArgumentMap & arguments = MUtils : : OS : : arguments ( ) ;
//Enumerate CLI arguments
if ( ! arguments . isEmpty ( ) )
2014-01-27 20:21:29 +01:00
{
2015-02-01 16:33:31 +01:00
qDebug ( " Command-Line Arguments: " ) ;
foreach ( const QString & key , arguments . uniqueKeys ( ) )
{
foreach ( const QString & val , arguments . values ( key ) )
{
if ( ! val . isEmpty ( ) )
{
qDebug ( " --%s = \" %s \" " , MUTILS_UTF8 ( key ) , MUTILS_UTF8 ( val ) ) ;
continue ;
}
qDebug ( " --%s " , MUTILS_UTF8 ( key ) ) ;
}
}
qDebug ( " " ) ;
2014-01-27 20:21:29 +01:00
}
2015-02-01 16:33:31 +01:00
//Detect CPU capabilities
const MUtils : : CPUFetaures : : cpu_info_t cpuFeatures = MUtils : : CPUFetaures : : detect ( ) ;
qDebug ( " CPU vendor id : %s (Intel=%s) " , cpuFeatures . vendor , MUTILS_BOOL2STR ( cpuFeatures . intel ) ) ;
qDebug ( " CPU brand string : %s " , cpuFeatures . brand ) ;
qDebug ( " CPU signature : Family=%d Model=%d Stepping=%d " , cpuFeatures . family , cpuFeatures . model , cpuFeatures . stepping ) ;
qDebug ( " CPU capabilities : MMX=%s SSE=%s SSE2=%s SSE3=%s SSSE3=%s SSE4=%s SSE4.2=%s x64=%s " , 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 ) , MUTILS_BOOL2STR ( cpuFeatures . features & MUtils : : CPUFetaures : : FLAG_SSE4 ) , MUTILS_BOOL2STR ( cpuFeatures . features & MUtils : : CPUFetaures : : FLAG_SSE42 ) , MUTILS_BOOL2STR ( cpuFeatures . x64 ) ) ;
qDebug ( " Number of CPU's : %d \n " , cpuFeatures . count ) ;
2012-01-28 16:40:14 +01:00
//Initialize Qt
2015-02-01 16:33:31 +01:00
QScopedPointer < QApplication > application ( MUtils : : Startup : : create_qt ( argc , argv , QLatin1String ( " LameXP - Audio Encoder Front-End " ) ) ) ;
if ( application . isNull ( ) )
2012-01-28 16:40:14 +01:00
{
2015-02-01 16:33:31 +01:00
return EXIT_FAILURE ;
2012-01-28 16:40:14 +01:00
}
2015-02-01 16:33:31 +01:00
//Initialize application
application - > setWindowIcon ( QIcon ( " :/icons/movie.ico " ) ) ;
application - > setApplicationVersion ( QString ( ) . sprintf ( " %d.%02d.%04d " , x264_version_major ( ) , x264_version_minor ( ) , x264_version_build ( ) ) ) ;
//Initialize the IPC handler class
QScopedPointer < MUtils : : IPCChannel > ipcChannel ( new MUtils : : IPCChannel ( " simple-x264-launcher " , x264_version_build ( ) , " instance " ) ) ;
if ( ( iResult = x264_initialize_ipc ( ipcChannel . data ( ) ) ) < 1 )
{
return ( iResult = = 0 ) ? EXIT_SUCCESS : EXIT_FAILURE ;
}
2012-02-10 01:58:45 +01:00
//Running in portable mode?
if ( x264_portable ( ) )
{
qDebug ( " Application is running in portable mode! \n " ) ;
}
2012-02-08 00:29:47 +01:00
//Taskbar init
WinSevenTaskbar : : init ( ) ;
2012-01-28 16:40:14 +01:00
2012-01-28 18:55:40 +01:00
//Set style
2015-02-01 16:33:31 +01:00
if ( ! arguments . contains ( CLI_PARAM_NO_GUI_STYLE ) )
2012-02-08 22:50:36 +01:00
{
qApp - > setStyle ( new QPlastiqueStyle ( ) ) ;
}
2012-01-28 18:55:40 +01:00
//Create Main Window
2015-02-01 21:05:17 +01:00
QScopedPointer < MainWindow > mainWindow ( new MainWindow ( cpuFeatures , ipcChannel . data ( ) ) ) ;
2015-02-01 16:33:31 +01:00
mainWindow - > show ( ) ;
2012-01-28 18:55:40 +01:00
//Run application
2012-01-28 16:40:14 +01:00
int ret = qApp - > exec ( ) ;
2012-02-08 00:29:47 +01:00
//Taskbar uninit
WinSevenTaskbar : : init ( ) ;
2012-01-28 18:55:40 +01:00
2015-02-01 16:33:31 +01:00
//Exit program
2012-01-28 16:40:14 +01:00
return ret ;
}
///////////////////////////////////////////////////////////////////////////////
// Applicaton entry point
///////////////////////////////////////////////////////////////////////////////
int main ( int argc , char * argv [ ] )
{
2015-02-01 16:33:31 +01:00
return MUtils : : Startup : : startup ( argc , argv , simple_x264_main , " Simple x264 Launcher " , true /*lamexp_version_demo()*/ ) ;
2012-01-28 16:40:14 +01:00
}