2024-05-21 01:14:38 +08:00
|
|
|
// Copyright (c) Itay Grudev 2023
|
2016-07-05 01:19:48 +08:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
2016-07-05 01:19:48 +08:00
|
|
|
// 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>
|
2017-02-02 12:28:00 +08:00
|
|
|
|
2016-03-05 02:15:13 +08:00
|
|
|
#include "singleapplication.h"
|
2016-08-10 09:42:46 +08:00
|
|
|
#include "singleapplication_p.h"
|
2016-03-05 02:15:13 +08:00
|
|
|
|
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
|
2015-02-27 03:00:11 +08:00
|
|
|
* if another instance already exists
|
2012-12-23 06:12:38 +08:00
|
|
|
* @param argc
|
|
|
|
* @param argv
|
2020-09-09 06:00:04 +08:00
|
|
|
* @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
|
|
|
{
|
2020-09-09 06:00:04 +08:00
|
|
|
Q_D( SingleApplication );
|
2016-03-05 02:15:13 +08:00
|
|
|
|
2024-05-21 01:14:38 +08:00
|
|
|
// Keep track of the initialization time of SingleApplication
|
|
|
|
QElapsedTimer time;
|
|
|
|
time.start();
|
2019-10-11 21:50:52 +08:00
|
|
|
|
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
|
|
|
|
2020-12-11 08:18:00 +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
|
2018-07-27 09:29:55 +08:00
|
|
|
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
|
|
|
/*=======
|
2020-09-09 09:29:00 +08:00
|
|
|
// To mitigate QSharedMemory issues with large amount of processes
|
|
|
|
// attempting to attach at the same time
|
2020-10-16 02:41:00 +08:00
|
|
|
SingleApplicationPrivate::randomSleep();
|
2020-09-09 09:29:00 +08:00
|
|
|
|
2016-08-10 09:42:46 +08:00
|
|
|
#ifdef Q_OS_UNIX
|
2018-07-27 09:29:55 +08:00
|
|
|
// By explicitly attaching it and then deleting it we make sure that the
|
|
|
|
// memory is deleted even after the process has crashed on Unix.
|
2023-09-29 00:30:56 +08:00
|
|
|
#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 );
|
2023-09-29 00:30:56 +08:00
|
|
|
#endif
|
2016-05-05 03:41:23 +08:00
|
|
|
d->memory->attach();
|
|
|
|
delete d->memory;
|
2015-06-06 05:26:41 +08:00
|
|
|
#endif
|
2018-07-27 09:29:55 +08:00
|
|
|
// Guarantee thread safe behaviour with a shared memory block.
|
2023-09-29 00:30:56 +08:00
|
|
|
#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 );
|
2023-09-29 00:30:56 +08:00
|
|
|
#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;
|
2020-09-09 07:28:02 +08:00
|
|
|
} 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;
|
2020-09-09 07:28:02 +08:00
|
|
|
}
|
2018-07-27 09:29:55 +08:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2015-02-27 03:00:11 +08:00
|
|
|
SingleApplication::~SingleApplication()
|
2012-12-23 06:12:38 +08:00
|
|
|
{
|
2020-09-09 06:00:04 +08:00
|
|
|
Q_D( SingleApplication );
|
2016-05-05 02:59:07 +08:00
|
|
|
delete d;
|
|
|
|
}
|
2016-03-05 02:15:13 +08:00
|
|
|
|
2020-09-09 06:00:04 +08:00
|
|
|
/**
|
|
|
|
* 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
|
|
|
}
|
|
|
|
|
2020-09-09 06:00:04 +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
|
|
|
}
|
|
|
|
|
2020-09-09 06:00:04 +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;
|
|
|
|
}
|
|
|
|
|
2020-09-09 06:00:04 +08:00
|
|
|
/**
|
|
|
|
* 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
|
2017-10-02 19:17:41 +08:00
|
|
|
{
|
2021-01-25 06:16:37 +08:00
|
|
|
Q_D( const SingleApplication );
|
2017-10-02 19:17:41 +08:00
|
|
|
return d->primaryPid();
|
|
|
|
}
|
|
|
|
|
2020-09-09 06:00:04 +08:00
|
|
|
/**
|
|
|
|
* 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();
|
|
|
|
}
|
|
|
|
|
2020-09-09 06:00:04 +08:00
|
|
|
/**
|
|
|
|
* 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
|
|
|
{
|
2020-10-16 02:41:00 +08:00
|
|
|
return SingleApplicationPrivate::getUsername();
|
2020-03-27 15:00:14 +08:00
|
|
|
}
|
|
|
|
|
2020-09-09 06:00:04 +08:00
|
|
|
/**
|
|
|
|
* Sends message to the Primary Instance.
|
|
|
|
* @param message The message to send.
|
|
|
|
* @param timeout the maximum timeout in milliseconds for blocking functions.
|
2022-04-06 04:46:42 +08:00
|
|
|
* @param sendMode mode of operation
|
2024-05-21 01:14:38 +08:00
|
|
|
* @return true if the message was received successfuly, false otherwise.
|
2020-09-09 06:00:04 +08:00
|
|
|
*/
|
2024-05-21 01:14:38 +08:00
|
|
|
bool SingleApplication::sendMessage( const QByteArray &messageBody, int timeout )
|
2016-08-10 09:42:46 +08:00
|
|
|
{
|
2020-09-09 06:00:04 +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 );
|
2016-03-05 02:15:13 +08:00
|
|
|
|
2020-09-09 07:28:02 +08:00
|
|
|
|
2024-05-21 01:14:38 +08:00
|
|
|
return d->sendApplicationMessage( SingleApplication::MessageType::InstanceMessage, messageBody, timeout );
|
2020-09-09 07:28:02 +08:00
|
|
|
}
|
2020-12-11 08:18:00 +08:00
|
|
|
|
2021-01-25 06:16:37 +08:00
|
|
|
QStringList SingleApplication::userData() const
|
2020-12-11 08:18:00 +08:00
|
|
|
{
|
2021-01-25 06:16:37 +08:00
|
|
|
Q_D( const SingleApplication );
|
2020-12-11 08:18:00 +08:00
|
|
|
return d->appData();
|
|
|
|
}
|