summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrbuj <[email protected]>2019-04-17 09:58:36 +0200
committerraveit65 <[email protected]>2019-04-19 12:42:06 +0200
commitfe7adc8dd8c350e89677930b9efe9c6cc7dc8759 (patch)
tree145fe4b223f8841fb26e05931569b4a7908c3b0c
parent52532ffb9cea00d1bc8f29f4da14081d475b28ad (diff)
downloadmate-system-monitor-fe7adc8dd8c350e89677930b9efe9c6cc7dc8759.tar.bz2
mate-system-monitor-fe7adc8dd8c350e89677930b9efe9c6cc7dc8759.tar.xz
Show GPU info on the System tab
based on https://gitlab.gnome.org/GNOME/gnome-control-center/blob/master/panels/info/cc-info-overview-panel.c Close #150 Requires mate-desktop/mate-session-manager#203
-rw-r--r--src/Makefile.am3
-rw-r--r--src/procman_pkexec.cpp2
-rw-r--r--src/sysinfo.cpp92
3 files changed, 92 insertions, 5 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 2140770..b32983d 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -4,7 +4,8 @@ AM_CPPFLAGS = \
-DPROCMAN_DATADIR=\""$(datadir)/procman/"\" \
-DMATELOCALEDIR=\""$(datadir)/locale"\" \
-DDATADIR=\""$(datadir)"\" \
- -DLIBEXEC_DIR=\""$(pkglibexecdir)"\" \
+ -DPKGLIBEXECDIR=\""$(pkglibexecdir)"\" \
+ -DLIBEXECDIR=\""$(libexecdir)"\" \
@PROCMAN_CFLAGS@ \
@SYSTEMD_CFLAGS@
diff --git a/src/procman_pkexec.cpp b/src/procman_pkexec.cpp
index f67be6a..db83891 100644
--- a/src/procman_pkexec.cpp
+++ b/src/procman_pkexec.cpp
@@ -10,7 +10,7 @@ procman_pkexec_create_root_password_dialog (const char *command)
GError *error = NULL;
command_line = g_strdup_printf ("pkexec --disable-internal-agent %s/msm-%s",
- LIBEXEC_DIR, command);
+ PKGLIBEXECDIR, command);
success = g_spawn_command_line_sync (command_line, NULL, NULL, NULL, &error);
g_free (command_line);
diff --git a/src/sysinfo.cpp b/src/sysinfo.cpp
index 594f61f..5b4b80d 100644
--- a/src/sysinfo.cpp
+++ b/src/sysinfo.cpp
@@ -21,6 +21,7 @@
#include <math.h>
#include <errno.h>
+#include <exception>
#include <string>
#include <vector>
#include <fstream>
@@ -38,7 +39,6 @@ using std::vector;
namespace {
-
class SysInfo
{
public:
@@ -50,12 +50,13 @@ namespace {
guint64 memory_bytes;
guint64 free_space_bytes;
+ string graphics;
string processors;
-
SysInfo()
{
this->load_processors_info();
+ this->load_graphics_info();
this->load_memory_info();
this->load_disk_info();
this->load_uname_info();
@@ -215,6 +216,89 @@ namespace {
return pretty;
}
+ static char* get_renderer_from_helper (gboolean discrete_gpu)
+ {
+ int status;
+ const char *argv[] = { LIBEXECDIR "/mate-session-check-accelerated", NULL };
+ g_auto(GStrv) envp = NULL;
+ g_autofree char *renderer = NULL;
+ g_autoptr(GError) error = NULL;
+
+ if (discrete_gpu)
+ {
+ envp = g_get_environ ();
+ envp = g_environ_setenv (envp, "DRI_PRIME", "1", TRUE);
+ }
+
+ if (!g_spawn_sync (NULL, (char **) argv, envp, G_SPAWN_DEFAULT, NULL, NULL, &renderer, NULL, &status, &error))
+ {
+ g_debug ("Failed to get %s GPU: %s",
+ discrete_gpu ? "discrete" : "integrated",
+ error->message);
+ return NULL;
+ }
+
+ if (!g_spawn_check_exit_status (status, NULL))
+ return NULL;
+
+ if (renderer == NULL || *renderer == '\0')
+ return NULL;
+
+ return prettify_info (renderer);
+ }
+
+
+ void load_graphics_info()
+ {
+ g_autofree char *renderer = NULL;
+
+ try
+ {
+ g_autoptr(GDBusProxy) session_proxy = NULL;
+ g_autoptr(GVariant) renderer_variant = NULL;
+ g_autoptr(GError) error = NULL;
+
+ session_proxy = g_dbus_proxy_new_for_bus_sync (G_BUS_TYPE_SESSION,
+ G_DBUS_PROXY_FLAGS_NONE,
+ NULL,
+ "org.gnome.SessionManager",
+ "/org/gnome/SessionManager",
+ "org.gnome.SessionManager",
+ NULL, &error);
+ if (error != NULL)
+ {
+ throw std::runtime_error ("Unable to connect to create a proxy for org.gnome.SessionManager");
+ }
+
+ renderer_variant = g_dbus_proxy_get_cached_property (session_proxy, "Renderer");
+ if (!renderer_variant)
+ {
+ throw std::runtime_error ("Unable to retrieve org.gnome.SessionManager.Renderer property.");
+ }
+
+ renderer = prettify_info (g_variant_get_string (renderer_variant, NULL));
+ }
+ catch (std::exception& e)
+ {
+ g_warning ("%s", e.what());
+ }
+
+ if (renderer == NULL)
+ renderer = get_renderer_from_helper (FALSE);
+
+ if (renderer == NULL)
+ renderer = get_renderer_from_helper (TRUE);
+
+ if (renderer)
+ {
+ this->graphics = g_strdup (renderer);
+ }
+ else
+ {
+ this->graphics = _("Unknown");
+ }
+ }
+
void load_processors_info()
{
const glibtop_sysinfo *info = glibtop_get_sysinfo();
@@ -912,7 +996,7 @@ procman_create_sysinfo_view(void)
/* hardware section */
markup = g_strdup_printf("<b>%s</b>", _("Hardware"));
- hardware_table = add_section(GTK_BOX(vbox), markup, 1, 2, NULL);
+ hardware_table = add_section(GTK_BOX(vbox), markup, 1, 3, NULL);
g_free(markup);
markup = g_format_size_full(data->memory_bytes, G_FORMAT_SIZE_IEC_UNITS);
@@ -922,6 +1006,8 @@ procman_create_sysinfo_view(void)
markup = NULL;
add_row(GTK_GRID(hardware_table), _("Processor:"),
data->processors.c_str(), 1);
+ add_row(GTK_GRID(hardware_table), _("Graphics:"),
+ data->graphics.c_str(), 2);
if(markup)
g_free(markup);