mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-04-21 21:52:03 +02:00
147 lines
5.1 KiB
C++
147 lines
5.1 KiB
C++
/*
|
|
* Copyright (C) 2015-2024 Savoir-faire Linux Inc.
|
|
* Author: Edric Ladent Milaret <edric.ladent-milaret@savoirfairelinux.com>
|
|
* Author: Andreas Traczyk <andreas.traczyk@savoirfairelinux.com>
|
|
* Author: Mingrui Zhang <mingrui.zhang@savoirfairelinux.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "mainapplication.h"
|
|
#include "instancemanager.h"
|
|
#include "version.h"
|
|
#if defined(Q_OS_MACOS)
|
|
#include <os/macos/macutils.h>
|
|
#endif
|
|
|
|
#include <QApplication>
|
|
#include <QCryptographicHash>
|
|
#include <QtQuick>
|
|
#if WITH_WEBENGINE
|
|
#include <QtWebEngineCore>
|
|
#include <QtWebEngineQuick>
|
|
#endif
|
|
#if defined(HAS_VULKAN) && !defined(Q_OS_LINUX)
|
|
#include <QVulkanInstance>
|
|
#endif
|
|
|
|
#include <clocale>
|
|
|
|
#ifndef BUILD_TESTING
|
|
int
|
|
main(int argc, char* argv[])
|
|
{
|
|
setlocale(LC_ALL, "en_US.utf8");
|
|
|
|
#ifdef Q_OS_LINUX
|
|
if (!getenv("QT_QPA_PLATFORMTHEME")) {
|
|
auto xdgEnv = qgetenv("XDG_CURRENT_DESKTOP");
|
|
if (xdgEnv != "KDE" && xdgEnv != "GNOME") {
|
|
setenv("QT_QPA_PLATFORMTHEME", "gtk3", true);
|
|
}
|
|
}
|
|
setenv("QML_DISABLE_DISK_CACHE", "1", true);
|
|
|
|
/*
|
|
* Some GNU/Linux distros, like Zorin OS, set QT_STYLE_OVERRIDE
|
|
* to force a particular Qt style. This has been fine with Qt5
|
|
* even when using our own Qt package which may not have that
|
|
* style available. However, with Qt6, attempting to override
|
|
* to a nonexistent style seems to result in the main window
|
|
* simply not showing. So here we unset this variable, also
|
|
* because we currently hard-code the Material style anyway.
|
|
* https://bugreports.qt.io/browse/QTBUG-99889
|
|
*/
|
|
unsetenv("QT_STYLE_OVERRIDE");
|
|
#endif
|
|
|
|
QApplication::setApplicationName(QStringLiteral("Jami"));
|
|
QApplication::setOrganizationDomain(QStringLiteral("jami.net"));
|
|
QApplication::setQuitOnLastWindowClosed(false);
|
|
QCoreApplication::setApplicationVersion(QString(VERSION_STRING));
|
|
QCoreApplication::setAttribute(Qt::AA_ShareOpenGLContexts, true);
|
|
QApplication::setHighDpiScaleFactorRoundingPolicy(
|
|
Qt::HighDpiScaleFactorRoundingPolicy::PassThrough);
|
|
|
|
#if WITH_WEBENGINE
|
|
qputenv("QTWEBENGINE_CHROMIUM_FLAGS",
|
|
"--disable-web-security"
|
|
" --single-process");
|
|
QtWebEngineQuick::initialize();
|
|
#endif
|
|
|
|
MainApplication app(argc, argv);
|
|
|
|
app.setDesktopFileName(QStringLiteral("jami"));
|
|
#if defined(Q_OS_MACOS)
|
|
if (macutils::isMetalSupported()) {
|
|
QQuickWindow::setGraphicsApi(QSGRendererInterface::MetalRhi);
|
|
} else {
|
|
QQuickWindow::setGraphicsApi(QSGRendererInterface::OpenGLRhi);
|
|
}
|
|
#else
|
|
if (std::invoke([] {
|
|
#if defined(HAS_VULKAN) && defined(PREFER_VULKAN)
|
|
// Somehow, several bug reports show that, on Windows, QVulkanInstance
|
|
// verification passes, but goes on to fail when creating the QQuickWindow
|
|
// with "Failed to initialize graphics backend for Vulkan".
|
|
// Here we allow platform-specific checks using native Vulkan libraries.
|
|
// Currently only implemented on Windows.
|
|
try {
|
|
Utils::testVulkanSupport();
|
|
} catch (const std::exception& e) {
|
|
qWarning() << "Vulkan instance cannot be created:" << e.what();
|
|
return false;
|
|
}
|
|
|
|
// Check using Qt's QVulkanInstance.
|
|
QVulkanInstance inst;
|
|
return inst.supportedLayers().contains("VK_LAYER_KHRONOS_validation");
|
|
#else
|
|
return false;
|
|
#endif
|
|
})
|
|
&& qEnvironmentVariableIsEmpty("WAYLAND_DISPLAY")) {
|
|
// https://bugreports.qt.io/browse/QTBUG-99684 - Vulkan on
|
|
// Wayland is not really supported as window decorations are
|
|
// removed. So we need to re-implement this (custom controls)
|
|
// or wait for a future version
|
|
QQuickWindow::setGraphicsApi(QSGRendererInterface::VulkanRhi);
|
|
}
|
|
#endif
|
|
|
|
// InstanceManager prevents multiple instances, and will handle
|
|
// IPC termination requests to and from secondary instances, which
|
|
// is used to gracefully terminate the app from an installer script
|
|
// during an update.
|
|
InstanceManager im(&app);
|
|
if (app.getOpt(MainApplication::Option::TerminationRequested).toBool()) {
|
|
qWarning() << "Attempting to terminate other instances.";
|
|
im.tryToKill();
|
|
return 0;
|
|
} else {
|
|
auto startUri = app.getOpt(MainApplication::Option::StartUri);
|
|
if (!im.tryToRun(startUri.toByteArray())) {
|
|
qWarning() << "Another instance is running.";
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
if (!app.init()) {
|
|
return 0;
|
|
}
|
|
|
|
return app.exec();
|
|
}
|
|
#endif
|