2003-01-06 01:08:14 +00:00
|
|
|
/* -*- mode: C; c-file-style: "gnu" -*- */
|
|
|
|
|
/* connection.h Client connections
|
|
|
|
|
*
|
2004-07-30 05:59:34 +00:00
|
|
|
* Copyright (C) 2003, 2004 Red Hat, Inc.
|
2003-01-06 01:08:14 +00:00
|
|
|
*
|
2004-08-10 03:07:01 +00:00
|
|
|
* Licensed under the Academic Free License version 2.1
|
2003-01-06 01:08:14 +00:00
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef BUS_CONNECTION_H
|
|
|
|
|
#define BUS_CONNECTION_H
|
|
|
|
|
|
|
|
|
|
#include <dbus/dbus.h>
|
2003-04-11 00:03:06 +00:00
|
|
|
#include <dbus/dbus-list.h>
|
2003-03-13 03:52:58 +00:00
|
|
|
#include "bus.h"
|
2003-01-06 01:08:14 +00:00
|
|
|
|
2003-03-13 00:56:43 +00:00
|
|
|
typedef dbus_bool_t (* BusConnectionForeachFunction) (DBusConnection *connection,
|
|
|
|
|
void *data);
|
2003-01-24 23:51:59 +00:00
|
|
|
|
2003-01-06 01:08:14 +00:00
|
|
|
|
2003-04-24 21:26:25 +00:00
|
|
|
BusConnections* bus_connections_new (BusContext *context);
|
2003-11-27 01:25:50 +00:00
|
|
|
BusConnections* bus_connections_ref (BusConnections *connections);
|
2003-04-24 21:26:25 +00:00
|
|
|
void bus_connections_unref (BusConnections *connections);
|
|
|
|
|
dbus_bool_t bus_connections_setup_connection (BusConnections *connections,
|
|
|
|
|
DBusConnection *connection);
|
|
|
|
|
void bus_connections_foreach (BusConnections *connections,
|
|
|
|
|
BusConnectionForeachFunction function,
|
|
|
|
|
void *data);
|
|
|
|
|
void bus_connections_foreach_active (BusConnections *connections,
|
|
|
|
|
BusConnectionForeachFunction function,
|
|
|
|
|
void *data);
|
|
|
|
|
BusContext* bus_connections_get_context (BusConnections *connections);
|
2003-09-21 19:53:56 +00:00
|
|
|
void bus_connections_increment_stamp (BusConnections *connections);
|
2003-04-24 21:26:25 +00:00
|
|
|
BusContext* bus_connection_get_context (DBusConnection *connection);
|
|
|
|
|
BusConnections* bus_connection_get_connections (DBusConnection *connection);
|
|
|
|
|
BusRegistry* bus_connection_get_registry (DBusConnection *connection);
|
|
|
|
|
BusActivation* bus_connection_get_activation (DBusConnection *connection);
|
2003-09-21 19:53:56 +00:00
|
|
|
BusMatchmaker* bus_connection_get_matchmaker (DBusConnection *connection);
|
2004-07-30 05:59:34 +00:00
|
|
|
BusSELinuxID* bus_connection_get_selinux_id (DBusConnection *connection);
|
2003-04-24 21:26:25 +00:00
|
|
|
dbus_bool_t bus_connections_check_limits (BusConnections *connections,
|
|
|
|
|
DBusConnection *requesting_completion,
|
|
|
|
|
DBusError *error);
|
|
|
|
|
void bus_connections_expire_incomplete (BusConnections *connections);
|
|
|
|
|
|
2003-10-14 05:16:56 +00:00
|
|
|
dbus_bool_t bus_connections_expect_reply (BusConnections *connections,
|
|
|
|
|
BusTransaction *transaction,
|
|
|
|
|
DBusConnection *will_get_reply,
|
|
|
|
|
DBusConnection *will_send_reply,
|
|
|
|
|
DBusMessage *reply_to_this,
|
|
|
|
|
DBusError *error);
|
|
|
|
|
dbus_bool_t bus_connections_check_reply (BusConnections *connections,
|
|
|
|
|
BusTransaction *transaction,
|
|
|
|
|
DBusConnection *sending_reply,
|
|
|
|
|
DBusConnection *receiving_reply,
|
|
|
|
|
DBusMessage *reply,
|
|
|
|
|
DBusError *error);
|
|
|
|
|
|
2003-09-21 19:53:56 +00:00
|
|
|
dbus_bool_t bus_connection_mark_stamp (DBusConnection *connection);
|
2003-01-06 01:08:14 +00:00
|
|
|
|
2003-03-13 00:56:43 +00:00
|
|
|
dbus_bool_t bus_connection_is_active (DBusConnection *connection);
|
2003-04-27 06:25:42 +00:00
|
|
|
const char *bus_connection_get_name (DBusConnection *connection);
|
2003-03-13 00:56:43 +00:00
|
|
|
|
|
|
|
|
dbus_bool_t bus_connection_preallocate_oom_error (DBusConnection *connection);
|
|
|
|
|
void bus_connection_send_oom_error (DBusConnection *connection,
|
|
|
|
|
DBusMessage *in_reply_to);
|
|
|
|
|
|
2003-09-21 19:53:56 +00:00
|
|
|
/* called by signals.c */
|
|
|
|
|
dbus_bool_t bus_connection_add_match_rule (DBusConnection *connection,
|
|
|
|
|
BusMatchRule *rule);
|
|
|
|
|
void bus_connection_add_match_rule_link (DBusConnection *connection,
|
|
|
|
|
DBusList *link);
|
|
|
|
|
void bus_connection_remove_match_rule (DBusConnection *connection,
|
|
|
|
|
BusMatchRule *rule);
|
|
|
|
|
int bus_connection_get_n_match_rules (DBusConnection *connection);
|
|
|
|
|
|
2003-04-27 06:25:42 +00:00
|
|
|
|
2003-01-06 01:08:14 +00:00
|
|
|
/* called by services.c */
|
2003-04-11 00:03:06 +00:00
|
|
|
dbus_bool_t bus_connection_add_owned_service (DBusConnection *connection,
|
|
|
|
|
BusService *service);
|
|
|
|
|
void bus_connection_remove_owned_service (DBusConnection *connection,
|
|
|
|
|
BusService *service);
|
|
|
|
|
void bus_connection_add_owned_service_link (DBusConnection *connection,
|
|
|
|
|
DBusList *link);
|
2003-04-25 23:50:34 +00:00
|
|
|
int bus_connection_get_n_services_owned (DBusConnection *connection);
|
2003-01-06 01:08:14 +00:00
|
|
|
|
2003-01-21 12:42:33 +00:00
|
|
|
/* called by driver.c */
|
2003-04-27 06:25:42 +00:00
|
|
|
dbus_bool_t bus_connection_complete (DBusConnection *connection,
|
|
|
|
|
const DBusString *name,
|
|
|
|
|
DBusError *error);
|
2003-01-21 12:42:33 +00:00
|
|
|
|
2003-03-13 00:56:43 +00:00
|
|
|
/* called by dispatch.c when the connection is dropped */
|
|
|
|
|
void bus_connection_disconnected (DBusConnection *connection);
|
|
|
|
|
|
2003-04-12 18:32:11 +00:00
|
|
|
dbus_bool_t bus_connection_is_in_group (DBusConnection *connection,
|
|
|
|
|
unsigned long gid);
|
|
|
|
|
dbus_bool_t bus_connection_get_groups (DBusConnection *connection,
|
2003-04-17 00:46:36 +00:00
|
|
|
unsigned long **groups,
|
2003-04-27 06:25:42 +00:00
|
|
|
int *n_groups,
|
2003-04-25 23:50:34 +00:00
|
|
|
DBusError *error);
|
2003-04-27 06:25:42 +00:00
|
|
|
BusClientPolicy* bus_connection_get_policy (DBusConnection *connection);
|
2003-03-23 07:41:54 +00:00
|
|
|
|
2003-03-13 00:56:43 +00:00
|
|
|
/* transaction API so we can send or not send a block of messages as a whole */
|
2003-02-15 16:25:08 +00:00
|
|
|
|
2003-04-11 00:03:06 +00:00
|
|
|
typedef void (* BusTransactionCancelFunction) (void *data);
|
|
|
|
|
|
|
|
|
|
BusTransaction* bus_transaction_new (BusContext *context);
|
|
|
|
|
BusContext* bus_transaction_get_context (BusTransaction *transaction);
|
|
|
|
|
BusConnections* bus_transaction_get_connections (BusTransaction *transaction);
|
2003-04-14 02:29:21 +00:00
|
|
|
dbus_bool_t bus_transaction_send (BusTransaction *transaction,
|
|
|
|
|
DBusConnection *connection,
|
|
|
|
|
DBusMessage *message);
|
|
|
|
|
dbus_bool_t bus_transaction_send_from_driver (BusTransaction *transaction,
|
2003-04-11 00:03:06 +00:00
|
|
|
DBusConnection *connection,
|
|
|
|
|
DBusMessage *message);
|
|
|
|
|
dbus_bool_t bus_transaction_send_error_reply (BusTransaction *transaction,
|
|
|
|
|
DBusConnection *connection,
|
|
|
|
|
const DBusError *error,
|
|
|
|
|
DBusMessage *in_reply_to);
|
|
|
|
|
void bus_transaction_cancel_and_free (BusTransaction *transaction);
|
|
|
|
|
void bus_transaction_execute_and_free (BusTransaction *transaction);
|
|
|
|
|
dbus_bool_t bus_transaction_add_cancel_hook (BusTransaction *transaction,
|
|
|
|
|
BusTransactionCancelFunction cancel_function,
|
|
|
|
|
void *data,
|
|
|
|
|
DBusFreeFunction free_data_function);
|
2003-01-21 12:42:33 +00:00
|
|
|
|
2003-01-06 01:08:14 +00:00
|
|
|
#endif /* BUS_CONNECTION_H */
|