summaryrefslogtreecommitdiffstats
path: root/xyz.openbmc_project.Inventory.Manager.cpp
blob: bbe5667371b4f3a1d2f7d853939105494ead5acb (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
#include <sdbusplus/server.hpp>
#include <xyz/openbmc_project/Inventory/Manager/server.hpp>

namespace sdbusplus
{
namespace server
{
namespace xyz
{
namespace openbmc_project
{
namespace Inventory
{

Manager::Manager(bus::bus& bus, const char* path)
        : _xyz_openbmc_project_Inventory_Manager_interface(
                bus, path, _interface, _vtable, this)
{
}


int Manager::_callback_Notify(
        sd_bus_message* msg, void* context, sd_bus_error* error)
{
    auto m = message::message(sd_bus_message_ref(msg));

    std::string path{};
    std::map<std::string, std::map<std::string, sdbusplus::message::variant<std::string>>> object{};

    m.read(path, object);

    auto o = static_cast<Manager*>(context);
    o->notify(path, object);

    auto reply = m.new_method_return();
    // No data to append on reply.

    reply.method_return();

    return 0;
}

namespace details
{
namespace Manager
{
static const auto _param_Notify =
        utility::tuple_to_array(message::types::type_id<
                std::string, std::map<std::string, std::map<std::string, sdbusplus::message::variant<std::string>>>>());
}
}



const vtable::vtable_t Manager::_vtable[] = {
    vtable::start(),

    vtable::method("Notify",
                   details::Manager::_param_Notify
                        .data(),
                   nullptr,
                   _callback_Notify),
    vtable::end()
};

} // namespace Inventory
} // namespace openbmc_project
} // namespace xyz
} // namespace server
} // namespace sdbusplus

OpenPOWER on IntegriCloud