2003-03-23 Havoc Pennington <hp@pobox.com>
[platform/upstream/dbus.git] / bus / bus.h
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* bus.h  message bus context object
3  *
4  * Copyright (C) 2003 Red Hat, Inc.
5  *
6  * Licensed under the Academic Free License version 1.2
7  * 
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  * 
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  *
22  */
23
24 #ifndef BUS_BUS_H
25 #define BUS_BUS_H
26
27 #include <config.h>
28
29 #include <dbus/dbus.h>
30 #include <dbus/dbus-string.h>
31
32 typedef struct BusActivation  BusActivation;
33 typedef struct BusConnections BusConnections;
34 typedef struct BusContext     BusContext;
35 typedef struct BusPolicy      BusPolicy;
36 typedef struct BusPolicyRule  BusPolicyRule;
37 typedef struct BusRegistry    BusRegistry;
38 typedef struct BusService     BusService;
39 typedef struct BusTransaction BusTransaction;
40
41 BusContext*     bus_context_new                      (const char      *address,
42                                                       const char     **service_dirs,
43                                                       DBusError       *error);
44 void            bus_context_shutdown                 (BusContext      *context);
45 void            bus_context_ref                      (BusContext      *context);
46 void            bus_context_unref                    (BusContext      *context);
47 BusRegistry*    bus_context_get_registry             (BusContext      *context);
48 BusConnections* bus_context_get_connections          (BusContext      *context);
49 BusActivation*  bus_context_get_activation           (BusContext      *context);
50 dbus_bool_t     bus_context_allow_user               (BusContext      *context,
51                                                       unsigned long    uid);
52 BusPolicy*      bus_context_create_connection_policy (BusContext      *context,
53                                                       DBusConnection  *connection);
54
55
56 #endif /* BUS_BUS_H */