xref: /openbmc/phosphor-dbus-monitor/src/main.cpp (revision 3d6d3182ee0b0e88b81fbbbe5c91dea3e99425a9)
1 /**
2  * Copyright © 2017 IBM Corporation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #include "config.h"
18 
19 #include "generated.hpp"
20 #include "sdbusplus.hpp"
21 
22 #include <sdbusplus/bus.hpp>
23 #include <sdbusplus/server/manager.hpp>
24 
25 using namespace phosphor::dbus::monitoring;
26 
27 struct Loop
28 {
29     /** @brief indefinitely process dbus traffic. */
30     static void run()
31     {
32         auto& bus = SDBusPlus::getBus();
33         auto& event = SDEvent::getEvent();
34         event.attach(bus);
35         event.loop();
36     }
37 };
38 
39 int main(void)
40 {
41     auto& bus = SDBusPlus::getBus();
42 
43     // Add sdbusplus Object Manager for the 'root' path of events.
44     sdbusplus::server::manager::manager objManager(bus, OBJ_EVENT);
45     bus.request_name(BUSNAME_EVENT);
46 
47     phosphor::events::getManager().restore();
48 
49     for (auto& watch : ConfigPropertyWatches::get())
50     {
51         watch->start();
52     }
53 
54     for (auto& watch : ConfigPropertyWatches::get())
55     {
56         watch->callback(Context::START);
57     }
58     for (auto& watch : ConfigPathWatches::get())
59     {
60         watch->start();
61     }
62 
63     for (auto& watch : ConfigPathWatches::get())
64     {
65         watch->callback(Context::START);
66     }
67 
68     Loop::run();
69 
70     return -1;
71 }
72