added log_warn
[psensor.git] / src / main.c
1 /*
2  * Copyright (C) 2010-2012 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 "ui_pref.h"
41 #include "ui_graph.h"
42 #include "ui_status.h"
43
44 #ifdef HAVE_UNITY
45 #include "ui_unity.h"
46 #endif
47
48 #ifdef HAVE_NVIDIA
49 #include "nvidia.h"
50 #endif
51
52 #ifdef HAVE_LIBATIADL
53 #include "amd.h"
54 #endif
55
56 #ifdef HAVE_REMOTE_SUPPORT
57 #include "rsensor.h"
58 #endif
59
60 #include "ui_appindicator.h"
61
62 #ifdef HAVE_LIBNOTIFY
63 #include "ui_notify.h"
64 #endif
65
66 #ifdef HAVE_GTOP
67 #include "cpu.h"
68 #endif
69
70 #include "compat.h"
71
72 static const char *program_name;
73
74 static void print_version()
75 {
76         printf("psensor %s\n", VERSION);
77         printf(_("Copyright (C) %s jeanfi@gmail.com\n"
78                  "License GPLv2: GNU GPL version 2 or later "
79                  "<http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>\n"
80                  "This is free software: you are free to change and "
81                  " redistribute it.\n"
82                  "There is NO WARRANTY, to the extent permitted by law.\n"),
83                "2010-2012");
84 }
85
86 static void print_help()
87 {
88         printf(_("Usage: %s [OPTION]...\n"), program_name);
89
90         puts(_("psensor is a GTK application for monitoring hardware sensors, "
91                "including temperatures and fan speeds."));
92
93         puts("");
94         puts(_("Options:"));
95         puts(_("  -h, --help          display this help and exit\n"
96                "  -v, --version       display version information and exit"));
97
98         puts("");
99
100         puts(_("  -u, --url=URL       "
101                "the URL of the psensor-server, example: http://hostname:3131"));
102         puts(_("  --use-libatasmart   "
103                "use atasmart library for disk monitoring "
104                "instead of hddtemp daemon"));
105         puts("");
106
107         puts(_("  -d, --debug=LEVEL   "
108                "set the debug level, integer between 0 and 3"));
109
110         puts("");
111
112         printf(_("Report bugs to: %s\n"), PACKAGE_BUGREPORT);
113         puts("");
114         printf(_("%s home page: <%s>\n"), PACKAGE_NAME, PACKAGE_URL);
115 }
116
117 /*
118   Updates the size of the sensor values if different than the
119   configuration.
120  */
121 void
122 update_psensor_values_size(struct psensor **sensors, struct config *cfg)
123 {
124         struct psensor **cur;
125
126         cur = sensors;
127         while (*cur) {
128                 struct psensor *s = *cur;
129
130                 if (s->values_max_length != cfg->sensor_values_max_length)
131                         psensor_values_resize(s,
132                                               cfg->sensor_values_max_length);
133
134                 cur++;
135         }
136 }
137
138 static void update_measures(struct ui_psensor *ui)
139 {
140         struct psensor **sensors;
141         struct config *cfg;
142         int period;
143
144         cfg = ui->config;
145
146         while (1) {
147                 g_mutex_lock(ui->sensors_mutex);
148
149                 sensors = ui->sensors;
150                 if (!sensors)
151                         return;
152
153                 update_psensor_values_size(sensors, cfg);
154
155                 psensor_list_update_measures(sensors);
156 #ifdef HAVE_REMOTE_SUPPORT
157                 remote_psensor_list_update(sensors);
158 #endif
159 #ifdef HAVE_NVIDIA
160                 nvidia_psensor_list_update(sensors);
161 #endif
162 #ifdef HAVE_LIBATIADL
163                 amd_psensor_list_update(sensors);
164 #endif
165
166                 psensor_log_measures(sensors);
167
168                 period = cfg->sensor_update_interval;
169
170                 g_mutex_unlock(ui->sensors_mutex);
171
172                 sleep(period);
173         }
174 }
175
176 static void indicators_update(struct ui_psensor *ui)
177 {
178         struct psensor **sensor_cur = ui->sensors;
179         unsigned int attention = 0;
180
181         while (*sensor_cur) {
182                 struct psensor *s = *sensor_cur;
183
184                 if (s->alarm_enabled && s->alarm_raised) {
185                         attention = 1;
186                         break;
187                 }
188
189                 sensor_cur++;
190         }
191
192 #if defined(HAVE_APPINDICATOR) || defined(HAVE_APPINDICATOR_029)
193         if (is_appindicator_supported())
194                 ui_appindicator_update(ui, attention);
195 #endif
196
197         if (is_status_supported())
198                 ui_status_update(ui, attention);
199 }
200
201 gboolean ui_refresh_thread(gpointer data)
202 {
203         struct config *cfg;
204         gboolean ret;
205         struct ui_psensor *ui = (struct ui_psensor *)data;
206
207         ret = TRUE;
208         cfg = ui->config;
209
210         g_mutex_lock(ui->sensors_mutex);
211
212         graph_update(ui->sensors, ui->w_graph, ui->config, ui->main_window);
213
214         ui_sensorlist_update(ui);
215
216         if (is_appindicator_supported() || is_status_supported())
217                 indicators_update(ui);
218
219 #ifdef HAVE_UNITY
220         ui_unity_launcher_entry_update(ui->sensors,
221                                        !cfg->unity_launcher_count_disabled,
222                                        cfg->temperature_unit == CELCIUS);
223 #endif
224
225         if (ui->graph_update_interval != cfg->graph_update_interval) {
226                 ui->graph_update_interval = cfg->graph_update_interval;
227                 ret = FALSE;
228         }
229
230         g_mutex_unlock(ui->sensors_mutex);
231
232         if (ret == FALSE)
233                 g_timeout_add(1000 * ui->graph_update_interval,
234                               ui_refresh_thread, ui);
235
236         return ret;
237 }
238
239 static void cb_alarm_raised(struct psensor *sensor, void *data)
240 {
241 #ifdef HAVE_LIBNOTIFY
242         if (sensor->enabled)
243                 ui_notify(sensor, (struct ui_psensor *)data);
244 #endif
245 }
246
247 static void associate_colors(struct psensor **sensors)
248 {
249         /* number of uniq colors */
250 #define COLORS_COUNT 8
251
252         unsigned int colors[COLORS_COUNT][3] = {
253                 {0x0000, 0x0000, 0x0000},       /* black */
254                 {0xffff, 0x0000, 0x0000},       /* red */
255                 {0x0000, 0x0000, 0xffff},       /* blue */
256                 {0x0000, 0xffff, 0x0000},       /* green */
257
258                 {0x7fff, 0x7fff, 0x7fff},       /* grey */
259                 {0x7fff, 0x0000, 0x0000},       /* dark red */
260                 {0x0000, 0x0000, 0x7fff},       /* dark blue */
261                 {0x0000, 0x7fff, 0x0000}        /* dark green */
262         };
263
264         struct psensor **sensor_cur = sensors;
265         int i = 0;
266         while (*sensor_cur) {
267                 struct color default_color;
268                 color_set(&default_color,
269                           colors[i % COLORS_COUNT][0],
270                           colors[i % COLORS_COUNT][1],
271                           colors[i % COLORS_COUNT][2]);
272
273                 (*sensor_cur)->color
274                     = config_get_sensor_color((*sensor_cur)->id,
275                                               &default_color);
276
277                 sensor_cur++;
278                 i++;
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                 if (is_temp_type(s->type)) {
293                         s->alarm_limit
294                             = config_get_sensor_alarm_limit(s->id, 60);
295                         s->alarm_enabled
296                             = config_get_sensor_alarm_enabled(s->id);
297                 } else {
298                         s->alarm_limit = 0;
299                         s->alarm_enabled = 0;
300                 }
301
302                 sensor_cur++;
303         }
304 }
305
306 static void associate_preferences(struct psensor **sensors)
307 {
308         struct psensor **sensor_cur = sensors;
309         while (*sensor_cur) {
310                 char *n;
311                 struct psensor *s = *sensor_cur;
312
313                 s->enabled = config_is_sensor_enabled(s->id);
314
315                 n = config_get_sensor_name(s->id);
316
317                 if (n) {
318                         free(s->name);
319                         s->name = n;
320                 }
321
322                 sensor_cur++;
323         }
324 }
325
326 static void log_init()
327 {
328         char *home, *path, *dir;
329
330         home = getenv("HOME");
331
332         if (!home)
333                 return ;
334
335         dir = malloc(strlen(home)+1+strlen(".psensor")+1);
336         sprintf(dir, "%s/%s", home, ".psensor");
337         mkdir(dir, 0777);
338
339         path = malloc(strlen(dir)+1+strlen("log")+1);
340         sprintf(path, "%s/%s", dir, "log");
341
342         log_open(path);
343
344         free(dir);
345         free(path);
346 }
347
348 static struct option long_options[] = {
349         {"use-libatasmart", no_argument, 0, 0},
350         {"version", no_argument, 0, 'v'},
351         {"help", no_argument, 0, 'h'},
352         {"url", required_argument, 0, 'u'},
353         {"debug", required_argument, 0, 'd'},
354         {"new-instance", no_argument, 0, 'n'},
355         {0, 0, 0, 0}
356 };
357
358 static gboolean initial_window_show(gpointer data)
359 {
360         struct ui_psensor *ui;
361
362         log_debug("initial_window_show()");
363
364         ui = (struct ui_psensor *)data;
365
366         log_debug("is_status_supported: %d", is_status_supported());
367         log_debug("is_appindicator_supported: %d",
368                    is_appindicator_supported());
369         log_debug("hide_on_startup: %d", ui->config->hide_on_startup);
370
371         if (!ui->config->hide_on_startup
372             || (!is_appindicator_supported() && !is_status_supported()))
373                 ui_window_show(ui);
374
375         ui_window_update(ui);
376
377         return FALSE;
378 }
379
380 static void log_glib_info()
381 {
382         log_debug("Compiled with GLib %d.%d.%d",
383                   GLIB_MAJOR_VERSION,
384                   GLIB_MINOR_VERSION,
385                   GLIB_MICRO_VERSION);
386
387         log_debug("Running with GLib %d.%d.%d",
388                   glib_major_version,
389                   glib_minor_version,
390                   glib_micro_version);
391 }
392
393 static void cb_activate(GApplication *application,
394                         gpointer data)
395 {
396         ui_window_show((struct ui_psensor *)data);
397 }
398
399 /*
400  * Release memory for Valgrind.
401  */
402 static void cleanup(struct ui_psensor *ui)
403 {
404         g_mutex_lock(ui->sensors_mutex);
405
406         log_debug("Cleanup...");
407
408         psensor_cleanup();
409
410 #ifdef HAVE_NVIDIA
411         nvidia_cleanup();
412 #endif
413 #ifdef HAVE_LIBATIADL
414         amd_cleanup();
415 #endif
416 #ifdef HAVE_REMOTE_SUPPORT
417         rsensor_cleanup();
418 #endif
419
420         psensor_list_free(ui->sensors);
421         ui->sensors = NULL;
422
423 #if defined(HAVE_APPINDICATOR) || defined(HAVE_APPINDICATOR_029)
424         ui_appindicator_cleanup();
425 #endif
426
427         ui_status_cleanup();
428
429         g_mutex_unlock(ui->sensors_mutex);
430
431         config_cleanup();
432
433         log_debug("Cleanup done, closing log");
434
435         log_close();
436 }
437
438 /*
439  * Creates the list of sensors.
440  *
441  * 'url': remote psensor server url, null for local monitoring.
442  * 'use_libatasmart': whether the libatasmart must be used.
443  */
444 static struct psensor **create_sensors_list(const char *url,
445                                             unsigned int use_libatasmart)
446 {
447         struct psensor **sensors;
448
449         if (url) {
450 #ifdef HAVE_REMOTE_SUPPORT
451                 rsensor_init();
452                 sensors = get_remote_sensors(url, 600);
453 #else
454                 fprintf(stderr,
455                         _("ERROR: Not compiled with remote sensor support.\n"));
456                 exit(EXIT_FAILURE);
457 #endif
458         } else {
459                 sensors = get_all_sensors(use_libatasmart, 600);
460 #ifdef HAVE_NVIDIA
461                 sensors = nvidia_psensor_list_add(sensors, 600);
462 #endif
463 #ifdef HAVE_LIBATIADL
464                 sensors = amd_psensor_list_add(sensors, 600);
465 #endif
466 #ifdef HAVE_GTOP
467                 sensors = cpu_psensor_list_add(sensors, 600);
468 #endif
469         }
470
471         associate_preferences(sensors);
472         associate_colors(sensors);
473
474         return sensors;
475 }
476
477 int main(int argc, char **argv)
478 {
479         struct ui_psensor ui;
480         GError *error;
481         GThread *thread;
482         int optc, cmdok, opti, use_libatasmart, new_instance;
483         char *url = NULL;
484         GApplication *app;
485
486         program_name = argv[0];
487
488         setlocale(LC_ALL, "");
489
490 #if ENABLE_NLS
491         bindtextdomain(PACKAGE, LOCALEDIR);
492         textdomain(PACKAGE);
493 #endif
494
495         use_libatasmart = new_instance = 0;
496
497         cmdok = 1;
498         while ((optc = getopt_long(argc, argv, "vhd:u:n", long_options,
499                                    &opti)) != -1) {
500                 switch (optc) {
501                 case 0:
502                         if (!strcmp(long_options[opti].name, "use-libatasmart"))
503                                 use_libatasmart = 1;
504                         break;
505                 case 'u':
506                         if (optarg)
507                                 url = strdup(optarg);
508                         break;
509                 case 'h':
510                         print_help();
511                         exit(EXIT_SUCCESS);
512                 case 'v':
513                         print_version();
514                         exit(EXIT_SUCCESS);
515                 case 'd':
516                         log_level = atoi(optarg);
517                         log_printf(LOG_INFO, _("Enables debug mode."));
518                         break;
519                 case 'n':
520                         new_instance = 1;
521                         break;
522                 default:
523                         cmdok = 0;
524                         break;
525                 }
526         }
527
528         if (!cmdok || optind != argc) {
529                 fprintf(stderr, _("Try `%s --help' for more information.\n"),
530                         program_name);
531                 exit(EXIT_FAILURE);
532         }
533
534         log_init();
535
536         app = g_application_new("wpitchoune.psensor", 0);
537
538         g_application_register(app, NULL, NULL);
539
540         if (!new_instance && g_application_get_is_remote(app)) {
541                 g_application_activate(app);
542                 log_warn(_("Psensor instance already exists"));
543                 exit(EXIT_SUCCESS);
544         }
545
546         g_signal_connect(app, "activate", G_CALLBACK(cb_activate), &ui);
547
548         log_glib_info();
549 #if !(GLIB_CHECK_VERSION(2, 31, 0))
550         /*
551          * Since GLib 2.31 g_thread_init call is deprecated and not
552          * needed.
553          */
554         log_debug("Calling g_thread_init(NULL)");
555         g_thread_init(NULL);
556 #endif
557
558         gdk_threads_init();
559
560         gtk_init(NULL, NULL);
561
562         ui.sensors_mutex = g_mutex_new();
563
564         ui.config = config_load();
565
566         psensor_init();
567
568         ui.sensors = create_sensors_list(url, use_libatasmart);
569         associate_cb_alarm_raised(ui.sensors, &ui);
570
571 #if !defined(HAVE_APPINDICATOR) && !defined(HAVE_APPINDICATOR_029)
572         ui_status_init(&ui);
573         ui_status_set_visible(1);
574 #endif
575
576         /* main window */
577         ui_window_create(&ui);
578         ui.sensor_box = NULL;
579
580         /* drawing box */
581         ui.w_graph = ui_graph_create(&ui);
582
583         ui_enable_alpha_channel(&ui);
584
585         /* sensor list */
586         ui_sensorlist_create(&ui);
587
588         thread = g_thread_create((GThreadFunc) update_measures,
589                                  &ui, TRUE, &error);
590
591         if (!thread)
592                 g_error_free(error);
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         /*
603          * show the window as soon as all gtk events have been processed
604          * in order to ensure that the status icon is attempted to be
605          * drawn before. If not, there is no way to detect that it is
606          * visible.
607         */
608         g_idle_add((GSourceFunc)initial_window_show, &ui);
609
610         gdk_notify_startup_complete();
611
612         /* main loop */
613         gtk_main();
614
615         g_object_ref(app);
616         cleanup(&ui);
617         log_debug("Quitting...");
618
619         return 0;
620 }