1 ///////////////////////////////////////////////////////////////////////////////
2 // Simple x264 Launcher
3 // Copyright (C) 2004-2023 LoRd_MuldeR <MuldeR2@GMX.de>
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"
31 #include <MUtils/Global.h>
32 #include <MUtils/IPCChannel.h>
33 #include <MUtils/OSSupport.h>
36 #include <QStringList>
37 #include <QApplication>
44 ////////////////////////////////////////////////////////////
46 ////////////////////////////////////////////////////////////
48 IPCThread_Send::IPCThread_Send(MUtils::IPCChannel
*const ipcChannel
)
50 m_ipcChannel(ipcChannel
)
54 IPCThread_Send::~IPCThread_Send(void)
58 ////////////////////////////////////////////////////////////
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();
74 bool commandSent
= false;
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!");
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!");
112 qWarning("Invalid number of arguments for parameter \"--%s\" detected!", CLI_PARAM_ADD_JOB
);
118 //If no argument has been sent yet, send a ping!
121 if(!m_ipcChannel
->send(IPC_OPCODE_PING
, 0, QStringList()))
123 qWarning("Failed to send IPC message!");
130 ////////////////////////////////////////////////////////////
132 ////////////////////////////////////////////////////////////