加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
systemd_service_parser.hpp 654 Bytes
一键复制 编辑 原始数据 按行查看 历史
#pragma once
#include <nlohmann/json.hpp>
#include <map>
#include <string>
#include <vector>
/** @brief Array of services to monitor */
using ServiceMonitorData = std::vector<std::string>;
using json = nlohmann::json;
extern bool gVerbose;
/** @brief Parse input json file(s) for services to monitor
*
* @note This function will throw exceptions for an invalid json file
* @note See phosphor-service-monitor-default.json for example of json file
* format
*
* @param[in] filePaths - The file(s) to parse
*
* @return Service(s) to monitor for errors
*/
ServiceMonitorData parseServiceFiles(const std::vector<std::string>& filePaths);
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化