From 46d4b03d498894b76e3c326a5094a92176034e40 Mon Sep 17 00:00:00 2001 From: Ilya Fedin Date: Tue, 28 Apr 2020 08:32:24 +0400 Subject: [PATCH] Fix freeze in notifications settings when notification daemon is unavailable --- .../linux/notifications_manager_linux.cpp | 53 +++++++++++++++++-- 1 file changed, 49 insertions(+), 4 deletions(-) diff --git a/Telegram/SourceFiles/platform/linux/notifications_manager_linux.cpp b/Telegram/SourceFiles/platform/linux/notifications_manager_linux.cpp index 86382ab81..52635d210 100644 --- a/Telegram/SourceFiles/platform/linux/notifications_manager_linux.cpp +++ b/Telegram/SourceFiles/platform/linux/notifications_manager_linux.cpp @@ -31,8 +31,51 @@ constexpr auto kObjectPath = "/org/freedesktop/Notifications"_cs; constexpr auto kInterface = kService; constexpr auto kPropertiesInterface = "org.freedesktop.DBus.Properties"_cs; +bool NotificationsSupported = false; bool InhibitedNotSupported = false; +void ComputeSupported(bool wait = false) { + const auto message = QDBusMessage::createMethodCall( + kService.utf16(), + kObjectPath.utf16(), + kInterface.utf16(), + qsl("GetServerInformation")); + + auto async = QDBusConnection::sessionBus().asyncCall(message); + auto watcher = new QDBusPendingCallWatcher(async); + + QObject::connect( + watcher, + &QDBusPendingCallWatcher::finished, + [=](QDBusPendingCallWatcher *call) { + QDBusPendingReply reply = *call; + + if (reply.isValid()) { + NotificationsSupported = true; + } + + call->deleteLater(); + }); + + if (wait) { + watcher->waitForFinished(); + } +} + +void GetSupported() { + static auto Checked = false; + if (Checked) { + return; + } + Checked = true; + + if (Global::NativeNotifications()) { + ComputeSupported(true); + } else { + ComputeSupported(); + } +} + std::vector ComputeServerInformation() { std::vector serverInformation; @@ -427,20 +470,22 @@ bool SkipToast() { bool Supported() { #ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION - static const auto Available = !GetServerInformation().empty(); - return Available; -#else // !TDESKTOP_DISABLE_DBUS_INTEGRATION + return NotificationsSupported; +#endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION + return false; -#endif // TDESKTOP_DISABLE_DBUS_INTEGRATION } std::unique_ptr Create( Window::Notifications::System *system) { #ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION + GetSupported(); + if (Global::NativeNotifications() && Supported()) { return std::make_unique(system); } #endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION + return nullptr; }