fixed nvidia fan values display.
[psensor.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                 s->alarm_enabled
298                             = config_get_sensor_alarm_enabled(s->id);
299
300                 sensor_cur++;
301         }
302 }
303
304 static void associate_preferences(struct psensor **sensors)
305 {
306         struct psensor **sensor_cur = sensors;
307         while (*sensor_cur) {
308                 char *n;
309                 struct psensor *s = *sensor_cur;
310
311                 s->graph_enabled = config_is_sensor_graph_enabled(s->id);
312
313                 n = config_get_sensor_name(s->id);
314
315                 if (n) {
316                         free(s->name);
317                         s->name = n;
318                 }
319
320                 s->appindicator_enabled = config_is_appindicator_enabled(s->id);
321
322                 sensor_cur++;
323         }
324 }
325
326 static void log_init()
327 {
328         const char *dir;
329         char *path;
330
331         dir = get_psensor_user_dir();
332
333         if (!dir)
334                 return ;
335
336         path = malloc(strlen(dir)+1+strlen("log")+1);
337         sprintf(path, "%s/%s", dir, "log");
338
339         log_open(path);
340
341         free(path);
342 }
343
344 static struct option long_options[] = {
345         {"use-libatasmart", no_argument, 0, 0},
346         {"version", no_argument, 0, 'v'},
347         {"help", no_argument, 0, 'h'},
348         {"url", required_argument, 0, 'u'},
349         {"debug", required_argument, 0, 'd'},
350         {"new-instance", no_argument, 0, 'n'},
351         {0, 0, 0, 0}
352 };
353
354 static gboolean initial_window_show(gpointer data)
355 {
356         struct ui_psensor *ui;
357
358         log_debug("initial_window_show()");
359
360         ui = (struct ui_psensor *)data;
361
362         log_debug("is_status_supported: %d", is_status_supported());
363         log_debug("is_appindicator_supported: %d",
364                    is_appindicator_supported());
365         log_debug("hide_on_startup: %d", ui->config->hide_on_startup);
366
367         if (!ui->config->hide_on_startup
368             || (!is_appindicator_supported() && !is_status_supported()))
369                 ui_window_show(ui);
370
371         ui_window_update(ui);
372
373         return FALSE;
374 }
375
376 static void log_glib_info()
377 {
378         log_debug("Compiled with GLib %d.%d.%d",
379                   GLIB_MAJOR_VERSION,
380                   GLIB_MINOR_VERSION,
381                   GLIB_MICRO_VERSION);
382
383         log_debug("Running with GLib %d.%d.%d",
384                   glib_major_version,
385                   glib_minor_version,
386                   glib_micro_version);
387 }
388
389 static void cb_activate(GApplication *application,
390                         gpointer data)
391 {
392         ui_window_show((struct ui_psensor *)data);
393 }
394
395 /*
396  * Release memory for Valgrind.
397  */
398 static void cleanup(struct ui_psensor *ui)
399 {
400         pmutex_lock(&ui->sensors_mutex);
401
402         log_debug("Cleanup...");
403
404         psensor_cleanup();
405
406 #ifdef HAVE_NVIDIA
407         nvidia_cleanup();
408 #endif
409 #ifdef HAVE_LIBATIADL
410         amd_cleanup();
411 #endif
412 #ifdef HAVE_REMOTE_SUPPORT
413         rsensor_cleanup();
414 #endif
415
416         psensor_list_free(ui->sensors);
417         ui->sensors = NULL;
418
419 #if defined(HAVE_APPINDICATOR) || defined(HAVE_APPINDICATOR_029)
420         ui_appindicator_cleanup();
421 #endif
422
423         ui_status_cleanup();
424
425         pmutex_unlock(&ui->sensors_mutex);
426
427         config_cleanup();
428
429         log_debug("Cleanup done, closing log");
430 }
431
432 /*
433  * Creates the list of sensors.
434  *
435  * 'url': remote psensor server url, null for local monitoring.
436  * 'use_libatasmart': whether the libatasmart must be used.
437  */
438 static struct psensor **create_sensors_list(const char *url,
439                                             unsigned int use_libatasmart)
440 {
441         struct psensor **sensors;
442
443         if (url) {
444 #ifdef HAVE_REMOTE_SUPPORT
445                 rsensor_init();
446                 sensors = get_remote_sensors(url, 600);
447 #else
448                 log_err(_("Psensor has not been compiled with remote "
449                           "sensor support."));
450                 exit(EXIT_FAILURE);
451 #endif
452         } else {
453                 sensors = get_all_sensors(use_libatasmart, 600);
454 #ifdef HAVE_NVIDIA
455                 sensors = nvidia_psensor_list_add(sensors, 600);
456 #endif
457 #ifdef HAVE_LIBATIADL
458                 sensors = amd_psensor_list_add(sensors, 600);
459 #endif
460 #ifdef HAVE_GTOP
461                 sensors = cpu_psensor_list_add(sensors, 600);
462 #endif
463         }
464
465         associate_preferences(sensors);
466         associate_colors(sensors);
467
468         return sensors;
469 }
470
471 int main(int argc, char **argv)
472 {
473         struct ui_psensor ui;
474         pthread_t thread;
475         int optc, cmdok, opti, use_libatasmart, new_instance, ret;
476         char *url = NULL;
477         GApplication *app;
478
479         program_name = argv[0];
480
481         setlocale(LC_ALL, "");
482
483 #if ENABLE_NLS
484         bindtextdomain(PACKAGE, LOCALEDIR);
485         textdomain(PACKAGE);
486 #endif
487
488         use_libatasmart = new_instance = 0;
489
490         cmdok = 1;
491         while ((optc = getopt_long(argc, argv, "vhd:u:n", long_options,
492                                    &opti)) != -1) {
493                 switch (optc) {
494                 case 0:
495                         if (!strcmp(long_options[opti].name, "use-libatasmart"))
496                                 use_libatasmart = 1;
497                         break;
498                 case 'u':
499                         if (optarg)
500                                 url = strdup(optarg);
501                         break;
502                 case 'h':
503                         print_help();
504                         exit(EXIT_SUCCESS);
505                 case 'v':
506                         print_version();
507                         exit(EXIT_SUCCESS);
508                 case 'd':
509                         log_level = atoi(optarg);
510                         log_info(_("Enables debug mode."));
511                         break;
512                 case 'n':
513                         new_instance = 1;
514                         break;
515                 default:
516                         cmdok = 0;
517                         break;
518                 }
519         }
520
521         if (!cmdok || optind != argc) {
522                 fprintf(stderr, _("Try `%s --help' for more information.\n"),
523                         program_name);
524                 exit(EXIT_FAILURE);
525         }
526
527         log_init();
528
529         app = g_application_new("wpitchoune.psensor", 0);
530
531         g_application_register(app, NULL, NULL);
532
533         if (!new_instance && g_application_get_is_remote(app)) {
534                 g_application_activate(app);
535                 log_warn(_("A Psensor instance already exists."));
536                 exit(EXIT_SUCCESS);
537         }
538
539         g_signal_connect(app, "activate", G_CALLBACK(cb_activate), &ui);
540
541         log_glib_info();
542 #if !(GLIB_CHECK_VERSION(2, 31, 0))
543         /*
544          * Since GLib 2.31 g_thread_init call is deprecated and not
545          * needed.
546          */
547         log_debug("Calling g_thread_init(NULL)");
548         g_thread_init(NULL);
549 #endif
550
551 #ifdef HAVE_APPINDICATOR_029
552         /* gdk_thread_enter/leave only used to workaround mutex bug
553          * of appindicator < 0.2.9, so do not call gdk_threads_init
554          * if useless. Calling this function leads to
555          * crash "Attempt to unlock mutex that was not locked" with
556          * GLib 2.41.2 (new checking) probably due to bugs in GTK
557          * itself.
558          */
559         gdk_threads_init();
560 #endif
561
562         gtk_init(NULL, NULL);
563
564         pmutex_init(&ui.sensors_mutex);
565
566         ui.config = config_load();
567
568         psensor_init();
569
570         ui.sensors = create_sensors_list(url, use_libatasmart);
571         associate_cb_alarm_raised(ui.sensors, &ui);
572
573         if (ui.config->slog_enabled)
574                 slog_activate(NULL,
575                               ui.sensors,
576                               &ui.sensors_mutex,
577                               config_get_slog_interval());
578
579 #if !defined(HAVE_APPINDICATOR) && !defined(HAVE_APPINDICATOR_029)
580         ui_status_init(&ui);
581         ui_status_set_visible(1);
582 #endif
583
584         /* main window */
585         ui_window_create(&ui);
586
587         ui_enable_alpha_channel(&ui);
588
589         ret = pthread_create(&thread, NULL, update_measures, &ui);
590
591         if (ret)
592                 log_err(_("Failed to create thread for monitoring sensors"));
593
594         ui.graph_update_interval = ui.config->graph_update_interval;
595
596         g_timeout_add(1000 * ui.graph_update_interval, ui_refresh_thread, &ui);
597
598 #if defined(HAVE_APPINDICATOR) || defined(HAVE_APPINDICATOR_029)
599         ui_appindicator_init(&ui);
600 #endif
601
602         gdk_notify_startup_complete();
603
604         /*
605          * hack, did not find a cleaner solution.
606          * wait 30s to ensure that the status icon is attempted to be
607          * drawn before determining whether the main window must be
608          * show.
609          */
610         if  (ui.config->hide_on_startup)
611                 g_timeout_add(30000, (GSourceFunc)initial_window_show, &ui);
612         else
613                 initial_window_show(&ui);
614
615         /* main loop */
616         gtk_main();
617
618         g_object_unref(app);
619         cleanup(&ui);
620
621         log_debug("Quitting...");
622         log_close();
623
624         if (url)
625                 free(url);
626
627         return 0;
628 }