• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* activation.h  Activation of services
3  *
4  * Copyright (C) 2003  CodeFactory AB
5  *
6  * Licensed under the Academic Free License version 2.1
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
21  *
22  */
23 
24 #ifndef BUS_ACTIVATION_H
25 #define BUS_ACTIVATION_H
26 
27 #include <dbus/dbus.h>
28 #include <dbus/dbus-list.h>
29 #include "bus.h"
30 
31 BusActivation* bus_activation_new              (BusContext        *context,
32 						const DBusString  *address,
33 						DBusList         **directories,
34 						DBusError         *error);
35 dbus_bool_t bus_activation_reload           (BusActivation     *activation,
36 						const DBusString  *address,
37 						DBusList         **directories,
38 						DBusError         *error);
39 BusActivation* bus_activation_ref              (BusActivation     *activation);
40 void           bus_activation_unref            (BusActivation     *activation);
41 
42 dbus_bool_t   bus_activation_set_environment_variable (BusActivation     *activation,
43 						const char        *key,
44 						const char        *value,
45 						DBusError         *error);
46 dbus_bool_t    bus_activation_activate_service (BusActivation     *activation,
47 						DBusConnection    *connection,
48 						BusTransaction    *transaction,
49 						dbus_bool_t        auto_activation,
50 						DBusMessage       *activation_message,
51 						const char        *service_name,
52 						DBusError         *error);
53 dbus_bool_t    bus_activation_service_created  (BusActivation     *activation,
54 						const char        *service_name,
55 						BusTransaction    *transaction,
56 						DBusError         *error);
57 dbus_bool_t    bus_activation_list_services    (BusActivation     *registry,
58 						char            ***listp,
59 						int               *array_len);
60 dbus_bool_t    dbus_activation_systemd_failure (BusActivation     *activation,
61                                                 DBusMessage       *message);
62 
63 dbus_bool_t    bus_activation_send_pending_auto_activation_messages (BusActivation     *activation,
64 								     BusService        *service,
65 								     BusTransaction    *transaction,
66 								     DBusError         *error);
67 
68 
69 #endif /* BUS_ACTIVATION_H */
70