mirror of https://github.com/procxx/kepka.git
Minimize dbus requests
This commit is contained in:
parent
afc902a5cb
commit
ba5d9eda2d
|
@ -31,7 +31,9 @@ constexpr auto kObjectPath = "/org/freedesktop/Notifications"_cs;
|
||||||
constexpr auto kInterface = kService;
|
constexpr auto kInterface = kService;
|
||||||
constexpr auto kPropertiesInterface = "org.freedesktop.DBus.Properties"_cs;
|
constexpr auto kPropertiesInterface = "org.freedesktop.DBus.Properties"_cs;
|
||||||
|
|
||||||
std::vector<QString> GetServerInformation() {
|
bool InhibitedNotSupported = false;
|
||||||
|
|
||||||
|
std::vector<QString> ComputeServerInformation() {
|
||||||
std::vector<QString> serverInformation;
|
std::vector<QString> serverInformation;
|
||||||
|
|
||||||
const auto message = QDBusMessage::createMethodCall(
|
const auto message = QDBusMessage::createMethodCall(
|
||||||
|
@ -58,7 +60,12 @@ std::vector<QString> GetServerInformation() {
|
||||||
return serverInformation;
|
return serverInformation;
|
||||||
}
|
}
|
||||||
|
|
||||||
QStringList GetCapabilities() {
|
std::vector<QString> GetServerInformation() {
|
||||||
|
static const auto ServerInformation = ComputeServerInformation();
|
||||||
|
return ServerInformation;
|
||||||
|
}
|
||||||
|
|
||||||
|
QStringList ComputeCapabilities() {
|
||||||
const auto message = QDBusMessage::createMethodCall(
|
const auto message = QDBusMessage::createMethodCall(
|
||||||
kService.utf16(),
|
kService.utf16(),
|
||||||
kObjectPath.utf16(),
|
kObjectPath.utf16(),
|
||||||
|
@ -77,6 +84,11 @@ QStringList GetCapabilities() {
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QStringList GetCapabilities() {
|
||||||
|
static const auto Capabilities = ComputeCapabilities();
|
||||||
|
return Capabilities;
|
||||||
|
}
|
||||||
|
|
||||||
bool Inhibited() {
|
bool Inhibited() {
|
||||||
auto message = QDBusMessage::createMethodCall(
|
auto message = QDBusMessage::createMethodCall(
|
||||||
kService.utf16(),
|
kService.utf16(),
|
||||||
|
@ -92,9 +104,20 @@ bool Inhibited() {
|
||||||
const QDBusReply<QVariant> reply = QDBusConnection::sessionBus().call(
|
const QDBusReply<QVariant> reply = QDBusConnection::sessionBus().call(
|
||||||
message);
|
message);
|
||||||
|
|
||||||
|
constexpr auto notSupportedErrors = {
|
||||||
|
QDBusError::ServiceUnknown,
|
||||||
|
QDBusError::InvalidArgs,
|
||||||
|
};
|
||||||
|
|
||||||
if (reply.isValid()) {
|
if (reply.isValid()) {
|
||||||
return reply.value().toBool();
|
return reply.value().toBool();
|
||||||
} else if (reply.error().type() != QDBusError::InvalidArgs) {
|
} else if (ranges::contains(notSupportedErrors, reply.error().type())) {
|
||||||
|
InhibitedNotSupported = true;
|
||||||
|
} else {
|
||||||
|
if (reply.error().type() == QDBusError::AccessDenied) {
|
||||||
|
InhibitedNotSupported = true;
|
||||||
|
}
|
||||||
|
|
||||||
LOG(("Native notification error: %1").arg(reply.error().message()));
|
LOG(("Native notification error: %1").arg(reply.error().message()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -380,7 +403,9 @@ const QDBusArgument &operator>>(
|
||||||
|
|
||||||
bool SkipAudio() {
|
bool SkipAudio() {
|
||||||
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
|
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
|
||||||
if (Supported()) {
|
if (Supported()
|
||||||
|
&& GetCapabilities().contains(qsl("inhibitions"))
|
||||||
|
&& !InhibitedNotSupported) {
|
||||||
return Inhibited();
|
return Inhibited();
|
||||||
}
|
}
|
||||||
#endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION
|
#endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION
|
||||||
|
@ -390,7 +415,9 @@ bool SkipAudio() {
|
||||||
|
|
||||||
bool SkipToast() {
|
bool SkipToast() {
|
||||||
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
|
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
|
||||||
if (Supported()) {
|
if (Supported()
|
||||||
|
&& GetCapabilities().contains(qsl("inhibitions"))
|
||||||
|
&& !InhibitedNotSupported) {
|
||||||
return Inhibited();
|
return Inhibited();
|
||||||
}
|
}
|
||||||
#endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION
|
#endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION
|
||||||
|
@ -427,14 +454,22 @@ Manager::Private::Private(not_null<Manager*> manager, Type type)
|
||||||
const auto capabilities = GetCapabilities();
|
const auto capabilities = GetCapabilities();
|
||||||
|
|
||||||
if (!serverInformation.empty()) {
|
if (!serverInformation.empty()) {
|
||||||
LOG(("Notification daemon product name: %1").arg(serverInformation[0]));
|
LOG(("Notification daemon product name: %1")
|
||||||
LOG(("Notification daemon vendor name: %1").arg(serverInformation[1]));
|
.arg(serverInformation[0]));
|
||||||
LOG(("Notification daemon version: %1").arg(serverInformation[2]));
|
|
||||||
LOG(("Notification daemon specification version: %1").arg(serverInformation[3]));
|
LOG(("Notification daemon vendor name: %1")
|
||||||
|
.arg(serverInformation[1]));
|
||||||
|
|
||||||
|
LOG(("Notification daemon version: %1")
|
||||||
|
.arg(serverInformation[2]));
|
||||||
|
|
||||||
|
LOG(("Notification daemon specification version: %1")
|
||||||
|
.arg(serverInformation[3]));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!capabilities.isEmpty()) {
|
if (!capabilities.isEmpty()) {
|
||||||
LOG(("Notification daemon capabilities: %1").arg(capabilities.join(", ")));
|
LOG(("Notification daemon capabilities: %1")
|
||||||
|
.arg(capabilities.join(", ")));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -359,6 +359,12 @@ std::optional<crl::time> LastUserInputTime() {
|
||||||
// TODO: a fallback pure-X11 implementation, this one covers only major DEs on X11 and Wayland
|
// TODO: a fallback pure-X11 implementation, this one covers only major DEs on X11 and Wayland
|
||||||
// an example: https://stackoverflow.com/q/9049087
|
// an example: https://stackoverflow.com/q/9049087
|
||||||
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
|
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
|
||||||
|
static auto NotSupported = false;
|
||||||
|
|
||||||
|
if (NotSupported) {
|
||||||
|
return std::nullopt;
|
||||||
|
}
|
||||||
|
|
||||||
static const auto message = QDBusMessage::createMethodCall(
|
static const auto message = QDBusMessage::createMethodCall(
|
||||||
qsl("org.freedesktop.ScreenSaver"),
|
qsl("org.freedesktop.ScreenSaver"),
|
||||||
qsl("/org/freedesktop/ScreenSaver"),
|
qsl("/org/freedesktop/ScreenSaver"),
|
||||||
|
@ -368,10 +374,20 @@ std::optional<crl::time> LastUserInputTime() {
|
||||||
const QDBusReply<uint> reply = QDBusConnection::sessionBus().call(
|
const QDBusReply<uint> reply = QDBusConnection::sessionBus().call(
|
||||||
message);
|
message);
|
||||||
|
|
||||||
|
constexpr auto notSupportedErrors = {
|
||||||
|
QDBusError::ServiceUnknown,
|
||||||
|
QDBusError::NotSupported,
|
||||||
|
};
|
||||||
|
|
||||||
if (reply.isValid()) {
|
if (reply.isValid()) {
|
||||||
return (crl::now() - static_cast<crl::time>(reply.value()));
|
return (crl::now() - static_cast<crl::time>(reply.value()));
|
||||||
} else if (reply.error().type() != QDBusError::ServiceUnknown
|
} else if (ranges::contains(notSupportedErrors, reply.error().type())) {
|
||||||
&& reply.error().type() != QDBusError::NotSupported) {
|
NotSupported = true;
|
||||||
|
} else {
|
||||||
|
if (reply.error().type() == QDBusError::AccessDenied) {
|
||||||
|
NotSupported = true;
|
||||||
|
}
|
||||||
|
|
||||||
LOG(("Unable to get last user input time: %1: %2")
|
LOG(("Unable to get last user input time: %1: %2")
|
||||||
.arg(reply.error().name())
|
.arg(reply.error().name())
|
||||||
.arg(reply.error().message()));
|
.arg(reply.error().message()));
|
||||||
|
|
Loading…
Reference in New Issue