SingleApplication/singleapplication.cpp

282 lines
9.4 KiB
C++
Raw Permalink Normal View History

2023-03-24 18:09:12 +08:00
// Copyright (c) Itay Grudev 2015 - 2023
//
// 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:
//
2023-03-24 18:09:12 +08:00
// Permission is not granted to use this software or any of the associated files
// as sample data for the purposes of building machine learning models.
//
// 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.
2019-12-28 02:22:44 +08:00
#include <QtCore/QElapsedTimer>
2016-08-10 09:42:46 +08:00
#include <QtCore/QByteArray>
2016-05-05 02:59:07 +08:00
#include <QtCore/QSharedMemory>
#include "singleapplication.h"
2016-08-10 09:42:46 +08:00
#include "singleapplication_p.h"
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
* @param allowSecondary Whether to enable secondary instance support
* @param options Optional flags to toggle specific behaviour
* @param timeout Maximum time blocking functions are allowed during app load
2012-12-23 06:12:38 +08:00
*/
2020-12-22 01:07:36 +08:00
SingleApplication::SingleApplication( int &argc, char *argv[], bool allowSecondary, Options options, int timeout, const QString &userData )
2016-05-05 04:05:59 +08:00
: app_t( argc, argv ), d_ptr( new SingleApplicationPrivate( this ) )
2012-12-23 06:12:38 +08:00
{
Q_D( SingleApplication );
2019-10-13 15:34:28 +08:00
#if defined(Q_OS_ANDROID) || defined(Q_OS_IOS)
// On Android and iOS since the library is not supported fallback to
// standard QApplication behaviour by simply returning at this point.
qWarning() << "SingleApplication is not supported on Android and iOS systems.";
return;
#endif
2016-08-10 09:42:46 +08:00
// Store the current mode of the program
d->options = options;
2016-05-05 02:59:07 +08:00
// Add any unique user data
if ( ! userData.isEmpty() )
d->addAppData( userData );
2016-08-10 09:42:46 +08:00
// Generating an application ID used for identifying the shared memory
// block and QLocalServer
d->genBlockServerName();
2012-12-23 06:12:38 +08:00
// To mitigate QSharedMemory issues with large amount of processes
// attempting to attach at the same time
SingleApplicationPrivate::randomSleep();
2016-08-10 09:42:46 +08:00
#ifdef Q_OS_UNIX
// By explicitly attaching it and then deleting it we make sure that the
// memory is deleted even after the process has crashed on Unix.
#if QT_VERSION >= QT_VERSION_CHECK(6, 6, 0)
d->memory = new QSharedMemory( QNativeIpcKey( d->blockServerName ) );
#else
2016-08-10 09:42:46 +08:00
d->memory = new QSharedMemory( d->blockServerName );
#endif
d->memory->attach();
delete d->memory;
#endif
// Guarantee thread safe behaviour with a shared memory block.
#if QT_VERSION >= QT_VERSION_CHECK(6, 6, 0)
d->memory = new QSharedMemory( QNativeIpcKey( d->blockServerName ) );
#else
2016-08-10 09:42:46 +08:00
d->memory = new QSharedMemory( d->blockServerName );
#endif
2016-08-10 09:42:46 +08:00
// Create a shared memory block
if( d->memory->create( sizeof( InstancesInfo ) )){
// Initialize the shared memory block
if( ! d->memory->lock() ){
qCritical() << "SingleApplication: Unable to lock memory block after create.";
abortSafely();
}
d->initializeMemoryBlock();
} else {
if( d->memory->error() == QSharedMemory::AlreadyExists ){
// Attempt to attach to the memory segment
if( ! d->memory->attach() ){
qCritical() << "SingleApplication: Unable to attach to shared memory block.";
abortSafely();
}
if( ! d->memory->lock() ){
qCritical() << "SingleApplication: Unable to lock memory block after attach.";
abortSafely();
}
} else {
qCritical() << "SingleApplication: Unable to create block.";
abortSafely();
}
}
2020-05-17 22:50:27 +08:00
auto *inst = static_cast<InstancesInfo*>( d->memory->data() );
2019-12-28 02:22:44 +08:00
QElapsedTimer time;
time.start();
// Make sure the shared memory block is initialised and in consistent state
while( true ){
// If the shared memory block's checksum is valid continue
if( d->blockChecksum() == inst->checksum ) break;
2016-05-05 02:59:07 +08:00
// If more than 5s have elapsed, assume the primary instance crashed and
// assume it's position
if( time.elapsed() > 5000 ){
qWarning() << "SingleApplication: Shared memory block has been in an inconsistent state from more than 5s. Assuming primary instance failure.";
d->initializeMemoryBlock();
}
2016-05-05 02:59:07 +08:00
// Otherwise wait for a random period and try again. The random sleep here
// limits the probability of a collision between two racing apps and
// allows the app to initialise faster
if( ! d->memory->unlock() ){
qDebug() << "SingleApplication: Unable to unlock memory for random wait.";
qDebug() << d->memory->errorString();
}
SingleApplicationPrivate::randomSleep();
if( ! d->memory->lock() ){
qCritical() << "SingleApplication: Unable to lock memory after random wait.";
abortSafely();
}
}
if( inst->primary == false ){
d->startPrimary();
if( ! d->memory->unlock() ){
qDebug() << "SingleApplication: Unable to unlock memory after primary start.";
qDebug() << d->memory->errorString();
}
return;
}
2016-05-05 02:59:07 +08:00
// Check if another instance can be started
if( allowSecondary ){
d->startSecondary();
if( d->options & Mode::SecondaryNotification ){
d->connectToPrimary( timeout, SingleApplicationPrivate::SecondaryInstance );
2016-05-05 02:59:07 +08:00
}
if( ! d->memory->unlock() ){
qDebug() << "SingleApplication: Unable to unlock memory after secondary start.";
qDebug() << d->memory->errorString();
}
return;
}
2016-05-05 02:59:07 +08:00
if( ! d->memory->unlock() ){
qDebug() << "SingleApplication: Unable to unlock memory at end of execution.";
qDebug() << d->memory->errorString();
}
d->connectToPrimary( timeout, SingleApplicationPrivate::NewInstance );
delete d;
2016-08-10 09:42:46 +08:00
::exit( EXIT_SUCCESS );
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;
}
/**
* Checks if the current application instance is primary.
* @return Returns true if the instance is primary, false otherwise.
*/
2021-01-25 06:16:37 +08:00
bool SingleApplication::isPrimary() const
2016-05-05 02:59:07 +08:00
{
2021-01-25 06:16:37 +08:00
Q_D( const SingleApplication );
2016-08-10 09:42:46 +08:00
return d->server != nullptr;
2016-05-05 02:59:07 +08:00
}
/**
* Checks if the current application instance is secondary.
* @return Returns true if the instance is secondary, false otherwise.
*/
2021-01-25 06:16:37 +08:00
bool SingleApplication::isSecondary() const
2016-05-05 02:59:07 +08:00
{
2021-01-25 06:16:37 +08:00
Q_D( const SingleApplication );
2016-08-10 09:42:46 +08:00
return d->server == nullptr;
2012-12-23 06:12:38 +08:00
}
/**
* Allows you to identify an instance by returning unique consecutive instance
* ids. It is reset when the first (primary) instance of your app starts and
* only incremented afterwards.
* @return Returns a unique instance id.
*/
2021-01-25 06:16:37 +08:00
quint32 SingleApplication::instanceId() const
2012-12-23 06:12:38 +08:00
{
2021-01-25 06:16:37 +08:00
Q_D( const SingleApplication );
2016-08-10 09:42:46 +08:00
return d->instanceNumber;
}
/**
* Returns the OS PID (Process Identifier) of the process running the primary
* instance. Especially useful when SingleApplication is coupled with OS.
* specific APIs.
* @return Returns the primary instance PID.
*/
2021-01-25 06:16:37 +08:00
qint64 SingleApplication::primaryPid() const
{
2021-01-25 06:16:37 +08:00
Q_D( const SingleApplication );
return d->primaryPid();
}
/**
* Returns the username the primary instance is running as.
* @return Returns the username the primary instance is running as.
*/
2021-01-25 06:16:37 +08:00
QString SingleApplication::primaryUser() const
2020-03-03 09:22:54 +08:00
{
2021-01-25 06:16:37 +08:00
Q_D( const SingleApplication );
2020-03-03 09:22:54 +08:00
return d->primaryUser();
}
/**
* Returns the username the current instance is running as.
* @return Returns the username the current instance is running as.
*/
2021-01-25 06:16:37 +08:00
QString SingleApplication::currentUser() const
2020-03-27 15:00:14 +08:00
{
return SingleApplicationPrivate::getUsername();
2020-03-27 15:00:14 +08:00
}
/**
* Sends message to the Primary Instance.
* @param message The message to send.
* @param timeout the maximum timeout in milliseconds for blocking functions.
* @param sendMode mode of operation
* @return true if the message was sent successfuly, false otherwise.
*/
bool SingleApplication::sendMessage( const QByteArray &message, int timeout, SendMode sendMode )
2016-08-10 09:42:46 +08:00
{
Q_D( SingleApplication );
2016-08-10 09:42:46 +08:00
// Nobody to connect to
if( isPrimary() ) return false;
// Make sure the socket is connected
if( ! d->connectToPrimary( timeout, SingleApplicationPrivate::Reconnect ) )
return false;
return d->writeConfirmedMessage( timeout, message, sendMode );
2012-12-23 06:12:38 +08:00
}
/**
* Cleans up the shared memory block and exits with a failure.
* This function halts program execution.
*/
void SingleApplication::abortSafely()
{
Q_D( SingleApplication );
qCritical() << "SingleApplication: " << d->memory->error() << d->memory->errorString();
delete d;
::exit( EXIT_FAILURE );
}
2021-01-25 06:16:37 +08:00
QStringList SingleApplication::userData() const
{
2021-01-25 06:16:37 +08:00
Q_D( const SingleApplication );
return d->appData();
}