Matthew Barth | c573643 | 2017-04-17 12:22:50 -0500 | [diff] [blame] | 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 | */ |
Ratan Gupta | cd22786 | 2017-10-06 21:27:13 +0530 | [diff] [blame] | 16 | |
| 17 | #include "config.h" |
Patrick Venture | 3d6d318 | 2018-08-31 09:33:09 -0700 | [diff] [blame] | 18 | |
Brad Bishop | 870c3fc | 2017-05-22 23:23:13 -0400 | [diff] [blame] | 19 | #include "generated.hpp" |
Ratan Gupta | cd22786 | 2017-10-06 21:27:13 +0530 | [diff] [blame] | 20 | #include "sdbusplus.hpp" |
| 21 | |
| 22 | #include <sdbusplus/bus.hpp> |
| 23 | #include <sdbusplus/server/manager.hpp> |
William A. Kennington III | 223c409 | 2018-10-19 15:56:09 -0700 | [diff] [blame] | 24 | #include <sdeventplus/event.hpp> |
Matthew Barth | 1febc28 | 2017-04-12 11:33:39 -0500 | [diff] [blame] | 25 | |
Brad Bishop | d9c1fab | 2017-06-04 22:32:12 -0400 | [diff] [blame] | 26 | using namespace phosphor::dbus::monitoring; |
| 27 | |
Matthew Barth | 1febc28 | 2017-04-12 11:33:39 -0500 | [diff] [blame] | 28 | int main(void) |
| 29 | { |
William A. Kennington III | 223c409 | 2018-10-19 15:56:09 -0700 | [diff] [blame] | 30 | auto event = sdeventplus::Event::get_default(); |
Ratan Gupta | cd22786 | 2017-10-06 21:27:13 +0530 | [diff] [blame] | 31 | 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); |
| 35 | bus.request_name(BUSNAME_EVENT); |
| 36 | |
Dhruvaraj Subhashchandran | 6524b9d | 2017-10-18 01:41:51 -0500 | [diff] [blame] | 37 | phosphor::events::getManager().restore(); |
| 38 | |
Brad Bishop | d9c1fab | 2017-06-04 22:32:12 -0400 | [diff] [blame] | 39 | for (auto& watch : ConfigPropertyWatches::get()) |
Brad Bishop | f67884e | 2017-05-25 22:19:12 -0400 | [diff] [blame] | 40 | { |
| 41 | watch->start(); |
| 42 | } |
| 43 | |
Brad Bishop | d9c1fab | 2017-06-04 22:32:12 -0400 | [diff] [blame] | 44 | for (auto& watch : ConfigPropertyWatches::get()) |
Matthew Barth | 1febc28 | 2017-04-12 11:33:39 -0500 | [diff] [blame] | 45 | { |
Ratan Gupta | a45e086 | 2018-02-21 19:03:13 +0530 | [diff] [blame] | 46 | watch->callback(Context::START); |
Matthew Barth | 1febc28 | 2017-04-12 11:33:39 -0500 | [diff] [blame] | 47 | } |
Marri Devender Rao | 80c7061 | 2018-04-12 09:22:55 -0500 | [diff] [blame] | 48 | for (auto& watch : ConfigPathWatches::get()) |
| 49 | { |
| 50 | watch->start(); |
| 51 | } |
| 52 | |
| 53 | for (auto& watch : ConfigPathWatches::get()) |
| 54 | { |
| 55 | watch->callback(Context::START); |
| 56 | } |
Matthew Barth | 1febc28 | 2017-04-12 11:33:39 -0500 | [diff] [blame] | 57 | |
William A. Kennington III | 223c409 | 2018-10-19 15:56:09 -0700 | [diff] [blame] | 58 | bus.attach_event(event.get(), SD_EVENT_PRIORITY_NORMAL); |
| 59 | return event.loop(); |
Matthew Barth | 1febc28 | 2017-04-12 11:33:39 -0500 | [diff] [blame] | 60 | } |