Bug 627938: Fix nsGlobalChromeWindow cleanup. (r=smaug, a=jst)
[mozilla-central.git] / uriloader / exthandler / nsDBusHandlerApp.cpp
blobca0037ed19e11d1f10ad74c389cf616c7aba8fe7
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 * vim:expandtab:shiftwidth=2:tabstop=2:cin:
3 * ***** BEGIN LICENSE BLOCK *****
4 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
6 * The contents of this file are subject to the Mozilla Public License Version
7 * 1.1 (the "License"); you may not use this file except in compliance with
8 * the License. You may obtain a copy of the License at
9 * http://www.mozilla.org/MPL/
11 * Software distributed under the License is distributed on an "AS IS" basis,
12 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 * for the specific language governing rights and limitations under the
14 * License.
16 * The Original Code is the Mozilla browser.
18 * The Initial Developer of the Original Code is
19 * the Mozilla Corporation.
20 * Portions created by the Initial Developer are Copyright (C) 2008
21 * the Initial Developer. All Rights Reserved.
23 * Contributor(s):
24 * Brad Lassey <blassey@mozila.com>
26 * Alternatively, the contents of this file may be used under the terms of
27 * either of the GNU General Public License Version 2 or later (the "GPL"),
28 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
29 * in which case the provisions of the GPL or the LGPL are applicable instead
30 * of those above. If you wish to allow use of your version of this file only
31 * under the terms of either the GPL or the LGPL, and not to allow others to
32 * use your version of this file under the terms of the MPL, indicate your
33 * decision by deleting the provisions above and replace them with the notice
34 * and other provisions required by the GPL or the LGPL. If you do not delete
35 * the provisions above, a recipient may use your version of this file under
36 * the terms of any one of the MPL, the GPL or the LGPL.
38 * ***** END LICENSE BLOCK ***** */
40 #include <dbus/dbus.h>
41 #include "nsDBusHandlerApp.h"
42 #include "nsIURI.h"
43 #include "nsIClassInfoImpl.h"
44 #include "nsCOMPtr.h"
45 #include "nsCExternalHandlerService.h"
47 #if (MOZ_PLATFORM_MAEMO == 5)
48 #define APP_LAUNCH_BANNER_SERVICE "com.nokia.hildon-desktop"
49 #define APP_LAUNCH_BANNER_METHOD_INTERFACE "com.nokia.hildon.hdwm.startupnotification"
50 #define APP_LAUNCH_BANNER_METHOD_PATH "/com/nokia/hildon/hdwm"
51 #define APP_LAUNCH_BANNER_METHOD "starting"
52 #endif
55 // XXX why does nsMIMEInfoImpl have a threadsafe nsISupports? do we need one
56 // here too?
57 NS_IMPL_CLASSINFO(nsDBusHandlerApp, NULL, 0, NS_DBUSHANDLERAPP_CID)
58 NS_IMPL_ISUPPORTS2_CI(nsDBusHandlerApp, nsIDBusHandlerApp, nsIHandlerApp)
60 ////////////////////////////////////////////////////////////////////////////////
61 //// nsIHandlerApp
63 NS_IMETHODIMP nsDBusHandlerApp::GetName(nsAString& aName)
65 aName.Assign(mName);
66 return NS_OK;
69 NS_IMETHODIMP nsDBusHandlerApp::SetName(const nsAString & aName)
71 mName.Assign(aName);
72 return NS_OK;
75 NS_IMETHODIMP nsDBusHandlerApp::SetDetailedDescription(const nsAString & aDescription)
77 mDetailedDescription.Assign(aDescription);
79 return NS_OK;
82 NS_IMETHODIMP nsDBusHandlerApp::GetDetailedDescription(nsAString& aDescription)
84 aDescription.Assign(mDetailedDescription);
86 return NS_OK;
89 NS_IMETHODIMP
90 nsDBusHandlerApp::Equals(nsIHandlerApp *aHandlerApp, PRBool *_retval)
92 NS_ENSURE_ARG_POINTER(aHandlerApp);
94 // If the handler app isn't a dbus handler app, then it's not the same app.
95 nsCOMPtr<nsIDBusHandlerApp> dbusHandlerApp = do_QueryInterface(aHandlerApp);
96 if (!dbusHandlerApp) {
97 *_retval = PR_FALSE;
98 return NS_OK;
100 nsCAutoString service;
101 nsCAutoString method;
103 nsresult rv = dbusHandlerApp->GetService(service);
104 if (NS_FAILED(rv)) {
105 *_retval = PR_FALSE;
106 return NS_OK;
108 rv = dbusHandlerApp->GetMethod(method);
109 if (NS_FAILED(rv)) {
110 *_retval = PR_FALSE;
111 return NS_OK;
114 *_retval = service.Equals(mService) && method.Equals(mMethod);
115 return NS_OK;
118 NS_IMETHODIMP
119 nsDBusHandlerApp::LaunchWithURI(nsIURI *aURI,
120 nsIInterfaceRequestor *aWindowContext)
122 nsCAutoString spec;
123 nsresult rv = aURI->GetAsciiSpec(spec);
124 NS_ENSURE_SUCCESS(rv,rv);
125 const char* uri = spec.get();
127 DBusError err;
128 dbus_error_init(&err);
130 DBusConnection *connection;
131 connection = dbus_bus_get(DBUS_BUS_SESSION, &err);
132 if (dbus_error_is_set(&err)) {
133 dbus_error_free(&err);
134 return NS_ERROR_FAILURE;
136 if (nsnull == connection) {
137 return NS_ERROR_FAILURE;
139 dbus_connection_set_exit_on_disconnect(connection,false);
141 DBusMessage* msg;
142 msg = dbus_message_new_method_call(mService.get(),
143 mObjpath.get(),
144 mInterface.get(),
145 mMethod.get());
147 if (!msg) {
148 return NS_ERROR_FAILURE;
150 dbus_message_set_no_reply(msg, PR_TRUE);
152 DBusMessageIter iter;
153 dbus_message_iter_init_append(msg, &iter);
154 dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &uri);
156 if (dbus_connection_send(connection, msg, NULL)) {
157 dbus_connection_flush(connection);
158 dbus_message_unref(msg);
159 #if (MOZ_PLATFORM_MAEMO == 5)
160 msg = dbus_message_new_method_call (APP_LAUNCH_BANNER_SERVICE,
161 APP_LAUNCH_BANNER_METHOD_PATH,
162 APP_LAUNCH_BANNER_METHOD_INTERFACE,
163 APP_LAUNCH_BANNER_METHOD);
165 if (msg) {
166 const char* service = mService.get();
167 if (dbus_message_append_args(msg,
168 DBUS_TYPE_STRING,
169 &service,
170 DBUS_TYPE_INVALID)) {
171 if (dbus_connection_send(connection, msg, NULL)) {
172 dbus_connection_flush(connection);
174 dbus_message_unref(msg);
177 #endif
178 } else {
179 dbus_message_unref(msg);
180 return NS_ERROR_FAILURE;
182 return NS_OK;
186 ////////////////////////////////////////////////////////////////////////////////
187 //// nsIDBusHandlerApp
189 /* attribute AUTF8String service; */
190 NS_IMETHODIMP nsDBusHandlerApp::GetService(nsACString & aService)
192 aService.Assign(mService);
193 return NS_OK;
196 NS_IMETHODIMP nsDBusHandlerApp::SetService(const nsACString & aService)
198 mService.Assign(aService);
199 return NS_OK;
202 /* attribute AUTF8String method; */
203 NS_IMETHODIMP nsDBusHandlerApp::GetMethod(nsACString & aMethod)
205 aMethod.Assign(mMethod);
206 return NS_OK;
209 NS_IMETHODIMP nsDBusHandlerApp::SetMethod(const nsACString & aMethod)
211 mMethod.Assign(aMethod);
212 return NS_OK;
215 /* attribute AUTF8String interface; */
216 NS_IMETHODIMP nsDBusHandlerApp::GetDBusInterface(nsACString & aInterface)
218 aInterface.Assign(mInterface);
219 return NS_OK;
222 NS_IMETHODIMP nsDBusHandlerApp::SetDBusInterface(const nsACString & aInterface)
224 mInterface.Assign(aInterface);
225 return NS_OK;
228 /* attribute AUTF8String objpath; */
229 NS_IMETHODIMP nsDBusHandlerApp::GetObjectPath(nsACString & aObjpath)
231 aObjpath.Assign(mObjpath);
232 return NS_OK;
235 NS_IMETHODIMP nsDBusHandlerApp::SetObjectPath(const nsACString & aObjpath)
237 mObjpath.Assign(aObjpath);
238 return NS_OK;