fct renaming
[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 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, 0.0000, 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         {0, 0, 0, 0}
355 };
356
357 static gboolean initial_window_show(gpointer data)
358 {
359         struct ui_psensor *ui;
360
361         log_debug("initial_window_show()");
362
363         ui = (struct ui_psensor *)data;
364
365         log_debug("is_status_supported: %d", is_status_supported());
366         log_debug("is_appindicator_supported: %d",
367                    is_appindicator_supported());
368         log_debug("hide_on_startup: %d", ui->config->hide_on_startup);
369
370         if (!ui->config->hide_on_startup
371             || (!is_appindicator_supported() && !is_status_supported()))
372                 ui_window_show(ui);
373
374         ui_window_update(ui);
375
376         return FALSE;
377 }
378
379 static void log_glib_info()
380 {
381         log_debug("Compiled with GLib %d.%d.%d",
382                   GLIB_MAJOR_VERSION,
383                   GLIB_MINOR_VERSION,
384                   GLIB_MICRO_VERSION);
385
386         log_debug("Running with GLib %d.%d.%d",
387                   glib_major_version,
388                   glib_minor_version,
389                   glib_micro_version);
390 }
391
392 static void activate(GApplication *application,
393                      gpointer data)
394 {
395         ui_window_show((struct ui_psensor *)data);
396 }
397
398 int main(int argc, char **argv)
399 {
400         struct ui_psensor ui;
401         GError *error;
402         GThread *thread;
403         int optc, cmdok, opti, use_libatasmart;
404         char *url = NULL;
405         GApplication *app;
406
407         program_name = argv[0];
408
409         setlocale(LC_ALL, "");
410
411 #if ENABLE_NLS
412         bindtextdomain(PACKAGE, LOCALEDIR);
413         textdomain(PACKAGE);
414 #endif
415
416         use_libatasmart = 0;
417
418         cmdok = 1;
419         while ((optc = getopt_long(argc, argv, "vhd:u:", long_options,
420                                    &opti)) != -1) {
421                 switch (optc) {
422                 case 0:
423                         if (!strcmp(long_options[opti].name, "use-libatasmart"))
424                                 use_libatasmart = 1;
425                         break;
426                 case 'u':
427                         if (optarg)
428                                 url = strdup(optarg);
429                         break;
430                 case 'h':
431                         print_help();
432                         exit(EXIT_SUCCESS);
433                 case 'v':
434                         print_version();
435                         exit(EXIT_SUCCESS);
436                 case 'd':
437                         log_level = atoi(optarg);
438                         log_printf(LOG_INFO, _("Enables debug mode."));
439                         break;
440                 default:
441                         cmdok = 0;
442                         break;
443                 }
444         }
445
446         if (!cmdok || optind != argc) {
447                 fprintf(stderr, _("Try `%s --help' for more information.\n"),
448                         program_name);
449                 exit(EXIT_FAILURE);
450         }
451
452         log_init();
453
454         app = g_application_new("wpitchoune.psensor", 0);
455         g_application_register(app, NULL, NULL);
456
457         if (g_application_get_is_remote(app)) {
458                 g_application_activate(app);
459                 log_debug(_("Psensor instance already exists"));
460                 exit(EXIT_SUCCESS);
461         }
462
463         g_signal_connect(app, "activate", G_CALLBACK(activate), &ui);
464
465         log_glib_info();
466 #if !(GLIB_CHECK_VERSION(2, 31, 0))
467         /*
468          * Since GLib 2.31 g_thread_init call is deprecated and not
469          * needed.
470          */
471         log_debug("Calling g_thread_init(NULL)");
472         g_thread_init(NULL);
473 #endif
474
475         gdk_threads_init();
476
477         gtk_init(NULL, NULL);
478
479         ui.sensors_mutex = g_mutex_new();
480
481         config_init();
482
483         ui.config = config_load();
484
485         psensor_init();
486
487         if (url) {
488 #ifdef HAVE_REMOTE_SUPPORT
489                 rsensor_init();
490                 ui.sensors = get_remote_sensors(url, 600);
491 #else
492                 fprintf(stderr,
493                         _("ERROR: Not compiled with remote sensor support.\n"));
494                 exit(EXIT_FAILURE);
495 #endif
496         } else {
497                 ui.sensors = get_all_sensors(use_libatasmart, 600);
498 #ifdef HAVE_NVIDIA
499                 ui.sensors = nvidia_psensor_list_add(ui.sensors, 600);
500 #endif
501 #ifdef HAVE_LIBATIADL
502                 ui.sensors = amd_psensor_list_add(ui.sensors, 600);
503 #endif
504 #ifdef HAVE_GTOP
505                 ui.sensors = cpu_psensor_list_add(ui.sensors, 600);
506 #endif
507         }
508
509         associate_preferences(ui.sensors);
510         associate_colors(ui.sensors);
511         associate_cb_alarm_raised(ui.sensors, &ui);
512
513 #if !defined(HAVE_APPINDICATOR) && !defined(HAVE_APPINDICATOR_029)
514         ui_status_init(&ui);
515         ui_status_set_visible(1);
516 #endif
517
518         /* main window */
519         ui_window_create(&ui);
520         ui.sensor_box = NULL;
521
522         /* drawing box */
523         ui.w_graph = ui_graph_create(&ui);
524
525         ui_enable_alpha_channel(&ui);
526
527         /* sensor list */
528         ui_sensorlist_create(&ui);
529
530         thread = g_thread_create((GThreadFunc) update_measures,
531                                  &ui, TRUE, &error);
532
533         if (!thread)
534                 g_error_free(error);
535
536         ui.graph_update_interval = ui.config->graph_update_interval;
537
538         g_timeout_add(1000 * ui.graph_update_interval, ui_refresh_thread, &ui);
539
540 #if defined(HAVE_APPINDICATOR) || defined(HAVE_APPINDICATOR_029)
541         ui_appindicator_init(&ui);
542 #endif
543
544         /*
545          * show the window as soon as all gtk events have been processed
546          * in order to ensure that the status icon is attempted to be
547          * drawn before. If not, there is no way to detect that it is
548          * visible.
549         */
550         g_idle_add((GSourceFunc)initial_window_show, &ui);
551
552         gdk_notify_startup_complete();
553
554         /* main loop */
555         gtk_main();
556
557         log_debug("Quitting...");
558
559         g_mutex_lock(ui.sensors_mutex);
560
561         psensor_cleanup();
562
563 #ifdef HAVE_NVIDIA
564         nvidia_cleanup();
565 #endif
566 #ifdef HAVE_LIBATIADL
567         amd_cleanup();
568 #endif
569 #ifdef HAVE_REMOTE_SUPPORT
570         rsensor_cleanup();
571 #endif
572
573         psensor_list_free(ui.sensors);
574         ui.sensors = NULL;
575
576 #if defined(HAVE_APPINDICATOR) || defined(HAVE_APPINDICATOR_029)
577         ui_appindicator_cleanup();
578 #endif
579
580         ui_status_cleanup();
581
582         g_mutex_unlock(ui.sensors_mutex);
583
584         config_cleanup();
585
586         log_debug("Cleanup done, closing log");
587
588         log_close();
589
590         return 0;
591 }