added sensor setting to show/hide in the sensor list of the main window.
[psensor.git] / src / cfg.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
20 #include <errno.h>
21 #include <stdlib.h>
22 #include <stdio.h>
23 #include <string.h>
24 #include <ctype.h>
25 #include <sys/stat.h>
26 #include <sys/types.h>
27
28 #include <locale.h>
29 #include <libintl.h>
30 #define _(str) gettext(str)
31
32 #include <gio/gio.h>
33
34 #include <cfg.h>
35 #include <pio.h>
36 #include <plog.h>
37
38 /* Properties of each sensor */
39 static const char *ATT_SENSOR_ALARM_ENABLED = "alarm_enabled";
40 static const char *ATT_SENSOR_ALARM_HIGH_THRESHOLD = "alarm_high_threshold";
41 static const char *ATT_SENSOR_ALARM_LOW_THRESHOLD = "alarm_low_threshold";
42 static const char *ATT_SENSOR_COLOR = "color";
43 static const char *ATT_SENSOR_GRAPH_ENABLED = "graph_enabled";
44 static const char *ATT_SENSOR_NAME = "name";
45 static const char *ATT_SENSOR_APPINDICATOR_MENU_DISABLED
46 = "appindicator_menu_disabled";
47 static const char *ATT_SENSOR_APPINDICATOR_LABEL_ENABLED
48 = "appindicator_label_enabled";
49 static const char *ATT_SENSOR_POSITION = "position";
50 static const char *ATT_SENSOR_HIDE = "hide";
51
52 /* Update interval of the measures of the sensors */
53 static const char *KEY_SENSOR_UPDATE_INTERVAL
54 = "sensor-update-interval";
55
56 /* Graph settings */
57 static const char *KEY_GRAPH_UPDATE_INTERVAL = "graph-update-interval";
58
59 static const char *KEY_GRAPH_MONITORING_DURATION = "graph-monitoring-duration";
60
61 static const char *KEY_GRAPH_BACKGROUND_COLOR = "graph-background-color";
62
63 static const char *DEFAULT_GRAPH_BACKGROUND_COLOR = "#e8f4e8f4a8f5";
64
65 static const char *KEY_GRAPH_BACKGROUND_ALPHA = "graph-background-alpha";
66
67 static const char *KEY_GRAPH_FOREGROUND_COLOR
68 = "graph-foreground-color";
69
70 static const char *DEFAULT_GRAPH_FOREGROUND_COLOR = "#000000000000";
71
72 static const char *KEY_ALPHA_CHANNEL_ENABLED = "graph-alpha-channel-enabled";
73
74 /* Inteface settings */
75 static const char *KEY_INTERFACE_SENSORLIST_POSITION
76 = "interface-sensorlist-position";
77
78 static const char *KEY_INTERFACE_WINDOW_DECORATION_DISABLED
79 = "interface-window-decoration-disabled";
80
81 static const char *KEY_INTERFACE_WINDOW_KEEP_BELOW_ENABLED
82 = "interface-window-keep-below-enabled";
83
84 static const char *KEY_INTERFACE_MENU_BAR_DISABLED
85 = "interface-menu-bar-disabled";
86
87 static const char *KEY_INTERFACE_UNITY_LAUNCHER_COUNT_DISABLED
88 = "interface-unity-launcher-count-disabled";
89
90 static const char *KEY_INTERFACE_HIDE_ON_STARTUP
91 = "interface-hide-on-startup";
92
93 static const char *KEY_INTERFACE_WINDOW_RESTORE_ENABLED
94 = "interface-window-restore-enabled";
95
96 static const char *KEY_INTERFACE_WINDOW_X = "interface-window-x";
97 static const char *KEY_INTERFACE_WINDOW_Y = "interface-window-y";
98 static const char *KEY_INTERFACE_WINDOW_W = "interface-window-w";
99 static const char *KEY_INTERFACE_WINDOW_H = "interface-window-h";
100
101 static const char *KEY_INTERFACE_WINDOW_DIVIDER_POS
102 = "interface-window-divider-pos";
103
104 static const char *KEY_INTERFACE_TEMPERATURE_UNIT
105 = "interface-temperature-unit";
106
107 /* Sensor logging settings */
108 static const char *KEY_SLOG_ENABLED = "slog-enabled";
109 static const char *KEY_SLOG_INTERVAL = "slog-interval";
110
111 /* Path to the script called when a notification is raised */
112 static const char *KEY_NOTIFICATION_SCRIPT = "notif-script";
113
114 static GSettings *settings;
115
116 static char *user_dir;
117
118 static GKeyFile *key_file;
119
120 static char *sensor_config_path;
121
122 static void (*slog_enabled_cbk)(void *);
123
124 static char *get_string(const char *key)
125 {
126         return g_settings_get_string(settings, key);
127 }
128
129 static void set_string(const char *key, const char *str)
130 {
131         g_settings_set_string(settings, key, str);
132 }
133
134 static void set_bool(const char *k, bool b)
135 {
136         g_settings_set_boolean(settings, k, b);
137 }
138
139 static bool get_bool(const char *k)
140 {
141         return g_settings_get_boolean(settings, k);
142 }
143
144 static void set_int(const char *k, int i)
145 {
146         g_settings_set_int(settings, k, i);
147 }
148
149 static double get_double(const char *k)
150 {
151         return g_settings_get_double(settings, k);
152 }
153
154 static void set_double(const char *k, double d)
155 {
156         g_settings_set_double(settings, k, d);
157 }
158
159 static int get_int(const char *k)
160 {
161         return g_settings_get_int(settings, k);
162 }
163
164 char *config_get_notif_script()
165 {
166         char *str;
167
168         str =  get_string(KEY_NOTIFICATION_SCRIPT);
169         if (str && !strlen(str)) {
170                 free(str);
171                 str = NULL;
172         }
173
174         return str;
175 }
176
177 void config_set_notif_script(const char *str)
178 {
179         if (str && strlen(str) > 0)
180                 set_string(KEY_NOTIFICATION_SCRIPT, str);
181         else
182                 set_string(KEY_NOTIFICATION_SCRIPT, "");
183 }
184
185 static struct color *get_background_color()
186 {
187         char *scolor;
188         struct color *c;
189
190         scolor = get_string(KEY_GRAPH_BACKGROUND_COLOR);
191
192         c = str_to_color(scolor);
193         free(scolor);
194
195         if (!c)
196                 return color_new(0xffff, 0xffff, 0xffff);
197
198         return c;
199 }
200
201 static struct color *get_foreground_color()
202 {
203         char *scolor;
204         struct color *c;
205
206         scolor = get_string(KEY_GRAPH_FOREGROUND_COLOR);
207
208         c = str_to_color(scolor);
209         free(scolor);
210
211         if (!c)
212                 return color_new(0x0000, 0x0000, 0x0000);
213
214         return c;
215 }
216
217 static bool is_alpha_channel_enabled()
218 {
219         return get_bool(KEY_ALPHA_CHANNEL_ENABLED);
220 }
221
222 static void set_alpha_channeld_enabled(bool b)
223 {
224         set_bool(KEY_ALPHA_CHANNEL_ENABLED, b);
225 }
226
227 static enum sensorlist_position get_sensorlist_position()
228 {
229         return get_int(KEY_INTERFACE_SENSORLIST_POSITION);
230 }
231
232 static void set_sensorlist_position(enum sensorlist_position pos)
233 {
234         set_int(KEY_INTERFACE_SENSORLIST_POSITION, pos);
235 }
236
237 static double get_graph_background_alpha()
238 {
239         return get_double(KEY_GRAPH_BACKGROUND_ALPHA);
240 }
241
242 static void set_graph_background_alpha(double alpha)
243 {
244         set_double(KEY_GRAPH_BACKGROUND_ALPHA, alpha);
245 }
246
247 static void set_background_color(const struct color *color)
248 {
249         char *scolor;
250
251         scolor = color_to_str(color);
252         if (!scolor)
253                 scolor = strdup(DEFAULT_GRAPH_BACKGROUND_COLOR);
254
255         set_string(KEY_GRAPH_BACKGROUND_COLOR, scolor);
256
257         free(scolor);
258 }
259
260 static void set_foreground_color(const struct color *color)
261 {
262         char *str;
263
264         str = color_to_str(color);
265         if (!str)
266                 str = strdup(DEFAULT_GRAPH_FOREGROUND_COLOR);
267
268         set_string(KEY_GRAPH_FOREGROUND_COLOR, str);
269
270         free(str);
271 }
272
273 bool is_slog_enabled()
274 {
275         return get_bool(KEY_SLOG_ENABLED);
276 }
277
278 static void set_slog_enabled(bool enabled)
279 {
280         set_bool(KEY_SLOG_ENABLED, enabled);
281 }
282
283 static void slog_enabled_changed_cbk(GSettings *settings,
284                                      gchar *key,
285                                      gpointer data)
286 {
287         if (slog_enabled_cbk)
288                 slog_enabled_cbk(data);
289 }
290
291 void config_set_slog_enabled_changed_cbk(void (*cbk)(void *), void *data)
292 {
293         log_fct_enter();
294
295         slog_enabled_cbk = cbk;
296
297         g_signal_connect_after(settings,
298                                "changed::slog-enabled",
299                                G_CALLBACK(slog_enabled_changed_cbk),
300                                data);
301
302         log_fct_exit();
303 }
304
305 int config_get_slog_interval()
306 {
307         return get_int(KEY_SLOG_INTERVAL);
308 }
309
310 static void set_slog_interval(int interval)
311 {
312         if (interval <= 0)
313                 interval = 300;
314
315         set_int(KEY_SLOG_INTERVAL, interval);
316 }
317
318 static bool is_window_decoration_enabled()
319 {
320         return !get_bool(KEY_INTERFACE_WINDOW_DECORATION_DISABLED);
321 }
322
323 static bool is_window_keep_below_enabled()
324 {
325         return get_bool(KEY_INTERFACE_WINDOW_KEEP_BELOW_ENABLED);
326 }
327
328 static void set_window_decoration_enabled(bool enabled)
329 {
330         set_bool(KEY_INTERFACE_WINDOW_DECORATION_DISABLED, !enabled);
331 }
332
333 static void set_window_keep_below_enabled(bool enabled)
334 {
335         set_bool(KEY_INTERFACE_WINDOW_KEEP_BELOW_ENABLED, enabled);
336 }
337
338 static void init()
339 {
340         if (!settings)
341                 settings = g_settings_new("psensor");
342 }
343
344 void config_cleanup()
345 {
346         config_sync();
347
348         if (settings) {
349                 g_settings_sync();
350                 g_object_unref(settings);
351                 settings = NULL;
352         }
353
354         if (user_dir) {
355                 free(user_dir);
356                 user_dir = NULL;
357         }
358
359         if (key_file) {
360                 g_key_file_free(key_file);
361                 key_file = NULL;
362         }
363
364         if (sensor_config_path) {
365                 free(sensor_config_path);
366                 sensor_config_path = NULL;
367         }
368
369         slog_enabled_cbk = NULL;
370 }
371
372 struct config *config_load()
373 {
374         struct config *c;
375
376         init();
377
378         c = malloc(sizeof(struct config));
379
380         c->graph_bgcolor = get_background_color();
381         c->graph_fgcolor = get_foreground_color();
382         c->graph_bg_alpha = get_graph_background_alpha();
383         c->alpha_channel_enabled = is_alpha_channel_enabled();
384         c->sensorlist_position = get_sensorlist_position();
385         c->window_decoration_enabled = is_window_decoration_enabled();
386         c->window_keep_below_enabled = is_window_keep_below_enabled();
387         c->slog_enabled = is_slog_enabled();
388         c->slog_interval = config_get_slog_interval();
389
390         c->sensor_update_interval
391             = get_int(KEY_SENSOR_UPDATE_INTERVAL);
392         if (c->sensor_update_interval < 1)
393                 c->sensor_update_interval = 1;
394
395         c->graph_update_interval = get_int(KEY_GRAPH_UPDATE_INTERVAL);
396         if (c->graph_update_interval < 1)
397                 c->graph_update_interval = 1;
398
399         c->graph_monitoring_duration = get_int(KEY_GRAPH_MONITORING_DURATION);
400
401         if (c->graph_monitoring_duration < 1)
402                 c->graph_monitoring_duration = 10;
403
404         c->sensor_values_max_length
405             = (c->graph_monitoring_duration * 60) / c->sensor_update_interval;
406
407         if (c->sensor_values_max_length < 3)
408                 c->sensor_values_max_length = 3;
409
410         c->menu_bar_disabled = get_bool(KEY_INTERFACE_MENU_BAR_DISABLED);
411
412         c->unity_launcher_count_disabled
413                 = get_bool(KEY_INTERFACE_UNITY_LAUNCHER_COUNT_DISABLED);
414
415         c->hide_on_startup = get_bool(KEY_INTERFACE_HIDE_ON_STARTUP);
416
417         c->window_restore_enabled
418                 = get_bool(KEY_INTERFACE_WINDOW_RESTORE_ENABLED);
419
420         c->window_x = get_int(KEY_INTERFACE_WINDOW_X);
421         c->window_y = get_int(KEY_INTERFACE_WINDOW_Y);
422         c->window_w = get_int(KEY_INTERFACE_WINDOW_W);
423         c->window_h = get_int(KEY_INTERFACE_WINDOW_H);
424
425         c->window_divider_pos = get_int(KEY_INTERFACE_WINDOW_DIVIDER_POS);
426
427         if (!c->window_restore_enabled || !c->window_w || !c->window_h) {
428                 c->window_w = 800;
429                 c->window_h = 200;
430         }
431
432         c->temperature_unit = get_int(KEY_INTERFACE_TEMPERATURE_UNIT);
433
434         return c;
435 }
436
437 void config_save(const struct config *c)
438 {
439         set_alpha_channeld_enabled(c->alpha_channel_enabled);
440         set_background_color(c->graph_bgcolor);
441         set_foreground_color(c->graph_fgcolor);
442         set_graph_background_alpha(c->graph_bg_alpha);
443         set_sensorlist_position(c->sensorlist_position);
444         set_window_decoration_enabled(c->window_decoration_enabled);
445         set_window_keep_below_enabled(c->window_keep_below_enabled);
446         set_slog_enabled(c->slog_enabled);
447         set_slog_interval(c->slog_interval);
448
449         set_int(KEY_GRAPH_UPDATE_INTERVAL, c->graph_update_interval);
450
451         set_int(KEY_GRAPH_MONITORING_DURATION, c->graph_monitoring_duration);
452
453         set_int(KEY_SENSOR_UPDATE_INTERVAL, c->sensor_update_interval);
454
455         set_bool(KEY_INTERFACE_MENU_BAR_DISABLED, c->menu_bar_disabled);
456
457         set_bool(KEY_INTERFACE_UNITY_LAUNCHER_COUNT_DISABLED,
458                  c->unity_launcher_count_disabled);
459
460         set_bool(KEY_INTERFACE_HIDE_ON_STARTUP, c->hide_on_startup);
461
462         set_bool(KEY_INTERFACE_WINDOW_RESTORE_ENABLED,
463                  c->window_restore_enabled);
464
465         set_int(KEY_INTERFACE_WINDOW_X, c->window_x);
466         set_int(KEY_INTERFACE_WINDOW_Y, c->window_y);
467         set_int(KEY_INTERFACE_WINDOW_W, c->window_w);
468         set_int(KEY_INTERFACE_WINDOW_H, c->window_h);
469
470         set_int(KEY_INTERFACE_WINDOW_DIVIDER_POS, c->window_divider_pos);
471
472         set_int(KEY_INTERFACE_TEMPERATURE_UNIT, c->temperature_unit);
473 }
474
475 const char *get_psensor_user_dir()
476 {
477         const char *home;
478
479         log_fct_enter();
480
481         if (!user_dir) {
482                 home = getenv("HOME");
483
484                 if (!home)
485                         return NULL;
486
487                 user_dir = path_append(home, ".psensor");
488
489                 if (mkdir(user_dir, 0700) == -1 && errno != EEXIST) {
490                         log_err(_("Failed to create the directory %s: %s"),
491                                 user_dir,
492                                 strerror(errno));
493
494                         free(user_dir);
495                         user_dir = NULL;
496                 }
497         }
498
499         log_fct_exit();
500
501         return user_dir;
502 }
503
504 static const char *get_sensor_config_path()
505 {
506         const char *dir;
507
508         if (!sensor_config_path) {
509                 dir = get_psensor_user_dir();
510
511                 if (dir)
512                         sensor_config_path = path_append(dir, "psensor.cfg");
513         }
514
515         return sensor_config_path;
516 }
517
518 static GKeyFile *get_sensor_key_file()
519 {
520         int ret;
521         GError *err;
522         const char *path;
523
524         if (!key_file) {
525                 path = get_sensor_config_path();
526
527                 key_file = g_key_file_new();
528
529                 err = NULL;
530                 ret = g_key_file_load_from_file(key_file,
531                                                 path,
532                                                 G_KEY_FILE_KEEP_COMMENTS
533                                                 | G_KEY_FILE_KEEP_TRANSLATIONS,
534                                                 &err);
535
536                 if (!ret) {
537                         if (err->code == G_KEY_FILE_ERROR_NOT_FOUND)
538                                 log_fct(_("The configuration file "
539                                           "does not exist."));
540                         else
541                                 log_err(_("Failed to parse configuration "
542                                           "file: %s"),
543                                         path);
544                 }
545         }
546
547         return key_file;
548 }
549
550 static void save_sensor_key_file()
551 {
552         GKeyFile *kfile;
553         const char *path;
554         char *data;
555
556         log_fct_enter();
557
558         kfile = get_sensor_key_file();
559
560         data = g_key_file_to_data(kfile, NULL, NULL);
561
562         path = get_sensor_config_path();
563
564         if (!g_file_set_contents(path, data, -1, NULL))
565                 log_err(_("Failed to save configuration file %s."), path);
566
567         free(data);
568
569         log_fct_exit();
570 }
571
572 void config_sync()
573 {
574         log_fct_enter();
575         if (settings)
576                 g_settings_sync();
577         save_sensor_key_file();
578         log_fct_exit();
579 }
580
581 static void sensor_set_str(const char *sid, const char *att, const char *str)
582 {
583         GKeyFile *kfile;
584
585         kfile = get_sensor_key_file();
586         g_key_file_set_string(kfile, sid, att, str);
587 }
588
589 static char *sensor_get_str(const char *sid, const char *att)
590 {
591         GKeyFile *kfile;
592
593         kfile = get_sensor_key_file();
594         return g_key_file_get_string(kfile, sid, att, NULL);
595 }
596
597 static bool sensor_get_bool(const char *sid, const char *att)
598 {
599         GKeyFile *kfile;
600
601         kfile = get_sensor_key_file();
602         return g_key_file_get_boolean(kfile, sid, att, NULL);
603 }
604
605 static void sensor_set_bool(const char *sid, const char *att, bool enabled)
606 {
607         GKeyFile *kfile;
608
609         kfile = get_sensor_key_file();
610
611         g_key_file_set_boolean(kfile, sid, att, enabled);
612 }
613
614 static int sensor_get_int(const char *sid, const char *att)
615 {
616         GKeyFile *kfile;
617
618         kfile = get_sensor_key_file();
619         return g_key_file_get_integer(kfile, sid, att, NULL);
620 }
621
622 static void sensor_set_int(const char *sid, const char *att, int i)
623 {
624         GKeyFile *kfile;
625
626         kfile = get_sensor_key_file();
627
628         g_key_file_set_integer(kfile, sid, att, i);
629 }
630
631 char *config_get_sensor_name(const char *sid)
632 {
633         return sensor_get_str(sid, ATT_SENSOR_NAME);
634 }
635
636 void config_set_sensor_name(const char *sid, const char *name)
637 {
638         sensor_set_str(sid, ATT_SENSOR_NAME, name);
639 }
640
641 void config_set_sensor_color(const char *sid, const struct color *color)
642 {
643         char *scolor;
644
645         scolor = color_to_str(color);
646
647         sensor_set_str(sid, ATT_SENSOR_COLOR, scolor);
648
649         free(scolor);
650 }
651
652 struct color *
653 config_get_sensor_color(const char *sid, const struct color *dft)
654 {
655         char *scolor;
656         struct color *color;
657
658         scolor = sensor_get_str(sid, ATT_SENSOR_COLOR);
659
660         if (scolor)
661                 color = str_to_color(scolor);
662         else
663                 color = NULL;
664
665         if (!color) {
666                 color = color_new(dft->red, dft->green, dft->blue);
667                 config_set_sensor_color(sid, color);
668         }
669
670         free(scolor);
671
672         return color;
673 }
674
675 bool config_is_sensor_graph_enabled(const char *sid)
676 {
677         return sensor_get_bool(sid, ATT_SENSOR_GRAPH_ENABLED);
678 }
679
680 void config_set_sensor_graph_enabled(const char *sid, bool enabled)
681 {
682         sensor_set_bool(sid, ATT_SENSOR_GRAPH_ENABLED, enabled);
683 }
684
685 int config_get_sensor_alarm_high_threshold(const char *sid)
686 {
687         return sensor_get_int(sid, ATT_SENSOR_ALARM_HIGH_THRESHOLD);
688 }
689
690 void config_set_sensor_alarm_high_threshold(const char *sid, int threshold)
691 {
692         sensor_set_int(sid, ATT_SENSOR_ALARM_HIGH_THRESHOLD, threshold);
693 }
694
695 int config_get_sensor_alarm_low_threshold(const char *sid)
696 {
697         return sensor_get_int(sid, ATT_SENSOR_ALARM_LOW_THRESHOLD);
698 }
699
700 void config_set_sensor_alarm_low_threshold(const char *sid, int threshold)
701 {
702         sensor_set_int(sid, ATT_SENSOR_ALARM_LOW_THRESHOLD, threshold);
703 }
704
705 bool config_is_appindicator_enabled(const char *sid)
706 {
707         return !sensor_get_bool(sid, ATT_SENSOR_APPINDICATOR_MENU_DISABLED);
708 }
709
710 void config_set_appindicator_enabled(const char *sid, bool enabled)
711 {
712         return sensor_set_bool(sid,
713                                ATT_SENSOR_APPINDICATOR_MENU_DISABLED,
714                                !enabled);
715 }
716
717 int config_get_sensor_position(const char *sid)
718 {
719         return sensor_get_int(sid, ATT_SENSOR_POSITION);
720 }
721
722 void config_set_sensor_position(const char *sid, int pos)
723 {
724         return sensor_set_int(sid, ATT_SENSOR_POSITION, pos);
725 }
726
727 bool config_get_sensor_alarm_enabled(const char *sid)
728 {
729         return sensor_get_bool(sid, ATT_SENSOR_ALARM_ENABLED);
730 }
731
732 void config_set_sensor_alarm_enabled(const char *sid, bool enabled)
733 {
734         sensor_set_bool(sid, ATT_SENSOR_ALARM_ENABLED, enabled);
735 }
736
737 bool config_is_sensor_enabled(const char *sid)
738 {
739         return !sensor_get_bool(sid, ATT_SENSOR_HIDE);
740 }
741
742 void config_set_sensor_enabled(const char *sid, bool enabled)
743 {
744         sensor_set_bool(sid, ATT_SENSOR_HIDE, !enabled);
745 }
746
747 bool config_is_appindicator_label_enabled(const char *sid)
748 {
749         return sensor_get_bool(sid, ATT_SENSOR_APPINDICATOR_LABEL_ENABLED);
750 }
751
752 void config_set_appindicator_label_enabled(const char *sid, bool enabled)
753 {
754         sensor_set_bool(sid, ATT_SENSOR_APPINDICATOR_LABEL_ENABLED, enabled);
755 }