Add a new config setting for logging
[browser-switch] / main.c
1 /*
2  * main.c -- config file parsing and main loop for browser-switchboard
3  *
4  * Copyright (C) 2009-2010 Steven Luo
5  * Derived from a Python implementation by Jason Simpson and Steven Luo
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
20  * USA.
21  */
22
23 #include <stdlib.h>
24 #include <string.h>
25 #include <signal.h>
26 #include <sys/types.h>
27 #include <sys/wait.h>
28 #include <dbus/dbus-glib.h>
29
30 #include "browser-switchboard.h"
31 #include "launcher.h"
32 #include "dbus-server-bindings.h"
33 #include "configfile.h"
34 #include "log.h"
35
36 struct swb_context ctx;
37
38 static void set_config_defaults(struct swb_context *ctx) {
39         if (!ctx)
40                 return;
41         free(ctx->other_browser_cmd);
42         ctx->continuous_mode = 0;
43         ctx->default_browser_launcher = NULL;
44         ctx->other_browser_cmd = NULL;
45 }
46
47 static void waitforzombies(int signalnum) {
48         while (waitpid(-1, NULL, WNOHANG) > 0)
49                 log_msg("Waited for a zombie\n");
50 }
51
52 static void read_config(int signalnum) {
53         FILE *fp;
54         int continuous_mode_seen = 0;
55         struct swb_config_line line;
56         char *default_browser = NULL, *logger_name = NULL;
57
58         set_config_defaults(&ctx);
59
60         if (!(fp = open_config_file()))
61                 goto out_noopen;
62
63         /* Parse the config file
64            TODO: should we handle errors differently than EOF? */
65         if (!parse_config_file_begin())
66                 goto out;
67         while (!parse_config_file_line(fp, &line)) {
68                 if (line.parsed) {
69                         if (!strcmp(line.key, "continuous_mode")) {
70                                 if (!continuous_mode_seen) {
71                                         ctx.continuous_mode = atoi(line.value);
72                                         continuous_mode_seen = 1;
73                                 }
74                                 free(line.value);
75                         } else if (!strcmp(line.key, "default_browser")) {
76                                 if (!default_browser)
77                                         default_browser = line.value;
78                         } else if (!strcmp(line.key, "other_browser_cmd")) {
79                                 if (!ctx.other_browser_cmd)
80                                         ctx.other_browser_cmd = line.value;
81                         } else if (!strcmp(line.key, "logging")) {
82                                 if (!logger_name)
83                                         logger_name = line.value;
84                         } else {
85                                 /* Don't need this line's contents */
86                                 free(line.value);
87                         }
88                 }
89                 free(line.key);
90         }
91         parse_config_file_end();
92
93         log_msg("continuous_mode: %d\n", ctx.continuous_mode);
94         log_msg("default_browser: '%s'\n",
95                 default_browser?default_browser:"NULL");
96         log_msg("other_browser_cmd: '%s'\n",
97                 ctx.other_browser_cmd?ctx.other_browser_cmd:"NULL");
98
99 out:
100         fclose(fp);
101 out_noopen:
102         log_config(logger_name);
103         update_default_browser(&ctx, default_browser);
104         free(logger_name);
105         free(default_browser);
106         return;
107 }
108
109 int main() {
110         OssoBrowser *obj_osso_browser, *obj_osso_browser_req;
111         GMainLoop *mainloop;
112         GError *error = NULL;
113         int reqname_result;
114
115         read_config(0);
116
117         if (ctx.continuous_mode) {
118                 /* Install signal handlers */
119                 struct sigaction act;
120                 act.sa_flags = SA_RESTART;
121                 sigemptyset(&(act.sa_mask));
122
123                 /* SIGCHLD -- clean up after zombies */
124                 act.sa_handler = waitforzombies;
125                 if (sigaction(SIGCHLD, &act, NULL) == -1) {
126                         log_msg("Installing signal handler failed\n");
127                         return 1;
128                 }
129
130                 /* SIGHUP -- reread config file */
131                 act.sa_handler = read_config;
132                 if (sigaction(SIGHUP, &act, NULL) == -1) {
133                         log_msg("Installing signal handler failed\n");
134                         return 1;
135                 }
136         }
137
138         g_type_init();
139
140         dbus_g_object_type_install_info(OSSO_BROWSER_TYPE,
141                         &dbus_glib_osso_browser_object_info);
142
143         /* Get a connection to the D-Bus session bus */
144         ctx.session_bus = dbus_g_bus_get(DBUS_BUS_SESSION, &error);
145         if (!ctx.session_bus) {
146                 log_msg("Couldn't get a D-Bus bus connection\n");
147                 return 1;
148         }
149         ctx.dbus_proxy = dbus_g_proxy_new_for_name(ctx.session_bus,
150                         "org.freedesktop.DBus", "/org/freedesktop/DBus",
151                         "org.freedesktop.DBus");
152         if (!ctx.dbus_proxy) {
153                 log_msg("Couldn't get an org.freedesktop.DBus proxy\n");
154                 return 1;
155         }
156
157         /* Get the org.maemo.garage.browser-switchboard name from D-Bus, as
158            a form of locking to ensure that not more than one
159            browser-switchboard process is active at any time.  With
160            DBUS_NAME_FLAG_DO_NOT_QUEUE set and DBUS_NAME_FLAG_REPLACE_EXISTING
161            not set, getting the name succeeds if and only if no other
162            process owns the name. */
163         if (!dbus_g_proxy_call(ctx.dbus_proxy, "RequestName", &error,
164                                G_TYPE_STRING, "org.maemo.garage.browser-switchboard",
165                                G_TYPE_UINT, DBUS_NAME_FLAG_DO_NOT_QUEUE,
166                                G_TYPE_INVALID,
167                                G_TYPE_UINT, &reqname_result,
168                                G_TYPE_INVALID)) {
169                 log_msg("Couldn't acquire browser-switchboard lock: %s\n",
170                         error->message);
171                 return 1;
172         }
173         if (reqname_result != DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER) {  
174                 log_msg("Another browser-switchboard already running\n");
175                 return 1;
176         }
177
178         dbus_request_osso_browser_name(&ctx);
179
180         /* Register ourselves to handle the osso_browser D-Bus methods */
181         obj_osso_browser = g_object_new(OSSO_BROWSER_TYPE, NULL);
182         obj_osso_browser_req = g_object_new(OSSO_BROWSER_TYPE, NULL);
183         dbus_g_connection_register_g_object(ctx.session_bus,
184                         "/com/nokia/osso_browser", G_OBJECT(obj_osso_browser));
185         dbus_g_connection_register_g_object(ctx.session_bus,
186                         "/com/nokia/osso_browser/request",
187                         G_OBJECT(obj_osso_browser_req));
188
189         mainloop = g_main_loop_new(NULL, FALSE);
190         log_msg("Starting main loop\n");
191         g_main_loop_run(mainloop);
192         log_msg("Main loop completed\n");
193
194         return 0;
195 }