概述
本文介绍的关于
toml
就C++工程中的使用以及语法细节,皆基于下面这个版本的相关实现:
https://github.com/ToruNiina/toml11.git
本文介绍的关于工程布局参考个人习惯以作示例。
添加模块
- 将下载下来的工程中的
toml
文件夹以及toml.hpp
文件打包放到用于存放第三方库的文件目录Third
下,结构如下所示:
Project
Project.cpp
Bin
Conf
test.toml
Debug
Include
Src
Third
toml
toml
toml.hpp
others
Project.sln
- 在项目工程中引用
1 2 3 4 5 6 7 8 9 |
#include <iostream> #include "../Third/toml/toml.hpp" using namespace std; int main() { cout << "hello" << endl; return 0; } |
解码文件
1 2 3 4 5 6 7 8 9 |
#include <iostream> #include "../Third/toml/toml.hpp" using namespace std; int main() { const auto data = toml::parse("test.toml"); return 0; } |
获取值
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# test.toml answer = 42 pi = 3.14 numbers = [1,2,3] time = 1979-05-27T07:32:00Z [fruit] name = "apple" [fruit.physical] color = "red" shape = "round" values = ["foo", "bar", "baz"] |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
#include <iostream> #include "../Third/toml/toml.hpp" using namespace std; int main() { const auto data = toml::parse("test.toml"); const auto answer = toml::find<std::int64_t>(data, "answer"); const auto pi = toml::find<double>(data, "pi"); const auto numbers = toml::find<std::vector<int>>(data, "numbers"); const auto timepoint = toml::find<std::chrono::system_clock::time_point>(data, "time"); //获取表中数据 const auto& fruit = toml::find(data, "fruit"); const auto name = toml::find<std::string>(fruit, "name"); const auto& physical = toml::find(fruit, "physical"); const auto color = toml::find<std::string>(physical, "color"); const auto shape = toml::find<std::string>(physical, "shape"); //或者 const auto color1 = toml::find<std::string>(data, "fruit", "physical", "color"); const auto shape1 = toml::find<std::string>(data, "fruit", "physical", "shape"); //获取数组中数据 const auto values = toml::find(data, "values"); const auto bar = toml::find<std::string>(values, 1); //或者 const auto bar = toml::find<std::string>(data, "values", 1); //检查是否存在与键对应的值 if(data.contains("fruit") && data.at("fruit").count("physical") != 0) { // ... } return 0; } |
虚线键
1 2 3 4 5 6 7 8 |
physical.color = "orange" physical.shape = "round" # 等价于 [physical] color = "orange" shape = "round" |
1 2 3 |
//获取值 const auto physical = toml::find(data, "physical"); const auto color = toml::find<std::string>(physical, "color"); |
转换值
1 2 3 |
const toml :: value data = toml :: parse(“ test.toml ”); const toml :: value answer_ = toml :: get <toml :: table>(data).at(“ answer ”); const std :: int64_t answer = toml :: get <std :: int64_t >(answer_); |
1 2 3 |
toml::value answer_ = toml::get<toml::table >(data).at("answer"); toml::integer& answer = toml::get<toml::integer>(answer_); answer = 6 * 9; // write to data.answer. now `answer_` contains 54. |
1 2 3 4 5 6 7 8 9 10 11 12 |
const auto data = toml::parse("test.toml"); std::cout << "keys in the top-level table are the following: \n"; for(const auto& [k, v] : data.as_table()) { std::cout << k << '\n'; } const auto& fruits = toml::find(data, "fruits"); for(const auto& v : fruits.as_array()) { std::cout << toml::find<std::string>(v, "name") << '\n'; } |
下标操作
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
const toml::value v{1,2,3,4,5}; std::cout << v.at(2).as_integer() << std::endl; // 3 const toml::value v{{"foo", 42}, {"bar", 3.14}}; std::cout << v.at("foo").as_integer() << std::endl; // 42 const toml::value v{1,2,3,4,5}; std::cout << v[2].as_integer() << std::endl; // 3 const toml::value v{{"foo", 42}, {"bar", 3.14}}; std::cout << v["foo"].as_integer() << std::endl; // 42 toml::value v; // not initialized as a table. v["foo"] = 42; // OK. `v` will be a table. |
检查值
1 2 3 4 5 |
const toml::value v = /* ... */; if(v.is_integer()) { std::cout << "value is an integer" << std::endl; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
namespace toml { class value { // ... bool is_boolean() const noexcept; bool is_integer() const noexcept; bool is_floating() const noexcept; bool is_string() const noexcept; bool is_offset_datetime() const noexcept; bool is_local_datetime() const noexcept; bool is_local_date() const noexcept; bool is_local_time() const noexcept; bool is_array() const noexcept; bool is_table() const noexcept; bool is_uninitialized() const noexcept; // ... }; } // toml |
1 2 3 4 5 6 7 8 |
switch(data.at("something").type()) { case toml::value_t::integer: /*do some stuff*/ ; break; case toml::value_t::floating: /*do some stuff*/ ; break; case toml::value_t::string : /*do some stuff*/ ; break; default : throw std::runtime_error( "unexpected type : " + toml::stringize(data.at("something").type())); } |
转换数组
1 2 3 4 5 6 7 8 9 10 11 |
// # test.toml // numbers = [1,2,3] const auto numbers = toml::find(data, "numbers"); const auto vc = toml::get<std::vector<int> >(numbers); const auto ls = toml::get<std::list<int> >(numbers); const auto dq = toml::get<std::deque<int> >(numbers); const auto ar = toml::get<std::array<int, 3>>(numbers); // if the size of data.at("numbers") is larger than that of std::array, // it will throw toml::type_error because std::array is not resizable. |
1 2 |
// numbers = [1,2,3] const auto tp = toml::get<std::tuple<short, int, unsigned int>>(numbers); |
1 2 3 4 |
array_of_arrays = [[1, 2, 3], ["foo", "bar", "baz"]] # toml allows this const auto array_of_arrays = toml::find(data, "array_of_arrays"); const auto aofa = toml::get<std::pair<std::vector<int>, std::vector<std::string>>>(array_of_arrays); |
1 2 |
const auto a_of_a = toml::get<toml::array>(array_of_arrays); const auto first = toml::get<std::vector<int>>(a_of_a.at(0)); |
转换表
1 2 3 |
[tab] key1 = "foo" # all the values are key2 = "bar" # toml String |
1 2 3 4 |
const auto data = toml::parse("sample.toml"); const auto tab = toml::find<std::map<std::string, std::string>>(data, "tab"); std::cout << tab["key1"] << std::endl; // foo std::cout << tab["key2"] << std::endl; // bar |
1 2 3 4 5 6 7 8 9 |
# sample.toml array_of_inline_tables = [{key = "value1"}, {key = "value2"}, {key = "value3"}] [[array_of_tables]] key = "value4" [[array_of_tables]] key = "value5" [[array_of_tables]] key = "value6" |
1 2 3 |
const auto data = toml::parse("sample.toml"); const auto aot1 = toml::find<std::vector<toml::table>>(data, "array_of_inline_tables"); const auto aot2 = toml::find<std::vector<toml::table>>(data, "array_of_tables"); |
本文为原创文章,版权归Aet所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ Json库RapidJson使用01/11
- ♥ 包管理器:设计与实现09/18
- ♥ CLion:配置C++下Nasm开发环境(debian)08/06
- ♥ 深入理解C++11:C++11新特性解析与应用 一12/21
- ♥ Soui一03/17
- ♥ C++标准库_cfenv02/14