Merge branch 'dbus-1.8'
[platform/upstream/dbus.git] / bus / connection.h
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* connection.h  Client connections
3  *
4  * Copyright (C) 2003, 2004  Red Hat, Inc.
5  *
6  * Licensed under the Academic Free License version 2.1
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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
21  *
22  */
23
24 #ifndef BUS_CONNECTION_H
25 #define BUS_CONNECTION_H
26
27 #include <dbus/dbus.h>
28 #include <dbus/dbus-list.h>
29 #include "bus.h"
30
31 typedef dbus_bool_t (* BusConnectionForeachFunction) (DBusConnection *connection, 
32                                                       void           *data);
33
34
35 BusConnections* bus_connections_new               (BusContext                   *context);
36 BusConnections* bus_connections_ref               (BusConnections               *connections);
37 void            bus_connections_unref             (BusConnections               *connections);
38 dbus_bool_t     bus_connections_setup_connection  (BusConnections               *connections,
39                                                    DBusConnection               *connection);
40 void            bus_connections_foreach           (BusConnections               *connections,
41                                                    BusConnectionForeachFunction  function,
42                                                    void                         *data);
43 void            bus_connections_foreach_active    (BusConnections               *connections,
44                                                    BusConnectionForeachFunction  function,
45                                                    void                         *data);
46 BusContext*     bus_connections_get_context       (BusConnections               *connections);
47 void            bus_connections_increment_stamp   (BusConnections               *connections);
48 dbus_bool_t     bus_connections_reload_policy     (BusConnections               *connections,
49                                                    DBusError                    *error);
50 BusContext*     bus_connection_get_context        (DBusConnection               *connection);
51 BusConnections* bus_connection_get_connections    (DBusConnection               *connection);
52 BusRegistry*    bus_connection_get_registry       (DBusConnection               *connection);
53 BusActivation*  bus_connection_get_activation     (DBusConnection               *connection);
54 BusMatchmaker*  bus_connection_get_matchmaker     (DBusConnection               *connection);
55 const char *    bus_connection_get_loginfo        (DBusConnection        *connection);
56 BusSELinuxID*   bus_connection_get_selinux_id     (DBusConnection               *connection);
57 BusAppArmorConfinement* bus_connection_dup_apparmor_confinement (DBusConnection *connection);
58 dbus_bool_t     bus_connections_check_limits      (BusConnections               *connections,
59                                                    DBusConnection               *requesting_completion,
60                                                    DBusError                    *error);
61 void            bus_connections_expire_incomplete (BusConnections               *connections);
62
63 dbus_bool_t     bus_connections_expect_reply      (BusConnections               *connections,
64                                                    BusTransaction               *transaction,
65                                                    DBusConnection               *will_get_reply,
66                                                    DBusConnection               *will_send_reply,
67                                                    DBusMessage                  *reply_to_this,
68                                                    DBusError                    *error);
69 dbus_bool_t     bus_connections_check_reply       (BusConnections               *connections,
70                                                    BusTransaction               *transaction,
71                                                    DBusConnection               *sending_reply,
72                                                    DBusConnection               *receiving_reply,
73                                                    DBusMessage                  *reply,
74                                                    DBusError                    *error);
75
76 dbus_bool_t     bus_connection_mark_stamp         (DBusConnection               *connection);
77
78 dbus_bool_t bus_connection_is_active (DBusConnection *connection);
79 const char *bus_connection_get_name  (DBusConnection *connection);
80
81 dbus_bool_t bus_connection_preallocate_oom_error (DBusConnection *connection);
82 void        bus_connection_send_oom_error        (DBusConnection *connection,
83                                                   DBusMessage    *in_reply_to);
84
85 /* called by signals.c */
86 dbus_bool_t bus_connection_add_match_rule      (DBusConnection *connection,
87                                                 BusMatchRule   *rule);
88 void        bus_connection_add_match_rule_link (DBusConnection *connection,
89                                                 DBusList       *link);
90 void        bus_connection_remove_match_rule   (DBusConnection *connection,
91                                                 BusMatchRule   *rule);
92 int         bus_connection_get_n_match_rules   (DBusConnection *connection);
93
94
95 /* called by services.c */
96 dbus_bool_t bus_connection_add_owned_service      (DBusConnection *connection,
97                                                    BusService     *service);
98 void        bus_connection_remove_owned_service   (DBusConnection *connection,
99                                                    BusService     *service);
100 void        bus_connection_add_owned_service_link (DBusConnection *connection,
101                                                    DBusList       *link);
102 int         bus_connection_get_n_services_owned   (DBusConnection *connection);
103
104 /* called by driver.c */
105 dbus_bool_t bus_connection_complete (DBusConnection               *connection,
106                                      const DBusString             *name,
107                                      DBusError                    *error);
108
109 /* called by dispatch.c when the connection is dropped */
110 void        bus_connection_disconnected (DBusConnection *connection);
111
112 dbus_bool_t      bus_connection_is_in_unix_group (DBusConnection       *connection,
113                                                   unsigned long         gid);
114 dbus_bool_t      bus_connection_get_unix_groups  (DBusConnection       *connection,
115                                                   unsigned long       **groups,
116                                                   int                  *n_groups,
117                                                   DBusError            *error);
118 BusClientPolicy* bus_connection_get_policy  (DBusConnection       *connection);
119
120 dbus_bool_t bus_connection_is_monitor (DBusConnection  *connection);
121 dbus_bool_t bus_connection_be_monitor (DBusConnection  *connection,
122                                        BusTransaction  *transaction,
123                                        DBusList       **rules,
124                                        DBusError       *error);
125
126 /* transaction API so we can send or not send a block of messages as a whole */
127
128 typedef void (* BusTransactionCancelFunction) (void *data);
129
130 BusTransaction* bus_transaction_new              (BusContext                   *context);
131 BusContext*     bus_transaction_get_context      (BusTransaction               *transaction);
132 dbus_bool_t     bus_transaction_send             (BusTransaction               *transaction,
133                                                   DBusConnection               *connection,
134                                                   DBusMessage                  *message);
135 dbus_bool_t     bus_transaction_capture          (BusTransaction               *transaction,
136                                                   DBusConnection               *connection,
137                                                   DBusMessage                  *message);
138 dbus_bool_t     bus_transaction_capture_error_reply (BusTransaction            *transaction,
139                                                   const DBusError              *error,
140                                                   DBusMessage                  *in_reply_to);
141 dbus_bool_t     bus_transaction_send_from_driver (BusTransaction               *transaction,
142                                                   DBusConnection               *connection,
143                                                   DBusMessage                  *message);
144 dbus_bool_t     bus_transaction_send_error_reply (BusTransaction               *transaction,
145                                                   DBusConnection               *connection,
146                                                   const DBusError              *error,
147                                                   DBusMessage                  *in_reply_to);
148 void            bus_transaction_cancel_and_free  (BusTransaction               *transaction);
149 void            bus_transaction_execute_and_free (BusTransaction               *transaction);
150 dbus_bool_t     bus_transaction_add_cancel_hook  (BusTransaction               *transaction,
151                                                   BusTransactionCancelFunction  cancel_function,
152                                                   void                         *data,
153                                                   DBusFreeFunction              free_data_function);
154
155 int bus_connections_get_n_active                  (BusConnections *connections);
156 int bus_connections_get_n_incomplete              (BusConnections *connections);
157
158 /* called by stats.c, only present if DBUS_ENABLE_STATS */
159 int bus_connections_get_total_match_rules         (BusConnections *connections);
160 int bus_connections_get_peak_match_rules          (BusConnections *connections);
161 int bus_connections_get_peak_match_rules_per_conn (BusConnections *connections);
162 int bus_connections_get_total_bus_names           (BusConnections *connections);
163 int bus_connections_get_peak_bus_names            (BusConnections *connections);
164 int bus_connections_get_peak_bus_names_per_conn   (BusConnections *connections);
165
166 int bus_connection_get_peak_match_rules           (DBusConnection *connection);
167 int bus_connection_get_peak_bus_names             (DBusConnection *connection);
168
169 #endif /* BUS_CONNECTION_H */