146229577SJames Feist /* 246229577SJames Feist // Copyright (c) 2020 Intel Corporation 346229577SJames Feist // 446229577SJames Feist // Licensed under the Apache License, Version 2.0 (the "License"); 546229577SJames Feist // you may not use this file except in compliance with the License. 646229577SJames Feist // You may obtain a copy of the License at 746229577SJames Feist // 846229577SJames Feist // http://www.apache.org/licenses/LICENSE-2.0 946229577SJames Feist // 1046229577SJames Feist // Unless required by applicable law or agreed to in writing, software 1146229577SJames Feist // distributed under the License is distributed on an "AS IS" BASIS, 1246229577SJames Feist // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 1346229577SJames Feist // See the License for the specific language governing permissions and 1446229577SJames Feist // limitations under the License. 1546229577SJames Feist */ 1646229577SJames Feist #pragma once 1746229577SJames Feist 183ccb3adbSEd Tanous #include "app.hpp" 193ccb3adbSEd Tanous #include "dbus_utility.hpp" 203ccb3adbSEd Tanous #include "event_service_manager.hpp" 21*539d8c6bSEd Tanous #include "generated/enums/resource.hpp" 22*539d8c6bSEd Tanous #include "generated/enums/task_service.hpp" 231aa0c2b8SEd Tanous #include "http/parsing.hpp" 243ccb3adbSEd Tanous #include "query.hpp" 253ccb3adbSEd Tanous #include "registries/privilege_registry.hpp" 263ccb3adbSEd Tanous #include "task_messages.hpp" 273ccb3adbSEd Tanous 28d43cd0caSEd Tanous #include <boost/asio/post.hpp> 29d43cd0caSEd Tanous #include <boost/asio/steady_timer.hpp> 30ef4c65b7SEd Tanous #include <boost/url/format.hpp> 313ccb3adbSEd Tanous #include <sdbusplus/bus/match.hpp> 321214b7e7SGunnar Mills 331214b7e7SGunnar Mills #include <chrono> 343ccb3adbSEd Tanous #include <memory> 353544d2a7SEd Tanous #include <ranges> 3646229577SJames Feist #include <variant> 3746229577SJames Feist 3846229577SJames Feist namespace redfish 3946229577SJames Feist { 4046229577SJames Feist 4146229577SJames Feist namespace task 4246229577SJames Feist { 4346229577SJames Feist constexpr size_t maxTaskCount = 100; // arbitrary limit 4446229577SJames Feist 45cf9e417dSEd Tanous // NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables) 4646229577SJames Feist static std::deque<std::shared_ptr<struct TaskData>> tasks; 4746229577SJames Feist 4832898ceaSJames Feist constexpr bool completed = true; 4932898ceaSJames Feist 50fe306728SJames Feist struct Payload 51fe306728SJames Feist { 524e23a444SEd Tanous explicit Payload(const crow::Request& req) : 5339662a3bSEd Tanous targetUri(req.url().encoded_path()), httpOperation(req.methodString()), 541aa0c2b8SEd Tanous httpHeaders(nlohmann::json::array()) 55fe306728SJames Feist { 56fe306728SJames Feist using field_ns = boost::beast::http::field; 57fe306728SJames Feist constexpr const std::array<boost::beast::http::field, 7> 58fe306728SJames Feist headerWhitelist = {field_ns::accept, field_ns::accept_encoding, 59fe306728SJames Feist field_ns::user_agent, field_ns::host, 60fe306728SJames Feist field_ns::connection, field_ns::content_length, 61fe306728SJames Feist field_ns::upgrade}; 62fe306728SJames Feist 631aa0c2b8SEd Tanous JsonParseResult ret = parseRequestAsJson(req, jsonBody); 641aa0c2b8SEd Tanous if (ret != JsonParseResult::Success) 65fe306728SJames Feist { 661aa0c2b8SEd Tanous return; 67fe306728SJames Feist } 68fe306728SJames Feist 6998fe740bSEd Tanous for (const auto& field : req.fields()) 70fe306728SJames Feist { 713544d2a7SEd Tanous if (std::ranges::find(headerWhitelist, field.name()) == 723544d2a7SEd Tanous headerWhitelist.end()) 73fe306728SJames Feist { 74fe306728SJames Feist continue; 75fe306728SJames Feist } 76fe306728SJames Feist std::string header; 77fe306728SJames Feist header.reserve(field.name_string().size() + 2 + 78fe306728SJames Feist field.value().size()); 79fe306728SJames Feist header += field.name_string(); 80fe306728SJames Feist header += ": "; 81fe306728SJames Feist header += field.value(); 82fe306728SJames Feist httpHeaders.emplace_back(std::move(header)); 83fe306728SJames Feist } 84fe306728SJames Feist } 85fe306728SJames Feist Payload() = delete; 86fe306728SJames Feist 87fe306728SJames Feist std::string targetUri; 88fe306728SJames Feist std::string httpOperation; 89fe306728SJames Feist nlohmann::json httpHeaders; 90fe306728SJames Feist nlohmann::json jsonBody; 91fe306728SJames Feist }; 92fe306728SJames Feist 9346229577SJames Feist struct TaskData : std::enable_shared_from_this<TaskData> 9446229577SJames Feist { 9546229577SJames Feist private: 9659d494eeSPatrick Williams TaskData( 9759d494eeSPatrick Williams std::function<bool(boost::system::error_code, sdbusplus::message_t&, 9846229577SJames Feist const std::shared_ptr<TaskData>&)>&& handler, 9923a21a1cSEd Tanous const std::string& matchIn, size_t idx) : 10046229577SJames Feist callback(std::move(handler)), 10123a21a1cSEd Tanous matchStr(matchIn), index(idx), 10246229577SJames Feist startTime(std::chrono::system_clock::to_time_t( 10346229577SJames Feist std::chrono::system_clock::now())), 10446229577SJames Feist status("OK"), state("Running"), messages(nlohmann::json::array()), 10546229577SJames Feist timer(crow::connections::systemBus->get_io_context()) 10646229577SJames Feist 1071214b7e7SGunnar Mills {} 10846229577SJames Feist 10946229577SJames Feist public: 110d609fd6eSEd Tanous TaskData() = delete; 111d609fd6eSEd Tanous 11246229577SJames Feist static std::shared_ptr<TaskData>& createTask( 11359d494eeSPatrick Williams std::function<bool(boost::system::error_code, sdbusplus::message_t&, 11446229577SJames Feist const std::shared_ptr<TaskData>&)>&& handler, 11546229577SJames Feist const std::string& match) 11646229577SJames Feist { 11746229577SJames Feist static size_t lastTask = 0; 11846229577SJames Feist struct MakeSharedHelper : public TaskData 11946229577SJames Feist { 12046229577SJames Feist MakeSharedHelper( 1211214b7e7SGunnar Mills std::function<bool(boost::system::error_code, 12259d494eeSPatrick Williams sdbusplus::message_t&, 12346229577SJames Feist const std::shared_ptr<TaskData>&)>&& handler, 12423a21a1cSEd Tanous const std::string& match2, size_t idx) : 12523a21a1cSEd Tanous TaskData(std::move(handler), match2, idx) 1261214b7e7SGunnar Mills {} 12746229577SJames Feist }; 12846229577SJames Feist 12946229577SJames Feist if (tasks.size() >= maxTaskCount) 13046229577SJames Feist { 13102cad96eSEd Tanous const auto& last = tasks.front(); 13246229577SJames Feist 13346229577SJames Feist // destroy all references 13446229577SJames Feist last->timer.cancel(); 13546229577SJames Feist last->match.reset(); 13646229577SJames Feist tasks.pop_front(); 13746229577SJames Feist } 13846229577SJames Feist 13946229577SJames Feist return tasks.emplace_back(std::make_shared<MakeSharedHelper>( 14046229577SJames Feist std::move(handler), match, lastTask++)); 14146229577SJames Feist } 14246229577SJames Feist 14346229577SJames Feist void populateResp(crow::Response& res, size_t retryAfterSeconds = 30) 14446229577SJames Feist { 14546229577SJames Feist if (!endTime) 14646229577SJames Feist { 14746229577SJames Feist res.result(boost::beast::http::status::accepted); 14846229577SJames Feist std::string strIdx = std::to_string(index); 149fdbce79bSEd Tanous boost::urls::url uri = 150fdbce79bSEd Tanous boost::urls::format("/redfish/v1/TaskService/Tasks/{}", strIdx); 1511476687dSEd Tanous 1521476687dSEd Tanous res.jsonValue["@odata.id"] = uri; 1531476687dSEd Tanous res.jsonValue["@odata.type"] = "#Task.v1_4_3.Task"; 1541476687dSEd Tanous res.jsonValue["Id"] = strIdx; 1551476687dSEd Tanous res.jsonValue["TaskState"] = state; 1561476687dSEd Tanous res.jsonValue["TaskStatus"] = status; 1571476687dSEd Tanous 158fdbce79bSEd Tanous boost::urls::url taskMonitor = boost::urls::format( 159fdbce79bSEd Tanous "/redfish/v1/TaskService/TaskMonitors/{}", strIdx); 160fdbce79bSEd Tanous 16146229577SJames Feist res.addHeader(boost::beast::http::field::location, 162fdbce79bSEd Tanous taskMonitor.buffer()); 16346229577SJames Feist res.addHeader(boost::beast::http::field::retry_after, 16446229577SJames Feist std::to_string(retryAfterSeconds)); 16546229577SJames Feist } 16646229577SJames Feist else if (!gave204) 16746229577SJames Feist { 16846229577SJames Feist res.result(boost::beast::http::status::no_content); 16946229577SJames Feist gave204 = true; 17046229577SJames Feist } 17146229577SJames Feist } 17246229577SJames Feist 173d609fd6eSEd Tanous void finishTask() 17446229577SJames Feist { 17546229577SJames Feist endTime = std::chrono::system_clock::to_time_t( 17646229577SJames Feist std::chrono::system_clock::now()); 17746229577SJames Feist } 17846229577SJames Feist 179fd9ab9e1SJames Feist void extendTimer(const std::chrono::seconds& timeout) 18046229577SJames Feist { 18146229577SJames Feist timer.expires_after(timeout); 18246229577SJames Feist timer.async_wait( 18346229577SJames Feist [self = shared_from_this()](boost::system::error_code ec) { 18446229577SJames Feist if (ec == boost::asio::error::operation_aborted) 18546229577SJames Feist { 1864e0453b1SGunnar Mills return; // completed successfully 18746229577SJames Feist } 18846229577SJames Feist if (!ec) 18946229577SJames Feist { 19046229577SJames Feist // change ec to error as timer expired 19146229577SJames Feist ec = boost::asio::error::operation_aborted; 19246229577SJames Feist } 19346229577SJames Feist self->match.reset(); 19459d494eeSPatrick Williams sdbusplus::message_t msg; 19546229577SJames Feist self->finishTask(); 19646229577SJames Feist self->state = "Cancelled"; 19746229577SJames Feist self->status = "Warning"; 198e5d5006bSJames Feist self->messages.emplace_back( 199e5d5006bSJames Feist messages::taskAborted(std::to_string(self->index))); 200e7686576SSunitha Harish // Send event :TaskAborted 201e7686576SSunitha Harish self->sendTaskEvent(self->state, self->index); 20246229577SJames Feist self->callback(ec, msg, self); 20346229577SJames Feist }); 204fd9ab9e1SJames Feist } 205fd9ab9e1SJames Feist 20626ccae32SEd Tanous static void sendTaskEvent(std::string_view state, size_t index) 207e7686576SSunitha Harish { 208e7686576SSunitha Harish // TaskState enums which should send out an event are: 209e7686576SSunitha Harish // "Starting" = taskResumed 210e7686576SSunitha Harish // "Running" = taskStarted 211e7686576SSunitha Harish // "Suspended" = taskPaused 212e7686576SSunitha Harish // "Interrupted" = taskPaused 213e7686576SSunitha Harish // "Pending" = taskPaused 214e7686576SSunitha Harish // "Stopping" = taskAborted 215e7686576SSunitha Harish // "Completed" = taskCompletedOK 216e7686576SSunitha Harish // "Killed" = taskRemoved 217e7686576SSunitha Harish // "Exception" = taskCompletedWarning 218e7686576SSunitha Harish // "Cancelled" = taskCancelled 219f8fe2211SEd Tanous nlohmann::json event; 220f8fe2211SEd Tanous std::string indexStr = std::to_string(index); 221e7686576SSunitha Harish if (state == "Starting") 222e7686576SSunitha Harish { 223f8fe2211SEd Tanous event = redfish::messages::taskResumed(indexStr); 224e7686576SSunitha Harish } 225e7686576SSunitha Harish else if (state == "Running") 226e7686576SSunitha Harish { 227f8fe2211SEd Tanous event = redfish::messages::taskStarted(indexStr); 228e7686576SSunitha Harish } 229e7686576SSunitha Harish else if ((state == "Suspended") || (state == "Interrupted") || 230e7686576SSunitha Harish (state == "Pending")) 231e7686576SSunitha Harish { 232f8fe2211SEd Tanous event = redfish::messages::taskPaused(indexStr); 233e7686576SSunitha Harish } 234e7686576SSunitha Harish else if (state == "Stopping") 235e7686576SSunitha Harish { 236f8fe2211SEd Tanous event = redfish::messages::taskAborted(indexStr); 237e7686576SSunitha Harish } 238e7686576SSunitha Harish else if (state == "Completed") 239e7686576SSunitha Harish { 240f8fe2211SEd Tanous event = redfish::messages::taskCompletedOK(indexStr); 241e7686576SSunitha Harish } 242e7686576SSunitha Harish else if (state == "Killed") 243e7686576SSunitha Harish { 244f8fe2211SEd Tanous event = redfish::messages::taskRemoved(indexStr); 245e7686576SSunitha Harish } 246e7686576SSunitha Harish else if (state == "Exception") 247e7686576SSunitha Harish { 248f8fe2211SEd Tanous event = redfish::messages::taskCompletedWarning(indexStr); 249e7686576SSunitha Harish } 250e7686576SSunitha Harish else if (state == "Cancelled") 251e7686576SSunitha Harish { 252f8fe2211SEd Tanous event = redfish::messages::taskCancelled(indexStr); 253e7686576SSunitha Harish } 254e7686576SSunitha Harish else 255e7686576SSunitha Harish { 25662598e31SEd Tanous BMCWEB_LOG_INFO("sendTaskEvent: No events to send"); 257f8fe2211SEd Tanous return; 258e7686576SSunitha Harish } 259f8fe2211SEd Tanous boost::urls::url origin = 260f8fe2211SEd Tanous boost::urls::format("/redfish/v1/TaskService/Tasks/{}", index); 261f8fe2211SEd Tanous EventServiceManager::getInstance().sendEvent(event, origin.buffer(), 262f8fe2211SEd Tanous "Task"); 263e7686576SSunitha Harish } 264e7686576SSunitha Harish 265fd9ab9e1SJames Feist void startTimer(const std::chrono::seconds& timeout) 266fd9ab9e1SJames Feist { 267fd9ab9e1SJames Feist if (match) 268fd9ab9e1SJames Feist { 269fd9ab9e1SJames Feist return; 270fd9ab9e1SJames Feist } 27159d494eeSPatrick Williams match = std::make_unique<sdbusplus::bus::match_t>( 27259d494eeSPatrick Williams static_cast<sdbusplus::bus_t&>(*crow::connections::systemBus), 273fd9ab9e1SJames Feist matchStr, 27459d494eeSPatrick Williams [self = shared_from_this()](sdbusplus::message_t& message) { 275fd9ab9e1SJames Feist boost::system::error_code ec; 276fd9ab9e1SJames Feist 277fd9ab9e1SJames Feist // callback to return True if callback is done, callback needs 278fd9ab9e1SJames Feist // to update status itself if needed 279fd9ab9e1SJames Feist if (self->callback(ec, message, self) == task::completed) 280fd9ab9e1SJames Feist { 281fd9ab9e1SJames Feist self->timer.cancel(); 282fd9ab9e1SJames Feist self->finishTask(); 283fd9ab9e1SJames Feist 284e7686576SSunitha Harish // Send event 285e7686576SSunitha Harish self->sendTaskEvent(self->state, self->index); 286e7686576SSunitha Harish 287fd9ab9e1SJames Feist // reset the match after the callback was successful 288fd9ab9e1SJames Feist boost::asio::post( 289fd9ab9e1SJames Feist crow::connections::systemBus->get_io_context(), 290fd9ab9e1SJames Feist [self] { self->match.reset(); }); 291fd9ab9e1SJames Feist return; 292fd9ab9e1SJames Feist } 293fd9ab9e1SJames Feist }); 294fd9ab9e1SJames Feist 295fd9ab9e1SJames Feist extendTimer(timeout); 296e5d5006bSJames Feist messages.emplace_back(messages::taskStarted(std::to_string(index))); 297e7686576SSunitha Harish // Send event : TaskStarted 298e7686576SSunitha Harish sendTaskEvent(state, index); 29946229577SJames Feist } 30046229577SJames Feist 30159d494eeSPatrick Williams std::function<bool(boost::system::error_code, sdbusplus::message_t&, 30246229577SJames Feist const std::shared_ptr<TaskData>&)> 30346229577SJames Feist callback; 30446229577SJames Feist std::string matchStr; 30546229577SJames Feist size_t index; 30646229577SJames Feist time_t startTime; 30746229577SJames Feist std::string status; 30846229577SJames Feist std::string state; 30946229577SJames Feist nlohmann::json messages; 31046229577SJames Feist boost::asio::steady_timer timer; 31159d494eeSPatrick Williams std::unique_ptr<sdbusplus::bus::match_t> match; 31246229577SJames Feist std::optional<time_t> endTime; 313fe306728SJames Feist std::optional<Payload> payload; 31446229577SJames Feist bool gave204 = false; 3156868ff50SGeorge Liu int percentComplete = 0; 31646229577SJames Feist }; 31746229577SJames Feist 31846229577SJames Feist } // namespace task 31946229577SJames Feist 3207e860f15SJohn Edward Broadbent inline void requestRoutesTaskMonitor(App& app) 32146229577SJames Feist { 322fdbce79bSEd Tanous BMCWEB_ROUTE(app, "/redfish/v1/TaskService/TaskMonitors/<str>/") 323ed398213SEd Tanous .privileges(redfish::privileges::getTask) 3247e860f15SJohn Edward Broadbent .methods(boost::beast::http::verb::get)( 32545ca1b86SEd Tanous [&app](const crow::Request& req, 3267e860f15SJohn Edward Broadbent const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 3277e860f15SJohn Edward Broadbent const std::string& strParam) { 3283ba00073SCarson Labrado if (!redfish::setUpRedfishRoute(app, req, asyncResp)) 32945ca1b86SEd Tanous { 33045ca1b86SEd Tanous return; 33145ca1b86SEd Tanous } 3323544d2a7SEd Tanous auto find = std::ranges::find_if( 3333544d2a7SEd Tanous task::tasks, 33446229577SJames Feist [&strParam](const std::shared_ptr<task::TaskData>& task) { 33546229577SJames Feist if (!task) 33646229577SJames Feist { 33746229577SJames Feist return false; 33846229577SJames Feist } 33946229577SJames Feist 3407e860f15SJohn Edward Broadbent // we compare against the string version as on failure 3417e860f15SJohn Edward Broadbent // strtoul returns 0 34246229577SJames Feist return std::to_string(task->index) == strParam; 34346229577SJames Feist }); 34446229577SJames Feist 34546229577SJames Feist if (find == task::tasks.end()) 34646229577SJames Feist { 347d8a5d5d8SJiaqing Zhao messages::resourceNotFound(asyncResp->res, "Task", strParam); 34846229577SJames Feist return; 34946229577SJames Feist } 35046229577SJames Feist std::shared_ptr<task::TaskData>& ptr = *find; 35146229577SJames Feist // monitor expires after 204 35246229577SJames Feist if (ptr->gave204) 35346229577SJames Feist { 354d8a5d5d8SJiaqing Zhao messages::resourceNotFound(asyncResp->res, "Task", strParam); 35546229577SJames Feist return; 35646229577SJames Feist } 35746229577SJames Feist ptr->populateResp(asyncResp->res); 3587e860f15SJohn Edward Broadbent }); 35946229577SJames Feist } 36046229577SJames Feist 3617e860f15SJohn Edward Broadbent inline void requestRoutesTask(App& app) 36246229577SJames Feist { 3637e860f15SJohn Edward Broadbent BMCWEB_ROUTE(app, "/redfish/v1/TaskService/Tasks/<str>/") 364ed398213SEd Tanous .privileges(redfish::privileges::getTask) 3657e860f15SJohn Edward Broadbent .methods(boost::beast::http::verb::get)( 36645ca1b86SEd Tanous [&app](const crow::Request& req, 3677e860f15SJohn Edward Broadbent const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 3687e860f15SJohn Edward Broadbent const std::string& strParam) { 3693ba00073SCarson Labrado if (!redfish::setUpRedfishRoute(app, req, asyncResp)) 37045ca1b86SEd Tanous { 37145ca1b86SEd Tanous return; 37245ca1b86SEd Tanous } 3733544d2a7SEd Tanous auto find = std::ranges::find_if( 3743544d2a7SEd Tanous task::tasks, 37546229577SJames Feist [&strParam](const std::shared_ptr<task::TaskData>& task) { 37646229577SJames Feist if (!task) 37746229577SJames Feist { 37846229577SJames Feist return false; 37946229577SJames Feist } 38046229577SJames Feist 3817e860f15SJohn Edward Broadbent // we compare against the string version as on failure 3827e860f15SJohn Edward Broadbent // strtoul returns 0 38346229577SJames Feist return std::to_string(task->index) == strParam; 38446229577SJames Feist }); 38546229577SJames Feist 38646229577SJames Feist if (find == task::tasks.end()) 38746229577SJames Feist { 388d8a5d5d8SJiaqing Zhao messages::resourceNotFound(asyncResp->res, "Task", strParam); 38946229577SJames Feist return; 39046229577SJames Feist } 39146229577SJames Feist 39202cad96eSEd Tanous const std::shared_ptr<task::TaskData>& ptr = *find; 39346229577SJames Feist 39446229577SJames Feist asyncResp->res.jsonValue["@odata.type"] = "#Task.v1_4_3.Task"; 39546229577SJames Feist asyncResp->res.jsonValue["Id"] = strParam; 39646229577SJames Feist asyncResp->res.jsonValue["Name"] = "Task " + strParam; 39746229577SJames Feist asyncResp->res.jsonValue["TaskState"] = ptr->state; 39846229577SJames Feist asyncResp->res.jsonValue["StartTime"] = 3992b82937eSEd Tanous redfish::time_utils::getDateTimeStdtime(ptr->startTime); 40046229577SJames Feist if (ptr->endTime) 40146229577SJames Feist { 40246229577SJames Feist asyncResp->res.jsonValue["EndTime"] = 4032b82937eSEd Tanous redfish::time_utils::getDateTimeStdtime(*(ptr->endTime)); 40446229577SJames Feist } 40546229577SJames Feist asyncResp->res.jsonValue["TaskStatus"] = ptr->status; 40646229577SJames Feist asyncResp->res.jsonValue["Messages"] = ptr->messages; 407ef4c65b7SEd Tanous asyncResp->res.jsonValue["@odata.id"] = 408ef4c65b7SEd Tanous boost::urls::format("/redfish/v1/TaskService/Tasks/{}", strParam); 40946229577SJames Feist if (!ptr->gave204) 41046229577SJames Feist { 411fdbce79bSEd Tanous asyncResp->res.jsonValue["TaskMonitor"] = boost::urls::format( 412fdbce79bSEd Tanous "/redfish/v1/TaskService/TaskMonitors/{}", strParam); 41346229577SJames Feist } 4145db7dfd6SArun Thomas Baby 4155db7dfd6SArun Thomas Baby asyncResp->res.jsonValue["HidePayload"] = !ptr->payload; 4165db7dfd6SArun Thomas Baby 417fe306728SJames Feist if (ptr->payload) 418fe306728SJames Feist { 4195fb91ba4SEd Tanous const task::Payload& p = *(ptr->payload); 420002d39b4SEd Tanous asyncResp->res.jsonValue["Payload"]["TargetUri"] = p.targetUri; 4211476687dSEd Tanous asyncResp->res.jsonValue["Payload"]["HttpOperation"] = 4221476687dSEd Tanous p.httpOperation; 423002d39b4SEd Tanous asyncResp->res.jsonValue["Payload"]["HttpHeaders"] = p.httpHeaders; 424002d39b4SEd Tanous asyncResp->res.jsonValue["Payload"]["JsonBody"] = p.jsonBody.dump( 42583e37257SEd Tanous -1, ' ', true, nlohmann::json::error_handler_t::replace); 426fe306728SJames Feist } 427002d39b4SEd Tanous asyncResp->res.jsonValue["PercentComplete"] = ptr->percentComplete; 4287e860f15SJohn Edward Broadbent }); 42946229577SJames Feist } 43046229577SJames Feist 4317e860f15SJohn Edward Broadbent inline void requestRoutesTaskCollection(App& app) 43246229577SJames Feist { 4337e860f15SJohn Edward Broadbent BMCWEB_ROUTE(app, "/redfish/v1/TaskService/Tasks/") 434ed398213SEd Tanous .privileges(redfish::privileges::getTaskCollection) 4357e860f15SJohn Edward Broadbent .methods(boost::beast::http::verb::get)( 43645ca1b86SEd Tanous [&app](const crow::Request& req, 4377e860f15SJohn Edward Broadbent const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) { 4383ba00073SCarson Labrado if (!redfish::setUpRedfishRoute(app, req, asyncResp)) 43945ca1b86SEd Tanous { 44045ca1b86SEd Tanous return; 44145ca1b86SEd Tanous } 44246229577SJames Feist asyncResp->res.jsonValue["@odata.type"] = 44346229577SJames Feist "#TaskCollection.TaskCollection"; 444002d39b4SEd Tanous asyncResp->res.jsonValue["@odata.id"] = "/redfish/v1/TaskService/Tasks"; 44546229577SJames Feist asyncResp->res.jsonValue["Name"] = "Task Collection"; 446002d39b4SEd Tanous asyncResp->res.jsonValue["Members@odata.count"] = task::tasks.size(); 44746229577SJames Feist nlohmann::json& members = asyncResp->res.jsonValue["Members"]; 44846229577SJames Feist members = nlohmann::json::array(); 44946229577SJames Feist 45046229577SJames Feist for (const std::shared_ptr<task::TaskData>& task : task::tasks) 45146229577SJames Feist { 45246229577SJames Feist if (task == nullptr) 45346229577SJames Feist { 45446229577SJames Feist continue; // shouldn't be possible 45546229577SJames Feist } 456613dabeaSEd Tanous nlohmann::json::object_t member; 457ef4c65b7SEd Tanous member["@odata.id"] = 458ef4c65b7SEd Tanous boost::urls::format("/redfish/v1/TaskService/Tasks/{}", 459eddfc437SWilly Tu std::to_string(task->index)); 460613dabeaSEd Tanous members.emplace_back(std::move(member)); 46146229577SJames Feist } 4627e860f15SJohn Edward Broadbent }); 46346229577SJames Feist } 46446229577SJames Feist 4657e860f15SJohn Edward Broadbent inline void requestRoutesTaskService(App& app) 46646229577SJames Feist { 4677e860f15SJohn Edward Broadbent BMCWEB_ROUTE(app, "/redfish/v1/TaskService/") 468ed398213SEd Tanous .privileges(redfish::privileges::getTaskService) 4697e860f15SJohn Edward Broadbent .methods(boost::beast::http::verb::get)( 47045ca1b86SEd Tanous [&app](const crow::Request& req, 4717e860f15SJohn Edward Broadbent const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) { 4723ba00073SCarson Labrado if (!redfish::setUpRedfishRoute(app, req, asyncResp)) 47345ca1b86SEd Tanous { 47445ca1b86SEd Tanous return; 47545ca1b86SEd Tanous } 47646229577SJames Feist asyncResp->res.jsonValue["@odata.type"] = 47746229577SJames Feist "#TaskService.v1_1_4.TaskService"; 478002d39b4SEd Tanous asyncResp->res.jsonValue["@odata.id"] = "/redfish/v1/TaskService"; 47946229577SJames Feist asyncResp->res.jsonValue["Name"] = "Task Service"; 48046229577SJames Feist asyncResp->res.jsonValue["Id"] = "TaskService"; 4817e860f15SJohn Edward Broadbent asyncResp->res.jsonValue["DateTime"] = 4822b82937eSEd Tanous redfish::time_utils::getDateTimeOffsetNow().first; 483*539d8c6bSEd Tanous asyncResp->res.jsonValue["CompletedTaskOverWritePolicy"] = 484*539d8c6bSEd Tanous task_service::OverWritePolicy::Oldest; 48546229577SJames Feist 486002d39b4SEd Tanous asyncResp->res.jsonValue["LifeCycleEventOnTaskStateChange"] = true; 48746229577SJames Feist 488*539d8c6bSEd Tanous asyncResp->res.jsonValue["Status"]["State"] = resource::State::Enabled; 48946229577SJames Feist asyncResp->res.jsonValue["ServiceEnabled"] = true; 4901476687dSEd Tanous asyncResp->res.jsonValue["Tasks"]["@odata.id"] = 4911476687dSEd Tanous "/redfish/v1/TaskService/Tasks"; 4927e860f15SJohn Edward Broadbent }); 49346229577SJames Feist } 49446229577SJames Feist 49546229577SJames Feist } // namespace redfish 496