2020-02-29 20:34:08 +00:00
![banner ](docs/tomlplusplus-banner-small.png )
[![C++ ](https://img.shields.io/badge/c%2B%2B-17%2C%2020-informational )][cpp_compilers]
[![TOML ](https://img.shields.io/badge/TOML-v0.5.0-informational )][v0.5.0]
[![MIT license ](https://img.shields.io/badge/license-MIT-blue.svg )](./LICENSE)
[![Releases ](https://img.shields.io/github/release/marzer/tomlplusplus.svg )](https://github.com/marzer/tomlplusplus/releases)
[![Mentioned in Awesome C++ ](https://awesome.re/mentioned-badge.svg )](https://github.com/fffaraz/awesome-cpp)
[![CircleCI ](https://circleci.com/gh/marzer/tomlplusplus.svg?style=shield )](https://circleci.com/gh/marzer/tomlplusplus)
====
2020-02-25 22:09:02 +00:00
- Header-only
2020-02-27 17:52:10 +00:00
- [TOML v0.5.0 ](https://github.com/toml-lang/toml/blob/master/versions/en/toml-v0.5.0.md ), plus optional support for some [unreleased TOML language features]
2020-02-23 11:13:18 +00:00
- C++17 (plus some C++20 features where available, e.g. experimental support for char8_t strings)
2020-02-22 14:10:32 +00:00
- Proper UTF-8 handling (incl. BOM)
- Works with or without exceptions
- Doesn't require RTTI
- First-class support for serializing to JSON
2020-02-27 17:52:10 +00:00
- Tested on Clang, GCC and MSVC (VS2019)
2020-01-13 06:31:49 +00:00
< br >
# Example
2020-02-03 09:12:43 +00:00
Given a TOML file `configuration.toml` containing the following:
```toml
[library]
name = "toml++"
version = "0.1.0"
authors = ["Mark Gillard < mark @ notarealwebsite . com > "]
[dependencies]
cpp = 17
```
Reading it in C++ is easy with `toml++` :
2020-01-13 06:31:49 +00:00
```cpp
2020-02-03 09:12:43 +00:00
auto config = toml::parse_file( "configuration.toml" );
// get key-value pairs
2020-02-22 14:10:32 +00:00
std::string_view library_name = config["library"]["name"].value_or(""sv);
std::string_view library_version = config["library"]["version"].value_or(""sv);
std::string_view library_author = config["library"]["authors"][0].value_or(""sv);
int64_t depends_on_cpp_version = config["dependencies"]["cpp"].value_or(0);
2020-02-03 09:12:43 +00:00
2020-02-16 13:11:57 +00:00
// modify the data
config.insert_or_assign("alternatives", toml::array{
2020-02-18 21:29:59 +00:00
"cpptoml",
"toml11",
"Boost.TOML"
2020-02-16 13:11:57 +00:00
});
// iterate & visit over the data
for (auto [k, v] : config)
{
2020-02-18 21:29:59 +00:00
v.visit([](auto& node) noexcept
{
std::cout < < node < < std:endl ;
if constexpr (toml::is_string< decltype ( node ) > )
do_something_with_string_values(node);
});
2020-02-16 13:11:57 +00:00
}
// re-serialize as TOML
std::cout < < config < < std::endl ;
2020-02-03 09:12:43 +00:00
// re-serialize as JSON
std::cout < < toml::json_formatter { config } < < std::endl ;
2020-01-13 06:31:49 +00:00
```
2020-02-03 09:12:43 +00:00
You'll find some more code examples in the `examples` directory, and plenty more as part of the [API documentation].
2020-01-04 14:21:38 +00:00
< br >
2020-01-13 06:31:49 +00:00
# Adding toml++ to your project
2020-01-04 14:21:38 +00:00
`toml++` comes in two flavours: Regular and Single-header.
### Regular mode
1. Add `tomlplusplus/include` to your include paths
2. `#include <toml++/toml.h>`
### Single-header mode
2020-01-13 06:31:49 +00:00
1. Drop `toml.hpp` wherever you like in your source tree
2020-01-04 14:21:38 +00:00
2. There is no step two
2020-01-13 06:31:49 +00:00
The API is the same regardless of how you consume the library.
2020-01-04 14:21:38 +00:00
2020-01-13 06:31:49 +00:00
### Configuration
2020-02-03 09:12:43 +00:00
A number of configurable options are exposed in the form of preprocessor `#defines` . Most likely you
2020-02-27 17:52:10 +00:00
won't need to mess with these at all, but if you do, set them before including toml++.
2020-01-04 14:21:38 +00:00
2020-03-02 10:14:54 +00:00
| Option | Type | Default | Description |
|----------------------------|:--------------:|-----------------------------------|------------------------------------------------------------------------------------------------------------|
| `TOML_ALL_INLINE` | boolean | `1` | Disable this to explicitly control where toml++'s implementation is compiled (e.g. as part of a library). |
| `TOML_API` | define | undefined | API annotation to add to public symbols (e.g. `__declspec(dllexport) on Windows)` . |
| `TOML_ASSERT(expr)` | function macro | `assert(expr)` < br > (or undefined) | Sets the assert function used by the library. |
| `TOML_CHAR_8_STRINGS` | boolean | `0` | Uses C++20 [char8_t]-based strings as the toml string data type. **_Experimental!_** |
| `TOML_CONFIG_HEADER` | string literal | undefined | Includes the given header file before the rest of the library. |
| `TOML_IMPLEMENTATION` | define | undefined | Define this to enable compilation of the library's implementation. Meaningless if `TOML_ALL_INLINE` is `1` .|
| `TOML_LARGE_FILES` | boolean | `0` | Uses 32-bit integers for line and column indices (instead of 16-bit). |
| `TOML_SMALL_FLOAT_TYPE` | type name | undefined | If your codebase has an additional 'small' float type (e.g. half-precision), this tells toml++ about it. |
| `TOML_SMALL_INT_TYPE` | type name | undefined | If your codebase has an additional 'small' integer type (e.g. 24-bits), this tells toml++ about it. |
| `TOML_UNDEF_MACROS` | boolean | `1` | `#undefs` the library's internal macros at the end of the header. |
| `TOML_UNRELEASED_FEATURES` | boolean | `1` | Enables support for [unreleased TOML language features] not yet part of a [numbered version]. |
2020-01-04 14:21:38 +00:00
< br >
# TOML Language Support
At any given time `toml++` aims to implement whatever the [numbered version] of TOML is, with the
addition of unreleased features from the [TOML master] and some sane cherry-picks from the
[TOML issues list] where the discussion strongly indicates inclusion in a near-future release.
The library advertises the most recent numbered language version it fully supports via the preprocessor
2020-02-20 21:08:20 +00:00
defines `TOML_LANG_MAJOR` , `TOML_LANG_MINOR` and `TOML_LANG_PATCH` .
2020-01-04 14:21:38 +00:00
2020-01-13 06:31:49 +00:00
### **🔸Unreleased TOML features:**
2020-01-04 14:21:38 +00:00
- [#356]: Allow leading zeros in the exponent part of a float
- [#516]: Allow newlines and trailing commas in inline tables
- [#562]: Allow hex floatingpoint values
- [#567]: Clarify that control characters are not permitted in comments
- [#571]: Allow raw tabs inside strings
- [#644]: Support `+` in key names
- [#665]: Make arrays heterogeneous
- [#671]: Local time of day format should support `09:30` as opposed to `09:30:00`
- [#687]: Relax bare key restrictions to allow additional unicode characters
_These can be disabled (and thus strict [TOML v0.5.0] compliance enforced) by specifying
`TOML_UNRELEASED_FEATURES = 0` (see [Configuration ](#Configuration ))._
2020-01-13 06:31:49 +00:00
### **🔹TOML v0.5.0 and earlier:**
2020-02-03 09:12:43 +00:00
- All features supported.
2020-01-04 14:21:38 +00:00
< br >
# Contributing
2020-02-24 20:47:00 +00:00
Contributions are very welcome! Either by [reporting issues] or submitting pull requests.
If you wish to submit a pull request, please see [CONTRIBUTING] for all the details you need to get going.
2020-01-04 14:21:38 +00:00
< br >
# License and Attribution
2020-02-03 09:12:43 +00:00
`toml++` is licensed under the terms of the MIT license - see [LICENSE].
2020-01-04 14:21:38 +00:00
UTF-8 decoding is performed using a state machine based on Bjoern Hoehrmann's '[Flexible and Economical UTF-8 Decoder]',
2020-02-03 09:12:43 +00:00
which is also subject to the terms of the MIT license - see [LICENSE-utf8-decoder].
2020-01-04 14:21:38 +00:00
2020-02-20 21:08:20 +00:00
[API documentation]: https://marzer.github.io/tomlplusplus/
2020-02-25 22:09:02 +00:00
[unreleased TOML language features]: #unreleased -toml-features
2020-01-04 14:21:38 +00:00
[numbered version]: https://github.com/toml-lang/toml/releases
[char8_t]: https://en.cppreference.com/w/cpp/keyword/char8_t
[TOML master]: https://github.com/toml-lang/toml/blob/master/README.md
[TOML issues list]: https://github.com/toml-lang/toml/issues
[TOML v0.5.0]: https://github.com/toml-lang/toml/blob/master/versions/en/toml-v0.5.0.md
2020-01-13 06:31:49 +00:00
[v0.5.0]: https://github.com/toml-lang/toml/blob/master/versions/en/toml-v0.5.0.md
2020-02-25 22:09:02 +00:00
[CONTRIBUTING]: ./CONTRIBUTING.md
[LICENSE]: ./LICENSE
2020-01-04 14:21:38 +00:00
[Flexible and Economical UTF-8 Decoder]: http://bjoern.hoehrmann.de/utf-8/decoder/dfa/
2020-02-03 09:12:43 +00:00
[cpp_compilers]: https://en.cppreference.com/w/cpp/compiler_support
2020-02-24 20:47:00 +00:00
[reporting issues]: https://github.com/marzer/tomlplusplus/issues
2020-01-04 14:21:38 +00:00
[#356]: https://github.com/toml-lang/toml/issues/356
[#516]: https://github.com/toml-lang/toml/issues/516
[#562]: https://github.com/toml-lang/toml/issues/562
[#567]: https://github.com/toml-lang/toml/issues/567
[#571]: https://github.com/toml-lang/toml/issues/571
[#622]: https://github.com/toml-lang/toml/issues/622
[#644]: https://github.com/toml-lang/toml/issues/644
[#665]: https://github.com/toml-lang/toml/issues/665
[#671]: https://github.com/toml-lang/toml/issues/671
[#687]: https://github.com/toml-lang/toml/issues/687
2020-02-25 22:09:02 +00:00
[LICENSE-utf8-decoder]: ./LICENSE-utf8-decoder