#include "common/log.h" #include "common/string.h" #include "platform_misc.h" #include "input_manager.h" #include Log_SetChannel(FrontendCommon); #ifdef USE_X11 #include #include #include #include static bool SetScreensaverInhibitX11(bool inhibit, const WindowInfo& wi) { TinyString command; command.AppendString("xdg-screensaver"); TinyString operation; operation.AppendString(inhibit ? "suspend" : "resume"); TinyString id; id.Format("0x%" PRIx64, static_cast(reinterpret_cast(wi.window_handle))); char* argv[4] = {command.GetWriteableCharArray(), operation.GetWriteableCharArray(), id.GetWriteableCharArray(), nullptr}; pid_t pid; int res = posix_spawnp(&pid, "xdg-screensaver", nullptr, nullptr, argv, environ); if (res != 0) { Log_ErrorPrintf("posix_spawnp() failed: %d", res); return false; } return true; } #endif // USE_X11 static bool SetScreensaverInhibit(bool inhibit) { std::optional wi(Host::GetTopLevelWindowInfo()); if (!wi.has_value()) { Log_ErrorPrintf("No top-level window."); return false; } switch (wi->type) { #ifdef USE_X11 case WindowInfo::Type::X11: return SetScreensaverInhibitX11(inhibit, wi.value()); #endif default: Log_ErrorPrintf("Unknown type: %u", static_cast(wi->type)); return false; } } static bool s_screensaver_suspended; void FrontendCommon::SuspendScreensaver() { if (s_screensaver_suspended) return; if (!SetScreensaverInhibit(true)) { Log_ErrorPrintf("Failed to suspend screensaver."); return; } s_screensaver_suspended = true; } void FrontendCommon::ResumeScreensaver() { if (!s_screensaver_suspended) return; if (!SetScreensaverInhibit(false)) Log_ErrorPrint("Failed to resume screensaver."); s_screensaver_suspended = false; } bool FrontendCommon::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); return (res == 0); #else return false; #endif }