Update debian/rules
[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 <errno.h>
27 #include <sys/types.h>
28 #include <sys/wait.h>
29 #include <dbus/dbus-glib.h>
30
31 #include "browser-switchboard.h"
32 #include "launcher.h"
33 #include "dbus-server-bindings.h"
34 #include "config.h"
35 #include "log.h"
36
37 struct swb_context ctx;
38
39 static void waitforzombies(int signalnum) {
40         while (waitpid(-1, NULL, WNOHANG) > 0)
41                 log_msg("Waited for a zombie\n");
42 }
43
44 static void read_config(int signalnum) {
45         struct swb_config cfg;
46
47         swb_config_init(&cfg);
48
49         swb_config_load(&cfg);
50
51         log_config(cfg.logging);
52 #ifdef FREMANTLE
53         /* continuous mode is required on Fremantle */
54         ctx.continuous_mode = 1;
55         if (!cfg.continuous_mode)
56                 log_msg("continuous_mode = 0 operation no longer supported, ignoring config setting\n");
57 #else
58         ctx.continuous_mode = cfg.continuous_mode;
59 #endif
60         free(ctx.other_browser_cmd);
61         if (cfg.other_browser_cmd) {
62                 if (!(ctx.other_browser_cmd = strdup(cfg.other_browser_cmd))) {
63                         log_perror(errno, "Failed to set other_browser_cmd");
64                         exit(1);
65                 }
66         } else
67                 ctx.other_browser_cmd = NULL;
68         update_default_browser(&ctx, cfg.default_browser);
69 #ifdef FREMANTLE
70         ctx.autostart_microb = cfg.autostart_microb;
71 #endif
72
73         log_msg("continuous_mode: %d\n", cfg.continuous_mode);
74         log_msg("default_browser: '%s'\n", cfg.default_browser);
75         log_msg("other_browser_cmd: '%s'\n",
76                 cfg.other_browser_cmd?cfg.other_browser_cmd:"NULL");
77         log_msg("logging: '%s'\n", cfg.logging);
78
79         swb_config_free(&cfg);
80         return;
81 }
82
83 int main() {
84         OssoBrowser *obj_osso_browser, *obj_osso_browser_req;
85         OssoBrowser *obj_osso_browser_sys, *obj_osso_browser_sys_req;
86         GMainLoop *mainloop;
87         GError *error = NULL;
88         int reqname_result;
89
90         read_config(0);
91
92         if (ctx.continuous_mode) {
93                 /* Install signal handlers */
94                 struct sigaction act;
95                 act.sa_flags = SA_RESTART;
96                 sigemptyset(&(act.sa_mask));
97
98                 /* SIGCHLD -- clean up after zombies */
99                 act.sa_handler = waitforzombies;
100                 if (sigaction(SIGCHLD, &act, NULL) == -1) {
101                         log_msg("Installing signal handler failed\n");
102                         return 1;
103                 }
104
105                 /* SIGHUP -- reread config file */
106                 act.sa_handler = read_config;
107                 if (sigaction(SIGHUP, &act, NULL) == -1) {
108                         log_msg("Installing signal handler failed\n");
109                         return 1;
110                 }
111         }
112
113         g_type_init();
114
115         dbus_g_object_type_install_info(OSSO_BROWSER_TYPE,
116                         &dbus_glib_osso_browser_object_info);
117
118         /* Get a connection to the D-Bus session bus */
119         ctx.session_bus = dbus_g_bus_get(DBUS_BUS_SESSION, &error);
120         if (!ctx.session_bus) {
121                 log_msg("Couldn't get a D-Bus bus connection\n");
122                 return 1;
123         }
124         ctx.dbus_proxy = dbus_g_proxy_new_for_name(ctx.session_bus,
125                         "org.freedesktop.DBus", "/org/freedesktop/DBus",
126                         "org.freedesktop.DBus");
127         if (!ctx.dbus_proxy) {
128                 log_msg("Couldn't get an org.freedesktop.DBus proxy\n");
129                 return 1;
130         }
131
132         /* Get the org.maemo.garage.browser-switchboard name from D-Bus, as
133            a form of locking to ensure that not more than one
134            browser-switchboard process is active at any time.  With
135            DBUS_NAME_FLAG_DO_NOT_QUEUE set and DBUS_NAME_FLAG_REPLACE_EXISTING
136            not set, getting the name succeeds if and only if no other
137            process owns the name. */
138         if (!dbus_g_proxy_call(ctx.dbus_proxy, "RequestName", &error,
139                                G_TYPE_STRING, "org.maemo.garage.browser-switchboard",
140                                G_TYPE_UINT, DBUS_NAME_FLAG_DO_NOT_QUEUE,
141                                G_TYPE_INVALID,
142                                G_TYPE_UINT, &reqname_result,
143                                G_TYPE_INVALID)) {
144                 log_msg("Couldn't acquire browser-switchboard lock: %s\n",
145                         error->message);
146                 return 1;
147         }
148         if (reqname_result != DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER) {
149                 log_msg("Another browser-switchboard already running\n");
150                 return 1;
151         }
152
153         /* Get a connection to the D-Bus system bus */
154         ctx.system_bus = dbus_g_bus_get(DBUS_BUS_SYSTEM, &error);
155         if (!ctx.system_bus) {
156                 log_msg("Couldn't get a D-Bus system bus connection\n");
157                 return 1;
158         }
159         ctx.dbus_system_proxy = dbus_g_proxy_new_for_name(ctx.system_bus,
160                         "org.freedesktop.DBus", "/org/freedesktop/DBus",
161                         "org.freedesktop.DBus");
162         if (!ctx.dbus_system_proxy) {
163                 log_msg("Couldn't get an org.freedesktop.DBus proxy\n");
164                 return 1;
165         }
166
167         dbus_request_osso_browser_name(&ctx);
168
169         /* Register ourselves to handle the osso_browser D-Bus methods */
170         obj_osso_browser = g_object_new(OSSO_BROWSER_TYPE, NULL);
171         obj_osso_browser_req = g_object_new(OSSO_BROWSER_TYPE, NULL);
172         obj_osso_browser_sys = g_object_new(OSSO_BROWSER_TYPE, NULL);
173         obj_osso_browser_sys_req = g_object_new(OSSO_BROWSER_TYPE, NULL);
174         dbus_g_connection_register_g_object(ctx.session_bus,
175                         "/com/nokia/osso_browser", G_OBJECT(obj_osso_browser));
176         dbus_g_connection_register_g_object(ctx.session_bus,
177                         "/com/nokia/osso_browser/request",
178                         G_OBJECT(obj_osso_browser_req));
179         dbus_g_connection_register_g_object(ctx.system_bus,
180                         "/com/nokia/osso_browser",
181                         G_OBJECT(obj_osso_browser_sys));
182         dbus_g_connection_register_g_object(ctx.system_bus,
183                         "/com/nokia/osso_browser/request",
184                         G_OBJECT(obj_osso_browser_sys_req));
185
186         mainloop = g_main_loop_new(NULL, FALSE);
187         log_msg("Starting main loop\n");
188         g_main_loop_run(mainloop);
189         log_msg("Main loop completed\n");
190
191         return 0;
192 }