os/ossrv/ofdbus/dbus/bus/services.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/ofdbus/dbus/bus/services.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,99 @@
     1.4 +/* -*- mode: C; c-file-style: "gnu" -*- */
     1.5 +/* services.h  Service management
     1.6 + *
     1.7 + * Copyright (C) 2003  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_SERVICES_H
    1.28 +#define BUS_SERVICES_H
    1.29 +
    1.30 +#include <dbus/dbus.h>
    1.31 +#ifndef __SYMBIAN32__
    1.32 +#include <dbus/dbus-string.h>
    1.33 +#include <dbus/dbus-hash.h>
    1.34 +#else
    1.35 +#include "dbus-string.h"
    1.36 +#include "dbus-hash.h"
    1.37 +#endif //__SYMBIAN32__
    1.38 +#include "connection.h"
    1.39 +#include "bus.h"
    1.40 +
    1.41 +typedef void (* BusServiceForeachFunction) (BusService       *service,
    1.42 +                                            void             *data);
    1.43 +
    1.44 +BusRegistry* bus_registry_new             (BusContext                  *context);
    1.45 +BusRegistry* bus_registry_ref             (BusRegistry                 *registry);
    1.46 +void         bus_registry_unref           (BusRegistry                 *registry);
    1.47 +BusService*  bus_registry_lookup          (BusRegistry                 *registry,
    1.48 +                                           const DBusString            *service_name);
    1.49 +BusService*  bus_registry_ensure          (BusRegistry                 *registry,
    1.50 +                                           const DBusString            *service_name,
    1.51 +                                           DBusConnection              *owner_connection_if_created,
    1.52 +					   dbus_uint32_t                flags,
    1.53 +                                           BusTransaction              *transaction,
    1.54 +                                           DBusError                   *error);
    1.55 +void         bus_registry_foreach         (BusRegistry                 *registry,
    1.56 +                                           BusServiceForeachFunction    function,
    1.57 +                                           void                        *data);
    1.58 +dbus_bool_t  bus_registry_list_services   (BusRegistry                 *registry,
    1.59 +                                           char                      ***listp,
    1.60 +                                           int                         *array_len);
    1.61 +dbus_bool_t  bus_registry_acquire_service (BusRegistry                 *registry,
    1.62 +                                           DBusConnection              *connection,
    1.63 +                                           const DBusString            *service_name,
    1.64 +                                           dbus_uint32_t                flags,
    1.65 +                                           dbus_uint32_t               *result,
    1.66 +                                           BusTransaction              *transaction,
    1.67 +                                           DBusError                   *error);
    1.68 +dbus_bool_t  bus_registry_release_service (BusRegistry                 *registry,
    1.69 +                                           DBusConnection              *connection,
    1.70 +                                           const DBusString            *service_name,
    1.71 +                                           dbus_uint32_t               *result,
    1.72 +                                           BusTransaction              *transaction,
    1.73 +                                           DBusError                   *error);
    1.74 +dbus_bool_t  bus_registry_set_service_context_table (BusRegistry           *registry,
    1.75 +						     DBusHashTable         *table);
    1.76 +
    1.77 +BusService*     bus_service_ref                       (BusService     *service);
    1.78 +void            bus_service_unref                     (BusService     *service);
    1.79 +dbus_bool_t     bus_service_add_owner                 (BusService     *service,
    1.80 +                                                       DBusConnection *connection,
    1.81 +						       dbus_uint32_t   flags,
    1.82 +                                                       BusTransaction *transaction,
    1.83 +                                                       DBusError      *error);
    1.84 +dbus_bool_t     bus_service_swap_owner                (BusService     *service,
    1.85 +                                                       DBusConnection *connection,
    1.86 +                                                       BusTransaction *transaction,
    1.87 +                                                       DBusError      *error);
    1.88 +dbus_bool_t     bus_service_remove_owner              (BusService     *service,
    1.89 +                                                       DBusConnection *connection,
    1.90 +                                                       BusTransaction *transaction,
    1.91 +                                                       DBusError      *error);
    1.92 +dbus_bool_t     bus_service_has_owner                 (BusService     *service,
    1.93 +                                                       DBusConnection *connection);
    1.94 +BusOwner*       bus_service_get_primary_owner         (BusService     *service);
    1.95 +dbus_bool_t     bus_service_get_allow_replacement     (BusService     *service);
    1.96 +const char*     bus_service_get_name                  (BusService     *service);
    1.97 +dbus_bool_t     bus_service_list_queued_owners        (BusService *service,
    1.98 +                                                       DBusList  **return_list,
    1.99 +                                                       DBusError  *error);
   1.100 +
   1.101 +DBusConnection* bus_service_get_primary_owners_connection (BusService     *service);
   1.102 +#endif /* BUS_SERVICES_H */