added missing comma
[psensor-pkg-ubuntu.git] / src / main.c
1 /*
2  * Copyright (C) 2010-2014 jeanfi@gmail.com
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301 USA
18  */
19 #include <locale.h>
20
21 #include <getopt.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <unistd.h>
26 #include <sys/stat.h>
27 #include <sys/types.h>
28
29 #include <gtk/gtk.h>
30
31 #include "config.h"
32
33 #include "cfg.h"
34 #include "psensor.h"
35 #include "graph.h"
36 #include "ui.h"
37 #include "ui_sensorlist.h"
38 #include "ui_color.h"
39 #include "lmsensor.h"
40 #include "notify_cmd.h"
41 #include <pmutex.h>
42 #include "slog.h"
43 #include "ui_pref.h"
44 #include "ui_graph.h"
45 #include "ui_status.h"
46
47 #ifdef HAVE_UNITY
48 #include "ui_unity.h"
49 #endif
50
51 #ifdef HAVE_NVIDIA
52 #include "nvidia.h"
53 #endif
54
55 #ifdef HAVE_LIBATIADL
56 #include "amd.h"
57 #endif
58
59 #ifdef HAVE_REMOTE_SUPPORT
60 #include "rsensor.h"
61 #endif
62
63 #include "ui_appindicator.h"
64
65 #ifdef HAVE_LIBNOTIFY
66 #include "ui_notify.h"
67 #endif
68
69 #ifdef HAVE_GTOP
70 #include "cpu.h"
71 #endif
72
73 static const char *program_name;
74
75 static void print_version()
76 {
77         printf("psensor %s\n", VERSION);
78         printf(_("Copyright (C) %s jeanfi@gmail.com\n"
79                  "License GPLv2: GNU GPL version 2 or later "
80                  "<http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>\n"
81                  "This is free software: you are free to change and"
82                  " redistribute it.\n"
83                  "There is NO WARRANTY, to the extent permitted by law.\n"),
84                "2010-2014");
85 }
86
87 static void print_help()
88 {
89         printf(_("Usage: %s [OPTION]...\n"), program_name);
90
91         puts(_("Psensor is a GTK+ application for monitoring hardware sensors, "
92                "including temperatures and fan speeds."));
93
94         puts("");
95         puts(_("Options:"));
96         puts(_("  -h, --help          display this help and exit\n"
97                "  -v, --version       display version information and exit"));
98
99         puts("");
100
101         puts(_(
102 "  -u, --url=URL       the URL of the psensor-server,\n"
103 "                      example: http://hostname:3131"));
104         puts(_(
105 "  --use-libatasmart   use atasmart library for disk monitoring instead of\n"
106 "                      hddtemp daemon"));
107         puts(_(
108 "  -n, --new-instance  force the creation of a new Psensor application"));
109         puts("");
110
111         puts(_("  -d, --debug=LEVEL   "
112                "set the debug level, integer between 0 and 3"));
113
114         puts("");
115
116         printf(_("Report bugs to: %s\n"), PACKAGE_BUGREPORT);
117         puts("");
118         printf(_("%s home page: <%s>\n"), PACKAGE_NAME, PACKAGE_URL);
119 }
120
121 /*
122  * Updates the size of the sensor values if different than the
123  * configuration.
124  */
125 static void
126 update_psensor_values_size(struct psensor **sensors, struct config *cfg)
127 {
128         struct psensor **cur, *s;
129
130         for (cur = sensors; *cur; cur++) {
131                 s = *cur;
132
133                 if (s->values_max_length != cfg->sensor_values_max_length)
134                         psensor_values_resize(s,
135                                               cfg->sensor_values_max_length);
136         }
137 }
138
139 static void *update_measures(void *data)
140 {
141         struct psensor **sensors;
142         struct config *cfg;
143         int period;
144         struct ui_psensor *ui;
145
146         ui = (struct ui_psensor *)data;
147         cfg = ui->config;
148
149         while (1) {
150                 pmutex_lock(&ui->sensors_mutex);
151
152                 sensors = ui->sensors;
153                 if (!sensors)
154                         pthread_exit(NULL);
155
156                 update_psensor_values_size(sensors, cfg);
157
158                 psensor_list_update_measures(sensors);
159 #ifdef HAVE_REMOTE_SUPPORT
160                 remote_psensor_list_update(sensors);
161 #endif
162 #ifdef HAVE_NVIDIA
163                 nvidia_psensor_list_update(sensors);
164 #endif
165 #ifdef HAVE_LIBATIADL
166                 amd_psensor_list_update(sensors);
167 #endif
168
169                 psensor_log_measures(sensors);
170
171                 period = cfg->sensor_update_interval;
172
173                 pmutex_unlock(&ui->sensors_mutex);
174
175                 sleep(period);
176         }
177 }
178
179 static void indicators_update(struct ui_psensor *ui)
180 {
181         struct psensor **sensor_cur = ui->sensors;
182         unsigned int attention = 0;
183
184         while (*sensor_cur) {
185                 struct psensor *s = *sensor_cur;
186
187                 if (s->alarm_enabled && s->alarm_raised) {
188                         attention = 1;
189                         break;
190                 }
191
192                 sensor_cur++;
193         }
194
195 #if defined(HAVE_APPINDICATOR) || defined(HAVE_APPINDICATOR_029)
196         if (is_appindicator_supported())
197                 ui_appindicator_update(ui, attention);
198 #endif
199
200         if (is_status_supported())
201                 ui_status_update(ui, attention);
202 }
203
204 gboolean ui_refresh_thread(gpointer data)
205 {
206         struct config *cfg;
207         gboolean ret;
208         struct ui_psensor *ui = (struct ui_psensor *)data;
209
210         ret = TRUE;
211         cfg = ui->config;
212
213         pmutex_lock(&ui->sensors_mutex);
214
215         graph_update(ui->sensors, ui->w_graph, ui->config, ui->main_window);
216
217         ui_sensorlist_update(ui, 0);
218
219         if (is_appindicator_supported() || is_status_supported())
220                 indicators_update(ui);
221
222 #ifdef HAVE_UNITY
223         ui_unity_launcher_entry_update(ui->sensors,
224                                        !cfg->unity_launcher_count_disabled,
225                                        cfg->temperature_unit == CELSIUS);
226 #endif
227
228         if (ui->graph_update_interval != cfg->graph_update_interval) {
229                 ui->graph_update_interval = cfg->graph_update_interval;
230                 ret = FALSE;
231         }
232
233         pmutex_unlock(&ui->sensors_mutex);
234
235         if (ret == FALSE)
236                 g_timeout_add(1000 * ui->graph_update_interval,
237                               ui_refresh_thread, ui);
238
239         return ret;
240 }
241
242 static void cb_alarm_raised(struct psensor *sensor, void *data)
243 {
244 #ifdef HAVE_LIBNOTIFY
245         if (sensor->alarm_enabled)
246                 ui_notify(sensor, (struct ui_psensor *)data);
247 #endif
248
249         notify_cmd(sensor);
250 }
251
252 static void associate_colors(struct psensor **sensors)
253 {
254         /* number of uniq colors */
255 #define COLORS_COUNT 8
256
257         double colors[COLORS_COUNT][3] = {
258                 {0, 0, 0},      /* black */
259                 {1, 0, 0},      /* red */
260                 {0, 0, 1},      /* blue */
261                 {0, 1, 0},      /* green */
262
263                 {0.5, 0.5, 0.5},/* grey */
264                 {0.5, 0, 0},    /* dark red */
265                 {0, 0, 0.5},    /* dark blue */
266                 {0, 0.5, 0}     /* dark green */
267         };
268         struct psensor **cur;
269         int i;
270         struct color c;
271
272         for (cur = sensors, i = 0; *cur; cur++, i++) {
273                 color_set(&c,
274                           colors[i % COLORS_COUNT][0],
275                           colors[i % COLORS_COUNT][1],
276                           colors[i % COLORS_COUNT][2]);
277
278                 (*cur)->color = config_get_sensor_color((*cur)->id, &c);
279         }
280 }
281
282 static void
283 associate_cb_alarm_raised(struct psensor **sensors, struct ui_psensor *ui)
284 {
285         struct psensor **sensor_cur = sensors;
286         while (*sensor_cur) {
287                 struct psensor *s = *sensor_cur;
288
289                 s->cb_alarm_raised = cb_alarm_raised;
290                 s->cb_alarm_raised_data = ui;
291
292                 s->alarm_high_threshold
293                         = config_get_sensor_alarm_high_threshold(s->id);
294                 s->alarm_low_threshold
295                         = config_get_sensor_alarm_low_threshold(s->id);
296
297                 if (is_temp_type(s->type) || is_fan_type(s->type)) {
298                         s->alarm_enabled
299                             = config_get_sensor_alarm_enabled(s->id);
300                 } else {
301                         s->alarm_high_threshold = 0;
302                         s->alarm_enabled = 0;
303                 }
304
305                 sensor_cur++;
306         }
307 }
308
309 static void associate_preferences(struct psensor **sensors)
310 {
311         struct psensor **sensor_cur = sensors;
312         while (*sensor_cur) {
313                 char *n;
314                 struct psensor *s = *sensor_cur;
315
316                 s->graph_enabled = config_is_sensor_graph_enabled(s->id);
317
318                 n = config_get_sensor_name(s->id);
319
320                 if (n) {
321                         free(s->name);
322                         s->name = n;
323                 }
324
325                 s->appindicator_enabled = config_is_appindicator_enabled(s->id);
326
327                 sensor_cur++;
328         }
329 }
330
331 static void log_init()
332 {
333         const char *dir;
334         char *path;
335
336         dir = get_psensor_user_dir();
337
338         if (!dir)
339                 return ;
340
341         path = malloc(strlen(dir)+1+strlen("log")+1);
342         sprintf(path, "%s/%s", dir, "log");
343
344         log_open(path);
345
346         free(path);
347 }
348
349 static struct option long_options[] = {
350         {"use-libatasmart", no_argument, 0, 0},
351         {"version", no_argument, 0, 'v'},
352         {"help", no_argument, 0, 'h'},
353         {"url", required_argument, 0, 'u'},
354         {"debug", required_argument, 0, 'd'},
355         {"new-instance", no_argument, 0, 'n'},
356         {0, 0, 0, 0}
357 };
358
359 static gboolean initial_window_show(gpointer data)
360 {
361         struct ui_psensor *ui;
362
363         log_debug("initial_window_show()");
364
365         ui = (struct ui_psensor *)data;
366
367         log_debug("is_status_supported: %d", is_status_supported());
368         log_debug("is_appindicator_supported: %d",
369                    is_appindicator_supported());
370         log_debug("hide_on_startup: %d", ui->config->hide_on_startup);
371
372         if (!ui->config->hide_on_startup
373             || (!is_appindicator_supported() && !is_status_supported()))
374                 ui_window_show(ui);
375
376         ui_window_update(ui);
377
378         return FALSE;
379 }
380
381 static void log_glib_info()
382 {
383         log_debug("Compiled with GLib %d.%d.%d",
384                   GLIB_MAJOR_VERSION,
385                   GLIB_MINOR_VERSION,
386                   GLIB_MICRO_VERSION);
387
388         log_debug("Running with GLib %d.%d.%d",
389                   glib_major_version,
390                   glib_minor_version,
391                   glib_micro_version);
392 }
393
394 static void cb_activate(GApplication *application,
395                         gpointer data)
396 {
397         ui_window_show((struct ui_psensor *)data);
398 }
399
400 /*
401  * Release memory for Valgrind.
402  */
403 static void cleanup(struct ui_psensor *ui)
404 {
405         pmutex_lock(&ui->sensors_mutex);
406
407         log_debug("Cleanup...");
408
409         psensor_cleanup();
410
411 #ifdef HAVE_NVIDIA
412         nvidia_cleanup();
413 #endif
414 #ifdef HAVE_LIBATIADL
415         amd_cleanup();
416 #endif
417 #ifdef HAVE_REMOTE_SUPPORT
418         rsensor_cleanup();
419 #endif
420
421         psensor_list_free(ui->sensors);
422         ui->sensors = NULL;
423
424 #if defined(HAVE_APPINDICATOR) || defined(HAVE_APPINDICATOR_029)
425         ui_appindicator_cleanup();
426 #endif
427
428         ui_status_cleanup();
429
430         pmutex_unlock(&ui->sensors_mutex);
431
432         config_cleanup();
433
434         log_debug("Cleanup done, closing log");
435 }
436
437 /*
438  * Creates the list of sensors.
439  *
440  * 'url': remote psensor server url, null for local monitoring.
441  * 'use_libatasmart': whether the libatasmart must be used.
442  */
443 static struct psensor **create_sensors_list(const char *url,
444                                             unsigned int use_libatasmart)
445 {
446         struct psensor **sensors;
447
448         if (url) {
449 #ifdef HAVE_REMOTE_SUPPORT
450                 rsensor_init();
451                 sensors = get_remote_sensors(url, 600);
452 #else
453                 log_err(_("Psensor has not been compiled with remote "
454                           "sensor support."));
455                 exit(EXIT_FAILURE);
456 #endif
457         } else {
458                 sensors = get_all_sensors(use_libatasmart, 600);
459 #ifdef HAVE_NVIDIA
460                 sensors = nvidia_psensor_list_add(sensors, 600);
461 #endif
462 #ifdef HAVE_LIBATIADL
463                 sensors = amd_psensor_list_add(sensors, 600);
464 #endif
465 #ifdef HAVE_GTOP
466                 sensors = cpu_psensor_list_add(sensors, 600);
467 #endif
468         }
469
470         associate_preferences(sensors);
471         associate_colors(sensors);
472
473         return sensors;
474 }
475
476 int main(int argc, char **argv)
477 {
478         struct ui_psensor ui;
479         pthread_t thread;
480         int optc, cmdok, opti, use_libatasmart, new_instance, ret;
481         char *url = NULL;
482         GApplication *app;
483
484         program_name = argv[0];
485
486         setlocale(LC_ALL, "");
487
488 #if ENABLE_NLS
489         bindtextdomain(PACKAGE, LOCALEDIR);
490         textdomain(PACKAGE);
491 #endif
492
493         use_libatasmart = new_instance = 0;
494
495         cmdok = 1;
496         while ((optc = getopt_long(argc, argv, "vhd:u:n", long_options,
497                                    &opti)) != -1) {
498                 switch (optc) {
499                 case 0:
500                         if (!strcmp(long_options[opti].name, "use-libatasmart"))
501                                 use_libatasmart = 1;
502                         break;
503                 case 'u':
504                         if (optarg)
505                                 url = strdup(optarg);
506                         break;
507                 case 'h':
508                         print_help();
509                         exit(EXIT_SUCCESS);
510                 case 'v':
511                         print_version();
512                         exit(EXIT_SUCCESS);
513                 case 'd':
514                         log_level = atoi(optarg);
515                         log_info(_("Enables debug mode."));
516                         break;
517                 case 'n':
518                         new_instance = 1;
519                         break;
520                 default:
521                         cmdok = 0;
522                         break;
523                 }
524         }
525
526         if (!cmdok || optind != argc) {
527                 fprintf(stderr, _("Try `%s --help' for more information.\n"),
528                         program_name);
529                 exit(EXIT_FAILURE);
530         }
531
532         log_init();
533
534         app = g_application_new("wpitchoune.psensor", 0);
535
536         g_application_register(app, NULL, NULL);
537
538         if (!new_instance && g_application_get_is_remote(app)) {
539                 g_application_activate(app);
540                 log_warn(_("A Psensor instance already exists."));
541                 exit(EXIT_SUCCESS);
542         }
543
544         g_signal_connect(app, "activate", G_CALLBACK(cb_activate), &ui);
545
546         log_glib_info();
547 #if !(GLIB_CHECK_VERSION(2, 31, 0))
548         /*
549          * Since GLib 2.31 g_thread_init call is deprecated and not
550          * needed.
551          */
552         log_debug("Calling g_thread_init(NULL)");
553         g_thread_init(NULL);
554 #endif
555
556 #ifdef HAVE_APPINDICATOR_029
557         /* gdk_thread_enter/leave only used to workaround mutex bug
558          * of appindicator < 0.2.9, so do not call gdk_threads_init
559          * if useless. Calling this function leads to
560          * crash "Attempt to unlock mutex that was not locked" with
561          * GLib 2.41.2 (new checking) probably due to bugs in GTK
562          * itself.
563          */
564         gdk_threads_init();
565 #endif
566
567         gtk_init(NULL, NULL);
568
569         pmutex_init(&ui.sensors_mutex);
570
571         ui.config = config_load();
572
573         psensor_init();
574
575         ui.sensors = create_sensors_list(url, use_libatasmart);
576         associate_cb_alarm_raised(ui.sensors, &ui);
577
578         if (ui.config->slog_enabled)
579                 slog_activate(NULL,
580                               ui.sensors,
581                               &ui.sensors_mutex,
582                               config_get_slog_interval());
583
584 #if !defined(HAVE_APPINDICATOR) && !defined(HAVE_APPINDICATOR_029)
585         ui_status_init(&ui);
586         ui_status_set_visible(1);
587 #endif
588
589         /* main window */
590         ui_window_create(&ui);
591
592         ui_enable_alpha_channel(&ui);
593
594         ret = pthread_create(&thread, NULL, update_measures, &ui);
595
596         if (ret)
597                 log_err(_("Failed to create thread for monitoring sensors"));
598
599         ui.graph_update_interval = ui.config->graph_update_interval;
600
601         g_timeout_add(1000 * ui.graph_update_interval, ui_refresh_thread, &ui);
602
603 #if defined(HAVE_APPINDICATOR) || defined(HAVE_APPINDICATOR_029)
604         ui_appindicator_init(&ui);
605 #endif
606
607         gdk_notify_startup_complete();
608
609         /*
610          * hack, did not find a cleaner solution.
611          * wait 30s to ensure that the status icon is attempted to be
612          * drawn before determining whether the main window must be
613          * show.
614          */
615         if  (ui.config->hide_on_startup)
616                 g_timeout_add(30000, (GSourceFunc)initial_window_show, &ui);
617         else
618                 initial_window_show(&ui);
619
620         /* main loop */
621         gtk_main();
622
623         g_object_unref(app);
624         cleanup(&ui);
625
626         log_debug("Quitting...");
627         log_close();
628
629         if (url)
630                 free(url);
631
632         return 0;
633 }