Remove a stray debugging printf()
[browser-switch] / dbus-server-bindings.c
1 /*
2  * dbus-server-bindings.c -- osso_browser D-Bus interface implementation
3  *
4  * Copyright (C) 2009 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 <stdio.h>
26 #include <dbus/dbus-glib.h>
27
28 #include "browser-switchboard.h"
29 #include "launcher.h"
30 #include "dbus-server-bindings.h"
31
32 extern struct swb_context ctx;
33
34 G_DEFINE_TYPE(OssoBrowser, osso_browser, G_TYPE_OBJECT);
35 static void osso_browser_init(OssoBrowser *obj)
36 {
37 }
38
39 static void osso_browser_class_init(OssoBrowserClass *klass)
40 {
41 }
42
43 #include "dbus-server-glue.h"
44
45
46 static void open_address(const char *uri) {
47         char *new_uri;
48         size_t new_uri_len;
49
50         if (!uri && uri[0] == '/') {
51                 new_uri_len = strlen("file://") + strlen(uri) + 1;
52                 if (!(new_uri = calloc(new_uri_len, sizeof(char))))
53                         exit(1);
54                 snprintf(new_uri, new_uri_len, "%s%s", "file://", uri);
55
56                 launch_browser(&ctx, new_uri);
57                 /* If launch_browser didn't exec something in this process,
58                    we need to clean up after ourselves */
59                 free(new_uri);
60         } else {
61                 printf("open_address '%s'\n", uri);
62                 launch_browser(&ctx, (char *)uri);
63         }
64 }
65
66
67 /*
68  * The com.nokia.osso_browser D-Bus interface
69  */
70 gboolean osso_browser_load_url(OssoBrowser *obj,
71                 const char *uri, GError **error) {
72         open_address(uri);
73         return TRUE;
74 }
75
76 gboolean osso_browser_mime_open(OssoBrowser *obj,
77                 const char *uri, GError **error) {
78         open_address(uri);
79         return TRUE;
80 }
81
82 gboolean osso_browser_open_new_window(OssoBrowser *obj,
83                 const char *uri, GError **error) {
84         open_address(uri);
85         return TRUE;
86 }
87
88 gboolean osso_browser_top_application(OssoBrowser *obj,
89                 GError **error) {
90         launch_microb(&ctx, "new_window");
91         return TRUE;
92 }
93
94 /* This is a "undocumented", non-standard extension to the API, ONLY
95    for use by /usr/bin/browser wrapper to implement --url */
96 gboolean osso_browser_switchboard_launch_microb(OssoBrowser *obj,
97                 const char *uri, GError **error) {
98         launch_microb(&ctx, (char *)uri);
99         return TRUE;
100 }
101
102
103 /* Register the name com.nokia.osso_browser on the D-Bus session bus */
104 void dbus_request_osso_browser_name(struct swb_context *ctx) {
105         GError *error = NULL;
106         guint result;
107
108         if (!ctx || !ctx->dbus_proxy)
109                 return;
110
111         if (!dbus_g_proxy_call(ctx->dbus_proxy, "RequestName", &error,
112                                G_TYPE_STRING, "com.nokia.osso_browser",
113                                G_TYPE_UINT, DBUS_NAME_FLAG_REPLACE_EXISTING|DBUS_NAME_FLAG_DO_NOT_QUEUE,
114                                G_TYPE_INVALID,
115                                G_TYPE_UINT, &result,
116                                G_TYPE_INVALID)) {
117                 printf("Couldn't acquire name com.nokia.osso_browser\n");
118                 exit(1);
119         }
120         if (result != DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER) {  
121                 printf("Couldn't acquire name com.nokia.osso_browser\n");
122                 exit(1);
123         }
124 }
125
126 /* Release the name com.nokia.osso_browser on the D-Bus session bus */
127 void dbus_release_osso_browser_name(struct swb_context *ctx) {
128         GError *error = NULL;
129         guint result;
130
131         if (!ctx || !ctx->dbus_proxy)
132                 return;
133
134         dbus_g_proxy_call(ctx->dbus_proxy, "ReleaseName", &error,
135                           G_TYPE_STRING, "com.nokia.osso_browser",
136                           G_TYPE_INVALID,
137                           G_TYPE_UINT, &result,
138                           G_TYPE_INVALID);
139 }