2012-05-07 14:50:25 -07:00
|
|
|
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
2012-08-20 20:21:24 -07:00
|
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
2012-05-07 14:50:25 -07:00
|
|
|
/*
|
|
|
|
** Copyright 2006, The Android Open Source Project
|
|
|
|
**
|
|
|
|
** Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
** you may not use this file except in compliance with the License.
|
|
|
|
** You may obtain a copy of the License at
|
|
|
|
**
|
|
|
|
** http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
**
|
|
|
|
** Unless required by applicable law or agreed to in writing, software
|
|
|
|
** distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
** See the License for the specific language governing permissions and
|
|
|
|
** limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2012-06-02 11:23:16 -07:00
|
|
|
#include "DBusUtils.h"
|
2013-01-28 01:15:31 -08:00
|
|
|
#include "DBusThread.h"
|
|
|
|
#include "nsThreadUtils.h"
|
|
|
|
#include "nsAutoPtr.h"
|
2012-06-02 11:23:16 -07:00
|
|
|
#include <cstdio>
|
|
|
|
#include <cstring>
|
2012-05-07 14:50:25 -07:00
|
|
|
|
|
|
|
#undef LOG
|
|
|
|
#if defined(MOZ_WIDGET_GONK)
|
|
|
|
#include <android/log.h>
|
|
|
|
#define LOG(args...) __android_log_print(ANDROID_LOG_INFO, "Gonk", args);
|
|
|
|
#else
|
|
|
|
#define LOG(args...) printf(args);
|
|
|
|
#endif
|
|
|
|
|
2012-06-02 11:23:16 -07:00
|
|
|
#define BLUEZ_DBUS_BASE_PATH "/org/bluez"
|
|
|
|
#define BLUEZ_DBUS_BASE_IFC "org.bluez"
|
|
|
|
#define BLUEZ_ERROR_IFC "org.bluez.Error"
|
|
|
|
|
2012-05-07 14:50:25 -07:00
|
|
|
namespace mozilla {
|
|
|
|
namespace ipc {
|
|
|
|
|
|
|
|
void
|
|
|
|
log_and_free_dbus_error(DBusError* err, const char* function, DBusMessage* msg)
|
|
|
|
{
|
2012-07-17 20:41:54 -07:00
|
|
|
if (msg) {
|
2012-05-07 14:50:25 -07:00
|
|
|
LOG("%s: D-Bus error in %s: %s (%s)", function,
|
|
|
|
dbus_message_get_member((msg)), (err)->name, (err)->message);
|
|
|
|
} else {
|
|
|
|
LOG("%s: D-Bus error: %s (%s)", __FUNCTION__,
|
|
|
|
(err)->name, (err)->message);
|
|
|
|
}
|
|
|
|
dbus_error_free((err));
|
|
|
|
}
|
|
|
|
|
2012-06-02 11:23:16 -07:00
|
|
|
typedef struct {
|
2012-07-17 20:41:54 -07:00
|
|
|
DBusCallback user_cb;
|
2012-06-02 11:23:16 -07:00
|
|
|
void *user;
|
|
|
|
} dbus_async_call_t;
|
|
|
|
|
2013-01-28 01:15:31 -08:00
|
|
|
void dbus_func_args_async_callback(DBusPendingCall *call, void *data)
|
|
|
|
{
|
|
|
|
nsAutoPtr<dbus_async_call_t> req(static_cast<dbus_async_call_t*>(data));
|
2012-06-02 11:23:16 -07:00
|
|
|
|
2013-01-28 01:15:31 -08:00
|
|
|
// This is NULL if the timeout has been reached.
|
|
|
|
DBusMessage *msg = dbus_pending_call_steal_reply(call);
|
2012-06-02 11:23:16 -07:00
|
|
|
|
|
|
|
if (msg) {
|
|
|
|
if (req->user_cb) {
|
|
|
|
// The user may not deref the message object.
|
2012-07-17 20:41:54 -07:00
|
|
|
req->user_cb(msg, req->user);
|
2012-06-02 11:23:16 -07:00
|
|
|
}
|
|
|
|
dbus_message_unref(msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
//dbus_message_unref(req->method);
|
|
|
|
dbus_pending_call_cancel(call);
|
|
|
|
dbus_pending_call_unref(call);
|
|
|
|
}
|
|
|
|
|
2013-01-28 01:15:31 -08:00
|
|
|
class DBusConnectionSendWithReplyTask : public nsRunnable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
DBusConnectionSendWithReplyTask(DBusConnection* aConnection,
|
|
|
|
DBusMessage* aMessage,
|
|
|
|
int aTimeout,
|
|
|
|
void (*aCallback)(DBusMessage*, void*),
|
|
|
|
void* aData)
|
|
|
|
: mConnection(aConnection),
|
|
|
|
mMessage(aMessage),
|
|
|
|
mTimeout(aTimeout),
|
|
|
|
mCallback(aCallback),
|
|
|
|
mData(aData)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
NS_METHOD Run()
|
|
|
|
{
|
|
|
|
// Freed at end of dbus_func_args_async_callback (becomes "req")
|
|
|
|
nsAutoPtr<dbus_async_call_t> pending(new dbus_async_call_t);
|
|
|
|
NS_ENSURE_TRUE(pending, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
|
|
|
pending->user_cb = mCallback;
|
|
|
|
pending->user = mData;
|
|
|
|
|
|
|
|
DBusPendingCall *call;
|
|
|
|
|
|
|
|
dbus_bool_t success = dbus_connection_send_with_reply(mConnection,
|
|
|
|
mMessage,
|
|
|
|
&call,
|
|
|
|
mTimeout);
|
|
|
|
NS_ENSURE_TRUE(success == TRUE, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
success = dbus_pending_call_set_notify(call,
|
|
|
|
dbus_func_args_async_callback,
|
|
|
|
pending,
|
|
|
|
NULL);
|
|
|
|
NS_ENSURE_TRUE(success == TRUE, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
pending.forget();
|
|
|
|
dbus_message_unref(mMessage);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
};
|
|
|
|
|
|
|
|
protected:
|
|
|
|
~DBusConnectionSendWithReplyTask()
|
|
|
|
{ }
|
|
|
|
|
|
|
|
private:
|
|
|
|
DBusConnection* mConnection;
|
|
|
|
DBusMessage* mMessage;
|
|
|
|
int mTimeout;
|
|
|
|
void (*mCallback)(DBusMessage*, void*);
|
|
|
|
void* mData;
|
|
|
|
};
|
|
|
|
|
2012-07-17 20:41:54 -07:00
|
|
|
dbus_bool_t dbus_func_send_async(DBusConnection *conn,
|
|
|
|
DBusMessage *msg,
|
|
|
|
int timeout_ms,
|
|
|
|
void (*user_cb)(DBusMessage*,
|
|
|
|
void*),
|
2013-01-28 01:15:31 -08:00
|
|
|
void *user)
|
|
|
|
{
|
|
|
|
nsRefPtr<nsIRunnable> t(
|
|
|
|
new DBusConnectionSendWithReplyTask(conn, msg, timeout_ms, user_cb, user));
|
|
|
|
if (!t) {
|
|
|
|
if (msg) {
|
|
|
|
dbus_message_unref(msg);
|
|
|
|
}
|
|
|
|
return FALSE;
|
2013-01-10 07:55:43 -08:00
|
|
|
}
|
|
|
|
|
2013-01-28 01:15:31 -08:00
|
|
|
nsresult rv = DispatchToDBusThread(t);
|
|
|
|
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
if (msg) {
|
|
|
|
dbus_message_unref(msg);
|
|
|
|
}
|
|
|
|
return FALSE;
|
2012-07-17 20:41:54 -07:00
|
|
|
}
|
|
|
|
|
2013-01-28 01:15:31 -08:00
|
|
|
return TRUE;
|
2012-07-17 20:41:54 -07:00
|
|
|
}
|
|
|
|
|
2012-06-02 11:23:16 -07:00
|
|
|
static dbus_bool_t dbus_func_args_async_valist(DBusConnection *conn,
|
|
|
|
int timeout_ms,
|
2012-07-17 20:41:54 -07:00
|
|
|
void (*user_cb)(DBusMessage*,
|
2012-06-02 11:23:16 -07:00
|
|
|
void*),
|
|
|
|
void *user,
|
|
|
|
const char *path,
|
|
|
|
const char *ifc,
|
|
|
|
const char *func,
|
|
|
|
int first_arg_type,
|
|
|
|
va_list args) {
|
2012-07-17 20:41:54 -07:00
|
|
|
DBusMessage *msg = NULL;
|
2012-06-02 11:23:16 -07:00
|
|
|
/* Compose the command */
|
|
|
|
msg = dbus_message_new_method_call(BLUEZ_DBUS_BASE_IFC, path, ifc, func);
|
|
|
|
|
|
|
|
if (msg == NULL) {
|
|
|
|
LOG("Could not allocate D-Bus message object!");
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* append arguments */
|
|
|
|
if (!dbus_message_append_args_valist(msg, first_arg_type, args)) {
|
|
|
|
LOG("Could not append argument to method call!");
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2012-07-17 20:41:54 -07:00
|
|
|
return dbus_func_send_async(conn, msg, timeout_ms, user_cb, user);
|
2012-06-02 11:23:16 -07:00
|
|
|
done:
|
|
|
|
if (msg) dbus_message_unref(msg);
|
2012-07-17 20:41:54 -07:00
|
|
|
return FALSE;
|
2012-06-02 11:23:16 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
dbus_bool_t dbus_func_args_async(DBusConnection *conn,
|
|
|
|
int timeout_ms,
|
2012-07-17 20:41:54 -07:00
|
|
|
void (*reply)(DBusMessage *, void *),
|
2012-06-02 11:23:16 -07:00
|
|
|
void *user,
|
|
|
|
const char *path,
|
|
|
|
const char *ifc,
|
|
|
|
const char *func,
|
|
|
|
int first_arg_type,
|
|
|
|
...) {
|
|
|
|
dbus_bool_t ret;
|
|
|
|
va_list lst;
|
|
|
|
va_start(lst, first_arg_type);
|
|
|
|
|
|
|
|
ret = dbus_func_args_async_valist(conn,
|
|
|
|
timeout_ms,
|
2012-07-17 20:41:54 -07:00
|
|
|
reply, user,
|
2012-06-02 11:23:16 -07:00
|
|
|
path, ifc, func,
|
|
|
|
first_arg_type, lst);
|
|
|
|
va_end(lst);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If err is NULL, then any errors will be LOG'd, and free'd and the reply
|
|
|
|
// will be NULL.
|
|
|
|
// If err is not NULL, then it is assumed that dbus_error_init was already
|
|
|
|
// called, and error's will be returned to the caller without logging. The
|
|
|
|
// return value is NULL iff an error was set. The client must free the error if
|
|
|
|
// set.
|
|
|
|
DBusMessage * dbus_func_args_timeout_valist(DBusConnection *conn,
|
|
|
|
int timeout_ms,
|
|
|
|
DBusError *err,
|
|
|
|
const char *path,
|
|
|
|
const char *ifc,
|
|
|
|
const char *func,
|
|
|
|
int first_arg_type,
|
|
|
|
va_list args) {
|
|
|
|
|
|
|
|
DBusMessage *msg = NULL, *reply = NULL;
|
|
|
|
bool return_error = (err != NULL);
|
|
|
|
|
|
|
|
if (!return_error) {
|
|
|
|
err = (DBusError*)malloc(sizeof(DBusError));
|
|
|
|
dbus_error_init(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Compose the command */
|
|
|
|
msg = dbus_message_new_method_call(BLUEZ_DBUS_BASE_IFC, path, ifc, func);
|
|
|
|
|
|
|
|
if (msg == NULL) {
|
|
|
|
LOG("Could not allocate D-Bus message object!");
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* append arguments */
|
|
|
|
if (!dbus_message_append_args_valist(msg, first_arg_type, args)) {
|
|
|
|
LOG("Could not append argument to method call!");
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Make the call. */
|
|
|
|
reply = dbus_connection_send_with_reply_and_block(conn, msg, timeout_ms, err);
|
|
|
|
if (!return_error && dbus_error_is_set(err)) {
|
2012-08-08 10:46:39 -07:00
|
|
|
LOG_AND_FREE_DBUS_ERROR_WITH_MSG(err, msg);
|
2012-06-02 11:23:16 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
done:
|
|
|
|
if (!return_error) {
|
|
|
|
free(err);
|
|
|
|
}
|
|
|
|
if (msg) dbus_message_unref(msg);
|
|
|
|
return reply;
|
|
|
|
}
|
|
|
|
|
|
|
|
DBusMessage * dbus_func_args_timeout(DBusConnection *conn,
|
|
|
|
int timeout_ms,
|
2012-08-08 10:46:39 -07:00
|
|
|
DBusError* err,
|
2012-06-02 11:23:16 -07:00
|
|
|
const char *path,
|
|
|
|
const char *ifc,
|
|
|
|
const char *func,
|
|
|
|
int first_arg_type,
|
|
|
|
...) {
|
|
|
|
DBusMessage *ret;
|
|
|
|
va_list lst;
|
|
|
|
va_start(lst, first_arg_type);
|
2012-08-08 10:46:39 -07:00
|
|
|
ret = dbus_func_args_timeout_valist(conn, timeout_ms, err,
|
2012-06-02 11:23:16 -07:00
|
|
|
path, ifc, func,
|
|
|
|
first_arg_type, lst);
|
|
|
|
va_end(lst);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
DBusMessage * dbus_func_args(DBusConnection *conn,
|
|
|
|
const char *path,
|
|
|
|
const char *ifc,
|
|
|
|
const char *func,
|
|
|
|
int first_arg_type,
|
|
|
|
...) {
|
|
|
|
DBusMessage *ret;
|
|
|
|
va_list lst;
|
|
|
|
va_start(lst, first_arg_type);
|
|
|
|
ret = dbus_func_args_timeout_valist(conn, -1, NULL,
|
|
|
|
path, ifc, func,
|
|
|
|
first_arg_type, lst);
|
|
|
|
va_end(lst);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
DBusMessage * dbus_func_args_error(DBusConnection *conn,
|
|
|
|
DBusError *err,
|
|
|
|
const char *path,
|
|
|
|
const char *ifc,
|
|
|
|
const char *func,
|
|
|
|
int first_arg_type,
|
|
|
|
...) {
|
|
|
|
DBusMessage *ret;
|
|
|
|
va_list lst;
|
|
|
|
va_start(lst, first_arg_type);
|
|
|
|
ret = dbus_func_args_timeout_valist(conn, -1, err,
|
|
|
|
path, ifc, func,
|
|
|
|
first_arg_type, lst);
|
|
|
|
va_end(lst);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-08-07 21:19:07 -07:00
|
|
|
int dbus_returns_int32(DBusMessage *reply)
|
|
|
|
{
|
|
|
|
DBusError err;
|
2012-10-01 00:04:01 -07:00
|
|
|
int32_t ret = -1;
|
2012-08-07 21:19:07 -07:00
|
|
|
|
|
|
|
dbus_error_init(&err);
|
|
|
|
if (!dbus_message_get_args(reply, &err,
|
|
|
|
DBUS_TYPE_INT32, &ret,
|
|
|
|
DBUS_TYPE_INVALID)) {
|
|
|
|
LOG_AND_FREE_DBUS_ERROR_WITH_MSG(&err, reply);
|
|
|
|
}
|
|
|
|
|
|
|
|
dbus_message_unref(reply);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-10-01 00:04:01 -07:00
|
|
|
int dbus_returns_uint32(DBusMessage *reply)
|
|
|
|
{
|
|
|
|
DBusError err;
|
|
|
|
uint32_t ret = -1;
|
|
|
|
|
|
|
|
dbus_error_init(&err);
|
|
|
|
if (!dbus_message_get_args(reply, &err,
|
|
|
|
DBUS_TYPE_UINT32, &ret,
|
|
|
|
DBUS_TYPE_INVALID)) {
|
|
|
|
LOG_AND_FREE_DBUS_ERROR_WITH_MSG(&err, reply);
|
|
|
|
}
|
|
|
|
|
|
|
|
dbus_message_unref(reply);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-05-07 14:50:25 -07:00
|
|
|
}
|
|
|
|
}
|