1*40e9b92eSEd Tanous // SPDX-License-Identifier: Apache-2.0 2*40e9b92eSEd Tanous // SPDX-FileCopyrightText: Copyright OpenBMC Authors 30ec8b83dSEd Tanous #pragma once 40ec8b83dSEd Tanous #include <nlohmann/json.hpp> 50ec8b83dSEd Tanous 60ec8b83dSEd Tanous namespace task 70ec8b83dSEd Tanous { 80ec8b83dSEd Tanous // clang-format off 90ec8b83dSEd Tanous 100ec8b83dSEd Tanous enum class TaskState{ 110ec8b83dSEd Tanous Invalid, 120ec8b83dSEd Tanous New, 130ec8b83dSEd Tanous Starting, 140ec8b83dSEd Tanous Running, 150ec8b83dSEd Tanous Suspended, 160ec8b83dSEd Tanous Interrupted, 170ec8b83dSEd Tanous Pending, 180ec8b83dSEd Tanous Stopping, 190ec8b83dSEd Tanous Completed, 200ec8b83dSEd Tanous Killed, 210ec8b83dSEd Tanous Exception, 220ec8b83dSEd Tanous Service, 230ec8b83dSEd Tanous Cancelling, 240ec8b83dSEd Tanous Cancelled, 250ec8b83dSEd Tanous }; 260ec8b83dSEd Tanous 270ec8b83dSEd Tanous NLOHMANN_JSON_SERIALIZE_ENUM(TaskState, { 280ec8b83dSEd Tanous {TaskState::Invalid, "Invalid"}, 290ec8b83dSEd Tanous {TaskState::New, "New"}, 300ec8b83dSEd Tanous {TaskState::Starting, "Starting"}, 310ec8b83dSEd Tanous {TaskState::Running, "Running"}, 320ec8b83dSEd Tanous {TaskState::Suspended, "Suspended"}, 330ec8b83dSEd Tanous {TaskState::Interrupted, "Interrupted"}, 340ec8b83dSEd Tanous {TaskState::Pending, "Pending"}, 350ec8b83dSEd Tanous {TaskState::Stopping, "Stopping"}, 360ec8b83dSEd Tanous {TaskState::Completed, "Completed"}, 370ec8b83dSEd Tanous {TaskState::Killed, "Killed"}, 380ec8b83dSEd Tanous {TaskState::Exception, "Exception"}, 390ec8b83dSEd Tanous {TaskState::Service, "Service"}, 400ec8b83dSEd Tanous {TaskState::Cancelling, "Cancelling"}, 410ec8b83dSEd Tanous {TaskState::Cancelled, "Cancelled"}, 420ec8b83dSEd Tanous }); 430ec8b83dSEd Tanous 440ec8b83dSEd Tanous } 450ec8b83dSEd Tanous // clang-format on 46