2012-05-08 01:50:25 +04:00
|
|
|
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
2012-08-21 07:21:24 +04:00
|
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
2012-05-08 01:50:25 +04: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef mozilla_ipc_dbus_dbusutils_h__
|
|
|
|
#define mozilla_ipc_dbus_dbusutils_h__
|
|
|
|
|
2012-06-02 22:23:16 +04:00
|
|
|
#include <dbus/dbus.h>
|
2013-07-09 11:55:08 +04:00
|
|
|
#include "mozilla/RefPtr.h"
|
2012-06-02 22:23:16 +04:00
|
|
|
#include "mozilla/Scoped.h"
|
|
|
|
|
2012-05-08 01:50:25 +04:00
|
|
|
// LOGE and free a D-Bus error
|
|
|
|
// Using #define so that __FUNCTION__ resolves usefully
|
|
|
|
#define LOG_AND_FREE_DBUS_ERROR_WITH_MSG(err, msg) log_and_free_dbus_error(err, __FUNCTION__, msg);
|
|
|
|
#define LOG_AND_FREE_DBUS_ERROR(err) log_and_free_dbus_error(err, __FUNCTION__);
|
|
|
|
|
|
|
|
struct DBusMessage;
|
|
|
|
struct DBusError;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace ipc {
|
2012-06-02 22:23:16 +04:00
|
|
|
|
|
|
|
class DBusMessageRefPtr
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
DBusMessageRefPtr(DBusMessage* aMsg) : mMsg(aMsg)
|
|
|
|
{
|
|
|
|
if (mMsg) dbus_message_ref(mMsg);
|
|
|
|
}
|
|
|
|
~DBusMessageRefPtr()
|
|
|
|
{
|
|
|
|
if (mMsg) dbus_message_unref(mMsg);
|
|
|
|
}
|
|
|
|
operator DBusMessage*() { return mMsg; }
|
|
|
|
DBusMessage* get() { return mMsg; }
|
|
|
|
private:
|
|
|
|
DBusMessage* mMsg;
|
|
|
|
};
|
|
|
|
|
2013-07-09 11:55:08 +04:00
|
|
|
/**
|
|
|
|
* DBusReplyHandler represents a handler for DBus reply messages. Inherit
|
|
|
|
* from this class and implement the Handle method. The method Callback
|
|
|
|
* should be passed to the DBus send function, with the class instance as
|
|
|
|
* user-data argument.
|
|
|
|
*/
|
|
|
|
class DBusReplyHandler : public mozilla::RefCounted<DBusReplyHandler>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~DBusReplyHandler() {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements a call-back function for DBus. The supplied value for
|
|
|
|
* aData must be a pointer to an instance of DBusReplyHandler.
|
|
|
|
*/
|
|
|
|
static void Callback(DBusMessage* aReply, void* aData);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Call-back method for handling the reply message from DBus.
|
|
|
|
*/
|
|
|
|
virtual void Handle(DBusMessage* aReply) = 0;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
DBusReplyHandler()
|
|
|
|
{
|
|
|
|
}
|
2012-07-18 07:41:54 +04:00
|
|
|
|
2013-07-09 11:55:08 +04:00
|
|
|
DBusReplyHandler(const DBusReplyHandler& aHandler)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
DBusReplyHandler& operator = (const DBusReplyHandler& aRhs)
|
|
|
|
{
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef void (*DBusCallback)(DBusMessage *, void *);
|
2012-07-18 07:41:54 +04:00
|
|
|
|
2012-06-02 22:23:16 +04:00
|
|
|
void log_and_free_dbus_error(DBusError* err,
|
|
|
|
const char* function,
|
|
|
|
DBusMessage* msg = NULL);
|
2012-07-18 07:41:54 +04:00
|
|
|
|
2013-03-01 16:43:45 +04:00
|
|
|
dbus_bool_t dbus_func_send(DBusConnection *aConnection,
|
|
|
|
dbus_uint32_t *aSerial,
|
|
|
|
DBusMessage *aMessage);
|
|
|
|
|
|
|
|
dbus_bool_t dbus_func_args_send(DBusConnection *aConnection,
|
|
|
|
dbus_uint32_t *aSerial,
|
|
|
|
const char *aPath,
|
|
|
|
const char *aInterface,
|
|
|
|
const char *aFunction,
|
|
|
|
int aFirstArgType, ...);
|
|
|
|
|
2012-07-18 07:41:54 +04:00
|
|
|
dbus_bool_t dbus_func_send_async(DBusConnection* conn,
|
|
|
|
DBusMessage* msg,
|
|
|
|
int timeout_ms,
|
|
|
|
DBusCallback user_cb,
|
|
|
|
void* user);
|
|
|
|
|
|
|
|
dbus_bool_t dbus_func_args_async(DBusConnection* conn,
|
2012-06-02 22:23:16 +04:00
|
|
|
int timeout_ms,
|
2012-07-18 07:41:54 +04:00
|
|
|
DBusCallback reply,
|
|
|
|
void* user,
|
|
|
|
const char* path,
|
|
|
|
const char* ifc,
|
|
|
|
const char* func,
|
2012-06-02 22:23:16 +04:00
|
|
|
int first_arg_type,
|
|
|
|
...);
|
|
|
|
|
2013-03-01 18:05:50 +04:00
|
|
|
dbus_bool_t dbus_func_send_and_block(DBusConnection* aConnection,
|
|
|
|
int aTimeout,
|
|
|
|
DBusMessage** aReply,
|
|
|
|
DBusError* aError,
|
|
|
|
DBusMessage* aMessage);
|
|
|
|
|
2012-07-18 07:41:54 +04:00
|
|
|
DBusMessage* dbus_func_args(DBusConnection* conn,
|
|
|
|
const char* path,
|
|
|
|
const char* ifc,
|
|
|
|
const char* func,
|
2012-06-02 22:23:16 +04:00
|
|
|
int first_arg_type,
|
|
|
|
...);
|
|
|
|
|
2012-07-18 07:41:54 +04:00
|
|
|
DBusMessage* dbus_func_args_error(DBusConnection* conn,
|
|
|
|
DBusError* err,
|
|
|
|
const char* path,
|
|
|
|
const char* ifc,
|
|
|
|
const char* func,
|
2012-06-02 22:23:16 +04:00
|
|
|
int first_arg_type,
|
|
|
|
...);
|
|
|
|
|
2012-07-18 07:41:54 +04:00
|
|
|
DBusMessage* dbus_func_args_timeout(DBusConnection* conn,
|
2012-06-02 22:23:16 +04:00
|
|
|
int timeout_ms,
|
2012-08-08 21:46:39 +04:00
|
|
|
DBusError* err,
|
2012-07-18 07:41:54 +04:00
|
|
|
const char* path,
|
|
|
|
const char* ifc,
|
|
|
|
const char* func,
|
2012-06-02 22:23:16 +04:00
|
|
|
int first_arg_type,
|
|
|
|
...);
|
|
|
|
|
2012-07-18 07:41:54 +04:00
|
|
|
DBusMessage* dbus_func_args_timeout_valist(DBusConnection* conn,
|
2012-06-02 22:23:16 +04:00
|
|
|
int timeout_ms,
|
2012-07-18 07:41:54 +04:00
|
|
|
DBusError* err,
|
|
|
|
const char* path,
|
|
|
|
const char* ifc,
|
|
|
|
const char* func,
|
2012-06-02 22:23:16 +04:00
|
|
|
int first_arg_type,
|
|
|
|
va_list args);
|
|
|
|
|
2012-08-08 08:19:07 +04:00
|
|
|
int dbus_returns_int32(DBusMessage *reply);
|
2012-06-02 22:23:16 +04:00
|
|
|
|
2012-05-08 01:50:25 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|