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
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.
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"
43 #include "nsIGenericFactory.h"
44 #include "nsIClassInfoImpl.h"
50 #define APP_LAUNCH_BANNER_SERVICE "com.nokia.hildon-desktop"
51 #define APP_LAUNCH_BANNER_METHOD_INTERFACE "com.nokia.hildon.hdwm.startupnotification"
52 #define APP_LAUNCH_BANNER_METHOD_PATH "/com/nokia/hildon/hdwm"
53 #define APP_LAUNCH_BANNER_METHOD "starting"
57 // XXX why does nsMIMEInfoImpl have a threadsafe nsISupports? do we need one
59 NS_IMPL_ISUPPORTS2_CI(nsDBusHandlerApp
, nsIDBusHandlerApp
, nsIHandlerApp
)
61 ////////////////////////////////////////////////////////////////////////////////
64 NS_IMETHODIMP
nsDBusHandlerApp::GetName(nsAString
& aName
)
70 NS_IMETHODIMP
nsDBusHandlerApp::SetName(const nsAString
& aName
)
77 nsDBusHandlerApp::Equals(nsIHandlerApp
*aHandlerApp
, PRBool
*_retval
)
79 NS_ENSURE_ARG_POINTER(aHandlerApp
);
81 // If the handler app isn't a dbus handler app, then it's not the same app.
82 nsCOMPtr
<nsIDBusHandlerApp
> dbusHandlerApp
= do_QueryInterface(aHandlerApp
);
83 if (!dbusHandlerApp
) {
87 nsCAutoString service
;
90 nsresult rv
= dbusHandlerApp
->GetService(service
);
95 rv
= dbusHandlerApp
->GetMethod(method
);
101 *_retval
= service
.Equals(mService
) && method
.Equals(mMethod
);
106 nsDBusHandlerApp::LaunchWithURI(nsIURI
*aURI
,
107 nsIInterfaceRequestor
*aWindowContext
)
110 nsresult rv
= aURI
->GetAsciiSpec(spec
);
111 NS_ENSURE_SUCCESS(rv
,rv
);
112 const char* uri
= spec
.get();
115 dbus_error_init(&err
);
117 DBusConnection
*connection
;
118 connection
= dbus_bus_get(DBUS_BUS_SESSION
, &err
);
119 if (dbus_error_is_set(&err
)) {
120 dbus_error_free(&err
);
121 return NS_ERROR_FAILURE
;
123 if (nsnull
== connection
) {
124 return NS_ERROR_FAILURE
;
126 dbus_connection_set_exit_on_disconnect(connection
,false);
129 msg
= dbus_message_new_method_call(mService
.get(),
135 return NS_ERROR_FAILURE
;
137 dbus_message_set_no_reply(msg
, PR_TRUE
);
139 DBusMessageIter iter
;
140 dbus_message_iter_init_append(msg
, &iter
);
141 dbus_message_iter_append_basic(&iter
, DBUS_TYPE_STRING
, &uri
);
143 if (dbus_connection_send(connection
, msg
, NULL
)) {
144 dbus_connection_flush(connection
);
145 dbus_message_unref(msg
);
147 msg
= dbus_message_new_method_call (APP_LAUNCH_BANNER_SERVICE
,
148 APP_LAUNCH_BANNER_METHOD_PATH
,
149 APP_LAUNCH_BANNER_METHOD_INTERFACE
,
150 APP_LAUNCH_BANNER_METHOD
);
153 const char* service
= mService
.get();
154 if (dbus_message_append_args(msg
,
157 DBUS_TYPE_INVALID
)) {
158 if (dbus_connection_send(connection
, msg
, NULL
)) {
159 dbus_connection_flush(connection
);
161 dbus_message_unref(msg
);
166 dbus_message_unref(msg
);
167 return NS_ERROR_FAILURE
;
173 ////////////////////////////////////////////////////////////////////////////////
174 //// nsIDBusHandlerApp
176 /* attribute AUTF8String service; */
177 NS_IMETHODIMP
nsDBusHandlerApp::GetService(nsACString
& aService
)
179 aService
.Assign(mService
);
183 NS_IMETHODIMP
nsDBusHandlerApp::SetService(const nsACString
& aService
)
185 mService
.Assign(aService
);
189 /* attribute AUTF8String method; */
190 NS_IMETHODIMP
nsDBusHandlerApp::GetMethod(nsACString
& aMethod
)
192 aMethod
.Assign(mMethod
);
196 NS_IMETHODIMP
nsDBusHandlerApp::SetMethod(const nsACString
& aMethod
)
198 mMethod
.Assign(aMethod
);
202 /* attribute AUTF8String interface; */
203 NS_IMETHODIMP
nsDBusHandlerApp::GetDBusInterface(nsACString
& aInterface
)
205 aInterface
.Assign(mInterface
);
209 NS_IMETHODIMP
nsDBusHandlerApp::SetDBusInterface(const nsACString
& aInterface
)
211 mInterface
.Assign(aInterface
);
215 /* attribute AUTF8String objpath; */
216 NS_IMETHODIMP
nsDBusHandlerApp::GetObjectPath(nsACString
& aObjpath
)
218 aObjpath
.Assign(mObjpath
);
222 NS_IMETHODIMP
nsDBusHandlerApp::SetObjectPath(const nsACString
& aObjpath
)
224 mObjpath
.Assign(aObjpath
);
228 NS_DECL_CLASSINFO(nsDBusHandlerApp
)