2017-05-13 06:04:02 +00:00
|
|
|
toml11
|
|
|
|
======
|
|
|
|
|
2017-05-13 07:30:56 +00:00
|
|
|
[![Build Status](https://travis-ci.org/ToruNiina/toml11.svg?branch=master)](https://travis-ci.org/ToruNiina/toml11)
|
2017-05-16 23:38:01 +00:00
|
|
|
[![Build status](https://ci.appveyor.com/api/projects/status/m2n08a926asvg5mg?svg=true)](https://ci.appveyor.com/project/ToruNiina/toml11)
|
2019-02-13 13:36:29 +00:00
|
|
|
[![Version](https://img.shields.io/github/release/ToruNiina/toml11.svg?style=flat)](https://github.com/ToruNiina/toml11/releases)
|
|
|
|
[![License](https://img.shields.io/github/license/ToruNiina/toml11.svg?style=flat)](LICENSE)
|
2018-03-28 10:21:17 +00:00
|
|
|
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.1209136.svg)](https://doi.org/10.5281/zenodo.1209136)
|
2017-05-13 07:30:56 +00:00
|
|
|
|
2019-02-13 13:36:29 +00:00
|
|
|
C++11 header-only toml parser depending only on C++ standard library.
|
2017-05-13 06:04:02 +00:00
|
|
|
|
2019-02-14 07:26:48 +00:00
|
|
|
compatible to the latest version of
|
|
|
|
[TOML v0.5.0](https://github.com/toml-lang/toml/blob/master/versions/en/toml-v0.5.0.md)
|
|
|
|
after version 2.0.0.
|
2018-12-12 10:33:01 +00:00
|
|
|
|
2019-02-14 07:26:48 +00:00
|
|
|
Are you looking for pre-C++11 compatible toml parser?
|
|
|
|
Try [Boost.toml](https://github.com/ToruNiina/Boost.toml)!
|
|
|
|
It has almost the same functionality as this library and works with C++98 & Boost.
|
2017-05-13 06:04:02 +00:00
|
|
|
|
|
|
|
## How to use
|
|
|
|
|
2018-12-13 05:58:42 +00:00
|
|
|
## Installation
|
2018-12-12 10:33:01 +00:00
|
|
|
|
2018-12-13 05:58:42 +00:00
|
|
|
Just include the file after adding it to the include path.
|
2017-05-13 06:04:02 +00:00
|
|
|
|
|
|
|
```cpp
|
2018-12-12 10:33:01 +00:00
|
|
|
#include <toml11/toml.hpp> // that's all! now you can use it.
|
2017-05-13 06:04:02 +00:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2018-12-12 10:33:01 +00:00
|
|
|
const auto data = toml::parse("example.toml");
|
|
|
|
const auto title = toml::get<std::string>(data.at("title"));
|
|
|
|
std::cout << "the title is " << title << std::endl;
|
2017-05-13 06:04:02 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2018-12-13 05:58:42 +00:00
|
|
|
### Decoding toml file
|
2018-12-12 10:33:01 +00:00
|
|
|
|
2018-12-13 05:58:42 +00:00
|
|
|
The only thing you have to do is to pass a filename to the `toml::parse` function.
|
2017-05-13 06:04:02 +00:00
|
|
|
|
|
|
|
```cpp
|
|
|
|
const std::string fname("sample.toml");
|
2018-12-12 10:33:01 +00:00
|
|
|
const toml::table data = toml::parse(fname);
|
2017-05-13 06:04:02 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
In the case of file open error, it will throw `std::runtime_error`.
|
|
|
|
|
2018-12-13 05:58:42 +00:00
|
|
|
You can also pass a `stream` to the `toml::parse` function after checking the status.
|
2017-05-13 06:04:02 +00:00
|
|
|
|
2019-02-13 10:18:09 +00:00
|
|
|
Note that on __Windows OS__, stream that is opened as text-mode automatically converts
|
|
|
|
CRLF ("\r\n") into LF ("\n") and this leads inconsistency between file size and
|
|
|
|
the contents that would be read. This causes weird error. To use a file stream
|
|
|
|
with `toml::parse`, don't forget to pass binary mode flag when you open the
|
|
|
|
stream.
|
|
|
|
|
2017-05-13 06:04:02 +00:00
|
|
|
```cpp
|
2019-02-13 10:18:09 +00:00
|
|
|
std::ifstream ifs("sample.toml", std::ios_base::binary);
|
2017-05-13 06:04:02 +00:00
|
|
|
assert(ifs.good());
|
2018-12-12 10:33:01 +00:00
|
|
|
const auto data = toml::parse(ifs /*, "filename" (optional)*/);
|
|
|
|
```
|
|
|
|
|
2019-02-14 07:26:48 +00:00
|
|
|
To show a better error message, it is recommended to pass a filename with `istream`.
|
|
|
|
See also [in the case of syntax error](#in-the-case-of-syntax-error)
|
|
|
|
and [passing invalid type to toml::get](#passing-invalid-type-to-tomlget).
|
2018-12-12 10:33:01 +00:00
|
|
|
|
2018-12-13 05:58:42 +00:00
|
|
|
### In the case of syntax error
|
2018-12-12 10:33:01 +00:00
|
|
|
|
|
|
|
If there is a syntax error in a toml file, `toml::parse` will throw `toml::syntax_error`.
|
|
|
|
|
2019-02-14 07:26:48 +00:00
|
|
|
toml11 now has clean and informative error messages inspired by Rust and
|
|
|
|
it looks like the following (comment after hash sign are actually not shown).
|
2018-12-12 10:33:01 +00:00
|
|
|
|
|
|
|
```console
|
|
|
|
terminate called after throwing an instance of 'toml::syntax_error'
|
|
|
|
what(): [error] toml::parse_table: invalid line format # error description
|
2018-12-13 04:21:26 +00:00
|
|
|
--> example.toml # file name
|
2018-12-12 10:33:01 +00:00
|
|
|
3 | a = 42 = true # line num and content
|
|
|
|
| ^------ expected newline, but got '='. # error reason
|
2017-05-13 06:04:02 +00:00
|
|
|
```
|
|
|
|
|
2019-02-14 07:26:48 +00:00
|
|
|
If you (mistakenly) duplicate tables and got an error, you may want to see
|
|
|
|
where the other is. toml11 shows both at the same time.
|
2018-12-13 14:47:32 +00:00
|
|
|
|
|
|
|
```console
|
|
|
|
terminate called after throwing an instance of 'toml::syntax_error'
|
|
|
|
what(): [error] toml::insert_value: table ("table") already exists.
|
|
|
|
--> duplicate-table.toml
|
|
|
|
1 | [table]
|
|
|
|
| ~~~~~~~ table already exists here
|
|
|
|
...
|
|
|
|
3 | [table]
|
|
|
|
| ~~~~~~~ table defined twice
|
|
|
|
```
|
|
|
|
|
2019-02-14 07:26:48 +00:00
|
|
|
Since the error message generation is generally a difficult task, the current
|
|
|
|
status is not ideal. toml11 needs your help. If you encounter a weird error message,
|
|
|
|
please let us know and contribute to improve the quality!
|
2017-05-13 06:04:02 +00:00
|
|
|
|
2018-12-13 05:58:42 +00:00
|
|
|
### Getting a toml value
|
2018-12-12 10:33:01 +00:00
|
|
|
|
2019-02-14 07:26:48 +00:00
|
|
|
After parsing successfully, you can obtain the values from the result of
|
|
|
|
`toml::parse` (here, `data`) using `toml::get` function.
|
2017-05-13 06:04:02 +00:00
|
|
|
|
2017-05-18 02:57:49 +00:00
|
|
|
```toml
|
2018-12-12 10:33:01 +00:00
|
|
|
answer = 42
|
|
|
|
pi = 3.14
|
2017-05-18 02:57:49 +00:00
|
|
|
numbers = [1,2,3]
|
2018-12-12 10:33:01 +00:00
|
|
|
time = 1979-05-27T07:32:00Z
|
2017-05-19 05:58:52 +00:00
|
|
|
[tab]
|
|
|
|
key = "value"
|
2017-05-18 02:57:49 +00:00
|
|
|
```
|
|
|
|
|
2017-05-13 06:04:02 +00:00
|
|
|
``` cpp
|
2018-12-12 10:33:01 +00:00
|
|
|
const auto answer = toml::get<std::int64_t >(data.at("answer"));
|
|
|
|
const auto pi = toml::get<double >(data.at("pi"));
|
2017-05-13 06:04:02 +00:00
|
|
|
const auto numbers = toml::get<std::vector<int>>(data.at("numbers"));
|
|
|
|
const auto timepoint = toml::get<std::chrono::system_clock::time_point>(data.at("time"));
|
2017-05-19 05:58:52 +00:00
|
|
|
const auto tab = toml::get<toml::Table>(data.at("tab"));
|
2018-12-12 10:33:01 +00:00
|
|
|
const auto key = toml::get<std::string>( tab.at("key"));
|
2017-05-13 06:04:02 +00:00
|
|
|
```
|
|
|
|
|
2019-02-14 07:26:48 +00:00
|
|
|
When you pass an exact TOML type that does not require type conversion,
|
|
|
|
`toml::get` returns also a reference through which you can modify the content.
|
2017-05-13 06:04:02 +00:00
|
|
|
|
2018-12-12 10:33:01 +00:00
|
|
|
```cpp
|
|
|
|
toml::get<toml::integer>(data["answer"]) = 6 * 9;
|
|
|
|
std::cout << toml::get<int>(data.at("answer")) << std::endl; // 54
|
2017-05-13 06:04:02 +00:00
|
|
|
```
|
|
|
|
|
2019-02-14 07:26:48 +00:00
|
|
|
If the specified type requires conversion, you can't take a reference to the value.
|
|
|
|
See also [underlying types](#underlying-types).
|
2018-12-12 14:23:59 +00:00
|
|
|
|
2018-12-13 05:58:42 +00:00
|
|
|
#### Passing invalid type to toml::get
|
2017-05-13 06:04:02 +00:00
|
|
|
|
2019-02-14 07:26:48 +00:00
|
|
|
If you choose the invalid type, `toml::type_error` will be thrown.
|
|
|
|
Similar to the `syntax_error`, toml11 also displays informative error messages.
|
|
|
|
The error message when you choose `int` to get `string` value would be like this.
|
2017-05-13 06:14:16 +00:00
|
|
|
|
2018-12-12 10:33:01 +00:00
|
|
|
```console
|
2018-12-12 10:35:33 +00:00
|
|
|
terminate called after throwing an instance of 'toml::type_error'
|
2018-12-12 10:33:01 +00:00
|
|
|
what(): [error] toml::value bad_cast to integer
|
|
|
|
--> example.toml
|
|
|
|
3 | title = "TOML Example"
|
|
|
|
| ~~~~~~~~~~~~~~ the actual type is string
|
|
|
|
```
|
2017-06-07 03:28:22 +00:00
|
|
|
|
2019-02-14 07:26:48 +00:00
|
|
|
NOTE: In order to show this kind of error message, all the toml values have 1
|
|
|
|
`shared_ptr` that points the corresponding byte sequence and 2 iterators that point the range.
|
|
|
|
It is recommended to destruct all the `toml::value` classes after configuring your application to save memory resources.
|
2017-06-07 03:28:22 +00:00
|
|
|
|
2018-12-13 05:58:42 +00:00
|
|
|
### Getting arrays
|
2018-12-12 10:33:01 +00:00
|
|
|
|
2018-12-13 05:58:42 +00:00
|
|
|
You can set any kind of `container` class to obtain a `toml::array` except for `map`-like classes.
|
2018-12-12 10:33:01 +00:00
|
|
|
|
|
|
|
``` cpp
|
|
|
|
const auto vc = toml::get<std::vector<int> >(data.at("numbers"));
|
|
|
|
const auto ls = toml::get<std::list<int> >(data.at("numbers"));
|
|
|
|
const auto dq = toml::get<std::deque<int> >(data.at("numbers"));
|
|
|
|
const auto ar = toml::get<std::array<int, 3>>(data.at("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.
|
|
|
|
```
|
|
|
|
|
2018-12-13 05:58:42 +00:00
|
|
|
Surprisingly, you can also get a `toml::array` as `std::pair` and `std::tuple.`
|
2017-05-13 06:04:02 +00:00
|
|
|
|
|
|
|
```cpp
|
2018-12-12 10:33:01 +00:00
|
|
|
const auto tp = toml::get<std::tuple<short, int, unsigned int>>(data.at("numbers"));
|
2017-05-13 06:04:02 +00:00
|
|
|
```
|
|
|
|
|
2018-12-12 10:33:01 +00:00
|
|
|
The case when you need this functionality is to get an array of arrays.
|
2017-05-13 06:04:02 +00:00
|
|
|
|
2018-12-12 10:33:01 +00:00
|
|
|
```toml
|
|
|
|
aofa = [[1,2,3], ["foo", "bar", "baz"]] # toml allows this
|
|
|
|
```
|
2017-05-13 06:04:02 +00:00
|
|
|
|
2018-12-12 10:33:01 +00:00
|
|
|
What is the corresponding C++ type? Obviously, it is a `std::pair` of `std::vector`s.
|
2017-05-13 06:04:02 +00:00
|
|
|
|
|
|
|
```cpp
|
2018-12-12 10:33:01 +00:00
|
|
|
const auto aofa = toml::get<
|
|
|
|
std::pair<std::vector<int>, std::vector<std::string>>
|
|
|
|
>(data.at("aofa"));
|
|
|
|
```
|
|
|
|
|
2019-02-14 07:26:48 +00:00
|
|
|
If you don't know what the type is inside the array, you can use `toml::array`,
|
|
|
|
which is a `std::vector` of `toml::value`, instead.
|
2017-05-13 06:04:02 +00:00
|
|
|
|
2018-12-12 10:33:01 +00:00
|
|
|
```cpp
|
|
|
|
const auto aofa = toml::get<toml::array>(data.at("aofa"));
|
|
|
|
const auto first = toml::get<toml::array>(aofa.at(0));
|
2017-05-13 06:04:02 +00:00
|
|
|
```
|
|
|
|
|
2019-02-14 07:26:48 +00:00
|
|
|
See also [expecting conversion](#expecting-conversion)
|
|
|
|
and [checking-value-type](#checking-value-type).
|
2017-05-19 05:44:05 +00:00
|
|
|
|
2018-12-13 05:58:42 +00:00
|
|
|
### Getting tables
|
2017-05-13 06:04:02 +00:00
|
|
|
|
2019-02-14 07:26:48 +00:00
|
|
|
`toml::table` is a key component of this library, which is an alias of
|
|
|
|
a `std::unordered_map` from `toml::key (a.k.a. std::string)` to `toml::value`.
|
|
|
|
`toml::parse` returns this.
|
2018-12-12 10:33:01 +00:00
|
|
|
|
2019-02-14 07:26:48 +00:00
|
|
|
Since it is just an alias of `std::unordered_map`, it has all the functionalities
|
|
|
|
that `std::unordered_map` has, e.g. `operator[]`, `count`, and `find`.
|
2017-05-13 06:04:02 +00:00
|
|
|
|
|
|
|
```cpp
|
2018-12-12 10:33:01 +00:00
|
|
|
toml::table data = toml::parse("example.toml");
|
|
|
|
if(data.count("title") != 0)
|
|
|
|
{
|
|
|
|
data["title"] = std::string("TOML example");
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2019-02-14 07:26:48 +00:00
|
|
|
When all the values of the table have the same type, toml11 allows you to
|
|
|
|
convert a `toml::table` to a `map` that contains the convertible type.
|
2018-12-12 10:33:01 +00:00
|
|
|
|
|
|
|
```toml
|
|
|
|
[tab]
|
|
|
|
key1 = "foo" # all the values are
|
|
|
|
key2 = "bar" # toml String
|
|
|
|
```
|
|
|
|
|
|
|
|
```cpp
|
|
|
|
const auto tab = toml::get<std::map<std::string, std::string>>(data.at("tab"));
|
|
|
|
std::cout << tab["key1"] << std::endl; // foo
|
|
|
|
std::cout << tab["key2"] << std::endl; // bar
|
2017-05-13 06:04:02 +00:00
|
|
|
```
|
|
|
|
|
2018-12-13 05:58:42 +00:00
|
|
|
### Dotted keys
|
2017-05-13 06:04:02 +00:00
|
|
|
|
2019-02-14 07:26:48 +00:00
|
|
|
TOML v0.5.0 has a new feature named "dotted keys".
|
|
|
|
You can chain keys to represent the structure of the data.
|
2017-05-13 06:04:02 +00:00
|
|
|
|
2018-12-12 10:33:01 +00:00
|
|
|
```toml
|
|
|
|
physical.color = "orange"
|
|
|
|
physical.shape = "round"
|
|
|
|
```
|
|
|
|
|
|
|
|
This is equivalent to the following.
|
2017-05-13 06:04:02 +00:00
|
|
|
|
|
|
|
```toml
|
2018-12-12 10:33:01 +00:00
|
|
|
[physical]
|
|
|
|
color = "orange"
|
|
|
|
shape = "round"
|
2017-05-13 06:04:02 +00:00
|
|
|
```
|
|
|
|
|
2018-12-12 10:33:01 +00:00
|
|
|
You can get both of the above formats with the same c++ code.
|
2017-05-13 06:04:02 +00:00
|
|
|
|
|
|
|
```cpp
|
2018-12-12 10:33:01 +00:00
|
|
|
const auto physical = toml::get<toml::table>(data.at("physical"));
|
|
|
|
const auto color = toml::get<std::string>(physical.at("color"));
|
2017-05-13 06:04:02 +00:00
|
|
|
```
|
|
|
|
|
2018-12-13 05:58:42 +00:00
|
|
|
### An array of tables
|
2017-05-19 05:58:52 +00:00
|
|
|
|
2019-02-14 07:26:48 +00:00
|
|
|
An array of tables is just an array of tables.
|
|
|
|
You can get it completely in the same way as the other arrays and tables.
|
2017-05-19 05:58:52 +00:00
|
|
|
|
|
|
|
```toml
|
|
|
|
array_of_inline_table = [{key = "value1"}, {key = "value2"}, {key = "value3"}]
|
|
|
|
|
|
|
|
[[array_of_table]]
|
|
|
|
key = "value4"
|
|
|
|
[[array_of_table]]
|
|
|
|
key = "value5"
|
|
|
|
[[array_of_table]]
|
|
|
|
key = "value6"
|
|
|
|
```
|
|
|
|
|
|
|
|
```cpp
|
2018-12-12 10:33:01 +00:00
|
|
|
const auto aot1 = toml::get<std::vector<toml::table>>(data.at("array_of_inline_table"));
|
|
|
|
const auto aot2 = toml::get<std::vector<toml::table>>(data.at("array_of_table"));
|
|
|
|
```
|
|
|
|
|
2018-12-13 05:58:42 +00:00
|
|
|
### Cost of conversion
|
2018-12-12 10:33:01 +00:00
|
|
|
|
2019-02-14 07:26:48 +00:00
|
|
|
Although `toml::get` is convenient, it has additional copy-cost because
|
|
|
|
it copies data contained in `toml::value` to the user-specified type.
|
|
|
|
Of course in some case this overhead is not ignorable.
|
2018-12-12 10:33:01 +00:00
|
|
|
|
|
|
|
By passing the exact types, `toml::get` returns reference that has nealy zero overhead.
|
|
|
|
|
|
|
|
``` cpp
|
|
|
|
const auto& tab = toml::get<toml::array>(data.at("tab"));
|
|
|
|
const auto& numbers = toml::get<toml::table>(data.at("numbers"));
|
|
|
|
```
|
|
|
|
|
2019-02-14 07:26:48 +00:00
|
|
|
Unfortunately, in this case you need to call `toml::get` each time you access to
|
|
|
|
the element of `toml::array` because `toml::array` is an array of `toml::value`.
|
2018-12-12 10:33:01 +00:00
|
|
|
|
|
|
|
```cpp
|
|
|
|
const auto& num0 = toml::get<toml::integer>(numbers.at(0));
|
|
|
|
const auto& num1 = toml::get<toml::integer>(numbers.at(1));
|
|
|
|
const auto& num2 = toml::get<toml::integer>(numbers.at(2));
|
2017-05-19 05:58:52 +00:00
|
|
|
```
|
|
|
|
|
2018-12-13 05:58:42 +00:00
|
|
|
### Datetime and its variants
|
2017-05-13 06:04:02 +00:00
|
|
|
|
2019-02-14 07:26:48 +00:00
|
|
|
TOML v0.5.0 has 4 different datetime objects, `local_date`, `local_time`,
|
|
|
|
`local_datetime`, and `offset_datetime`. With toml11, you can convert `local_time`
|
|
|
|
to your favorite `std::chrono::duration` and others to `std::chrono::system_clock::time_point`.
|
2017-06-07 03:33:51 +00:00
|
|
|
|
2018-12-12 10:33:01 +00:00
|
|
|
```toml
|
|
|
|
time = 12:30:00
|
|
|
|
date = 2018-12-23
|
|
|
|
```
|
2017-05-13 06:04:02 +00:00
|
|
|
|
2018-12-12 10:33:01 +00:00
|
|
|
```cpp
|
|
|
|
const auto dur = toml::get<std::chrono::minutes>(data.at("time")); // 12 * 60 + 30 min
|
|
|
|
const auto tp = toml::get<std::chrono::system_clock::time_point>(data.at("date"));
|
|
|
|
```
|
2017-05-13 06:04:02 +00:00
|
|
|
|
2018-12-13 05:58:42 +00:00
|
|
|
### Getting with a fallback
|
2017-05-13 06:04:02 +00:00
|
|
|
|
2018-12-12 10:33:01 +00:00
|
|
|
`toml::get_or` returns a default value if `toml::get<T>` failed.
|
2017-05-13 06:04:02 +00:00
|
|
|
|
|
|
|
```cpp
|
2018-12-12 10:33:01 +00:00
|
|
|
toml::table data; // empty table!
|
|
|
|
const auto value = toml::get_or(data, "key", 42); // value => int 42.
|
|
|
|
```
|
|
|
|
|
|
|
|
`toml::get_or` automatically deduces what type you want to get from the default value you passed.
|
|
|
|
|
2018-12-13 05:58:42 +00:00
|
|
|
### Expecting conversion
|
2018-12-12 10:33:01 +00:00
|
|
|
|
2019-02-14 07:26:48 +00:00
|
|
|
By using `toml::expect`, you will get your expected value or an error message
|
|
|
|
without throwing `toml::type_error`.
|
2018-12-12 10:33:01 +00:00
|
|
|
|
|
|
|
```cpp
|
|
|
|
const auto value = toml::expect<std::string>(data.at("title"));
|
|
|
|
if(value.is_ok()) {
|
|
|
|
std::cout << value.unwrap() << std::endl;
|
|
|
|
} else {
|
|
|
|
std::cout << value.unwrap_err() << std::endl;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Also, you can pass a function object to modify the expected value.
|
|
|
|
|
|
|
|
```cpp
|
|
|
|
const auto value = toml::expect<int>(data.at("number"))
|
|
|
|
.map(// function that receives expected type (here, int)
|
|
|
|
[](const int number) -> double {
|
|
|
|
return number * 1.5 + 1.0;
|
|
|
|
}).unwrap_or(/*default value =*/ 3.14);
|
|
|
|
```
|
|
|
|
|
2018-12-13 05:58:42 +00:00
|
|
|
### Finding value from table
|
2018-12-12 17:00:42 +00:00
|
|
|
|
2019-02-14 07:26:48 +00:00
|
|
|
toml11 provides utility function to find a value from `toml::table`.
|
|
|
|
Of course, you can do this in your own way with `toml::get` because
|
|
|
|
it just searches an `unordered_map` and returns a value if it exists.
|
2018-12-12 17:00:42 +00:00
|
|
|
|
|
|
|
```cpp
|
|
|
|
const auto data = toml::parse("example.toml");
|
|
|
|
const auto num = toml::find<int>(data, "num", /*for err msg*/"example.toml");
|
|
|
|
```
|
|
|
|
|
|
|
|
If the value does not exist, it throws `std::out_of_range` with informative error message.
|
|
|
|
|
|
|
|
```console
|
|
|
|
terminate called after throwing an instance of 'std::out_of_range'
|
|
|
|
what(): [error] key "num" not found in example.toml
|
|
|
|
```
|
|
|
|
|
2019-02-14 07:26:48 +00:00
|
|
|
You can use this with a `toml::value` that is expected to be a `toml::table`.
|
|
|
|
It automatically casts the value to table.
|
2018-12-12 17:00:42 +00:00
|
|
|
|
|
|
|
```cpp
|
|
|
|
const auto data = toml::parse("example.toml");
|
|
|
|
const auto num = toml::find<int>(data.at("table"), "num");
|
|
|
|
// expecting the following example.toml
|
|
|
|
// [table]
|
|
|
|
// num = 42
|
|
|
|
```
|
|
|
|
|
2019-02-14 07:26:48 +00:00
|
|
|
In this case, because the value `data.at("table")` knows the locatoin of itself,
|
|
|
|
you don't need to pass where you find the value. `toml::find` will show you a great error message.
|
2018-12-12 17:00:42 +00:00
|
|
|
|
|
|
|
```console
|
|
|
|
terminate called after throwing an instance of 'std::out_of_range'
|
|
|
|
what(): [error] key "num" not found
|
|
|
|
--> example.toml
|
|
|
|
3 | [table]
|
|
|
|
| ~~~~~~~ in this table
|
|
|
|
```
|
|
|
|
|
|
|
|
If it's not a `toml::table`, the same error as "invalid type" would be thrown.
|
|
|
|
|
2018-12-13 05:58:42 +00:00
|
|
|
### Checking value type
|
2018-12-12 10:33:01 +00:00
|
|
|
|
|
|
|
When you don't know the exact type of toml-value, you can get `enum` type from `toml::value`.
|
|
|
|
|
|
|
|
```cpp
|
|
|
|
switch(data.at("something").type())
|
2017-05-13 06:04:02 +00:00
|
|
|
{
|
2018-12-12 10:33:01 +00:00
|
|
|
case toml::value_t::Integer: /* do some stuff */; break;
|
|
|
|
case toml::value_t::Float : /* 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()));
|
2017-05-13 06:04:02 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2018-12-13 05:58:42 +00:00
|
|
|
### Fill only the matched value
|
2018-12-12 10:33:01 +00:00
|
|
|
|
|
|
|
The more sophisticated way is using `toml::from_toml` and `std::tie`.
|
|
|
|
|
|
|
|
```cpp
|
|
|
|
toml::table data{{"something", toml::value("foo")}};
|
|
|
|
int i = 0;
|
|
|
|
double d = 0.;
|
|
|
|
std::string s;
|
|
|
|
toml::from_toml(std::tie(i, d, s), data.at("something"));
|
|
|
|
std::cout << i << ", " << d << ", " << s << std::endl; // 0, 0, foo
|
|
|
|
```
|
|
|
|
|
|
|
|
Here, only matched value will be filled. The others are left intact after calling `from_toml`.
|
|
|
|
It should be noted that `toml::from_toml` returns as usual even if there are no matched type.
|
|
|
|
|
|
|
|
`from_toml` can be used also for single type.
|
|
|
|
|
|
|
|
```cpp
|
|
|
|
int i = 0;
|
|
|
|
toml::from_toml(i, data.at("something"));
|
|
|
|
```
|
|
|
|
|
2018-12-13 05:58:42 +00:00
|
|
|
### Sanitizing UTF-8 codepoints
|
2018-12-12 10:33:01 +00:00
|
|
|
|
2019-02-14 07:26:48 +00:00
|
|
|
toml11 shows warning if a value of an escape sequence used
|
|
|
|
to represent unicode character exceeds the unicode range.
|
2018-12-12 10:33:01 +00:00
|
|
|
|
|
|
|
```console
|
|
|
|
[warning] input codepoint (0011FFFF) is too large to decode as a unicode character. The result may not be able to render to your screen.
|
|
|
|
--> example.toml
|
|
|
|
3 | exceeds_unicode = "\U0011FFFF example"
|
|
|
|
| ~~~~~~~~~ should be in [0x00..0x10FFFF]
|
|
|
|
```
|
|
|
|
|
|
|
|
Also, toml11 throws `std::domain_error` if the code point exceeds the range that can be represented by utf-8.
|
|
|
|
|
|
|
|
```console
|
|
|
|
terminate called after throwing an instance of 'std::range_error'
|
|
|
|
what(): [error] input codepoint (0020FFFF) is too large to encode as utf-8.
|
|
|
|
--> example.toml
|
|
|
|
3 | exceeds_utf8 = "\U0020FFFF example"
|
|
|
|
| ~~~~~~~~~ should be in [0x00..0x10FFFF]
|
|
|
|
```
|
|
|
|
|
2018-12-16 14:51:38 +00:00
|
|
|
### Formatting your error
|
|
|
|
|
|
|
|
When you encounter an error after you read the toml value, you may want to
|
|
|
|
show the error with the value.
|
|
|
|
|
|
|
|
toml11 provides you a function that formats user-defined error message with
|
|
|
|
related values. With a code like the following,
|
|
|
|
|
|
|
|
```cpp
|
|
|
|
const auto value = toml::find<int>(data, "num");
|
|
|
|
if(value < 0)
|
|
|
|
{
|
|
|
|
std::cerr << toml::format_error("[error] value should be positive",
|
|
|
|
data.at("num"), "positive number required")
|
|
|
|
<< std::endl;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
you will get an error message like this.
|
|
|
|
|
|
|
|
```console
|
|
|
|
[error] value should be positive
|
|
|
|
--> example.toml
|
|
|
|
3 | num = -42
|
|
|
|
| ~~~ positive number required
|
|
|
|
```
|
|
|
|
|
|
|
|
When you pass two values to `toml::format_error`,
|
|
|
|
|
|
|
|
```cpp
|
|
|
|
const auto min = toml::find<int>(range, "min");
|
|
|
|
const auto max = toml::find<int>(range, "max");
|
|
|
|
if(max < min)
|
|
|
|
{
|
|
|
|
std::cerr << toml::format_error("[error] max should be larger than min",
|
|
|
|
data.at("min"), "minimum number here",
|
|
|
|
data.at("max"), "maximum number here");
|
|
|
|
<< std::endl;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
you will get an error message like this.
|
|
|
|
|
|
|
|
```console
|
2018-12-17 07:56:09 +00:00
|
|
|
[error] max should be larger than min
|
2018-12-16 14:51:38 +00:00
|
|
|
--> example.toml
|
|
|
|
3 | min = 54
|
|
|
|
| ~~ minimum number here
|
|
|
|
...
|
|
|
|
4 | max = 42
|
|
|
|
| ~~ maximum number here
|
|
|
|
```
|
|
|
|
|
2018-12-13 05:58:42 +00:00
|
|
|
## Underlying types
|
2018-12-12 10:33:01 +00:00
|
|
|
|
2018-12-13 04:21:26 +00:00
|
|
|
The toml types (can be used as `toml::*` in this library) and corresponding `enum` names are listed in the table below.
|
2018-12-12 10:33:01 +00:00
|
|
|
|
|
|
|
| toml::type | underlying c++ type | enum |
|
|
|
|
| -------------- | -------------------------------------------- | ------------------------------- |
|
|
|
|
| Boolean | `bool` | `toml::value_t::Boolean` |
|
|
|
|
| Integer | `std::int64_t` | `toml::value_t::Integer` |
|
|
|
|
| Float | `double` | `toml::value_t::Float` |
|
|
|
|
| String | `toml::string` | `toml::value_t::String` |
|
|
|
|
| LocalDate | `toml::local_date` | `toml::value_t::LocalDate` |
|
|
|
|
| LocalTime | `toml::local_time` | `toml::value_t::LocalTime` |
|
|
|
|
| LocalDatetime | `toml::local_datetime` | `toml::value_t::LocalDatetime` |
|
|
|
|
| OffsetDatetime | `toml::offset_datetime` | `toml::value_t::offsetDatetime` |
|
|
|
|
| Array | `std::vector<toml::value>` | `toml::value_t::Array` |
|
|
|
|
| Table | `std::unordered_map<std::string, toml::key>` | `toml::value_t::Table` |
|
|
|
|
|
2019-02-14 07:26:48 +00:00
|
|
|
`toml::string` is effectively the same as `std::string` but has an additional
|
|
|
|
flag that represents a kind of a string, `string_t::basic` and `string_t::literal`.
|
|
|
|
Although `std::string` is not an exact toml type, still you can get a reference
|
|
|
|
that points to internal `std::string` by using `toml::get<std::string>()` for convenience.
|
2018-12-12 10:33:01 +00:00
|
|
|
|
2019-02-14 07:26:48 +00:00
|
|
|
`Datetime` variants are `struct` that are defined in this library.
|
|
|
|
Because `std::chrono::system_clock::time_point` is a __time point__,
|
|
|
|
not capable of representing a Local Time independent from a specific day.
|
2018-12-12 10:33:01 +00:00
|
|
|
|
|
|
|
It is recommended to get `Datetime`s as `std::chrono` classes through `toml::get`.
|
2017-05-13 06:04:02 +00:00
|
|
|
|
2018-03-28 10:14:29 +00:00
|
|
|
## Contributors
|
|
|
|
|
|
|
|
I thank the contributor for providing great feature to this repository.
|
|
|
|
|
|
|
|
- Guillaume Fraux (@Luthaf)
|
|
|
|
- Windows support and CI on Appvayor
|
|
|
|
- Intel Compiler support
|
2019-01-31 06:37:25 +00:00
|
|
|
- Quentin Khan (@xaxousis)
|
|
|
|
- Found & Fixed a bug around ODR
|
2018-03-28 10:14:29 +00:00
|
|
|
|
2017-05-13 06:04:02 +00:00
|
|
|
## Licensing terms
|
|
|
|
|
|
|
|
This product is licensed under the terms of the [MIT License](LICENSE).
|
|
|
|
|
|
|
|
- Copyright (c) 2017 Toru Niina
|
|
|
|
|
|
|
|
All rights reserved.
|