summaryrefslogtreecommitdiff
path: root/src/sd_bus.c
blob: 3dc3eb071d93c954dc2e304f854148c5841e8ab2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>

#include <systemd/sd-bus.h>

#include <utils.h>
#include <sd_bus.h>


int dbus_set_property_string(const char *destination,
                     const char *path,
                     const char *interface,
                     const char *member, const char* value)
{
    _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
    _cleanup_bus_message_unref_ sd_bus_message *m = NULL;
    _cleanup_bus_unref_ sd_bus *bus = NULL;

    int r;

    /* Connect to the system bus */
    r = sd_bus_open_system(&bus);
    if (r >= 0)
    {

        r = sd_bus_set_property(
            bus,
            destination,
            path,
            interface,
            member,
            &error,
            "s",
            value);

    }
    if (r < 0)
    {
        fprintf(stderr, "Failed to issue dbus call: %d %s\n", r, error.message);
    }

    return (r>0?(0):(r));
}

const char* dbus_get_property_string(const char *destination,
                             const char *path,
                             const char *interface,
                             const char *member)
{
    _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
    _cleanup_bus_message_unref_ sd_bus_message *m = NULL;
    _cleanup_bus_unref_ sd_bus *bus = NULL;
    const char *state = NULL;
    int r;

    /* Connect to the system bus */
    r = sd_bus_open_system(&bus);
    if (r >= 0)
    {

        r = sd_bus_get_property_string(
            bus,
            destination,
            path,
           interface,
           member,
            &error,
            &state);
        if (r >= 0)
        {
            printf("Result: %s\n", state);
        }
        /* Issue the method call and store the respons message in m */
    }
    if (r < 0)
    {
        fprintf(stderr, "Failed to issue dbus call: %d %s\n", r, error.message);
    }

    return (r>=0?(state):(NULL));
}

int cmd_get_string()
{
    _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
    _cleanup_bus_message_unref_ sd_bus_message *m = NULL;
    _cleanup_bus_unref_ sd_bus *bus = NULL;
    _cleanup_free_ char *state = NULL;
    int r;

    /* Connect to the system bus */
    r = sd_bus_open_system(&bus);
    if (r >= 0)
    {

        r = sd_bus_get_property_string(
            bus,
            "org.bluez",
            "/org/bluez/hci0",
            "org.bluez.Adapter1",
            "Alias",
            &error,
            &state);
        if (r >= 0)
        {
            printf("Result: %s\n", state);
        }
        /* Issue the method call and store the respons message in m */
    }
    if (r < 0)
    {
        fprintf(stderr, "Failed to issue dbus call: %d %s\n", r, error.message);
    }

    return (r>0?(0):(r));
}