4faa9fc7aa7d01af7b307bf7e6602f1a26add3f6
[src/app-framework-binder.git] / src / afb-systemd.c
1 /*
2  * Copyright (C) 2015, 2016, 2017 "IoT.bzh"
3  * Author José Bollo <jose.bollo@iot.bzh>
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *   http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #define _GNU_SOURCE
19
20 #include <unistd.h>
21 #include <errno.h>
22
23 #include <systemd/sd-event.h>
24 #include <systemd/sd-bus.h>
25
26 #include "afb-systemd.h"
27 #include "jobs.h"
28
29 static struct sd_bus *sdbusopen(struct sd_bus **p, int (*f)(struct sd_bus **))
30 {
31         if (*p == NULL) {
32                 int rc = f(p);
33                 if (rc < 0) {
34                         errno = -rc;
35                         *p = NULL;
36                 } else {
37                         rc = sd_bus_attach_event(*p, afb_systemd_get_event_loop(), 0);
38                         if (rc < 0) {
39                                 sd_bus_unref(*p);
40                                 errno = -rc;
41                                 *p = NULL;
42                         }
43                 }
44         }
45         return *p;
46 }
47
48 struct sd_event *afb_systemd_get_event_loop()
49 {
50         return jobs_get_sd_event();
51 }
52
53 struct sd_bus *afb_systemd_get_user_bus()
54 {
55         static struct sd_bus *result = NULL;
56         return sdbusopen((void*)&result, (void*)sd_bus_open_user);
57 }
58
59 struct sd_bus *afb_systemd_get_system_bus()
60 {
61         static struct sd_bus *result = NULL;
62         return sdbusopen((void*)&result, (void*)sd_bus_open_system);
63 }
64