Borawski.Lukasz | b6df6dc | 2018-01-24 10:20:45 +0100 | [diff] [blame] | 1 | /* |
| 2 | // Copyright (c) 2018 Intel 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 | #pragma once |
| 17 | |
Lewanczyk, Dawid | 88d16c9 | 2018-02-02 14:51:09 +0100 | [diff] [blame] | 18 | #include "../lib/account_service.hpp" |
Borawski.Lukasz | 9c310685 | 2018-02-09 15:24:22 +0100 | [diff] [blame] | 19 | #include "../lib/managers.hpp" |
Borawski.Lukasz | 7014156 | 2018-01-24 12:45:29 +0100 | [diff] [blame] | 20 | #include "../lib/network_protocol.hpp" |
Kowalski, Kamil | 2b7981f | 2018-01-31 13:24:59 +0100 | [diff] [blame] | 21 | #include "../lib/redfish_sessions.hpp" |
Lewanczyk, Dawid | 4e49bd4 | 2018-01-25 11:30:19 +0100 | [diff] [blame] | 22 | #include "../lib/roles.hpp" |
Borawski.Lukasz | b6df6dc | 2018-01-24 10:20:45 +0100 | [diff] [blame] | 23 | #include "../lib/service_root.hpp" |
Rapkiewicz, Pawel | 9391bb9 | 2018-03-20 03:12:18 +0100 | [diff] [blame] | 24 | #include "../lib/ethernet.hpp" |
Lewanczyk, Dawid | 08777fb | 2018-03-22 23:33:49 +0100 | [diff] [blame] | 25 | #include "../lib/thermal.hpp" |
Rapkiewicz, Pawel | e37f845 | 2018-03-09 13:49:50 +0100 | [diff] [blame] | 26 | #include "../lib/chassis.hpp" |
Borawski.Lukasz | c1a46bd | 2018-02-08 13:31:59 +0100 | [diff] [blame] | 27 | #include "webserver_common.hpp" |
Borawski.Lukasz | b6df6dc | 2018-01-24 10:20:45 +0100 | [diff] [blame] | 28 | |
| 29 | namespace redfish { |
| 30 | /* |
| 31 | * @brief Top level class installing and providing Redfish services |
| 32 | */ |
| 33 | class RedfishService { |
| 34 | public: |
| 35 | /* |
| 36 | * @brief Redfish service constructor |
| 37 | * |
| 38 | * Loads Redfish configuration and installs schema resources |
| 39 | * |
| 40 | * @param[in] app Crow app on which Redfish will initialize |
| 41 | */ |
Borawski.Lukasz | b6df6dc | 2018-01-24 10:20:45 +0100 | [diff] [blame] | 42 | RedfishService(CrowApp& app) { |
Borawski.Lukasz | 43a095a | 2018-02-19 15:39:01 +0100 | [diff] [blame] | 43 | nodes.emplace_back(std::make_unique<AccountService>(app)); |
| 44 | nodes.emplace_back(std::make_unique<SessionCollection>(app)); |
| 45 | nodes.emplace_back(std::make_unique<Roles>(app)); |
| 46 | nodes.emplace_back(std::make_unique<RoleCollection>(app)); |
| 47 | nodes.emplace_back(std::make_unique<ServiceRoot>(app)); |
Borawski.Lukasz | 7014156 | 2018-01-24 12:45:29 +0100 | [diff] [blame] | 48 | nodes.emplace_back(std::make_unique<NetworkProtocol>(app)); |
Borawski.Lukasz | 5d27b85 | 2018-02-08 13:24:24 +0100 | [diff] [blame] | 49 | nodes.emplace_back(std::make_unique<SessionService>(app)); |
Rapkiewicz, Pawel | 9391bb9 | 2018-03-20 03:12:18 +0100 | [diff] [blame] | 50 | nodes.emplace_back(std::make_unique<EthernetCollection>(app)); |
| 51 | nodes.emplace_back(std::make_unique<EthernetInterface>(app)); |
Lewanczyk, Dawid | 08777fb | 2018-03-22 23:33:49 +0100 | [diff] [blame] | 52 | nodes.emplace_back(std::make_unique<Thermal>(app)); |
Borawski.Lukasz | 9c310685 | 2018-02-09 15:24:22 +0100 | [diff] [blame] | 53 | nodes.emplace_back(std::make_unique<ManagerCollection>(app)); |
Rapkiewicz, Pawel | e37f845 | 2018-03-09 13:49:50 +0100 | [diff] [blame] | 54 | nodes.emplace_back(std::make_unique<ChassisCollection>(app)); |
| 55 | nodes.emplace_back(std::make_unique<Chassis>(app)); |
Borawski.Lukasz | c1a46bd | 2018-02-08 13:31:59 +0100 | [diff] [blame] | 56 | |
| 57 | for (auto& node : nodes) { |
| 58 | node->getSubRoutes(nodes); |
| 59 | } |
Borawski.Lukasz | b6df6dc | 2018-01-24 10:20:45 +0100 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | private: |
Lewanczyk, Dawid | 4e49bd4 | 2018-01-25 11:30:19 +0100 | [diff] [blame] | 63 | std::vector<std::unique_ptr<Node>> nodes; |
Borawski.Lukasz | b6df6dc | 2018-01-24 10:20:45 +0100 | [diff] [blame] | 64 | }; |
| 65 | |
| 66 | } // namespace redfish |