blob: 0626081c9cc67b1f7a3b25595d435c2c417b5e33 [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"
Patrick Venture3d6d3182018-08-31 09:33:09 -070018
Brad Bishop870c3fc2017-05-22 23:23:13 -040019#include "generated.hpp"
Ratan Guptacd227862017-10-06 21:27:13 +053020#include "sdbusplus.hpp"
21
22#include <sdbusplus/bus.hpp>
23#include <sdbusplus/server/manager.hpp>
Matthew Barth1febc282017-04-12 11:33:39 -050024
Brad Bishopd9c1fab2017-06-04 22:32:12 -040025using namespace phosphor::dbus::monitoring;
26
27struct 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
Matthew Barth1febc282017-04-12 11:33:39 -050039int main(void)
40{
Ratan Guptacd227862017-10-06 21:27:13 +053041 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
Dhruvaraj Subhashchandran6524b9d2017-10-18 01:41:51 -050047 phosphor::events::getManager().restore();
48
Brad Bishopd9c1fab2017-06-04 22:32:12 -040049 for (auto& watch : ConfigPropertyWatches::get())
Brad Bishopf67884e2017-05-25 22:19:12 -040050 {
51 watch->start();
52 }
53
Brad Bishopd9c1fab2017-06-04 22:32:12 -040054 for (auto& watch : ConfigPropertyWatches::get())
Matthew Barth1febc282017-04-12 11:33:39 -050055 {
Ratan Guptaa45e0862018-02-21 19:03:13 +053056 watch->callback(Context::START);
Matthew Barth1febc282017-04-12 11:33:39 -050057 }
Marri Devender Rao80c70612018-04-12 09:22:55 -050058 for (auto& watch : ConfigPathWatches::get())
59 {
60 watch->start();
61 }
62
63 for (auto& watch : ConfigPathWatches::get())
64 {
65 watch->callback(Context::START);
66 }
Matthew Barth1febc282017-04-12 11:33:39 -050067
Brad Bishopd9c1fab2017-06-04 22:32:12 -040068 Loop::run();
69
Matthew Barth1febc282017-04-12 11:33:39 -050070 return -1;
71}