os/ossrv/ofdbus/dbus/bus/connection.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/ofdbus/dbus/bus/connection.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,144 @@
     1.4 +/* -*- mode: C; c-file-style: "gnu" -*- */
     1.5 +/* connection.h  Client connections
     1.6 + *
     1.7 + * Copyright (C) 2003, 2004  Red Hat, Inc.
     1.8 + * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
     1.9 + * Licensed under the Academic Free License version 2.1
    1.10 + * 
    1.11 + * This program is free software; you can redistribute it and/or modify
    1.12 + * it under the terms of the GNU General Public License as published by
    1.13 + * the Free Software Foundation; either version 2 of the License, or
    1.14 + * (at your option) any later version.
    1.15 + *
    1.16 + * This program is distributed in the hope that it will be useful,
    1.17 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.18 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.19 + * GNU General Public License for more details.
    1.20 + * 
    1.21 + * You should have received a copy of the GNU General Public License
    1.22 + * along with this program; if not, write to the Free Software
    1.23 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    1.24 + *
    1.25 + */
    1.26 +
    1.27 +#ifndef BUS_CONNECTION_H
    1.28 +#define BUS_CONNECTION_H
    1.29 +
    1.30 +#include <dbus/dbus.h>
    1.31 +#ifndef __SYMBIAN32__
    1.32 +#include <dbus/dbus-list.h>
    1.33 +#else
    1.34 +#include "dbus-list.h"
    1.35 +#endif //__SYMBIAN32__
    1.36 +#include "bus.h"
    1.37 +
    1.38 +typedef dbus_bool_t (* BusConnectionForeachFunction) (DBusConnection *connection, 
    1.39 +                                                      void           *data);
    1.40 +
    1.41 +
    1.42 +BusConnections* bus_connections_new               (BusContext                   *context);
    1.43 +BusConnections* bus_connections_ref               (BusConnections               *connections);
    1.44 +void            bus_connections_unref             (BusConnections               *connections);
    1.45 +dbus_bool_t     bus_connections_setup_connection  (BusConnections               *connections,
    1.46 +                                                   DBusConnection               *connection);
    1.47 +void            bus_connections_foreach           (BusConnections               *connections,
    1.48 +                                                   BusConnectionForeachFunction  function,
    1.49 +                                                   void                         *data);
    1.50 +void            bus_connections_foreach_active    (BusConnections               *connections,
    1.51 +                                                   BusConnectionForeachFunction  function,
    1.52 +                                                   void                         *data);
    1.53 +BusContext*     bus_connections_get_context       (BusConnections               *connections);
    1.54 +void            bus_connections_increment_stamp   (BusConnections               *connections);
    1.55 +BusContext*     bus_connection_get_context        (DBusConnection               *connection);
    1.56 +BusConnections* bus_connection_get_connections    (DBusConnection               *connection);
    1.57 +BusRegistry*    bus_connection_get_registry       (DBusConnection               *connection);
    1.58 +BusActivation*  bus_connection_get_activation     (DBusConnection               *connection);
    1.59 +BusMatchmaker*  bus_connection_get_matchmaker     (DBusConnection               *connection);
    1.60 +BusSELinuxID*   bus_connection_get_selinux_id     (DBusConnection               *connection);
    1.61 +dbus_bool_t     bus_connections_check_limits      (BusConnections               *connections,
    1.62 +                                                   DBusConnection               *requesting_completion,
    1.63 +                                                   DBusError                    *error);
    1.64 +void            bus_connections_expire_incomplete (BusConnections               *connections);
    1.65 +
    1.66 +dbus_bool_t     bus_connections_expect_reply      (BusConnections               *connections,
    1.67 +                                                   BusTransaction               *transaction,
    1.68 +                                                   DBusConnection               *will_get_reply,
    1.69 +                                                   DBusConnection               *will_send_reply,
    1.70 +                                                   DBusMessage                  *reply_to_this,
    1.71 +                                                   DBusError                    *error);
    1.72 +dbus_bool_t     bus_connections_check_reply       (BusConnections               *connections,
    1.73 +                                                   BusTransaction               *transaction,
    1.74 +                                                   DBusConnection               *sending_reply,
    1.75 +                                                   DBusConnection               *receiving_reply,
    1.76 +                                                   DBusMessage                  *reply,
    1.77 +                                                   DBusError                    *error);
    1.78 +
    1.79 +dbus_bool_t     bus_connection_mark_stamp         (DBusConnection               *connection);
    1.80 +
    1.81 +dbus_bool_t bus_connection_is_active (DBusConnection *connection);
    1.82 +const char *bus_connection_get_name  (DBusConnection *connection);
    1.83 +
    1.84 +dbus_bool_t bus_connection_preallocate_oom_error (DBusConnection *connection);
    1.85 +void        bus_connection_send_oom_error        (DBusConnection *connection,
    1.86 +                                                  DBusMessage    *in_reply_to);
    1.87 +
    1.88 +/* called by signals.c */
    1.89 +dbus_bool_t bus_connection_add_match_rule      (DBusConnection *connection,
    1.90 +                                                BusMatchRule   *rule);
    1.91 +void        bus_connection_add_match_rule_link (DBusConnection *connection,
    1.92 +                                                DBusList       *link);
    1.93 +void        bus_connection_remove_match_rule   (DBusConnection *connection,
    1.94 +                                                BusMatchRule   *rule);
    1.95 +int         bus_connection_get_n_match_rules   (DBusConnection *connection);
    1.96 +
    1.97 +
    1.98 +/* called by services.c */
    1.99 +dbus_bool_t bus_connection_add_owned_service      (DBusConnection *connection,
   1.100 +                                                   BusService     *service);
   1.101 +void        bus_connection_remove_owned_service   (DBusConnection *connection,
   1.102 +                                                   BusService     *service);
   1.103 +void        bus_connection_add_owned_service_link (DBusConnection *connection,
   1.104 +                                                   DBusList       *link);
   1.105 +int         bus_connection_get_n_services_owned   (DBusConnection *connection);
   1.106 +
   1.107 +/* called by driver.c */
   1.108 +dbus_bool_t bus_connection_complete (DBusConnection               *connection,
   1.109 +				     const DBusString             *name,
   1.110 +                                     DBusError                    *error);
   1.111 +
   1.112 +/* called by dispatch.c when the connection is dropped */
   1.113 +void        bus_connection_disconnected (DBusConnection *connection);
   1.114 +
   1.115 +dbus_bool_t      bus_connection_is_in_group (DBusConnection       *connection,
   1.116 +                                             unsigned long         gid);
   1.117 +dbus_bool_t      bus_connection_get_groups  (DBusConnection       *connection,
   1.118 +                                             unsigned long       **groups,
   1.119 +                                             int                  *n_groups,
   1.120 +                                             DBusError            *error);
   1.121 +BusClientPolicy* bus_connection_get_policy  (DBusConnection       *connection);
   1.122 +
   1.123 +/* transaction API so we can send or not send a block of messages as a whole */
   1.124 +
   1.125 +typedef void (* BusTransactionCancelFunction) (void *data);
   1.126 +
   1.127 +BusTransaction* bus_transaction_new              (BusContext                   *context);
   1.128 +BusContext*     bus_transaction_get_context      (BusTransaction               *transaction);
   1.129 +BusConnections* bus_transaction_get_connections  (BusTransaction               *transaction);
   1.130 +dbus_bool_t     bus_transaction_send             (BusTransaction               *transaction,
   1.131 +                                                  DBusConnection               *connection,
   1.132 +                                                  DBusMessage                  *message);
   1.133 +dbus_bool_t     bus_transaction_send_from_driver (BusTransaction               *transaction,
   1.134 +                                                  DBusConnection               *connection,
   1.135 +                                                  DBusMessage                  *message);
   1.136 +dbus_bool_t     bus_transaction_send_error_reply (BusTransaction               *transaction,
   1.137 +                                                  DBusConnection               *connection,
   1.138 +                                                  const DBusError              *error,
   1.139 +                                                  DBusMessage                  *in_reply_to);
   1.140 +void            bus_transaction_cancel_and_free  (BusTransaction               *transaction);
   1.141 +void            bus_transaction_execute_and_free (BusTransaction               *transaction);
   1.142 +dbus_bool_t     bus_transaction_add_cancel_hook  (BusTransaction               *transaction,
   1.143 +                                                  BusTransactionCancelFunction  cancel_function,
   1.144 +                                                  void                         *data,
   1.145 +                                                  DBusFreeFunction              free_data_function);
   1.146 +
   1.147 +#endif /* BUS_CONNECTION_H */