Some tweaks to VapourSynth detection code, which should fix detection of the "portabl...
[simple-x264-launcher.git] / src / thread_ipc_send.cpp
blob2358cd65de450b10f75d49d1ac3acc18d3081265
1 ///////////////////////////////////////////////////////////////////////////////
2 // Simple x264 Launcher
3 // Copyright (C) 2004-2024 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.
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.
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.
20 // http://www.gnu.org/licenses/gpl-2.0.txt
21 ///////////////////////////////////////////////////////////////////////////////
23 #include "thread_ipc_send.h"
25 //Internal
26 #include "Global.h"
27 #include "cli.h"
28 #include "ipc.h"
30 //MUtils
31 #include <MUtils/Global.h>
32 #include <MUtils/IPCChannel.h>
33 #include <MUtils/OSSupport.h>
35 //Qt
36 #include <QStringList>
37 #include <QApplication>
38 #include <QFileInfo>
39 #include <QDir>
41 //CRT
42 #include <limits.h>
44 ////////////////////////////////////////////////////////////
45 // Constructor
46 ////////////////////////////////////////////////////////////
48 IPCThread_Send::IPCThread_Send(MUtils::IPCChannel *const ipcChannel)
50 m_ipcChannel(ipcChannel)
54 IPCThread_Send::~IPCThread_Send(void)
58 ////////////////////////////////////////////////////////////
59 // Thread Main
60 ////////////////////////////////////////////////////////////
62 void IPCThread_Send::run(void)
64 setTerminationEnabled(true);
65 AbstractThread::run();
68 int IPCThread_Send::threadMain(void)
70 bool bSentFiles = false;
71 const MUtils::OS::ArgumentMap &args = MUtils::OS::arguments();
73 quint32 flags = 0;
74 bool commandSent = false;
76 //Handle flags
77 if(args.contains(CLI_PARAM_FORCE_START))
79 flags = ((flags | IPC_FLAG_FORCE_START) & (~IPC_FLAG_FORCE_ENQUEUE));
81 if(args.contains(CLI_PARAM_FORCE_ENQUEUE))
83 flags = ((flags | IPC_FLAG_FORCE_ENQUEUE) & (~IPC_FLAG_FORCE_START));
86 //Process all command-line arguments
87 if(args.contains(CLI_PARAM_ADD_FILE))
89 foreach(const QString &fileName, args.values(CLI_PARAM_ADD_FILE))
91 if(!m_ipcChannel->send(IPC_OPCODE_ADD_FILE, flags, QStringList() << fileName))
93 qWarning("Failed to send IPC message!");
95 commandSent = true;
98 if(args.contains(CLI_PARAM_ADD_JOB))
100 foreach(const QString &options, args.values(CLI_PARAM_ADD_JOB))
102 const QStringList optionValues = options.split('|', QString::SkipEmptyParts);
103 if(optionValues.count() == 3)
105 if(!m_ipcChannel->send(IPC_OPCODE_ADD_JOB, flags, optionValues))
107 qWarning("Failed to send IPC message!");
110 else
112 qWarning("Invalid number of arguments for parameter \"--%s\" detected!", CLI_PARAM_ADD_JOB);
114 commandSent = true;
118 //If no argument has been sent yet, send a ping!
119 if(!commandSent)
121 if(!m_ipcChannel->send(IPC_OPCODE_PING, 0, QStringList()))
123 qWarning("Failed to send IPC message!");
127 return 1;
130 ////////////////////////////////////////////////////////////
131 // EVENTS
132 ////////////////////////////////////////////////////////////
134 /*NONE*/