xref: /openbmc/bmcweb/features/redfish/include/redfish.hpp (revision 729dae72826e58134ca4e49587427703ad0286db)
1b6df6dc7SBorawski.Lukasz /*
2b6df6dc7SBorawski.Lukasz // Copyright (c) 2018 Intel Corporation
3b6df6dc7SBorawski.Lukasz //
4b6df6dc7SBorawski.Lukasz // Licensed under the Apache License, Version 2.0 (the "License");
5b6df6dc7SBorawski.Lukasz // you may not use this file except in compliance with the License.
6b6df6dc7SBorawski.Lukasz // You may obtain a copy of the License at
7b6df6dc7SBorawski.Lukasz //
8b6df6dc7SBorawski.Lukasz //      http://www.apache.org/licenses/LICENSE-2.0
9b6df6dc7SBorawski.Lukasz //
10b6df6dc7SBorawski.Lukasz // Unless required by applicable law or agreed to in writing, software
11b6df6dc7SBorawski.Lukasz // distributed under the License is distributed on an "AS IS" BASIS,
12b6df6dc7SBorawski.Lukasz // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13b6df6dc7SBorawski.Lukasz // See the License for the specific language governing permissions and
14b6df6dc7SBorawski.Lukasz // limitations under the License.
15b6df6dc7SBorawski.Lukasz */
16b6df6dc7SBorawski.Lukasz #pragma once
17b6df6dc7SBorawski.Lukasz 
1888d16c9aSLewanczyk, Dawid #include "../lib/account_service.hpp"
19*729dae72SJennifer Lee #include "../lib/chassis.hpp"
20*729dae72SJennifer Lee #include "../lib/ethernet.hpp"
219c310685SBorawski.Lukasz #include "../lib/managers.hpp"
2270141561SBorawski.Lukasz #include "../lib/network_protocol.hpp"
232b7981f6SKowalski, Kamil #include "../lib/redfish_sessions.hpp"
244e49bd4bSLewanczyk, Dawid #include "../lib/roles.hpp"
25b6df6dc7SBorawski.Lukasz #include "../lib/service_root.hpp"
2608777fb0SLewanczyk, Dawid #include "../lib/thermal.hpp"
27*729dae72SJennifer Lee #include "../lib/update_service.hpp"
28c1a46bd2SBorawski.Lukasz #include "webserver_common.hpp"
29b6df6dc7SBorawski.Lukasz 
30b6df6dc7SBorawski.Lukasz namespace redfish {
31b6df6dc7SBorawski.Lukasz /*
32b6df6dc7SBorawski.Lukasz  * @brief Top level class installing and providing Redfish services
33b6df6dc7SBorawski.Lukasz  */
34b6df6dc7SBorawski.Lukasz class RedfishService {
35b6df6dc7SBorawski.Lukasz  public:
36b6df6dc7SBorawski.Lukasz   /*
37b6df6dc7SBorawski.Lukasz    * @brief Redfish service constructor
38b6df6dc7SBorawski.Lukasz    *
39b6df6dc7SBorawski.Lukasz    * Loads Redfish configuration and installs schema resources
40b6df6dc7SBorawski.Lukasz    *
41b6df6dc7SBorawski.Lukasz    * @param[in] app   Crow app on which Redfish will initialize
42b6df6dc7SBorawski.Lukasz    */
43b6df6dc7SBorawski.Lukasz   RedfishService(CrowApp& app) {
4443a095abSBorawski.Lukasz     nodes.emplace_back(std::make_unique<AccountService>(app));
4543a095abSBorawski.Lukasz     nodes.emplace_back(std::make_unique<SessionCollection>(app));
4643a095abSBorawski.Lukasz     nodes.emplace_back(std::make_unique<Roles>(app));
4743a095abSBorawski.Lukasz     nodes.emplace_back(std::make_unique<RoleCollection>(app));
4843a095abSBorawski.Lukasz     nodes.emplace_back(std::make_unique<ServiceRoot>(app));
4970141561SBorawski.Lukasz     nodes.emplace_back(std::make_unique<NetworkProtocol>(app));
505d27b854SBorawski.Lukasz     nodes.emplace_back(std::make_unique<SessionService>(app));
519391bb9cSRapkiewicz, Pawel     nodes.emplace_back(std::make_unique<EthernetCollection>(app));
529391bb9cSRapkiewicz, Pawel     nodes.emplace_back(std::make_unique<EthernetInterface>(app));
5308777fb0SLewanczyk, Dawid     nodes.emplace_back(std::make_unique<Thermal>(app));
549c310685SBorawski.Lukasz     nodes.emplace_back(std::make_unique<ManagerCollection>(app));
55e37f8451SRapkiewicz, Pawel     nodes.emplace_back(std::make_unique<ChassisCollection>(app));
56e37f8451SRapkiewicz, Pawel     nodes.emplace_back(std::make_unique<Chassis>(app));
57*729dae72SJennifer Lee     nodes.emplace_back(std::make_unique<UpdateService>(app));
58*729dae72SJennifer Lee     nodes.emplace_back(std::make_unique<SoftwareInventoryCollection>(app));
59*729dae72SJennifer Lee     nodes.emplace_back(std::make_unique<SoftwareInventory>(app));
60c1a46bd2SBorawski.Lukasz     for (auto& node : nodes) {
61c1a46bd2SBorawski.Lukasz       node->getSubRoutes(nodes);
62c1a46bd2SBorawski.Lukasz     }
63b6df6dc7SBorawski.Lukasz   }
64b6df6dc7SBorawski.Lukasz 
65b6df6dc7SBorawski.Lukasz  private:
664e49bd4bSLewanczyk, Dawid   std::vector<std::unique_ptr<Node>> nodes;
67b6df6dc7SBorawski.Lukasz };
68b6df6dc7SBorawski.Lukasz 
69b6df6dc7SBorawski.Lukasz }  // namespace redfish
70