// SPDX-FileCopyrightText: 2019-2024 Connor McLaughlin and contributors. // SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0) #include "input_manager.h" #include "platform_misc.h" #include "common/log.h" #include "common/path.h" #include "common/scoped_guard.h" #include "common/small_string.h" #include #include #include #include Log_SetChannel(PlatformMisc); static bool SetScreensaverInhibitDBus(const bool inhibit_requested, const char* program_name, const char* reason) { static dbus_uint32_t s_cookie; const char* bus_method = (inhibit_requested) ? "Inhibit" : "UnInhibit"; DBusError error; DBusConnection* connection = nullptr; static DBusConnection* s_comparison_connection; DBusMessage* message = nullptr; DBusMessage* response = nullptr; DBusMessageIter message_itr; ScopedGuard cleanup = [&]() { if (dbus_error_is_set(&error)) { ERROR_LOG("SetScreensaverInhibitDBus error: {}", error.message); dbus_error_free(&error); } if (message) dbus_message_unref(message); if (response) dbus_message_unref(response); }; dbus_error_init(&error); // Calling dbus_bus_get() after the first time returns a pointer to the existing connection. connection = dbus_bus_get(DBUS_BUS_SESSION, &error); if (!connection || (dbus_error_is_set(&error))) return false; if (s_comparison_connection != connection) { dbus_connection_set_exit_on_disconnect(connection, false); s_cookie = 0; s_comparison_connection = connection; } message = dbus_message_new_method_call("org.freedesktop.ScreenSaver", "/org/freedesktop/ScreenSaver", "org.freedesktop.ScreenSaver", bus_method); if (!message) return false; // Initialize an append iterator for the message, gets freed with the message. dbus_message_iter_init_append(message, &message_itr); if (inhibit_requested) { // Guard against repeat inhibitions which would add extra inhibitors each generating a different cookie. if (s_cookie) return false; // Append process/window name. if (!dbus_message_iter_append_basic(&message_itr, DBUS_TYPE_STRING, &program_name)) return false; // Append reason for inhibiting the screensaver. if (!dbus_message_iter_append_basic(&message_itr, DBUS_TYPE_STRING, &reason)) return false; } else { // Only Append the cookie. if (!dbus_message_iter_append_basic(&message_itr, DBUS_TYPE_UINT32, &s_cookie)) return false; } // Send message and get response. response = dbus_connection_send_with_reply_and_block(connection, message, DBUS_TIMEOUT_USE_DEFAULT, &error); if (!response || dbus_error_is_set(&error)) return false; s_cookie = 0; if (inhibit_requested) { // Get the cookie from the response message. if (!dbus_message_get_args(response, &error, DBUS_TYPE_UINT32, &s_cookie, DBUS_TYPE_INVALID) || dbus_error_is_set(&error)) return false; } return true; } static bool SetScreensaverInhibit(bool inhibit) { return SetScreensaverInhibitDBus(inhibit, "DuckStation", "DuckStation VM is running."); } static bool s_screensaver_suspended; void PlatformMisc::SuspendScreensaver() { if (s_screensaver_suspended) return; if (!SetScreensaverInhibit(true)) { ERROR_LOG("Failed to suspend screensaver."); return; } s_screensaver_suspended = true; } void PlatformMisc::ResumeScreensaver() { if (!s_screensaver_suspended) return; if (!SetScreensaverInhibit(false)) ERROR_LOG("Failed to resume screensaver."); s_screensaver_suspended = false; } size_t PlatformMisc::GetRuntimePageSize() { int res = sysconf(_SC_PAGESIZE); return (res > 0) ? static_cast(res) : 0; } size_t PlatformMisc::GetRuntimeCacheLineSize() { int l1i = sysconf(_SC_LEVEL1_DCACHE_LINESIZE); int l1d = sysconf(_SC_LEVEL1_ICACHE_LINESIZE); int res = (l1i > l1d) ? l1i : l1d; for (int index = 0; index < 16; index++) { char buf[128]; snprintf(buf, sizeof(buf), "/sys/devices/system/cpu/cpu0/cache/index%d/coherency_line_size", index); std::FILE* fp = std::fopen(buf, "rb"); if (!fp) break; std::fread(buf, sizeof(buf), 1, fp); std::fclose(fp); int val = std::atoi(buf); res = (val > res) ? val : res; } return (res > 0) ? static_cast(res) : 0; } bool PlatformMisc::PlaySoundAsync(const char* path) { #ifdef __linux__ // This is... pretty awful. But I can't think of a better way without linking to e.g. gstreamer. const char* cmdname = "aplay"; const char* argv[] = {cmdname, path, nullptr}; pid_t pid; // Since we set SA_NOCLDWAIT in Qt, we don't need to wait here. int res = posix_spawnp(&pid, cmdname, nullptr, nullptr, const_cast(argv), environ); if (res == 0) return true; // Try gst-play-1.0. const char* gst_play_cmdname = "gst-play-1.0"; const char* gst_play_argv[] = {cmdname, path, nullptr}; res = posix_spawnp(&pid, gst_play_cmdname, nullptr, nullptr, const_cast(gst_play_argv), environ); if (res == 0) return true; // gst-launch? Bit messier for sure. TinyString location_str = TinyString::from_format("location={}", path); TinyString parse_str = TinyString::from_format("{}parse", Path::GetExtension(path)); const char* gst_launch_cmdname = "gst-launch-1.0"; const char* gst_launch_argv[] = {gst_launch_cmdname, "filesrc", location_str.c_str(), "!", parse_str.c_str(), "!", "alsasink", nullptr}; res = posix_spawnp(&pid, gst_launch_cmdname, nullptr, nullptr, const_cast(gst_launch_argv), environ); if (res == 0) return true; ERROR_LOG("Failed to play sound effect {}. Make sure you have aplay, gst-play-1.0, or gst-launch-1.0 available.", path); return false; #else return false; #endif }