| /** @file |
| |
| YAML encoder for ConfigReloadTask::Info — serializes reload task snapshots to YAML nodes |
| for JSONRPC responses. |
| |
| @section license License |
| |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| */ |
| |
| #pragma once |
| #include <string> |
| #include <memory> |
| #include <vector> |
| #include <iostream> |
| #include <swoc/Errata.h> |
| #include <tscore/ink_platform.h> |
| #include <yaml-cpp/yaml.h> |
| |
| #include "mgmt/config/ReloadCoordinator.h" |
| |
| namespace YAML |
| { |
| template <> struct convert<ConfigReloadTask::Info> { |
| static Node |
| encode(const ConfigReloadTask::Info &info) |
| { |
| Node node; |
| node["config_token"] = info.token; |
| node["status"] = std::string(ConfigReloadTask::state_to_string(info.state)); |
| node["description"] = info.description; |
| node["config_key"] = info.config_key; |
| node["filename"] = info.filename; |
| auto meta = YAML::Node(YAML::NodeType::Map); |
| meta["created_time_ms"] = info.created_time_ms; |
| meta["last_updated_time_ms"] = info.last_updated_time_ms; |
| meta["main_task"] = info.main_task ? "true" : "false"; |
| |
| node["meta"] = meta; |
| |
| node["logs"] = YAML::Node(YAML::NodeType::Sequence); |
| // if no logs, it will be empty sequence. |
| for (const auto &entry : info.logs) { |
| YAML::Node log_node; |
| log_node["level"] = static_cast<int>(entry.level); |
| log_node["text"] = entry.text; |
| node["logs"].push_back(log_node); |
| } |
| |
| node["sub_tasks"] = YAML::Node(YAML::NodeType::Sequence); |
| for (const auto &sub_task : info.sub_tasks) { |
| node["sub_tasks"].push_back(sub_task->get_info()); |
| } |
| return node; |
| } |
| }; |
| |
| } // namespace YAML |