]> Pileus Git - aweather/blob - src/main.c
55d0ad94cc99ef79be4d88adb7fd283e60a44ae4
[aweather] / src / main.c
1 /*
2  * Copyright (C) 2009-2011 Andy Spencer <andy753421@gmail.com>
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU 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, see <http://www.gnu.org/licenses/>.
16  */
17
18 #define _XOPEN_SOURCE
19 #include <sys/time.h>
20 #include <config.h>
21 #include <gtk/gtk.h>
22 #include <glib/gstdio.h>
23
24 #include <grits.h>
25
26 #include "aweather-gui.h"
27 #include "aweather-location.h"
28
29 static gint log_levels = 0;
30
31 static int int2log(int level) {
32         level = G_LOG_LEVEL_ERROR << level;
33         level = (level<<1) - 1;
34         level = level & G_LOG_LEVEL_MASK;
35         return level;
36 }
37
38 static void log_func(const gchar *log_domain, GLogLevelFlags log_level,
39               const gchar *message, gpointer udata)
40 {
41         if (log_level & log_levels) {
42                 if (log_level == G_LOG_LEVEL_DEBUG)
43                         g_fprintf(stderr, "DEBUG: (%p) %s\n",
44                                         g_thread_self(), message);
45                 else
46                         g_log_default_handler(log_domain, log_level, message, udata);
47         }
48 }
49
50 static void xdg_open(GtkLinkButton *button, const gchar *link, gpointer user_data)
51 {
52         gchar *argv[] = {"xdg-open", (gchar*)link, NULL};
53         g_spawn_async(NULL, argv, NULL, G_SPAWN_SEARCH_PATH, NULL, NULL, NULL, NULL);
54 }
55
56 static void on_log_level_changed(GtkSpinButton *spinner, AWeatherGui *self)
57 {
58         g_message("main: log_level_changed");
59         log_levels = int2log(gtk_spin_button_get_value_as_int(spinner));
60 }
61
62 static void set_location_time(AWeatherGui *gui, char *site, char *time)
63 {
64         /* Set time
65          *   Do this before setting setting location
66          *   so that it doesn't refresh twice */
67         int year, mon, day, hour, min;
68         sscanf(time, "%d-%d-%d %d:%d", &year, &mon, &day, &hour, &min);
69         time_t sec = mktime(&(struct tm){0, year-1900, mon-1, day, hour, min});
70         if (sec > 0)
71                 grits_viewer_set_time(gui->viewer, sec);
72         g_debug("date = [%s] == %lu\n", time, sec);
73
74         /* Set location */
75         for (city_t *city = cities; city->type; city++) {
76                 if (city->type == LOCATION_CITY && g_str_equal(city->code, site)) {
77                         grits_viewer_set_location(gui->viewer,
78                                 city->pos.lat, city->pos.lon, EARTH_R/35);
79                         break;
80                 }
81         }
82 }
83
84 static void set_toggle_action(AWeatherGui *gui, const char *action, gboolean enabled)
85 {
86         GObject *object = aweather_gui_get_object(gui, action);
87         gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(object), enabled);
88 }
89
90 /********
91  * Main *
92  ********/
93 int main(int argc, char *argv[])
94 {
95         /* Defaults */
96         gint     debug      = 2; // G_LOG_LEVEL_WARNING
97         gchar   *site       = "";
98         gchar   *time       = "";
99         gboolean autoupdate = FALSE;
100         gboolean offline    = FALSE;
101         gboolean fullscreen = FALSE;
102
103         /* Arguments */
104         gint     opt_debug      = -1;
105         gchar   *opt_site       = NULL;
106         gchar   *opt_time       = NULL;
107         gboolean opt_offline    = FALSE;
108         gboolean opt_autoupdate = FALSE;
109         gboolean opt_fullscreen = FALSE;
110         GOptionEntry entries[] = {
111                 //long         short flg type                 location         description                 arg desc
112                 {"debug",      'd',  0,  G_OPTION_ARG_INT,    &opt_debug,      "Change default log level", "[0-5]"},
113                 {"site",       's',  0,  G_OPTION_ARG_STRING, &opt_site,       "Set initial site",         "SITE"},
114                 {"time",       't',  0,  G_OPTION_ARG_STRING, &opt_time,       "Set initial date/time",    "DATE"},
115                 {"offline",    'o',  0,  G_OPTION_ARG_NONE,   &opt_offline,    "Run in offline mode",      NULL},
116                 {"autoupdate", 'a',  0,  G_OPTION_ARG_NONE,   &opt_autoupdate, "Auto update radar",        NULL},
117                 {"fullscreen", 'f',  0,  G_OPTION_ARG_NONE,   &opt_fullscreen, "Open in fullscreen mode",  NULL},
118                 {NULL}
119         };
120
121         /* Init */
122         GError *error = NULL;
123         g_thread_init(NULL);
124         gdk_threads_init();
125         if (!gtk_init_with_args(&argc, &argv, "aweather", entries, NULL, &error)) {
126                 g_print("%s\n", error->message);
127                 g_error_free(error);
128                 return -1;
129         }
130
131         /* Use external handler for link buttons */
132         gtk_link_button_set_uri_hook(xdg_open, NULL, NULL);
133
134         /* Setup debug level for aweather_gui_new */
135         g_log_set_handler(NULL, G_LOG_LEVEL_MASK, log_func, NULL);
136         log_levels = int2log(opt_debug >= 0 ? opt_debug : debug);
137
138         /* Set up AWeather */
139         gdk_threads_enter();
140         /* Pre-load some types for gtkbuilder */
141         GRITS_TYPE_OPENGL;
142         AWEATHER_TYPE_GUI;
143         GtkBuilder *builder = gtk_builder_new();
144         if (!gtk_builder_add_from_file(builder, PKGDATADIR "/main.ui", &error))
145                 g_error("Failed to create gtk builder: %s", error->message);
146         AWeatherGui *gui = AWEATHER_GUI(gtk_builder_get_object(builder, "main_window"));
147         g_signal_connect(gui, "destroy", gtk_main_quit, NULL);
148         GObject *action = aweather_gui_get_object(gui, "prefs_general_log");
149         g_signal_connect(action, "changed", G_CALLBACK(on_log_level_changed), NULL);
150
151         /* Finish setting up options */
152         GError *err = NULL;
153         gint     prefs_debug      = grits_prefs_get_integer(gui->prefs, "aweather/log_level",    &err);
154         gchar   *prefs_site       = grits_prefs_get_string(gui->prefs,  "aweather/initial_site", NULL);
155         gboolean prefs_offline    = grits_prefs_get_boolean(gui->prefs, "grits/offline",         NULL);
156         gint     prefs_autoupdate = grits_prefs_get_boolean(gui->prefs, "aweather/update_enab",  NULL);
157
158         debug      = (opt_debug >= 0 ? opt_debug   :
159                       err == NULL    ? prefs_debug : debug);
160         site       = (opt_site       ?: prefs_site       ?: site);
161         time       = (opt_time       ?:                     time);
162         offline    = (opt_offline    ?: prefs_offline    ?: offline);
163         autoupdate = (opt_autoupdate ?: prefs_autoupdate ?: autoupdate);
164         fullscreen = (opt_fullscreen ?:                     fullscreen);
165
166         log_levels = int2log(debug);
167         set_location_time(gui, site, time);
168         grits_viewer_set_offline(gui->viewer, offline);
169         set_toggle_action(gui, "update",     autoupdate);
170         set_toggle_action(gui, "fullscreen", fullscreen);
171         g_free(prefs_site);
172
173         /* Done with init, show gui */
174         gtk_widget_show_all(GTK_WIDGET(gui));
175         set_toggle_action(gui, "fullscreen", fullscreen); // Resest widget hiding
176         gtk_main();
177         gdk_threads_leave();
178         gdk_display_close(gdk_display_get_default());
179         return 0;
180 }