mirror of https://github.com/cutefishos/calamares
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
148 lines
3.6 KiB
C++
148 lines
3.6 KiB
C++
/*
|
|
* SPDX-FileCopyrightText: 2001-2010 Klaralvdalens Datakonsult AB.
|
|
* SPDX-License-Identifier: LGPL-2.0-only
|
|
*
|
|
* The KD Tools Library is Copyright (C) 2001-2010 Klaralvdalens Datakonsult AB.
|
|
*/
|
|
#ifndef KDTOOLSCORE_KDSINGLEAPPLICATIONGUARD_H
|
|
#define KDTOOLSCORE_KDSINGLEAPPLICATIONGUARD_H
|
|
|
|
#include <QtCore/QObject>
|
|
|
|
#ifndef QT_NO_SHAREDMEMORY
|
|
|
|
#include <QtCore/QStringList>
|
|
#include <QtCore/QMetaType>
|
|
|
|
#include "pimpl_ptr.h"
|
|
#include "DllMacro.h"
|
|
|
|
#include <algorithm>
|
|
|
|
template <typename T> class QVector;
|
|
class QCoreApplication;
|
|
|
|
class DLLEXPORT KDSingleApplicationGuard : public QObject
|
|
{
|
|
Q_OBJECT
|
|
Q_ENUMS( Policy )
|
|
Q_PROPERTY( bool operational READ isOperational )
|
|
Q_PROPERTY( bool exitRequested READ isExitRequested )
|
|
Q_PROPERTY( bool primaryInstance READ isPrimaryInstance NOTIFY becamePrimaryInstance )
|
|
Q_PROPERTY( Policy policy READ policy WRITE setPolicy NOTIFY policyChanged )
|
|
public:
|
|
enum Policy
|
|
{
|
|
NoPolicy = 0,
|
|
AutoKillOtherInstances = 1
|
|
};
|
|
|
|
explicit KDSingleApplicationGuard( QObject * parent=nullptr );
|
|
explicit KDSingleApplicationGuard( Policy policy, QObject * parent=nullptr );
|
|
explicit KDSingleApplicationGuard( const QStringList & arguments, QObject * parent=nullptr );
|
|
explicit KDSingleApplicationGuard( const QStringList & arguments, Policy policy, QObject * parent=nullptr );
|
|
~KDSingleApplicationGuard() override;
|
|
|
|
bool isOperational() const;
|
|
|
|
bool isExitRequested() const;
|
|
|
|
bool isPrimaryInstance() const;
|
|
|
|
Policy policy() const;
|
|
void setPolicy( Policy policy );
|
|
|
|
class Instance;
|
|
|
|
QVector<Instance> instances() const;
|
|
|
|
Q_SIGNALS:
|
|
void instanceStarted( const KDSingleApplicationGuard::Instance & instance );
|
|
void instanceExited( const KDSingleApplicationGuard::Instance & instance );
|
|
void exitRequested();
|
|
void raiseRequested();
|
|
void becamePrimaryInstance();
|
|
void becameSecondaryInstance();
|
|
void policyChanged( KDSingleApplicationGuard::Policy policy );
|
|
|
|
public Q_SLOTS:
|
|
void shutdownOtherInstances();
|
|
void killOtherInstances();
|
|
|
|
protected:
|
|
/*! \reimp */ bool event( QEvent * event ) override;
|
|
|
|
private:
|
|
#ifndef Q_WS_WIN
|
|
static void SIGINT_handler( int );
|
|
#endif
|
|
|
|
private:
|
|
friend struct ProcessInfo;
|
|
|
|
class Private;
|
|
kdtools::pimpl_ptr< Private > d;
|
|
};
|
|
|
|
class DLLEXPORT KDSingleApplicationGuard::Instance {
|
|
friend class ::KDSingleApplicationGuard;
|
|
friend class ::KDSingleApplicationGuard::Private;
|
|
Instance( const QStringList &, bool, qint64 );
|
|
public:
|
|
Instance();
|
|
Instance( const Instance & other );
|
|
~Instance();
|
|
|
|
void swap( Instance & other ) {
|
|
std::swap( d, other.d );
|
|
}
|
|
|
|
Instance & operator=( Instance other ) {
|
|
swap( other );
|
|
return *this;
|
|
}
|
|
|
|
bool isNull() const { return !d; }
|
|
bool isValid() const;
|
|
|
|
bool areArgumentsTruncated() const;
|
|
|
|
const QStringList & arguments() const;
|
|
qint64 pid() const;
|
|
|
|
void shutdown();
|
|
void kill();
|
|
void raise();
|
|
|
|
private:
|
|
class Private;
|
|
Private * d;
|
|
};
|
|
|
|
namespace std {
|
|
template <>
|
|
inline void swap( KDSingleApplicationGuard::Instance & lhs,
|
|
KDSingleApplicationGuard::Instance & rhs )
|
|
{
|
|
lhs.swap( rhs );
|
|
}
|
|
} // namespace std
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
template <>
|
|
inline void qSwap( KDSingleApplicationGuard::Instance & lhs,
|
|
KDSingleApplicationGuard::Instance & rhs )
|
|
{
|
|
lhs.swap( rhs );
|
|
}
|
|
Q_DECLARE_METATYPE( KDSingleApplicationGuard::Instance )
|
|
Q_DECLARE_TYPEINFO( KDSingleApplicationGuard::Instance, Q_MOVABLE_TYPE );
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
#endif // QT_NO_SHAREDMEMORY
|
|
|
|
#endif /* KDTOOLSCORE_KDSINGLEAPPLICATIONGUARD_H */
|