访问ptree数组中的特定索引 [英] Access to specific index in ptree array

查看:122
本文介绍了访问ptree数组中的特定索引的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用Boost库来操作JSON文件,并且希望访问此JSON中数组的特定索引.

I am using boost library to manipulate a JSON file and I would like to access to a specific index of an array in this JSON.

boost::property_tree::ptree& jsonfile;
const boost::property_tree::ptree& array =
  jsonfile.get_child("my_array");

我想做的是访问存储在index处的值:

What I would like to do is accessing to the value stored at index :

// This code does not compile
int value = array[index].get < int > ("property");

推荐答案

只需使用迭代器对其进行编码:

Just code it using the iterators:

template <typename T = std::string> 
T element_at(ptree const& pt, std::string name, size_t n) {
    return std::next(pt.get_child(name).find(""), n)->second.get_value<T>();
}

如果您要检查索引的范围:

If you want to have the index checked for bounds:

template <typename T = std::string> 
T element_at_checked(ptree const& pt, std::string name, size_t n) {
    auto r = pt.get_child(name).equal_range("");

    for (; r.first != r.second && n; --n) ++r.first;

    if (n || r.first==r.second)
        throw std::range_error("index out of bounds");

    return r.first->second.get_value<T>();
}

演示

在Coliru上直播

#include <boost/property_tree/json_parser.hpp>
#include <iostream>

using boost::property_tree::ptree;

template <typename T = std::string> 
T element_at(ptree const& pt, std::string name, size_t n) {
    return std::next(pt.get_child(name).find(""), n)->second.get_value<T>();
}

template <typename T = std::string> 
T element_at_checked(ptree const& pt, std::string name, size_t n) {
    auto r = pt.get_child(name).equal_range("");

    for (; r.first != r.second && n; --n) ++r.first;

    if (n || r.first==r.second)
        throw std::range_error("index out of bounds");

    return r.first->second.get_value<T>();
}

int main() {
    ptree pt;
    {
        std::istringstream iss("{\"a\":[1, 2, 3, 4, 5, 6]}");
        read_json(iss, pt);
    }

    write_json(std::cout, pt, false);

    // get the 4th element:
    std::cout << element_at_checked(pt, "a", 3) << "\n";

    // get it as int
    std::cout << element_at_checked<int>(pt, "a", 3) << "\n";

    // get non-existent array:
    try { std::cout << element_at_checked<int>(pt, "b", 0) << "\n"; } catch(std::exception const& e) { std::cout << e.what() << "\n"; }

    try { std::cout << element_at_checked<int>(pt, "a", 6) << "\n"; } catch(std::exception const& e) { std::cout << e.what() << "\n"; }
}

打印

{"a":["1","2","3","4","5","6"]}
4
4
No such node (b)
index out of bounds

这篇关于访问ptree数组中的特定索引的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆