Skip to content

Commit

Permalink
✨ add singleapplication
Browse files Browse the repository at this point in the history
  • Loading branch information
Reverier-Xu committed May 27, 2024
1 parent cefd3c6 commit 73951d3
Show file tree
Hide file tree
Showing 16 changed files with 1,825 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ add_definitions(${QT_DEFINITIONS})

qt_standard_project_setup()

set(QAPPLICATION_CLASS QApplication CACHE STRING "Inheritance class for SingleApplication")

add_subdirectory(desktop)

feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES)
8 changes: 7 additions & 1 deletion desktop/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ configure_file("${IN_FILE}" "${OUT_FILE}" @ONLY)

include_directories(${GENERATED_FILE_PATH})

add_subdirectory(singleapplication)

set(
SOURCES
# Entrypoint
Expand Down Expand Up @@ -40,7 +42,11 @@ else()
add_executable(${PROJECT_NAME}-desktop ${SOURCES} ${RESOURCES})
endif()

target_link_libraries(${PROJECT_NAME}-desktop ${QT_LIBRARIES})
target_link_libraries(
${PROJECT_NAME}-desktop
${QT_LIBRARIES}
SingleApplication::SingleApplication
)

set_target_properties(
${PROJECT_NAME}-desktop PROPERTIES
Expand Down
29 changes: 26 additions & 3 deletions desktop/main.cc
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
#include <QApplication>
#include <QCommandLineParser>
#include <QFont>
#include <QFontDatabase>
#include <QIcon>
#include <SingleApplication>
#include <QObject>

#include "ui.h"
#include "variables.h"
Expand Down Expand Up @@ -53,22 +56,42 @@ int main(int argc, char* argv[]) {
#ifdef Q_OS_MAC
QCoreApplication::addLibraryPath("PlugIns");
#endif
QApplication app(argc, argv);
SingleApplication app(argc, argv, true, SingleApplication::SecondaryNotification);

QApplication::setApplicationName("wsrx");
QApplication::setApplicationDisplayName("WebSocket Reflector X");
QApplication::setOrganizationDomain("tech.woooo.wsrx");
QApplication::setOrganizationName("Ret2Shell");
QApplication::setWindowIcon(QIcon(":/resources/assets/logo-bg.ico"));
QApplication::setWindowIcon(QIcon(":/resources/assets/logo-bg.svg"));
QApplication::setApplicationVersion(FULL_VERSION);

QCommandLineParser parser;
parser.setApplicationDescription("Controlled TCP-over-WebSocket forwarding tunnel.");
parser.addHelpOption();
parser.addVersionOption();
parser.addPositionalArgument(QObject::tr("link"), QObject::tr("The websocket link to connect to."));
parser.process(app);

QFontDatabase::addApplicationFont(":/resources/fonts/sarasa-mono-sc-regular.ttf");
auto defaultFont = QFont("Sarasa Mono SC");
QApplication::setFont(defaultFont);
QString link = parser.positionalArguments().isEmpty() ? "" : parser.positionalArguments().first();
#ifdef Q_OS_UNIX
setup_unix_signal_handlers();
#endif
Ui::instance()->show();
if (app.isSecondary()) {
app.sendMessage(link.toUtf8(), 3000);
return 0;
}

const auto ui_instance = Ui::instance();

QObject::connect(&app, &SingleApplication::receivedMessage, ui_instance,
&Ui::onSecondaryInstanceMessageReceived);
QObject::connect(&app, &SingleApplication::instanceStarted, ui_instance,
&Ui::onSecondaryInstanceStarted);

ui_instance->show();

return QApplication::exec();
}
289 changes: 289 additions & 0 deletions desktop/singleapplication/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,289 @@
# Changelog

## 3.4.0

* Provide API for blocking sendMessage. - _Christoph Cullmann_

## 3.3.4

* Fix compilation under Qt 6.2+ and stricter Qt compile settings. - _Christoph Cullmann_

## 3.3.3

* Support for Qt 6.3+ - Fixed deprecated `QCryptographicHash::addData()` that will only support `QByteArrayView` going
further. - _Moody Liu_

## 3.3.2

* Fixed crash caused by sending a `writeAck` on a removed connection. - _Nicolas Werner_

## 3.3.1

* Added support for _AppImage_ dynamic executable paths. - _Michael Klein_

## 3.3.0

* Fixed message fragmentation issue causing crashes and incorrectly / inconsistently received messages. - _Nils
Jeisecke_

## 3.2.0

* Added support for Qt 6 - _Jonas Kvinge_
* Fixed warning in `Qt 5.9` with `min`/`max` functions on Windows - _Nick Korotysh_
* Fix return value of connectToPrimary() when connect is successful - _Jonas Kvinge_
* Fix build issue with MinGW GCC pedantic mode - _Iakov Kirilenko_
* Fixed conversion from `int` to `quint32` and Clang Tidy warnings - _Hennadii Chernyshchyk_

## 3.1.5

* Improved library stability in edge cases and very rapid process initialisation
* Fixed Bug where the shared memory block may have been modified without a lock
* Fixed Bug causing `instanceStarted()` to not get emitted when a second instance
has been started before the primary has initiated it's `QLocalServer`.

## 3.1.4

* Officially supporting and build-testing against Qt 5.15
* Fixed an MSVC C4996 warning that suggests using `strncpy_s`.

_Hennadii Chernyshchyk_

## 3.1.3.1

* CMake build system improvements
* Fixed Clang Tidy warnings

_Hennadii Chernyshchyk_

## 3.1.3

* Improved `CMakeLists.txt`

_Hennadii Chernyshchyk_

## 3.1.2

* Fix a crash when exiting an application on Android and iOS

_Emeric Grange_

## 3.1.1a

* Added currentUser() method that returns the user the current instance is running as.

_Leander Schulten_

## 3.1.0a

* Added primaryUser() method that returns the user the primary instance is running as.

## 3.0.19

* Fixed code warning for depricated functions in Qt 5.10 related to `QTime` and `qrand()`.

_Hennadii Chernyshchyk_
_Anton Filimonov_
_Jonas Kvinge_

## 3.0.18

* Fallback to standard QApplication class on iOS and Android systems where
the library is not supported.

* Added Build CI tests to verify the library builds successfully on Linux, Windows and MacOS across multiple Qt
versions.

_Anton Filimonov_

## 3.0.17

* Fixed compilation warning/error caused by `geteuid()` on unix based systems.

_Iakov Kirilenko_

* Added CMake support

_Hennadii Chernyshchyk_

## 3.0.16

* Use geteuid and getpwuid to get username on Unix, fallback to environment variable.

_Jonas Kvinge_

## 3.0.15

* Bug Fix: sendMessage() might return false even though data was actually written.

_Jonas Kvinge_

## 3.0.14

* Fixed uninitialised variables in the `SingleApplicationPrivate` constructor.

## 3.0.13a

* Process socket events asynchronously
* Fix undefined variable error on Windows

_Francis Giraldeau_

## 3.0.12a

* Removed signal handling.

## 3.0.11a

* Fixed bug where the message sent by the second process was not received
correctly when the message is sent immediately following a connection.

_Francis Giraldeau_

* Refactored code and implemented shared memory block consistency checks
via `qChecksum()` (CRC-16).
* Explicit `qWarning` and `qCritical` when the library is unable to initialise
correctly.

## 3.0.10

* Removed C style casts and eliminated all clang warnings. Fixed `instanceId`
reading from only one byte in the message deserialization. Cleaned up
serialization code using `QDataStream`. Changed connection type to use
`quint8 enum` rather than `char`.
* Renamed `SingleAppConnectionType` to `ConnectionType`. Added initialization
values to all `ConnectionType` enum cases.

_Jedidiah Buck McCready_

## 3.0.9

* Added SingleApplicationPrivate::primaryPid() as a solution to allow
bringing the primary window of an application to the foreground on
Windows.

_Eelco van Dam from Peacs BV_

## 3.0.8

* Bug fix - changed QApplication::instance() to QCoreApplication::instance()

_Evgeniy Bazhenov_

## 3.0.7a

* Fixed compilation error with Mingw32 in MXE thanks to Vitaly Tonkacheyev.
* Removed QMutex used for thread safe behaviour. The implementation now uses
QCoreApplication::instance() to get an instance to SingleApplication for
memory deallocation.

## 3.0.6a

* Reverted GetUserName API usage on Windows. Fixed bug with missing library.
* Fixed bug in the Calculator example, preventing it's window to be raised
on Windows.

Special thanks to Charles Gunawan.

## 3.0.5a

* Fixed a memory leak in the SingleApplicationPrivate destructor.

_Sergei Moiseev_

## 3.0.4a

* Fixed shadow and uninitialised variable warnings.

_Paul Walmsley_

## 3.0.3a

* Removed Microsoft Windows specific code for getting username due to
multiple problems and compiler differences on Windows platforms. On
Windows the shared memory block in User mode now includes the user's
home path (which contains the user's username).

* Explicitly getting absolute path of the user's home directory as on Unix
a relative path (`~`) may be returned.

## 3.0.2a

* Fixed bug on Windows when username containing wide characters causes the
library to crash.

_Le Liu_

## 3.0.1a

* Allows the application path and version to be excluded from the server name
hash. The following flags were added for this purpose:
* `SingleApplication::Mode::ExcludeAppVersion`
* `SingleApplication::Mode::ExcludeAppPath`
* Allow a non elevated process to connect to a local server created by an
elevated process run by the same user on Windows
* Fixes a problem with upper case letters in paths on Windows

_Le Liu_

## v3.0a

* Deprecated secondary instances count.
* Added a sendMessage() method to send a message to the primary instance.
* Added a receivedMessage() signal, emitted when a message is received from a
secondary instance.
* The SingleApplication constructor's third parameter is now a bool
specifying if the current instance should be allowed to run as a secondary
instance if there is already a primary instance.
* The SingleApplication constructor accept a fourth parameter specifying if
the SingleApplication block should be User-wide or System-wide.
* SingleApplication no longer relies on `applicationName` and
`organizationName` to be set. It instead concatenates all of the following
data and computes a `SHA256` hash which is used as the key of the
`QSharedMemory` block and the `QLocalServer`. Since at least
`applicationFilePath` is always present there is no need to explicitly set
any of the following prior to initialising `SingleApplication`.
* `QCoreApplication::applicationName`
* `QCoreApplication::applicationVersion`
* `QCoreApplication::applicationFilePath`
* `QCoreApplication::organizationName`
* `QCoreApplication::organizationDomain`
* User name or home directory path if in User mode
* The primary instance is no longer notified when a secondary instance had
been started by default. A `Mode` flag for this feature exists.
* Added `instanceNumber()` which represents a unique identifier for each
secondary instance started. When called from the primary instance will
return `0`.

## v2.4

* Stability improvements
* Support for secondary instances.
* The library now recovers safely after the primary process has crashed
and the shared memory had not been deleted.

## v2.3

* Improved pimpl design and inheritance safety.

_Vladislav Pyatnichenko_

## v2.2

* The `QAPPLICATION_CLASS` macro can now be defined in the file including the
Single Application header or with a `DEFINES+=` statement in the project file.

## v2.1

* A race condition can no longer occur when starting two processes nearly
simultaneously.

Fix issue [#3](https://github.com/itay-grudev/SingleApplication/issues/3)

## v2.0

* SingleApplication is now being passed a reference to `argc` instead of a
copy.

Fix issue [#1](https://github.com/itay-grudev/SingleApplication/issues/1)

* Improved documentation.
Loading

0 comments on commit 73951d3

Please sign in to comment.