summaryrefslogtreecommitdiff
path: root/src/sysinfo.cpp
diff options
context:
space:
mode:
authorinfirit <[email protected]>2014-12-18 21:19:18 +0100
committerinfirit <[email protected]>2014-12-18 21:19:18 +0100
commitddcc3d917199808066e06f299073f8707d8b7c1d (patch)
tree6e26998022d5df61be48d64b75023f99da01d4a4 /src/sysinfo.cpp
parentc3512fc727f2e7f78a2d210708f8ef790da66559 (diff)
downloadmate-system-monitor-ddcc3d917199808066e06f299073f8707d8b7c1d.tar.bz2
mate-system-monitor-ddcc3d917199808066e06f299073f8707d8b7c1d.tar.xz
Summarize the processor cores to be able to display sysinfo for multi-core systems with more than 13 cores.
Taken from GSM commit: f411100611febe8beebba57f6e0480abf446b2bc From: Robert Roth <[email protected]> Gnome bug: https://bugzilla.gnome.org/show_bug.cgi?id=664926
Diffstat (limited to 'src/sysinfo.cpp')
-rw-r--r--src/sysinfo.cpp161
1 files changed, 125 insertions, 36 deletions
diff --git a/src/sysinfo.cpp b/src/sysinfo.cpp
index cb4f3d9..e60e133 100644
--- a/src/sysinfo.cpp
+++ b/src/sysinfo.cpp
@@ -50,8 +50,7 @@ namespace {
guint64 memory_bytes;
guint64 free_space_bytes;
- guint n_processors;
- vector<string> processors;
+ string processors;
SysInfo()
@@ -99,36 +98,135 @@ namespace {
this->memory_bytes = mem.total;
}
+ typedef struct
+ {
+ const char* regex;
+ const char* replacement;
+ } ReplaceStrings;
+
+ static char* remove_duplicate_whitespace (const char* old)
+ {
+ char* result;
+ GRegex* re;
+ GError* error = NULL;
+ const GRegexMatchFlags flags = static_cast<GRegexMatchFlags>(0);
+
+ re = g_regex_new ("[ \t\n\r]+", G_REGEX_MULTILINE, flags, &error);
+ if (re == NULL) {
+ g_warning ("Error building regex: %s", error->message);
+ g_error_free (error);
+ return g_strdup (old);
+ }
+ result = g_regex_replace (re, old, -1, 0, " ", flags, &error);
+ g_regex_unref (re);
+ if (result == NULL) {
+ g_warning ("Error replacing string: %s", error->message);
+ g_error_free (error);
+ return g_strdup (old);
+ }
+
+ return result;
+ }
+
+ static char* prettify_info (const char *info)
+ {
+ char* pretty;
+ const GRegexCompileFlags cflags = static_cast<GRegexCompileFlags>(0);
+ const GRegexMatchFlags mflags = static_cast<GRegexMatchFlags>(0);
+
+ static const ReplaceStrings rs[] = {
+ { "Intel[(]R[)]", "Intel\302\256"},
+ { "Core[(]TM[)]", "Core\342\204\242"},
+ { "Atom[(]TM[)]", "Atom\342\204\242"},
+ };
+
+ pretty = g_markup_escape_text (info, -1);
+
+ for (uint i = 0; i < G_N_ELEMENTS (rs); i++) {
+ GError* error;
+ GRegex* re;
+ char* result;
+
+ error = NULL;
+
+ re = g_regex_new (rs[i].regex, cflags, mflags, &error);
+ if (re == NULL) {
+ g_warning ("Error building regex: %s", error->message);
+ g_error_free (error);
+ continue;
+ }
+
+ result = g_regex_replace_literal (re, pretty, -1, 0,
+ rs[i].replacement, mflags, &error);
+
+ g_regex_unref (re);
+
+ if (error != NULL) {
+ g_warning ("Error replacing %s: %s", rs[i].regex, error->message);
+ g_error_free (error);
+ continue;
+ }
+
+ g_free (pretty);
+ pretty = result;
+ }
+
+ return pretty;
+ }
void load_processors_info()
{
const glibtop_sysinfo *info = glibtop_get_sysinfo();
- for (guint i = 0; i != info->ncpu; ++i) {
- const char * const keys[] = { "model name", "cpu", "Processor" };
- gchar *model = 0, *clock = 0;
- guint last;
+ GHashTable* counts;
+ GString* cpu;
+ GHashTableIter iter;
+ gpointer key, value;
- for (guint j = 0; !model && j != G_N_ELEMENTS(keys); ++j) {
- last = j;
- model = static_cast<char*>(g_hash_table_lookup(info->cpuinfo[i].values,
- keys[j]));
+ counts = g_hash_table_new (g_str_hash, g_str_equal);
+
+ /* count duplicates */
+ for (uint i = 0; i != info->ncpu; ++i) {
+ const char* const keys[] = { "model name", "cpu" };
+ char* model;
+ int* count;
+
+ model = NULL;
+
+ for (int j = 0; model == NULL && j != G_N_ELEMENTS (keys); ++j) {
+ model = static_cast<char*>(g_hash_table_lookup (info->cpuinfo[i].values,
+ keys[j]));
}
- if (!model)
- continue;
+ if (model == NULL)
+ model = _("Unknown model");
- if (!strcmp(keys[last], "cpu"))
- clock = static_cast<char*>(g_hash_table_lookup(info->cpuinfo[i].values,
- "clock"));
- if (clock)
- this->processors.push_back(string(model) + " " + string(clock));
+ count = static_cast<int*>(g_hash_table_lookup (counts, model));
+ if (count == NULL)
+ g_hash_table_insert (counts, model, GINT_TO_POINTER (1));
else
- this->processors.push_back(model);
+ g_hash_table_replace (counts, model, GINT_TO_POINTER (GPOINTER_TO_INT (count) + 1));
}
- }
+ cpu = g_string_new (NULL);
+ g_hash_table_iter_init (&iter, counts);
+ while (g_hash_table_iter_next (&iter, &key, &value)) {
+ char* stripped;
+ int count;
+ count = GPOINTER_TO_INT (value);
+ stripped = remove_duplicate_whitespace ((const char *)key);
+ if (count > 1)
+ g_string_append_printf (cpu, "%s \303\227 %d ", stripped, count);
+ else
+ g_string_append_printf (cpu, "%s ", stripped);
+ g_free (stripped);
+ }
+
+ g_hash_table_destroy (counts);
+ this->processors = string(prettify_info (cpu->str));
+ g_string_free (cpu, TRUE);
+ }
void load_disk_info()
{
@@ -563,7 +661,8 @@ add_section(GtkBox *vbox , const char * title, int num_row, int num_col, GtkWidg
static GtkWidget*
add_row(GtkTable * table, const char * label, const char * value, int row)
{
- GtkWidget *header = gtk_label_new(label);
+ GtkWidget *header = gtk_label_new(NULL);
+ gtk_label_set_markup(GTK_LABEL(header), label);
gtk_label_set_selectable(GTK_LABEL(header), TRUE);
gtk_misc_set_alignment(GTK_MISC(header), 0.0, 0.5);
gtk_table_attach(
@@ -691,29 +790,19 @@ procman_create_sysinfo_view(void)
/* hardware section */
markup = g_strdup_printf(_("<b>Hardware</b>"));
- hardware_table = add_section(GTK_BOX(vbox), markup, data->processors.size(), 2, NULL);
+ hardware_table = add_section(GTK_BOX(vbox), markup, 1, 2, NULL);
g_free(markup);
markup = procman::format_size(data->memory_bytes);
add_row(GTK_TABLE(hardware_table), _("Memory:"), markup, 0);
g_free(markup);
- for (guint i = 0; i < data->processors.size(); ++i) {
- const gchar * t;
- if (data->processors.size() > 1) {
- markup = g_strdup_printf(_("Processor %d:"), i);
- t = markup;
- }
- else {
- markup = NULL;
- t = _("Processor:");
- }
-
- add_row(GTK_TABLE(hardware_table), t, data->processors[i].c_str(), 1 + i);
+ markup = NULL;
+ add_row(GTK_TABLE(hardware_table), _("Processor:"),
+ data->processors.c_str(), 1);
- if(markup)
- g_free(markup);
- }
+ if(markup)
+ g_free(markup);
/* disk space section */