1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593
|
/* MATE multiload panel applet
* (C) 1997 The Free Software Foundation
*
* Authors: Tim P. Gerla
* Martin Baulig
* Todd Kulesza
*
* With code from wmload.c, v0.9.2, apparently by Ryan Land, rland@bc1.com.
*
*/
#include <config.h>
#include <stdio.h>
#include <sys/stat.h>
#include <unistd.h>
#include <signal.h>
#include <dirent.h>
#include <string.h>
#include <time.h>
#include <glibtop.h>
#include <gtk/gtk.h>
#include <gdk/gdkkeysyms.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <gio/gio.h>
#include <gio/gdesktopappinfo.h>
#include <mate-panel-applet.h>
#include <mate-panel-applet-gsettings.h>
#include "global.h"
static void
about_cb (GtkAction *action,
MultiloadApplet *ma)
{
const gchar * const authors[] =
{
"Martin Baulig <martin@home-of-linux.org>",
"Todd Kulesza <fflewddur@dropline.net>",
"BenoƮt Dejean <TazForEver@dlfp.org>",
"Davyd Madeley <davyd@madeley.id.au>",
NULL
};
const gchar* documenters[] =
{
"Chee Bin HOH <cbhoh@gnome.org>",
N_("Sun GNOME Documentation Team <gdocteam@sun.com>"),
N_("MATE Documentation Team"),
NULL
};
#ifdef ENABLE_NLS
const char **p;
for (p = documenters; *p; ++p)
*p = _(*p);
#endif
gtk_show_about_dialog (NULL,
"title", _("About System Monitor"),
"version", VERSION,
"copyright", _("Copyright \xc2\xa9 1999-2005 Free Software Foundation and others\n"
"Copyright \xc2\xa9 2012-2020 MATE developers"),
"comments", _("A system load monitor capable of displaying graphs "
"for CPU, ram, and swap space use, plus network "
"traffic."),
"authors", authors,
"documenters", documenters,
"translator-credits", _("translator-credits"),
"logo-icon-name", "utilities-system-monitor",
NULL);
}
static void
help_cb (GtkAction *action,
MultiloadApplet *ma)
{
GError *error = NULL;
gtk_show_uri_on_window (NULL,
"help:mate-multiload",
gtk_get_current_event_time (),
&error);
if (error) { /* FIXME: the user needs to see this */
g_warning ("help error: %s\n", error->message);
g_error_free (error);
error = NULL;
}
}
/* run the full-scale system process monitor */
static void
start_procman (MultiloadApplet *ma)
{
GError *error = NULL;
GDesktopAppInfo *appinfo;
gchar *monitor;
GdkAppLaunchContext *launch_context;
GdkDisplay *display;
GAppInfo *app_info;
GdkScreen *screen;
g_return_if_fail (ma != NULL);
monitor = g_settings_get_string (ma->settings, "system-monitor");
if (monitor == NULL)
monitor = g_strdup ("mate-system-monitor.desktop");
screen = gtk_widget_get_screen (GTK_WIDGET (ma->applet));
appinfo = g_desktop_app_info_new (monitor);
if (appinfo) {
GdkScreen *screen;
GdkAppLaunchContext *context;
screen = gtk_widget_get_screen (GTK_WIDGET (ma->applet));
display = gdk_screen_get_display (screen);
context = gdk_display_get_app_launch_context (display);
gdk_app_launch_context_set_screen (context, screen);
g_app_info_launch (G_APP_INFO (appinfo), NULL, G_APP_LAUNCH_CONTEXT (context), &error);
g_object_unref (context);
g_object_unref (appinfo);
}
else {
app_info = g_app_info_create_from_commandline ("mate-system-monitor",
_("Start system-monitor"),
G_APP_INFO_CREATE_NONE,
&error);
if (!error) {
display = gdk_screen_get_display (screen);
launch_context = gdk_display_get_app_launch_context (display);
gdk_app_launch_context_set_screen (launch_context, screen);
g_app_info_launch (app_info, NULL, G_APP_LAUNCH_CONTEXT (launch_context), &error);
g_object_unref (launch_context);
}
}
g_free (monitor);
if (error) {
GtkWidget *dialog;
dialog = gtk_message_dialog_new (NULL,
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_OK,
_("There was an error executing '%s': %s"),
"mate-system-monitor",
error->message);
g_signal_connect (dialog, "response",
G_CALLBACK (gtk_widget_destroy),
NULL);
gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE);
gtk_window_set_screen (GTK_WINDOW (dialog),
gtk_widget_get_screen (GTK_WIDGET (ma->applet)));
gtk_widget_show (dialog);
g_error_free (error);
}
}
static void
start_procman_cb (GtkAction *action,
MultiloadApplet *ma)
{
start_procman (ma);
}
static void
multiload_change_size_cb(MatePanelApplet *applet, gint size, gpointer data)
{
MultiloadApplet *ma = (MultiloadApplet *)data;
multiload_applet_refresh(ma);
return;
}
static void
multiload_change_orient_cb(MatePanelApplet *applet, gint arg1, gpointer data)
{
MultiloadApplet *ma = data;
multiload_applet_refresh((MultiloadApplet *)data);
gtk_widget_show (GTK_WIDGET (ma->applet));
return;
}
static void
multiload_destroy_cb(GtkWidget *widget, gpointer data)
{
gint i;
MultiloadApplet *ma = data;
for (i = 0; i < NGRAPHS; i++)
{
load_graph_stop(ma->graphs[i]);
if (ma->graphs[i]->colors)
{
g_free (ma->graphs[i]->colors);
ma->graphs[i]->colors = NULL;
}
gtk_widget_destroy(ma->graphs[i]->main_widget);
load_graph_unalloc(ma->graphs[i]);
g_free(ma->graphs[i]);
}
if (ma->about_dialog)
gtk_widget_destroy (ma->about_dialog);
if (ma->prop_dialog)
gtk_widget_destroy (ma->prop_dialog);
gtk_widget_destroy(GTK_WIDGET(ma->applet));
g_free (ma);
return;
}
static gboolean
multiload_button_press_event_cb (GtkWidget *widget, GdkEventButton *event, MultiloadApplet *ma)
{
g_return_val_if_fail (event != NULL, FALSE);
g_return_val_if_fail (ma != NULL, FALSE);
if (event->button == 1 && event->type == GDK_BUTTON_PRESS) {
start_procman (ma);
return TRUE;
}
return FALSE;
}
static gboolean
multiload_key_press_event_cb (GtkWidget *widget, GdkEventKey *event, MultiloadApplet *ma)
{
g_return_val_if_fail (event != NULL, FALSE);
g_return_val_if_fail (ma != NULL, FALSE);
switch (event->keyval) {
/* this list of keyvals taken from mixer applet, which seemed to have
a good list of keys to use */
case GDK_KEY_KP_Enter:
case GDK_KEY_ISO_Enter:
case GDK_KEY_3270_Enter:
case GDK_KEY_Return:
case GDK_KEY_space:
case GDK_KEY_KP_Space:
/* activate */
start_procman (ma);
return TRUE;
default:
break;
}
return FALSE;
}
/* update the tooltip to the graph's current "used" percentage */
void
multiload_applet_tooltip_update(LoadGraph *g)
{
gchar *tooltip_text, *name;
g_assert(g);
g_assert(g->name);
/* label the tooltip intuitively */
if (!strncmp(g->name, "cpuload", strlen("cpuload")))
name = g_strdup(_("Processor"));
else if (!strncmp(g->name, "memload", strlen("memload")))
name = g_strdup(_("Memory"));
else if (!strncmp(g->name, "netload2", strlen("netload2")))
name = g_strdup(_("Network"));
else if (!strncmp(g->name, "swapload", strlen("swapload")))
name = g_strdup(_("Swap Space"));
else if (!strncmp(g->name, "loadavg", strlen("loadavg")))
name = g_strdup(_("Load Average"));
else if (!strncmp (g->name, "diskload", strlen("diskload")))
name = g_strdup(_("Disk"));
else
g_assert_not_reached();
if (!strncmp(g->name, "memload", strlen("memload"))) {
guint mem_user, mem_cache, user_percent, cache_percent;
mem_user = g->data[1][0];
mem_cache = g->data[1][1] + g->data[1][2] + g->data[1][3];
user_percent = 100.0f * mem_user / g->draw_height;
cache_percent = 100.0f * mem_cache / g->draw_height;
user_percent = MIN(user_percent, 100);
cache_percent = MIN(cache_percent, 100);
/* xgettext: use and cache are > 1 most of the time,
please assume that they always are.
*/
tooltip_text = g_strdup_printf(_("%s:\n"
"%u%% in use by programs\n"
"%u%% in use as cache"),
name,
user_percent,
cache_percent);
} else if (!strcmp(g->name, "loadavg")) {
tooltip_text = g_strdup_printf(_("The system load average is %0.02f"),
g->loadavg1);
} else if (!strcmp(g->name, "netload2")) {
char *tx_in, *tx_out;
tx_in = netspeed_get(g->netspeed_in);
tx_out = netspeed_get(g->netspeed_out);
/* xgettext: same as in graphic tab of g-s-m */
tooltip_text = g_strdup_printf(_("%s:\n"
"Receiving %s\n"
"Sending %s"),
name, tx_in, tx_out);
g_free(tx_in);
g_free(tx_out);
} else {
const char *msg;
guint i, total_used, percent;
for (i = 0, total_used = 0; i < (g->n - 1); i++)
total_used += g->data[1][i];
percent = 100.0f * total_used / g->draw_height;
percent = MIN(percent, 100);
msg = ngettext("%s:\n"
"%u%% in use",
"%s:\n"
"%u%% in use",
percent);
tooltip_text = g_strdup_printf(msg,
name,
percent);
}
gtk_widget_set_tooltip_text(g->disp, tooltip_text);
g_free(tooltip_text);
g_free(name);
}
static void
multiload_create_graphs(MultiloadApplet *ma)
{
struct { const char *label;
const char *name;
int num_colours;
LoadGraphDataFunc callback;
} graph_types[] = {
{ _("CPU Load"), "cpuload", 5, GetLoad },
{ _("Memory Load"), "memload", 5, GetMemory },
{ _("Net Load"), "netload2", 6, GetNet },
{ _("Swap Load"), "swapload", 2, GetSwap },
{ _("Load Average"), "loadavg", 3, GetLoadAvg },
{ _("Disk Load"), "diskload", 3, GetDiskLoad }
};
gint speed, size;
guint net_threshold1;
guint net_threshold2;
guint net_threshold3;
gint i;
speed = g_settings_get_int (ma->settings, "speed");
size = g_settings_get_int (ma->settings, "size");
net_threshold1 = g_settings_get_uint (ma->settings, "netthreshold1");
net_threshold2 = g_settings_get_uint (ma->settings, "netthreshold2");
net_threshold3 = g_settings_get_uint (ma->settings, "netthreshold3");
if (net_threshold1 >= net_threshold2)
{
net_threshold1 = net_threshold2 - 1;
}
if (net_threshold2 >= net_threshold3)
{
net_threshold3 = net_threshold2 + 1;
}
speed = MAX (speed, 50);
size = CLAMP (size, 10, 400);
for (i = 0; i < G_N_ELEMENTS (graph_types); i++)
{
gboolean visible;
char *key;
/* This is a special case to handle migration from an
* older version of netload to a newer one in the
* 2.25.1 release. */
if (g_strcmp0 ("netload2", graph_types[i].name) == 0) {
key = g_strdup ("view-netload");
} else {
key = g_strdup_printf ("view-%s", graph_types[i].name);
}
visible = g_settings_get_boolean (ma->settings, key);
g_free (key);
ma->graphs[i] = load_graph_new (ma,
graph_types[i].num_colours,
graph_types[i].label,
i,
speed,
size,
visible,
graph_types[i].name,
graph_types[i].callback);
}
/* for Network graph, colors[4] is grid line color, it should not be used in loop in load-graph.c */
/* for Network graph, colors[5] is indicator color, it should not be used in loop in load-graph.c */
ma->graphs[2]->n = 4;
ma->graphs[2]->net_threshold1 = net_threshold1;
ma->graphs[2]->net_threshold2 = net_threshold2;
ma->graphs[2]->net_threshold3 = net_threshold3;
/* for Load graph, colors[2] is grid line color, it should not be used in loop in load-graph.c */
ma->graphs[4]->n = 2;
}
/* remove the old graphs and rebuild them */
void
multiload_applet_refresh(MultiloadApplet *ma)
{
gint i;
MatePanelAppletOrient orientation;
/* stop and free the old graphs */
for (i = 0; i < NGRAPHS; i++)
{
if (!ma->graphs[i])
continue;
load_graph_stop(ma->graphs[i]);
gtk_widget_destroy(ma->graphs[i]->main_widget);
load_graph_unalloc(ma->graphs[i]);
g_free(ma->graphs[i]);
}
if (ma->box)
gtk_widget_destroy(ma->box);
orientation = mate_panel_applet_get_orient(ma->applet);
if ( (orientation == MATE_PANEL_APPLET_ORIENT_UP) ||
(orientation == MATE_PANEL_APPLET_ORIENT_DOWN) ) {
ma->box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
}
else
ma->box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
gtk_container_add(GTK_CONTAINER(ma->applet), ma->box);
/* create the NGRAPHS graphs, passing in their user-configurable properties with gsettings. */
multiload_create_graphs (ma);
/* only start and display the graphs the user has turned on */
for (i = 0; i < NGRAPHS; i++) {
gtk_box_pack_start(GTK_BOX(ma->box),
ma->graphs[i]->main_widget,
TRUE, TRUE, 1);
if (ma->graphs[i]->visible) {
gtk_widget_show_all (ma->graphs[i]->main_widget);
load_graph_start(ma->graphs[i]);
}
}
gtk_widget_show (ma->box);
return;
}
static const GtkActionEntry multiload_menu_actions [] = {
{ "MultiLoadProperties", "document-properties", N_("_Preferences"),
NULL, NULL,
G_CALLBACK (multiload_properties_cb) },
{ "MultiLoadRunProcman", "system-run", N_("_Open System Monitor"),
NULL, NULL,
G_CALLBACK (start_procman_cb) },
{ "MultiLoadHelp", "help-browser", N_("_Help"),
NULL, NULL,
G_CALLBACK (help_cb) },
{ "MultiLoadAbout", "help-about", N_("_About"),
NULL, NULL,
G_CALLBACK (about_cb) }
};
/* create a box and stuff the load graphs inside of it */
static gboolean
multiload_applet_new(MatePanelApplet *applet, const gchar *iid, gpointer data)
{
GtkStyleContext *context;
MultiloadApplet *ma;
GSettings *lockdown_settings;
GtkActionGroup *action_group;
gchar *ui_path;
context = gtk_widget_get_style_context (GTK_WIDGET (applet));
gtk_style_context_add_class (context, "multiload-applet");
ma = g_new0(MultiloadApplet, 1);
ma->applet = applet;
ma->about_dialog = NULL;
ma->prop_dialog = NULL;
ma->last_clicked = 0;
g_set_application_name (_("System Monitor"));
gtk_window_set_default_icon_name ("utilities-system-monitor");
mate_panel_applet_set_background_widget (applet, GTK_WIDGET(applet));
ma->settings = mate_panel_applet_settings_new (applet, "org.mate.panel.applet.multiload");
mate_panel_applet_set_flags (applet, MATE_PANEL_APPLET_EXPAND_MINOR);
action_group = gtk_action_group_new ("Multiload Applet Actions");
gtk_action_group_set_translation_domain (action_group, GETTEXT_PACKAGE);
gtk_action_group_add_actions (action_group,
multiload_menu_actions,
G_N_ELEMENTS (multiload_menu_actions),
ma);
ui_path = g_build_filename (MULTILOAD_MENU_UI_DIR, "multiload-applet-menu.xml", NULL);
mate_panel_applet_setup_menu_from_file (applet, ui_path, action_group);
g_free (ui_path);
if (mate_panel_applet_get_locked_down (applet)) {
GtkAction *action;
action = gtk_action_group_get_action (action_group, "MultiLoadProperties");
gtk_action_set_visible (action, FALSE);
}
lockdown_settings = g_settings_new ("org.mate.lockdown");
if (g_settings_get_boolean (lockdown_settings, "disable-command-line") ||
mate_panel_applet_get_locked_down (applet)) {
GtkAction *action;
/* When the panel is locked down or when the command line is inhibited,
it seems very likely that running the procman would be at least harmful */
action = gtk_action_group_get_action (action_group, "MultiLoadRunProcman");
gtk_action_set_visible (action, FALSE);
}
g_object_unref (lockdown_settings);
g_object_unref (action_group);
g_signal_connect(G_OBJECT(applet), "change_size",
G_CALLBACK(multiload_change_size_cb), ma);
g_signal_connect(G_OBJECT(applet), "change_orient",
G_CALLBACK(multiload_change_orient_cb), ma);
g_signal_connect(G_OBJECT(applet), "destroy",
G_CALLBACK(multiload_destroy_cb), ma);
g_signal_connect(G_OBJECT(applet), "button_press_event",
G_CALLBACK(multiload_button_press_event_cb), ma);
g_signal_connect(G_OBJECT(applet), "key_press_event",
G_CALLBACK(multiload_key_press_event_cb), ma);
multiload_applet_refresh (ma);
gtk_widget_show(GTK_WIDGET(applet));
return TRUE;
}
static gboolean
multiload_factory (MatePanelApplet *applet,
const gchar *iid,
gpointer data)
{
gboolean retval = FALSE;
glibtop_init();
retval = multiload_applet_new(applet, iid, data);
return retval;
}
MATE_PANEL_APPLET_OUT_PROCESS_FACTORY ("MultiLoadAppletFactory",
PANEL_TYPE_APPLET,
"multiload",
multiload_factory,
NULL)
|