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 18 #include "../lib/account_service.hpp" 19 #include "../lib/chassis.hpp" 20 #include "../lib/ethernet.hpp" 21 #include "../lib/managers.hpp" 22 #include "../lib/network_protocol.hpp" 23 #include "../lib/redfish_sessions.hpp" 24 #include "../lib/roles.hpp" 25 #include "../lib/service_root.hpp" 26 #include "../lib/systems.hpp" 27 #include "../lib/thermal.hpp" 28 #include "../lib/update_service.hpp" 29 #include "webserver_common.hpp" 30 31 namespace redfish { 32 /* 33 * @brief Top level class installing and providing Redfish services 34 */ 35 class RedfishService { 36 public: 37 /* 38 * @brief Redfish service constructor 39 * 40 * Loads Redfish configuration and installs schema resources 41 * 42 * @param[in] app Crow app on which Redfish will initialize 43 */ 44 RedfishService(CrowApp& app) { 45 nodes.emplace_back(std::make_unique<AccountService>(app)); 46 nodes.emplace_back(std::make_unique<SessionCollection>(app)); 47 nodes.emplace_back(std::make_unique<Roles>(app)); 48 nodes.emplace_back(std::make_unique<RoleCollection>(app)); 49 nodes.emplace_back(std::make_unique<ServiceRoot>(app)); 50 nodes.emplace_back(std::make_unique<NetworkProtocol>(app)); 51 nodes.emplace_back(std::make_unique<SessionService>(app)); 52 nodes.emplace_back(std::make_unique<EthernetCollection>(app)); 53 nodes.emplace_back(std::make_unique<EthernetInterface>(app)); 54 nodes.emplace_back(std::make_unique<Thermal>(app)); 55 nodes.emplace_back(std::make_unique<ManagerCollection>(app)); 56 nodes.emplace_back(std::make_unique<Manager>(app)); 57 nodes.emplace_back(std::make_unique<ChassisCollection>(app)); 58 nodes.emplace_back(std::make_unique<Chassis>(app)); 59 nodes.emplace_back(std::make_unique<UpdateService>(app)); 60 nodes.emplace_back(std::make_unique<SoftwareInventoryCollection>(app)); 61 nodes.emplace_back(std::make_unique<SoftwareInventory>(app)); 62 nodes.emplace_back(std::make_unique<VlanNetworkInterfaceCollection>(app)); 63 nodes.emplace_back(std::make_unique<SystemsCollection>(app)); 64 nodes.emplace_back(std::make_unique<Systems>(app)); 65 66 for (auto& node : nodes) { 67 node->getSubRoutes(nodes); 68 } 69 } 70 71 private: 72 std::vector<std::unique_ptr<Node>> nodes; 73 }; 74 75 } // namespace redfish 76