sl@0: /* -*- mode: C; c-file-style: "gnu" -*- */ sl@0: /* signals.h Bus signal connection implementation 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_SIGNALS_H sl@0: #define BUS_SIGNALS_H sl@0: sl@0: #include sl@0: #ifndef __SYMBIAN32__ sl@0: #include sl@0: #include sl@0: #else sl@0: #include "dbus-string.h" sl@0: #include "dbus-sysdeps.h" sl@0: #endif /* __SYMBIAN32__ */ sl@0: #include "connection.h" sl@0: sl@0: typedef enum sl@0: { sl@0: BUS_MATCH_MESSAGE_TYPE = 1 << 0, sl@0: BUS_MATCH_INTERFACE = 1 << 1, sl@0: BUS_MATCH_MEMBER = 1 << 2, sl@0: BUS_MATCH_SENDER = 1 << 3, sl@0: BUS_MATCH_DESTINATION = 1 << 4, sl@0: BUS_MATCH_PATH = 1 << 5, sl@0: BUS_MATCH_ARGS = 1 << 6 sl@0: } BusMatchFlags; sl@0: sl@0: BusMatchRule* bus_match_rule_new (DBusConnection *matches_go_to); sl@0: BusMatchRule* bus_match_rule_ref (BusMatchRule *rule); sl@0: void bus_match_rule_unref (BusMatchRule *rule); sl@0: sl@0: dbus_bool_t bus_match_rule_set_message_type (BusMatchRule *rule, sl@0: int type); sl@0: dbus_bool_t bus_match_rule_set_interface (BusMatchRule *rule, sl@0: const char *interface); sl@0: dbus_bool_t bus_match_rule_set_member (BusMatchRule *rule, sl@0: const char *member); sl@0: dbus_bool_t bus_match_rule_set_sender (BusMatchRule *rule, sl@0: const char *sender); sl@0: dbus_bool_t bus_match_rule_set_destination (BusMatchRule *rule, sl@0: const char *destination); sl@0: dbus_bool_t bus_match_rule_set_path (BusMatchRule *rule, sl@0: const char *path); sl@0: dbus_bool_t bus_match_rule_set_arg (BusMatchRule *rule, sl@0: int arg, sl@0: const char *value); sl@0: sl@0: BusMatchRule* bus_match_rule_parse (DBusConnection *matches_go_to, sl@0: const DBusString *rule_text, sl@0: DBusError *error); sl@0: sl@0: BusMatchmaker* bus_matchmaker_new (void); sl@0: BusMatchmaker* bus_matchmaker_ref (BusMatchmaker *matchmaker); sl@0: void bus_matchmaker_unref (BusMatchmaker *matchmaker); sl@0: sl@0: dbus_bool_t bus_matchmaker_add_rule (BusMatchmaker *matchmaker, sl@0: BusMatchRule *rule); sl@0: dbus_bool_t bus_matchmaker_remove_rule_by_value (BusMatchmaker *matchmaker, sl@0: BusMatchRule *value, sl@0: DBusError *error); sl@0: void bus_matchmaker_remove_rule (BusMatchmaker *matchmaker, sl@0: BusMatchRule *rule); sl@0: void bus_matchmaker_disconnected (BusMatchmaker *matchmaker, sl@0: DBusConnection *disconnected); sl@0: dbus_bool_t bus_matchmaker_get_recipients (BusMatchmaker *matchmaker, sl@0: BusConnections *connections, sl@0: DBusConnection *sender, sl@0: DBusConnection *addressed_recipient, sl@0: DBusMessage *message, sl@0: DBusList **recipients_p); sl@0: sl@0: #endif /* BUS_SIGNALS_H */