dbus.service: Don't assume that exceptions passed to asynchronous callbacks are the...
[dbus-python-phuang.git] / _dbus_bindings / conn-internal.h
blob9ca8f54df8163319f27349bfe47191ac461c9994
1 /* _dbus_bindings internal API. For use within _dbus_bindings only.
3 * Copyright (C) 2006 Collabora Ltd. <http://www.collabora.co.uk/>
5 * Licensed under the Academic Free License version 2.1
7 * This library is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as published by
9 * the Free Software Foundation; either version 2.1 of the License, or
10 * (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #ifndef DBUS_BINDINGS_CONN_H
23 #define DBUS_BINDINGS_CONN_H
25 #include "dbus_bindings-internal.h"
27 typedef struct {
28 PyObject_HEAD
29 DBusConnection *conn;
30 /* A list of filter callbacks. */
31 PyObject *filters;
32 /* A dict mapping object paths to one of:
33 * - tuples (unregister_callback or None, message_callback)
34 * - None (meaning unregistration from libdbus is in progress and nobody
35 * should touch this entry til we're finished)
37 PyObject *object_paths;
39 /* Weak-references list to make Connections weakly referenceable */
40 PyObject *weaklist;
42 dbus_bool_t has_mainloop;
43 } Connection;
45 extern struct PyMethodDef DBusPyConnection_tp_methods[];
46 extern DBusHandlerResult DBusPyConnection_HandleMessage(Connection *,
47 PyObject *,
48 PyObject *);
49 extern PyObject *DBusPyConnection_ExistingFromDBusConnection(DBusConnection *);
50 extern PyObject *DBusPyConnection_GetObjectPathHandlers(PyObject *self,
51 PyObject *path);
53 extern PyObject *DBusPyConnection_NewForBus(PyTypeObject *cls, PyObject *args,
54 PyObject *kwargs);
55 extern PyObject *DBusPyConnection_SetUniqueName(Connection *, PyObject *);
56 extern PyObject *DBusPyConnection_GetUniqueName(Connection *, PyObject *);
58 #endif