SingleApplication/singleapplication.cpp

293 lines
8.5 KiB
C++
Raw Normal View History

// The MIT License (MIT)
//
// Copyright (c) Itay Grudev 2015 - 2016
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
#include <cstdlib>
#include <QtCore/QMutex>
2016-05-05 02:59:07 +08:00
#include <QtCore/QSemaphore>
#include <QtCore/QSharedMemory>
#include <QtNetwork/QLocalSocket>
#include <QtNetwork/QLocalServer>
2012-12-23 06:12:38 +08:00
#ifdef Q_OS_UNIX
#include <signal.h>
#include <unistd.h>
#endif
#include "singleapplication.h"
2016-05-05 02:59:07 +08:00
struct InstancesInfo {
bool primary;
uint8_t secondary;
};
class SingleApplicationPrivate {
2016-05-05 02:59:07 +08:00
public:
Q_DECLARE_PUBLIC(SingleApplication)
2016-05-05 04:05:59 +08:00
SingleApplicationPrivate( SingleApplication *q_ptr ) : q_ptr( q_ptr ) {
2016-05-05 02:59:07 +08:00
server = NULL;
}
2016-05-05 02:59:07 +08:00
~SingleApplicationPrivate()
{
2016-05-05 02:59:07 +08:00
cleanUp();
}
2016-05-05 02:59:07 +08:00
void startPrimary( bool resetMemory )
{
Q_Q(SingleApplication);
#ifdef Q_OS_UNIX
// Handle any further termination signals to ensure the
// QSharedMemory block is deleted even if the process crashes
crashHandler();
#endif
// Successful creation means that no main process exists
// So we start a QLocalServer to listen for connections
QLocalServer::removeServer( memory->key() );
server = new QLocalServer();
2016-05-05 02:59:07 +08:00
server->listen( memory->key() );
QObject::connect(
server,
&QLocalServer::newConnection,
2016-05-05 02:59:07 +08:00
q,
&SingleApplication::slotConnectionEstablished
2016-05-05 02:59:07 +08:00
);
// Reset the number of connections
memory->lock();
InstancesInfo* inst = (InstancesInfo*)memory->data();
if( resetMemory ){
inst->primary = true;
inst->secondary = 0;
} else {
inst->primary = true;
}
memory->unlock();
}
void startSecondary()
{
#ifdef Q_OS_UNIX
// Handle any further termination signals to ensure the
// QSharedMemory block is deleted even if the process crashes
crashHandler();
#endif
notifyPrimary();
}
void notifyPrimary()
{
2016-05-05 02:59:07 +08:00
// Connect to the Local Server of the main process to notify it
// that a new process had been started
QLocalSocket socket;
socket.connectToServer( memory->key() );
// Notify the parent that a new instance had been started;
2016-05-05 04:05:59 +08:00
socket.waitForConnected( 100 );
2016-05-05 02:59:07 +08:00
socket.close();
}
#ifdef Q_OS_UNIX
void crashHandler()
{
// This guarantees the program will work even with multiple
// instances of SingleApplication in different threads.
// Which in my opinion is idiotic, but lets handle that too.
{
sharedMemMutex.lock();
2016-05-05 02:59:07 +08:00
sharedMem.append( this );
sharedMemMutex.unlock();
}
2016-05-05 02:59:07 +08:00
// Handle any further termination signals to ensure the
// QSharedMemory block is deleted even if the process crashes
2016-07-10 08:11:55 +08:00
signal( SIGHUP, SingleApplicationPrivate::terminate ); // 1
signal( SIGINT, SingleApplicationPrivate::terminate ); // 2
signal( SIGQUIT, SingleApplicationPrivate::terminate ); // 3
signal( SIGILL, SingleApplicationPrivate::terminate ); // 4
signal( SIGABRT, SingleApplicationPrivate::terminate ); // 6
signal( SIGFPE, SingleApplicationPrivate::terminate ); // 8
signal( SIGBUS, SingleApplicationPrivate::terminate ); // 10
signal( SIGSEGV, SingleApplicationPrivate::terminate ); // 11
signal( SIGSYS, SingleApplicationPrivate::terminate ); // 12
signal( SIGPIPE, SingleApplicationPrivate::terminate ); // 13
signal( SIGALRM, SingleApplicationPrivate::terminate ); // 14
signal( SIGTERM, SingleApplicationPrivate::terminate ); // 15
signal( SIGXCPU, SingleApplicationPrivate::terminate ); // 24
signal( SIGXFSZ, SingleApplicationPrivate::terminate ); // 25
}
2016-05-05 04:05:59 +08:00
static void terminate( int signum )
{
while( ! sharedMem.empty() ) {
delete sharedMem.back();
sharedMem.pop_back();
}
2016-05-05 02:59:07 +08:00
::exit( 128 + signum );
}
2016-05-05 02:59:07 +08:00
static QList<SingleApplicationPrivate*> sharedMem;
static QMutex sharedMemMutex;
#endif
2016-05-05 02:59:07 +08:00
void cleanUp() {
memory->lock();
InstancesInfo* inst = (InstancesInfo*)memory->data();
if( server != NULL ) {
server->close();
inst->primary = false;
} else {
if( inst->secondary > 0 )
inst->secondary -= 1;
}
memory->unlock();
delete memory;
}
QSharedMemory *memory;
SingleApplication *q_ptr;
2016-05-05 04:05:59 +08:00
QLocalServer *server;
};
#ifdef Q_OS_UNIX
2016-05-05 02:59:07 +08:00
QList<SingleApplicationPrivate*> SingleApplicationPrivate::sharedMem;
QMutex SingleApplicationPrivate::sharedMemMutex;
#endif
2012-12-23 06:12:38 +08:00
/**
2015-02-27 03:19:38 +08:00
* @brief Constructor. Checks and fires up LocalServer or closes the program
* if another instance already exists
2012-12-23 06:12:38 +08:00
* @param argc
* @param argv
*/
2016-05-05 04:05:59 +08:00
SingleApplication::SingleApplication( int &argc, char *argv[], uint8_t secondaryInstances )
: app_t( argc, argv ), d_ptr( new SingleApplicationPrivate( this ) )
2012-12-23 06:12:38 +08:00
{
Q_D(SingleApplication);
2016-05-05 02:59:07 +08:00
// Check command line arguments for the force primary and secondary flags
#ifdef Q_OS_UNIX
bool forcePrimary = false;
#endif
bool secondary = false;
for( int i = 0; i < argc; ++i ) {
if( strcmp( argv[i], "--secondary" ) == 0 ) {
secondary = true;
#ifndef Q_OS_UNIX
break;
#endif
}
#ifdef Q_OS_UNIX
if( strcmp( argv[i], "--primary" ) == 0 ) {
secondary = false;
forcePrimary = true;
break;
}
#endif
}
QString serverName = app_t::organizationName() + app_t::applicationName();
2016-05-05 02:59:07 +08:00
serverName.replace( QRegExp("[^\\w\\-. ]"), "" );
2012-12-23 06:12:38 +08:00
// Guarantee thread safe behaviour with a shared memory block. Also by
// attaching to it and deleting it we make sure that the memory i deleted
// even if the process had crashed
d->memory = new QSharedMemory( serverName );
d->memory->attach();
delete d->memory;
d->memory = new QSharedMemory( serverName );
// Create a shared memory block with a minimum size of 1 byte
#ifdef Q_OS_UNIX
2016-05-05 02:59:07 +08:00
if( d->memory->create( sizeof(InstancesInfo) ) || forcePrimary ) {
#else
if( d->memory->create( sizeof(InstancesInfo) ) ) {
#endif
2016-05-05 02:59:07 +08:00
d->startPrimary( true );
return;
} else {
2016-05-05 02:59:07 +08:00
// Attempt to attach to the memory segment
if( d->memory->attach() ) {
d->memory->lock();
InstancesInfo* inst = (InstancesInfo*)d->memory->data();
if( ! inst->primary ) {
d->startPrimary( false );
d->memory->unlock();
return;
}
// Check if another instance can be started
if( secondary && inst->secondary < secondaryInstances ) {
inst->secondary += 1;
d->startSecondary();
d->memory->unlock();
return;
}
d->memory->unlock();
}
}
2016-05-05 02:59:07 +08:00
d->notifyPrimary();
delete d;
2016-05-05 02:59:07 +08:00
::exit(EXIT_SUCCESS);
2012-12-23 06:12:38 +08:00
}
/**
* @brief Destructor
2012-12-23 06:12:38 +08:00
*/
SingleApplication::~SingleApplication()
2012-12-23 06:12:38 +08:00
{
Q_D(SingleApplication);
2016-05-05 02:59:07 +08:00
delete d;
}
2016-05-05 02:59:07 +08:00
bool SingleApplication::isPrimary()
{
Q_D(SingleApplication);
return d->server != NULL;
}
bool SingleApplication::isSecondary()
{
Q_D(SingleApplication);
return d->server == NULL;
2012-12-23 06:12:38 +08:00
}
/**
* @brief Executed when a connection has been made to the LocalServer
2012-12-23 06:12:38 +08:00
*/
void SingleApplication::slotConnectionEstablished()
2012-12-23 06:12:38 +08:00
{
Q_D(SingleApplication);
QLocalSocket *socket = d->server->nextPendingConnection();
socket->close();
delete socket;
Q_EMIT showUp();
2012-12-23 06:12:38 +08:00
}