SingleApplication/singleapplication.cpp

213 lines
7.1 KiB
C++
Raw Normal View History

2024-05-21 01:14:38 +08:00
// Copyright (c) Itay Grudev 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>
2024-05-21 01:14:38 +08:00
#include <QtCore/QDebug>
#include <error.h>
#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 );
2024-05-21 01:14:38 +08:00
// Keep track of the initialization time of SingleApplication
QElapsedTimer time;
time.start();
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
2024-08-08 18:58:38 +08:00
//<<<<<<< v4.0
2024-05-21 01:14:38 +08:00
while( time.elapsed() < timeout ){
if( d->connectToPrimary( (timeout - time.elapsed()) * 2 / 3 )){
if( ! allowSecondary ) // If we are operating in single instance mode - terminate the program
::exit( EXIT_SUCCESS );
2024-08-08 18:58: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
2024-08-08 18:58:38 +08:00
>>>>>> master */
2016-08-10 09:42:46 +08:00
2024-05-21 01:14:38 +08:00
d->notifySecondaryStart( timeout );
return;
} else {
2024-05-21 01:14:38 +08:00
// Report unexpected errors
switch( d->socket->error() ){
case QLocalSocket::SocketAccessError:
case QLocalSocket::SocketResourceError:
case QLocalSocket::DatagramTooLargeError:
case QLocalSocket::UnsupportedSocketOperationError:
case QLocalSocket::OperationError:
case QLocalSocket::UnknownSocketError:
qCritical() << "SingleApplication:" << d->socket->errorString();
qDebug() << "SingleApplication:" << "Falling back to primary instance";
break;
default:
break;
}
// If No server is listening then this is a promoted to a primary instance.
if( d->startPrimary( timeout ))
return;
}
}
2016-05-05 02:59:07 +08:00
2024-05-21 01:14:38 +08:00
qFatal( "SingleApplication: Did not manage to initialize within the allocated time1out." );
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
2024-05-21 01:14:38 +08:00
* @return true if the message was received successfuly, false otherwise.
*/
2024-05-21 01:14:38 +08:00
bool SingleApplication::sendMessage( const QByteArray &messageBody, int timeout )
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;
2024-05-21 01:14:38 +08:00
// SingleApplicationMessage message( SingleApplicationMessage::NewInstance, 0, messageBody );
// return d->sendApplicationMessage( message , timeout );
2024-05-21 01:14:38 +08:00
return d->sendApplicationMessage( SingleApplication::MessageType::InstanceMessage, messageBody, timeout );
}
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();
}