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 #include <sdeventplus/event.hpp>
25 
26 using namespace phosphor::dbus::monitoring;
27 
main(void)28 int main(void)
29 {
30     auto event = sdeventplus::Event::get_default();
31     auto& bus = SDBusPlus::getBus();
32 
33     // Add sdbusplus Object Manager for the 'root' path of events.
34     sdbusplus::server::manager_t objManager(bus, OBJ_EVENT);
35 
36     phosphor::events::getManager().restore();
37 
38     for (auto& watch : ConfigPropertyWatches::get())
39     {
40         watch->start();
41     }
42 
43     for (auto& watch : ConfigPropertyWatches::get())
44     {
45         watch->callback(Context::START);
46     }
47     for (auto& watch : ConfigPathWatches::get())
48     {
49         watch->start();
50     }
51 
52     for (auto& watch : ConfigPathWatches::get())
53     {
54         watch->callback(Context::START);
55     }
56 
57     bus.request_name(BUSNAME_EVENT);
58     bus.attach_event(event.get(), SD_EVENT_PRIORITY_NORMAL);
59     return event.loop();
60 }
61