summaryrefslogtreecommitdiffstats
path: root/src/pathwatchimpl.hpp
blob: 6be0f50a4b2062810f6564564291e0388fae2d9e (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
/**
 * @file PathWatchimpl.hpp
 * @brief Add interfaces added watch for the specified path
 *
 */
#pragma once

#include <sdbusplus/message.hpp>
#include <sdbusplus/bus/match.hpp>
#include <vector>
#include "callback.hpp"
#include "data_types.hpp"
#include "pathwatch.hpp"

namespace phosphor
{
namespace dbus
{
namespace monitoring
{

template <typename DBusInterfaceType> void PathWatch<DBusInterfaceType>::start()
{
    if (alreadyRan)
    {
        return;
    }
    // Watch for new interfaces added on this path.
    DBusInterfaceType::addMatch(
        sdbusplus::bus::match::rules::interfacesAdded(objectPath),
        [this](auto& msg)
        // *INDENT-OFF*
        { (this->cb)(Context::SIGNAL, msg); });
    // *INDENT-ON*

    alreadyRan = true;
}

template <typename DBusInterfaceType>
void PathWatch<DBusInterfaceType>::callback(Context ctx)
{
    (this->cb)(ctx);
}

template <typename DBusInterfaceType>
void PathWatch<DBusInterfaceType>::callback(Context ctx,
                                            sdbusplus::message::message& msg)
{
    (this->cb)(ctx, msg);
}
} // namespace monitoring
} // namespace dbus
} // namespace phosphor
OpenPOWER on IntegriCloud