blob: 268605654a36685f44d54c91259cc02d26061d72 [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>
William A. Kennington III223c4092018-10-19 15:56:09 -070024#include <sdeventplus/event.hpp>
Matthew Barth1febc282017-04-12 11:33:39 -050025
Brad Bishopd9c1fab2017-06-04 22:32:12 -040026using namespace phosphor::dbus::monitoring;
27
Matthew Barth1febc282017-04-12 11:33:39 -050028int main(void)
29{
William A. Kennington III223c4092018-10-19 15:56:09 -070030 auto event = sdeventplus::Event::get_default();
Ratan Guptacd227862017-10-06 21:27:13 +053031 auto& bus = SDBusPlus::getBus();
32
33 // Add sdbusplus Object Manager for the 'root' path of events.
34 sdbusplus::server::manager::manager objManager(bus, OBJ_EVENT);
Ratan Guptacd227862017-10-06 21:27:13 +053035
Dhruvaraj Subhashchandran6524b9d2017-10-18 01:41:51 -050036 phosphor::events::getManager().restore();
37
Brad Bishopd9c1fab2017-06-04 22:32:12 -040038 for (auto& watch : ConfigPropertyWatches::get())
Brad Bishopf67884e2017-05-25 22:19:12 -040039 {
40 watch->start();
41 }
42
Brad Bishopd9c1fab2017-06-04 22:32:12 -040043 for (auto& watch : ConfigPropertyWatches::get())
Matthew Barth1febc282017-04-12 11:33:39 -050044 {
Ratan Guptaa45e0862018-02-21 19:03:13 +053045 watch->callback(Context::START);
Matthew Barth1febc282017-04-12 11:33:39 -050046 }
Marri Devender Rao80c70612018-04-12 09:22:55 -050047 for (auto& watch : ConfigPathWatches::get())
48 {
49 watch->start();
50 }
51
52 for (auto& watch : ConfigPathWatches::get())
53 {
54 watch->callback(Context::START);
55 }
Matthew Barth1febc282017-04-12 11:33:39 -050056
Andrew Geissler5c3a0852019-11-12 16:26:54 -060057 bus.request_name(BUSNAME_EVENT);
William A. Kennington III223c4092018-10-19 15:56:09 -070058 bus.attach_event(event.get(), SD_EVENT_PRIORITY_NORMAL);
59 return event.loop();
Matthew Barth1febc282017-04-12 11:33:39 -050060}