summaryrefslogtreecommitdiffstats
path: root/org.openbmc.Associations.cpp
blob: 25d79fd5eb159d729efe7b406f3772df6d94b476 (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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
#include <algorithm>
#include <org/openbmc/Associations/server.hpp>
#include <sdbusplus/exception.hpp>
#include <sdbusplus/server.hpp>

namespace sdbusplus
{
namespace org
{
namespace openbmc
{
namespace server
{

Associations::Associations(bus::bus& bus, const char* path) :
    _org_openbmc_Associations_interface(bus, path, _interface, _vtable, this)
{
}

Associations::Associations(
    bus::bus& bus, const char* path,
    const std::map<std::string, PropertiesVariant>& vals) :
    Associations(bus, path)
{
    for (const auto& v : vals)
    {
        setPropertyByName(v.first, v.second);
    }
}

auto Associations::associations() const
    -> std::vector<std::tuple<std::string, std::string, std::string>>
{
    return _associations;
}

int Associations::_callback_get_associations(sd_bus* bus, const char* path,
                                             const char* interface,
                                             const char* property,
                                             sd_bus_message* reply,
                                             void* context, sd_bus_error* error)
{
    using sdbusplus::server::binding::details::convertForMessage;

    try
    {
        auto m = message::message(reply);
#ifndef DISABLE_TRANSACTION
        {
            auto tbus = m.get_bus();
            sdbusplus::server::transaction::Transaction t(tbus, m);
            sdbusplus::server::transaction::set_id(
                std::hash<sdbusplus::server::transaction::Transaction>{}(t));
        }
#endif

        auto o = static_cast<Associations*>(context);
        m.append(convertForMessage(o->associations()));
    }
    catch (sdbusplus::internal_exception_t& e)
    {
        sd_bus_error_set_const(error, e.name(), e.description());
        return -EINVAL;
    }

    return true;
}

auto Associations::associations(
    std::vector<std::tuple<std::string, std::string, std::string>> value)
    -> std::vector<std::tuple<std::string, std::string, std::string>>
{
    if (_associations != value)
    {
        _associations = value;
        _org_openbmc_Associations_interface.property_changed("associations");
    }

    return _associations;
}

int Associations::_callback_set_associations(sd_bus* bus, const char* path,
                                             const char* interface,
                                             const char* property,
                                             sd_bus_message* value,
                                             void* context, sd_bus_error* error)
{
    try
    {
        auto m = message::message(value);
#ifndef DISABLE_TRANSACTION
        {
            auto tbus = m.get_bus();
            sdbusplus::server::transaction::Transaction t(tbus, m);
            sdbusplus::server::transaction::set_id(
                std::hash<sdbusplus::server::transaction::Transaction>{}(t));
        }
#endif

        auto o = static_cast<Associations*>(context);

        std::vector<std::tuple<std::string, std::string, std::string>> v{};
        m.read(v);
        o->associations(v);
    }
    catch (sdbusplus::internal_exception_t& e)
    {
        sd_bus_error_set_const(error, e.name(), e.description());
        return -EINVAL;
    }

    return true;
}

namespace details
{
namespace Associations
{
static const auto _property_associations = utility::tuple_to_array(
    message::types::type_id<
        std::vector<std::tuple<std::string, std::string, std::string>>>());
}
} // namespace details

void Associations::setPropertyByName(const std::string& name,
                                     const PropertiesVariant& val)
{
    if (name == "associations")
    {
        auto& v = message::variant_ns::get<
            std::vector<std::tuple<std::string, std::string, std::string>>>(
            val);
        associations(v);
        return;
    }
}

auto Associations::getPropertyByName(const std::string& name)
    -> PropertiesVariant
{
    if (name == "associations")
    {
        return associations();
    }

    return PropertiesVariant();
}

const vtable::vtable_t Associations::_vtable[] = {
    vtable::start(),
    vtable::property("associations",
                     details::Associations::_property_associations.data(),
                     _callback_get_associations, _callback_set_associations,
                     vtable::property_::emits_change),
    vtable::end()};

} // namespace server
} // namespace openbmc
} // namespace org
} // namespace sdbusplus
OpenPOWER on IntegriCloud