2010-08-17 05:33:07 +04:00
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2010-02-01 05:33:24 +03:00
# ifndef foodbushfoo
# define foodbushfoo
2010-02-03 15:03:47 +03:00
/***
This file is part of systemd .
Copyright 2010 Lennart Poettering
systemd 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 .
systemd 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 systemd ; If not , see < http : //www.gnu.org/licenses/>.
* * */
2010-02-01 05:33:24 +03:00
# include <dbus/dbus.h>
# include "manager.h"
2011-01-20 21:43:38 +03:00
int bus_init ( Manager * m , bool try_bus_connect ) ;
2010-06-19 05:04:04 +04:00
void bus_done ( Manager * m ) ;
2010-02-01 05:33:24 +03:00
2010-02-05 02:38:41 +03:00
unsigned bus_dispatch ( Manager * m ) ;
2010-02-01 05:33:24 +03:00
void bus_watch_event ( Manager * m , Watch * w , int events ) ;
void bus_timeout_event ( Manager * m , Watch * w , int events ) ;
2010-04-18 05:08:16 +04:00
int bus_query_pid ( Manager * m , const char * name ) ;
2010-06-19 05:04:04 +04:00
int bus_broadcast ( Manager * m , DBusMessage * message ) ;
2010-02-01 05:33:24 +03:00
2010-07-05 02:58:07 +04:00
bool bus_has_subscriber ( Manager * m ) ;
bool bus_connection_has_subscriber ( Manager * m , DBusConnection * c ) ;
2011-04-29 00:07:01 +04:00
int bus_fdset_add_all ( Manager * m , FDSet * fds ) ;
2010-07-05 02:58:07 +04:00
# define BUS_CONNECTION_SUBSCRIBED(m, c) dbus_connection_get_data((c), (m)->subscribed_data_slot)
# define BUS_PENDING_CALL_NAME(m, p) dbus_pending_call_get_data((p), (m)->name_data_slot)
2010-05-23 05:45:33 +04:00
extern const char * const bus_interface_table [ ] ;
2010-02-01 05:33:24 +03:00
# endif