sdbusplus:通过ObjectManager读取数据_风静如云的博客-CSDN博客文章来源:https://www.toymoban.com/news/detail-639210.html
读取的是pair类型的数据结构,操作起来略有繁琐,可以通过如下方法,将读到的数据转换为json格式:文章来源地址https://www.toymoban.com/news/detail-639210.html
//dbusGetObj.h
#pragma once
#include <string>
#include <vector>
#include <tuple>
#include <variant>
#include <map>
#include <sdbusplus/message/native_types.hpp>
#include <nlohmann/json.hpp>
using json = nlohmann::json;
using DbusVariantType = std::variant<
std::vector<std::tuple<std::string, std::string, std::string>>,
std::vector<std::string>,
std::vector<double>,
std::string,
int64_t,
uint64_t,
double,
int32_t,
uint32_t,
int16_t,
uint16_t,
uint8_t,
bool,
std::vector<uint32_t>,
到了这里,关于sdbusplus:通过ObjectManager读取json格式数据的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!