vbox-dbus.h revision b4b896baff58dad1f81179386beed73197bf59be
/** @file
*
* Module to dynamically load libdbus and load all symbols
* which are needed by VirtualBox.
*/
/*
* Copyright (C) 2008 Sun Microsystems, Inc.
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
* Clara, CA 95054 USA or visit http://www.sun.com if you need
* additional information or have any questions.
*/
#ifndef ____H_VBOX_DBUS
#define ____H_VBOX_DBUS
#include <stdint.h>
#define LIB_DBUS_1_3 "libdbus-1.so.3"
/** Types and defines from the dbus header files which we need. These are
* taken more or less verbatim from the DBus public interface header files. */
struct DBusError
{
const char *name;
const char *message;
unsigned int dummy1 : 1;
unsigned int dummy2 : 1;
unsigned int dummy3 : 1;
unsigned int dummy4 : 1;
unsigned int dummy5 : 1;
void *padding1;
};
struct DBusConnection;
typedef struct DBusConnection DBusConnection;
typedef uint32_t dbus_bool_t;
typedef uint32_t dbus_uint32_t;
struct DBusMessage;
typedef struct DBusMessage DBusMessage;
struct DBusMessageIter
{
void *dummy1;
void *dummy2;
int dummy4;
int dummy5;
int dummy6;
int dummy7;
int dummy8;
int dummy9;
int dummy10;
int dummy11;
int pad1;
int pad2;
void *pad3;
};
typedef struct DBusMessageIter DBusMessageIter;
#define DBUS_ERROR_NO_MEMORY "org.freedesktop.DBus.Error.NoMemory"
#define DBUS_TYPE_STRING ((int) 's')
#define DBUS_TYPE_ARRAY ((int) 'a')
#define DBUS_TYPE_DICT_ENTRY ((int) 'e')
typedef enum
{
DBusMessage *, void *);
typedef void (*DBusFreeFunction) (void *);
/** The following are the symbols which we need from libdbus-1. */
extern void (*dbus_error_init)(DBusError *);
extern void (*dbus_error_free)(DBusError *);
extern void (*dbus_connection_unref)(DBusConnection *);
extern void (*dbus_connection_close)(DBusConnection *);
DBusError *);
extern void (*dbus_message_unref)(DBusMessage *);
extern DBusMessage* (*dbus_message_new_method_call)(const char *, const char *,
const char *, const char *);
const void *);
DBusMessage *, int,
extern int (*dbus_message_iter_get_arg_type) (DBusMessageIter *);
extern int (*dbus_message_iter_get_element_type) (DBusMessageIter *);
extern void (*dbus_message_iter_get_basic) (DBusMessageIter *, void *);
void *, DBusFreeFunction);
void *);
/**
* Checks whether libdbus is present and if so loads all symbols we need. This
* should be called before making any calls to libdbus if that library is being
* loaded at runtime.
* @returns true if libdbus was found, false otherwise.
*/
extern bool VBoxDBusCheckPresence(void);
/** Wrapper around dbus_connection_unref. We need this to use it as a free
* function in auto pointers, as a function pointer won't wash here. */
/** Wrapper around dbus_message_unref. We need this to use it as a free
* function in auto pointers, as a function pointer won't wash here. */
#endif /* ____H_VBOX_DBUS not defined */
/* vi: set tabstop=4 shiftwidth=4 expandtab: */