2010-11-08 19:29:36 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// LameXP - Audio Encoder Front-End
|
2012-01-02 00:52:27 +01:00
|
|
|
// Copyright (C) 2004-2012 LoRd_MuldeR <MuldeR2@GMX.de>
|
2010-11-08 19:29:36 +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
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "Thread_MessageHandler.h"
|
|
|
|
|
|
|
|
#include "Global.h"
|
|
|
|
|
|
|
|
#include <QSharedMemory>
|
|
|
|
#include <QSystemSemaphore>
|
2010-11-08 21:47:35 +01:00
|
|
|
#include <QMessageBox>
|
|
|
|
|
|
|
|
#include <limits.h>
|
2010-11-08 19:29:36 +01:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// Constructor
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
MessageHandlerThread::MessageHandlerThread(void)
|
|
|
|
{
|
2010-11-08 21:47:35 +01:00
|
|
|
m_aborted = false;
|
|
|
|
m_parameter = new char[4096];
|
|
|
|
}
|
|
|
|
|
|
|
|
MessageHandlerThread::~MessageHandlerThread(void)
|
|
|
|
{
|
|
|
|
delete [] m_parameter;
|
2010-11-08 19:29:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MessageHandlerThread::run()
|
|
|
|
{
|
2010-11-08 21:47:35 +01:00
|
|
|
m_aborted = false;
|
|
|
|
setTerminationEnabled(true);
|
|
|
|
|
|
|
|
while(!m_aborted)
|
|
|
|
{
|
|
|
|
unsigned int command = 0;
|
|
|
|
lamexp_ipc_read(&command, m_parameter, 4096);
|
|
|
|
if(!command) continue;
|
|
|
|
|
|
|
|
switch(command)
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
emit fileReceived(QString::fromUtf8(m_parameter));
|
|
|
|
break;
|
2011-06-11 17:18:30 +02:00
|
|
|
case 2:
|
|
|
|
emit folderReceived(QString::fromUtf8(m_parameter), false);
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
emit folderReceived(QString::fromUtf8(m_parameter), true);
|
|
|
|
break;
|
2010-11-09 22:06:11 +01:00
|
|
|
case 666:
|
|
|
|
if(!_stricmp(m_parameter, "Force!"))
|
|
|
|
{
|
|
|
|
ExitProcess(-2);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
emit killSignalReceived();
|
|
|
|
}
|
|
|
|
break;
|
2010-11-08 21:47:35 +01:00
|
|
|
case UINT_MAX:
|
|
|
|
emit otherInstanceDetected();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
qWarning("Received an unknown IPC message! (command=%u)", command);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MessageHandlerThread::stop(void)
|
|
|
|
{
|
|
|
|
if(!m_aborted)
|
2010-11-08 19:29:36 +01:00
|
|
|
{
|
2010-11-08 21:47:35 +01:00
|
|
|
m_aborted = true;
|
2011-12-29 14:42:20 +01:00
|
|
|
lamexp_ipc_send(0, NULL);
|
2010-11-08 19:29:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// EVENTS
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/*NONE*/
|