2009-09-08 12:08:10 +00:00
|
|
|
/* PCSX2 - PS2 Emulator for PCs
|
2021-08-15 14:49:13 +00:00
|
|
|
* Copyright (C) 2002-2021 PCSX2 Dev Team
|
2009-10-04 20:28:08 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* PCSX2 is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU Lesser General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
2009-03-01 03:30:19 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* PCSX2 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.
|
2009-03-01 03:30:19 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along with PCSX2.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
2009-03-01 03:30:19 +00:00
|
|
|
*/
|
2009-10-04 20:28:08 +00:00
|
|
|
|
2021-09-03 10:43:33 +00:00
|
|
|
#if !defined(_WIN32) && !defined(__APPLE__)
|
2009-03-01 03:30:19 +00:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <time.h>
|
2012-03-17 11:21:51 +00:00
|
|
|
#include <unistd.h>
|
2022-10-02 13:42:59 +00:00
|
|
|
#include <optional>
|
2022-04-18 13:35:14 +00:00
|
|
|
#include <spawn.h>
|
2009-03-01 03:30:19 +00:00
|
|
|
#include <sys/time.h>
|
2022-04-18 13:35:14 +00:00
|
|
|
#include <sys/wait.h>
|
2022-10-02 13:42:59 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "fmt/core.h"
|
2009-03-01 03:30:19 +00:00
|
|
|
|
2021-09-03 10:43:33 +00:00
|
|
|
#include "common/Pcsx2Types.h"
|
2022-05-18 13:27:23 +00:00
|
|
|
#include "common/General.h"
|
2023-07-11 22:23:36 +00:00
|
|
|
#include "common/ScopedGuard.h"
|
2022-10-02 13:42:59 +00:00
|
|
|
#include "common/StringUtil.h"
|
2022-12-04 04:52:26 +00:00
|
|
|
#include "common/Threading.h"
|
2022-10-02 13:05:05 +00:00
|
|
|
#include "common/WindowInfo.h"
|
2021-09-03 10:43:33 +00:00
|
|
|
|
2023-04-29 07:18:36 +00:00
|
|
|
#ifdef DBUS_API
|
|
|
|
#include <dbus/dbus.h>
|
|
|
|
#endif
|
|
|
|
|
2010-11-23 21:32:52 +00:00
|
|
|
// Returns 0 on failure (not supported by the operating system).
|
|
|
|
u64 GetPhysicalMemory()
|
|
|
|
{
|
2021-08-18 12:28:47 +00:00
|
|
|
u64 pages = 0;
|
2010-11-23 21:32:52 +00:00
|
|
|
|
|
|
|
#ifdef _SC_PHYS_PAGES
|
2021-08-18 12:28:47 +00:00
|
|
|
pages = sysconf(_SC_PHYS_PAGES);
|
2010-11-23 21:32:52 +00:00
|
|
|
#endif
|
|
|
|
|
2021-08-18 12:28:47 +00:00
|
|
|
return pages * getpagesize();
|
2010-11-23 21:32:52 +00:00
|
|
|
}
|
2009-10-04 21:49:23 +00:00
|
|
|
|
2009-03-01 03:30:19 +00:00
|
|
|
u64 GetTickFrequency()
|
|
|
|
{
|
2022-10-02 13:42:59 +00:00
|
|
|
return 1000000000; // unix measures in nanoseconds
|
2009-03-01 03:30:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
u64 GetCPUTicks()
|
|
|
|
{
|
2022-04-07 12:41:07 +00:00
|
|
|
struct timespec ts;
|
|
|
|
clock_gettime(CLOCK_MONOTONIC, &ts);
|
|
|
|
return (static_cast<u64>(ts.tv_sec) * 1000000000ULL) + ts.tv_nsec;
|
2009-03-01 03:30:19 +00:00
|
|
|
}
|
2009-11-26 03:37:10 +00:00
|
|
|
|
2022-05-18 13:27:23 +00:00
|
|
|
std::string GetOSVersionString()
|
2009-11-26 03:37:10 +00:00
|
|
|
{
|
2021-10-03 20:21:44 +00:00
|
|
|
#if defined(__linux__)
|
2022-05-18 13:27:23 +00:00
|
|
|
return "Linux";
|
2021-10-03 20:21:44 +00:00
|
|
|
#else // freebsd
|
2022-05-18 13:27:23 +00:00
|
|
|
return "Other Unix";
|
2021-10-03 20:21:44 +00:00
|
|
|
#endif
|
2009-11-26 03:37:10 +00:00
|
|
|
}
|
|
|
|
|
2023-04-29 07:18:36 +00:00
|
|
|
#ifdef DBUS_API
|
|
|
|
|
2023-07-11 22:23:36 +00:00
|
|
|
static bool SetScreensaverInhibitDBus(const bool inhibit_requested, const char* program_name, const char* reason)
|
2023-04-29 07:18:36 +00:00
|
|
|
{
|
2023-05-03 14:08:00 +00:00
|
|
|
static dbus_uint32_t s_cookie;
|
2023-07-11 22:23:36 +00:00
|
|
|
const char* bus_method = (inhibit_requested) ? "Inhibit" : "UnInhibit";
|
2023-04-29 07:18:36 +00:00
|
|
|
DBusError error_dbus;
|
|
|
|
DBusConnection* connection = nullptr;
|
2023-07-11 22:23:36 +00:00
|
|
|
static DBusConnection* s_comparison_connection;
|
2023-04-29 07:18:36 +00:00
|
|
|
DBusMessage* message = nullptr;
|
|
|
|
DBusMessage* response = nullptr;
|
|
|
|
DBusMessageIter message_itr;
|
2023-07-11 22:23:36 +00:00
|
|
|
|
|
|
|
ScopedGuard cleanup = [&]() {
|
|
|
|
if (dbus_error_is_set(&error_dbus))
|
|
|
|
dbus_error_free(&error_dbus);
|
|
|
|
if (message)
|
|
|
|
dbus_message_unref(message);
|
|
|
|
if (response)
|
|
|
|
dbus_message_unref(response);
|
|
|
|
};
|
|
|
|
|
|
|
|
dbus_error_init(&error_dbus);
|
|
|
|
// Calling dbus_bus_get() after the first time returns a pointer to the existing connection.
|
|
|
|
connection = dbus_bus_get(DBUS_BUS_SESSION, &error_dbus);
|
|
|
|
if (!connection || (dbus_error_is_set(&error_dbus)))
|
|
|
|
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.
|
2023-04-29 07:18:36 +00:00
|
|
|
dbus_message_iter_init_append(message, &message_itr);
|
|
|
|
if (inhibit_requested)
|
|
|
|
{
|
2023-07-11 22:23:36 +00:00
|
|
|
// Guard against repeat inhibitions which would add extra inhibitors each generating a different cookie.
|
|
|
|
if (s_cookie)
|
|
|
|
return false;
|
2023-04-29 07:18:36 +00:00
|
|
|
// Append process/window name.
|
|
|
|
if (!dbus_message_iter_append_basic(&message_itr, DBUS_TYPE_STRING, &program_name))
|
2023-07-11 22:23:36 +00:00
|
|
|
return false;
|
2023-04-29 07:18:36 +00:00
|
|
|
// Append reason for inhibiting the screensaver.
|
|
|
|
if (!dbus_message_iter_append_basic(&message_itr, DBUS_TYPE_STRING, &reason))
|
2023-07-11 22:23:36 +00:00
|
|
|
return false;
|
2023-04-29 07:18:36 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Only Append the cookie.
|
2023-05-03 14:08:00 +00:00
|
|
|
if (!dbus_message_iter_append_basic(&message_itr, DBUS_TYPE_UINT32, &s_cookie))
|
2023-07-11 22:23:36 +00:00
|
|
|
return false;
|
2023-04-29 07:18:36 +00:00
|
|
|
}
|
|
|
|
// Send message and get response.
|
2023-07-11 22:23:36 +00:00
|
|
|
response = dbus_connection_send_with_reply_and_block(connection, message, DBUS_TIMEOUT_USE_DEFAULT, &error_dbus);
|
|
|
|
if (!response || dbus_error_is_set(&error_dbus))
|
|
|
|
return false;
|
|
|
|
s_cookie = 0;
|
2023-04-29 07:18:36 +00:00
|
|
|
if (inhibit_requested)
|
|
|
|
{
|
|
|
|
// Get the cookie from the response message.
|
2023-07-11 22:23:36 +00:00
|
|
|
if (!dbus_message_get_args(response, &error_dbus, DBUS_TYPE_UINT32, &s_cookie, DBUS_TYPE_INVALID) || dbus_error_is_set(&error_dbus))
|
|
|
|
return false;
|
2023-04-29 07:18:36 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(DBUS_API) && defined(X11_API)
|
2022-10-02 13:42:59 +00:00
|
|
|
|
|
|
|
static bool SetScreensaverInhibitX11(const WindowInfo& wi, bool inhibit)
|
|
|
|
{
|
2023-05-03 14:08:00 +00:00
|
|
|
extern char** environ;
|
2022-10-27 14:56:17 +00:00
|
|
|
|
2022-10-02 13:42:59 +00:00
|
|
|
const char* command = "xdg-screensaver";
|
|
|
|
const char* operation = inhibit ? "suspend" : "resume";
|
|
|
|
std::string id = fmt::format("0x{:X}", static_cast<u64>(reinterpret_cast<uintptr_t>(wi.window_handle)));
|
|
|
|
|
|
|
|
char* argv[4] = {const_cast<char*>(command), const_cast<char*>(operation), const_cast<char*>(id.c_str()),
|
|
|
|
nullptr};
|
|
|
|
|
|
|
|
// Since we set SA_NOCLDWAIT in Qt, we don't need to wait here.
|
|
|
|
pid_t pid;
|
|
|
|
int res = posix_spawnp(&pid, "xdg-screensaver", nullptr, nullptr, argv, environ);
|
|
|
|
return (res == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool SetScreensaverInhibit(const WindowInfo& wi, bool inhibit)
|
|
|
|
{
|
|
|
|
switch (wi.type)
|
|
|
|
{
|
|
|
|
#ifdef X11_API
|
|
|
|
case WindowInfo::Type::X11:
|
|
|
|
return SetScreensaverInhibitX11(wi, inhibit);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static std::optional<WindowInfo> s_inhibit_window_info;
|
|
|
|
|
2023-04-29 07:18:36 +00:00
|
|
|
#endif
|
|
|
|
|
2022-10-02 13:05:05 +00:00
|
|
|
bool WindowInfo::InhibitScreensaver(const WindowInfo& wi, bool inhibit)
|
2015-02-26 02:08:58 +00:00
|
|
|
{
|
2023-04-29 07:18:36 +00:00
|
|
|
|
|
|
|
#ifdef DBUS_API
|
|
|
|
|
2023-07-11 22:23:36 +00:00
|
|
|
return SetScreensaverInhibitDBus(inhibit, "PCSX2", "PCSX2 VM is running.");
|
2023-04-29 07:18:36 +00:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2022-10-02 13:42:59 +00:00
|
|
|
if (s_inhibit_window_info.has_value())
|
|
|
|
{
|
|
|
|
// Bit of extra logic here, because wx spams it and we don't want to
|
|
|
|
// spawn processes unnecessarily.
|
|
|
|
if (s_inhibit_window_info->type == wi.type &&
|
|
|
|
s_inhibit_window_info->window_handle == wi.window_handle &&
|
|
|
|
s_inhibit_window_info->surface_handle == wi.surface_handle)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// Clear the old.
|
|
|
|
SetScreensaverInhibit(s_inhibit_window_info.value(), false);
|
|
|
|
s_inhibit_window_info.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!inhibit)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// New window.
|
|
|
|
if (!SetScreensaverInhibit(wi, true))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
s_inhibit_window_info = wi;
|
|
|
|
return true;
|
2023-04-29 07:18:36 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2015-02-26 02:08:58 +00:00
|
|
|
}
|
2022-04-18 13:35:14 +00:00
|
|
|
|
|
|
|
bool Common::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<char**>(argv), environ);
|
|
|
|
return (res == 0);
|
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2022-12-04 04:52:26 +00:00
|
|
|
void Threading::Sleep(int ms)
|
|
|
|
{
|
|
|
|
usleep(1000 * ms);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Threading::SleepUntil(u64 ticks)
|
|
|
|
{
|
|
|
|
struct timespec ts;
|
|
|
|
ts.tv_sec = static_cast<time_t>(ticks / 1000000000ULL);
|
|
|
|
ts.tv_nsec = static_cast<long>(ticks % 1000000000ULL);
|
|
|
|
clock_nanosleep(CLOCK_MONOTONIC, TIMER_ABSTIME, &ts, nullptr);
|
|
|
|
}
|
|
|
|
|
2021-09-01 20:31:46 +00:00
|
|
|
#endif
|