sl@0: /* -*- mode: C; c-file-style: "gnu" -*- */ sl@0: /* bus.h message bus context object sl@0: * sl@0: * Copyright (C) 2003 Red Hat, Inc. sl@0: * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. sl@0: * Licensed under the Academic Free License version 2.1 sl@0: * sl@0: * This program is free software; you can redistribute it and/or modify sl@0: * it under the terms of the GNU General Public License as published by sl@0: * the Free Software Foundation; either version 2 of the License, or sl@0: * (at your option) any later version. sl@0: * sl@0: * This program is distributed in the hope that it will be useful, sl@0: * but WITHOUT ANY WARRANTY; without even the implied warranty of sl@0: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the sl@0: * GNU General Public License for more details. sl@0: * sl@0: * You should have received a copy of the GNU General Public License sl@0: * along with this program; if not, write to the Free Software sl@0: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA sl@0: * sl@0: */ sl@0: sl@0: #ifndef BUS_BUS_H sl@0: #define BUS_BUS_H sl@0: sl@0: #ifndef __SYMBIAN32__ sl@0: #include sl@0: #else sl@0: #include "config.h" sl@0: #endif //__SYMBAIN32__ sl@0: sl@0: #include sl@0: #ifndef __SYMBIAN32__ sl@0: #include sl@0: #include sl@0: #include sl@0: #else sl@0: #include "dbus-string.h" sl@0: #include "dbus-mainloop.h" sl@0: #include "dbus-userdb.h" sl@0: #endif //__SYMBAIN32__ sl@0: sl@0: typedef struct BusActivation BusActivation; sl@0: typedef struct BusConnections BusConnections; sl@0: typedef struct BusContext BusContext; sl@0: typedef struct BusPolicy BusPolicy; sl@0: typedef struct BusClientPolicy BusClientPolicy; sl@0: typedef struct BusPolicyRule BusPolicyRule; sl@0: typedef struct BusRegistry BusRegistry; sl@0: typedef struct BusSELinuxID BusSELinuxID; sl@0: typedef struct BusService BusService; sl@0: typedef struct BusOwner BusOwner; sl@0: typedef struct BusTransaction BusTransaction; sl@0: typedef struct BusMatchmaker BusMatchmaker; sl@0: typedef struct BusMatchRule BusMatchRule; sl@0: sl@0: typedef struct sl@0: { sl@0: long max_incoming_bytes; /**< How many incoming message bytes for a single connection */ sl@0: long max_outgoing_bytes; /**< How many outgoing bytes can be queued for a single connection */ sl@0: long max_message_size; /**< Max size of a single message in bytes */ sl@0: int activation_timeout; /**< How long to wait for an activation to time out */ sl@0: int auth_timeout; /**< How long to wait for an authentication to time out */ sl@0: int max_completed_connections; /**< Max number of authorized connections */ sl@0: int max_incomplete_connections; /**< Max number of incomplete connections */ sl@0: int max_connections_per_user; /**< Max number of connections auth'd as same user */ sl@0: int max_pending_activations; /**< Max number of pending activations for the entire bus */ sl@0: int max_services_per_connection; /**< Max number of owned services for a single connection */ sl@0: int max_match_rules_per_connection; /**< Max number of match rules for a single connection */ sl@0: int max_replies_per_connection; /**< Max number of replies that can be pending for each connection */ sl@0: int reply_timeout; /**< How long to wait before timing out a reply */ sl@0: } BusLimits; sl@0: sl@0: typedef enum sl@0: { sl@0: FORK_FOLLOW_CONFIG_FILE, sl@0: FORK_ALWAYS, sl@0: FORK_NEVER sl@0: } ForceForkSetting; sl@0: sl@0: BusContext* bus_context_new (const DBusString *config_file, sl@0: ForceForkSetting force_fork, sl@0: int print_addr_fd, sl@0: int print_pid_fd, sl@0: DBusError *error); sl@0: dbus_bool_t bus_context_reload_config (BusContext *context, sl@0: DBusError *error); sl@0: void bus_context_shutdown (BusContext *context); sl@0: BusContext* bus_context_ref (BusContext *context); sl@0: void bus_context_unref (BusContext *context); sl@0: const char* bus_context_get_type (BusContext *context); sl@0: const char* bus_context_get_address (BusContext *context); sl@0: BusRegistry* bus_context_get_registry (BusContext *context); sl@0: BusConnections* bus_context_get_connections (BusContext *context); sl@0: BusActivation* bus_context_get_activation (BusContext *context); sl@0: BusMatchmaker* bus_context_get_matchmaker (BusContext *context); sl@0: DBusLoop* bus_context_get_loop (BusContext *context); sl@0: DBusUserDatabase* bus_context_get_user_database (BusContext *context); sl@0: sl@0: dbus_bool_t bus_context_allow_user (BusContext *context, sl@0: unsigned long uid); sl@0: BusPolicy* bus_context_get_policy (BusContext *context); sl@0: sl@0: BusClientPolicy* bus_context_create_client_policy (BusContext *context, sl@0: DBusConnection *connection, sl@0: DBusError *error); sl@0: int bus_context_get_activation_timeout (BusContext *context); sl@0: int bus_context_get_auth_timeout (BusContext *context); sl@0: int bus_context_get_max_completed_connections (BusContext *context); sl@0: int bus_context_get_max_incomplete_connections (BusContext *context); sl@0: int bus_context_get_max_connections_per_user (BusContext *context); sl@0: int bus_context_get_max_pending_activations (BusContext *context); sl@0: int bus_context_get_max_services_per_connection (BusContext *context); sl@0: int bus_context_get_max_match_rules_per_connection (BusContext *context); sl@0: int bus_context_get_max_replies_per_connection (BusContext *context); sl@0: int bus_context_get_reply_timeout (BusContext *context); sl@0: dbus_bool_t bus_context_check_security_policy (BusContext *context, sl@0: BusTransaction *transaction, sl@0: DBusConnection *sender, sl@0: DBusConnection *addressed_recipient, sl@0: DBusConnection *proposed_recipient, sl@0: DBusMessage *message, sl@0: DBusError *error); sl@0: sl@0: #endif /* BUS_BUS_H */