blob: 5e191e158605414e9572391cfc1438ff9776500b [file] [log] [blame]
Matthew Barthc5736432017-04-17 12:22:50 -05001/**
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 */
Ratan Guptacd227862017-10-06 21:27:13 +053016
17#include "config.h"
Brad Bishop870c3fc2017-05-22 23:23:13 -040018#include "generated.hpp"
Ratan Guptacd227862017-10-06 21:27:13 +053019#include "sdbusplus.hpp"
20
21#include <sdbusplus/bus.hpp>
22#include <sdbusplus/server/manager.hpp>
Matthew Barth1febc282017-04-12 11:33:39 -050023
Brad Bishopd9c1fab2017-06-04 22:32:12 -040024using namespace phosphor::dbus::monitoring;
25
26struct Loop
27{
28 /** @brief indefinitely process dbus traffic. */
29 static void run()
30 {
31 auto& bus = SDBusPlus::getBus();
32 auto& event = SDEvent::getEvent();
33 event.attach(bus);
34 event.loop();
35 }
36};
37
Matthew Barth1febc282017-04-12 11:33:39 -050038int main(void)
39{
Ratan Guptacd227862017-10-06 21:27:13 +053040 auto& bus = SDBusPlus::getBus();
41
42 // Add sdbusplus Object Manager for the 'root' path of events.
43 sdbusplus::server::manager::manager objManager(bus, OBJ_EVENT);
44 bus.request_name(BUSNAME_EVENT);
45
Brad Bishopd9c1fab2017-06-04 22:32:12 -040046 for (auto& watch : ConfigPropertyWatches::get())
Brad Bishopf67884e2017-05-25 22:19:12 -040047 {
48 watch->start();
49 }
50
Brad Bishopd9c1fab2017-06-04 22:32:12 -040051 for (auto& watch : ConfigPropertyWatches::get())
Matthew Barth1febc282017-04-12 11:33:39 -050052 {
Ratan Guptaa45e0862018-02-21 19:03:13 +053053 watch->callback(Context::START);
Matthew Barth1febc282017-04-12 11:33:39 -050054 }
55
Brad Bishopd9c1fab2017-06-04 22:32:12 -040056 Loop::run();
57
Matthew Barth1febc282017-04-12 11:33:39 -050058 return -1;
59}