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 /*
34  * @brief Top level class installing and providing Redfish services
35  */
36 class RedfishService
37 {
38   public:
39     /*
40      * @brief Redfish service constructor
41      *
42      * Loads Redfish configuration and installs schema resources
43      *
44      * @param[in] app   Crow app on which Redfish will initialize
45      */
46     RedfishService(CrowApp& app)
47     {
48         nodes.emplace_back(std::make_unique<AccountService>(app));
49         nodes.emplace_back(std::make_unique<SessionCollection>(app));
50         nodes.emplace_back(std::make_unique<Roles>(app));
51         nodes.emplace_back(std::make_unique<RoleCollection>(app));
52         nodes.emplace_back(std::make_unique<ServiceRoot>(app));
53         nodes.emplace_back(std::make_unique<NetworkProtocol>(app));
54         nodes.emplace_back(std::make_unique<SessionService>(app));
55         nodes.emplace_back(std::make_unique<EthernetCollection>(app));
56         nodes.emplace_back(std::make_unique<EthernetInterface>(app));
57         nodes.emplace_back(std::make_unique<Thermal>(app));
58         nodes.emplace_back(std::make_unique<ManagerCollection>(app));
59         nodes.emplace_back(std::make_unique<Manager>(app));
60         nodes.emplace_back(std::make_unique<ChassisCollection>(app));
61         nodes.emplace_back(std::make_unique<Chassis>(app));
62         nodes.emplace_back(std::make_unique<UpdateService>(app));
63         nodes.emplace_back(std::make_unique<SoftwareInventoryCollection>(app));
64         nodes.emplace_back(std::make_unique<SoftwareInventory>(app));
65         nodes.emplace_back(
66             std::make_unique<VlanNetworkInterfaceCollection>(app));
67         nodes.emplace_back(std::make_unique<SystemsCollection>(app));
68         nodes.emplace_back(std::make_unique<Systems>(app));
69         nodes.emplace_back(std::make_unique<SystemActionsReset>(app));
70 
71         for (auto& node : nodes)
72         {
73             node->getSubRoutes(nodes);
74         }
75     }
76 
77   private:
78     std::vector<std::unique_ptr<Node>> nodes;
79 };
80 
81 } // namespace redfish
82