2019-02-13 04:37:33 +00:00
|
|
|
// Copyright Toru Niina 2019.
|
|
|
|
// Distributed under the MIT License.
|
|
|
|
#ifndef TOML11_SERIALIZER_HPP
|
|
|
|
#define TOML11_SERIALIZER_HPP
|
|
|
|
#include "value.hpp"
|
|
|
|
#include "lexer.hpp"
|
|
|
|
#include <limits>
|
2019-03-12 14:37:46 +00:00
|
|
|
#include <cstdio>
|
2019-02-13 04:37:33 +00:00
|
|
|
|
|
|
|
namespace toml
|
|
|
|
{
|
|
|
|
|
2019-06-28 08:47:19 +00:00
|
|
|
// This function serialize a key. It checks a string is a bare key and
|
|
|
|
// escapes special characters if the string is not compatible to a bare key.
|
|
|
|
// ```cpp
|
|
|
|
// std::string k("non.bare.key"); // the key itself includes `.`s.
|
|
|
|
// std::string formatted = toml::format_key(k);
|
|
|
|
// assert(formatted == "\"non.bare.key\"");
|
|
|
|
// ```
|
|
|
|
//
|
|
|
|
// This function is exposed to make it easy to write a user-defined serializer.
|
|
|
|
// Since toml restricts characters available in a bare key, generally a string
|
|
|
|
// should be escaped. But checking whether a string needs to be surrounded by
|
|
|
|
// a `"` and escaping some special character is boring.
|
2020-03-13 04:55:14 +00:00
|
|
|
template<typename charT, typename traits, typename Alloc>
|
|
|
|
std::basic_string<charT, traits, Alloc>
|
|
|
|
format_key(const std::basic_string<charT, traits, Alloc>& key)
|
2019-06-28 08:47:19 +00:00
|
|
|
{
|
2020-03-13 04:55:14 +00:00
|
|
|
// check the key can be a bare (unquoted) key
|
2019-06-28 08:47:19 +00:00
|
|
|
detail::location<toml::key> loc(key, key);
|
|
|
|
detail::lex_unquoted_key::invoke(loc);
|
|
|
|
if(loc.iter() == loc.end())
|
|
|
|
{
|
|
|
|
return key; // all the tokens are consumed. the key is unquoted-key.
|
|
|
|
}
|
2020-03-13 04:55:14 +00:00
|
|
|
|
|
|
|
//if it includes special characters, then format it in a "quoted" key.
|
|
|
|
std::basic_string<charT, traits, Alloc> serialized("\"");
|
2019-06-28 08:47:19 +00:00
|
|
|
for(const char c : key)
|
|
|
|
{
|
|
|
|
switch(c)
|
|
|
|
{
|
2020-03-13 04:55:14 +00:00
|
|
|
case '\\': {serialized += "\\\\"; break;}
|
|
|
|
case '\"': {serialized += "\\\""; break;}
|
|
|
|
case '\b': {serialized += "\\b"; break;}
|
|
|
|
case '\t': {serialized += "\\t"; break;}
|
|
|
|
case '\f': {serialized += "\\f"; break;}
|
|
|
|
case '\n': {serialized += "\\n"; break;}
|
|
|
|
case '\r': {serialized += "\\r"; break;}
|
|
|
|
default : {serialized += c; break;}
|
2019-06-28 08:47:19 +00:00
|
|
|
}
|
|
|
|
}
|
2020-03-13 04:55:14 +00:00
|
|
|
serialized += "\"";
|
|
|
|
return serialized;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename charT, typename traits, typename Alloc>
|
|
|
|
std::basic_string<charT, traits, Alloc>
|
|
|
|
format_keys(const std::vector<std::basic_string<charT, traits, Alloc>>& keys)
|
|
|
|
{
|
|
|
|
std::basic_string<charT, traits, Alloc> serialized;
|
|
|
|
if(keys.empty()) {return serialized;}
|
|
|
|
|
|
|
|
for(const auto& ky : keys)
|
|
|
|
{
|
|
|
|
serialized += format_key(ky);
|
|
|
|
serialized += charT('.');
|
|
|
|
}
|
|
|
|
serialized.pop_back(); // remove the last dot '.'
|
|
|
|
return serialized;
|
2019-06-28 08:47:19 +00:00
|
|
|
}
|
|
|
|
|
2020-03-12 04:46:17 +00:00
|
|
|
template<typename Value>
|
2019-02-13 04:37:33 +00:00
|
|
|
struct serializer
|
|
|
|
{
|
2020-03-12 04:46:17 +00:00
|
|
|
static_assert(detail::is_basic_value<Value>::value,
|
|
|
|
"toml::serializer is for toml::value and its variants, "
|
|
|
|
"toml::basic_value<...>.");
|
|
|
|
|
|
|
|
using value_type = Value;
|
2019-06-17 11:34:42 +00:00
|
|
|
using key_type = typename value_type::key_type ;
|
|
|
|
using comment_type = typename value_type::comment_type ;
|
|
|
|
using boolean_type = typename value_type::boolean_type ;
|
|
|
|
using integer_type = typename value_type::integer_type ;
|
|
|
|
using floating_type = typename value_type::floating_type ;
|
|
|
|
using string_type = typename value_type::string_type ;
|
|
|
|
using local_time_type = typename value_type::local_time_type ;
|
|
|
|
using local_date_type = typename value_type::local_date_type ;
|
|
|
|
using local_datetime_type = typename value_type::local_datetime_type ;
|
|
|
|
using offset_datetime_type = typename value_type::offset_datetime_type;
|
|
|
|
using array_type = typename value_type::array_type ;
|
|
|
|
using table_type = typename value_type::table_type ;
|
|
|
|
|
2019-06-20 14:59:16 +00:00
|
|
|
serializer(const std::size_t w = 80u,
|
2019-02-13 04:37:33 +00:00
|
|
|
const int float_prec = std::numeric_limits<toml::floating>::max_digits10,
|
|
|
|
const bool can_be_inlined = false,
|
2019-06-29 05:59:18 +00:00
|
|
|
const bool no_comment = false,
|
2019-02-13 04:37:33 +00:00
|
|
|
std::vector<toml::key> ks = {})
|
2019-06-29 05:59:18 +00:00
|
|
|
: can_be_inlined_(can_be_inlined), no_comment_(no_comment),
|
|
|
|
float_prec_(float_prec), width_(w), keys_(std::move(ks))
|
2019-02-13 04:37:33 +00:00
|
|
|
{}
|
|
|
|
~serializer() = default;
|
|
|
|
|
2019-06-17 11:34:42 +00:00
|
|
|
std::string operator()(const boolean_type& b) const
|
2019-02-13 04:37:33 +00:00
|
|
|
{
|
|
|
|
return b ? "true" : "false";
|
|
|
|
}
|
2019-06-17 11:34:42 +00:00
|
|
|
std::string operator()(const integer_type i) const
|
2019-02-13 04:37:33 +00:00
|
|
|
{
|
|
|
|
return std::to_string(i);
|
|
|
|
}
|
2019-06-17 11:34:42 +00:00
|
|
|
std::string operator()(const floating_type f) const
|
2019-02-13 04:37:33 +00:00
|
|
|
{
|
2019-03-12 14:37:46 +00:00
|
|
|
const auto fmt = "%.*g";
|
2019-03-12 16:17:27 +00:00
|
|
|
const auto bsz = std::snprintf(nullptr, 0, fmt, this->float_prec_, f);
|
2019-06-20 14:59:16 +00:00
|
|
|
// +1 for null character(\0)
|
|
|
|
std::vector<char> buf(static_cast<std::size_t>(bsz + 1), '\0');
|
2019-03-12 16:17:27 +00:00
|
|
|
std::snprintf(buf.data(), buf.size(), fmt, this->float_prec_, f);
|
2019-02-13 04:37:33 +00:00
|
|
|
|
2019-03-15 10:30:36 +00:00
|
|
|
std::string token(buf.begin(), std::prev(buf.end()));
|
2019-02-13 04:37:33 +00:00
|
|
|
if(token.back() == '.') // 1. => 1.0
|
|
|
|
{
|
|
|
|
token += '0';
|
|
|
|
}
|
2019-06-20 14:59:16 +00:00
|
|
|
|
|
|
|
const auto e = std::find_if(
|
|
|
|
token.cbegin(), token.cend(), [](const char c) noexcept -> bool {
|
|
|
|
return c == 'e' || c == 'E';
|
2019-02-13 04:37:33 +00:00
|
|
|
});
|
2019-06-20 14:59:16 +00:00
|
|
|
const auto has_exponent = (token.cend() != e);
|
|
|
|
const auto has_fraction = (token.cend() != std::find(
|
|
|
|
token.cbegin(), token.cend(), '.'));
|
|
|
|
|
|
|
|
if(!has_exponent && !has_fraction)
|
|
|
|
{
|
|
|
|
// the resulting value does not have any float specific part!
|
|
|
|
token += ".0";
|
2019-02-13 04:37:33 +00:00
|
|
|
}
|
|
|
|
return token;
|
|
|
|
}
|
2019-06-17 11:34:42 +00:00
|
|
|
std::string operator()(const string_type& s) const
|
2019-02-13 04:37:33 +00:00
|
|
|
{
|
|
|
|
if(s.kind == string_t::basic)
|
|
|
|
{
|
2020-02-05 13:42:10 +00:00
|
|
|
if(std::find(s.str.cbegin(), s.str.cend(), '\n') != s.str.cend() ||
|
|
|
|
std::find(s.str.cbegin(), s.str.cend(), '\"') != s.str.cend())
|
2019-02-13 04:37:33 +00:00
|
|
|
{
|
2020-02-05 13:42:10 +00:00
|
|
|
// if linefeed or double-quote is contained,
|
|
|
|
// make it multiline basic string.
|
|
|
|
const auto escaped = this->escape_ml_basic_string(s.str);
|
|
|
|
std::string open("\"\"\"");
|
|
|
|
std::string close("\"\"\"");
|
|
|
|
if(escaped.find('\n') != std::string::npos ||
|
|
|
|
this->width_ < escaped.size() + 6)
|
|
|
|
{
|
|
|
|
// if the string body contains newline or is enough long,
|
|
|
|
// add newlines after and before delimiters.
|
|
|
|
open += "\n";
|
|
|
|
close = std::string("\\\n") + close;
|
|
|
|
}
|
|
|
|
return open + escaped + close;
|
2019-02-13 04:37:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// no linefeed. try to make it oneline-string.
|
|
|
|
std::string oneline = this->escape_basic_string(s.str);
|
|
|
|
if(oneline.size() + 2 < width_ || width_ < 2)
|
|
|
|
{
|
|
|
|
const std::string quote("\"");
|
|
|
|
return quote + oneline + quote;
|
|
|
|
}
|
|
|
|
|
|
|
|
// the line is too long compared to the specified width.
|
|
|
|
// split it into multiple lines.
|
|
|
|
std::string token("\"\"\"\n");
|
|
|
|
while(!oneline.empty())
|
|
|
|
{
|
|
|
|
if(oneline.size() < width_)
|
|
|
|
{
|
|
|
|
token += oneline;
|
|
|
|
oneline.clear();
|
|
|
|
}
|
|
|
|
else if(oneline.at(width_-2) == '\\')
|
|
|
|
{
|
|
|
|
token += oneline.substr(0, width_-2);
|
|
|
|
token += "\\\n";
|
|
|
|
oneline.erase(0, width_-2);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
token += oneline.substr(0, width_-1);
|
|
|
|
token += "\\\n";
|
|
|
|
oneline.erase(0, width_-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return token + std::string("\\\n\"\"\"");
|
|
|
|
}
|
|
|
|
else // the string `s` is literal-string.
|
|
|
|
{
|
|
|
|
if(std::find(s.str.cbegin(), s.str.cend(), '\n') != s.str.cend() ||
|
|
|
|
std::find(s.str.cbegin(), s.str.cend(), '\'') != s.str.cend() )
|
|
|
|
{
|
2020-02-05 13:39:08 +00:00
|
|
|
std::string open("'''");
|
|
|
|
if(this->width_ + 6 < s.str.size())
|
|
|
|
{
|
|
|
|
open += '\n'; // the first newline is ignored by TOML spec
|
|
|
|
}
|
2019-02-13 04:37:33 +00:00
|
|
|
const std::string close("'''");
|
|
|
|
return open + s.str + close;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const std::string quote("'");
|
|
|
|
return quote + s.str + quote;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-17 11:34:42 +00:00
|
|
|
std::string operator()(const local_date_type& d) const
|
2019-02-13 04:37:33 +00:00
|
|
|
{
|
|
|
|
std::ostringstream oss;
|
|
|
|
oss << d;
|
|
|
|
return oss.str();
|
|
|
|
}
|
2019-06-17 11:34:42 +00:00
|
|
|
std::string operator()(const local_time_type& t) const
|
2019-02-13 04:37:33 +00:00
|
|
|
{
|
|
|
|
std::ostringstream oss;
|
|
|
|
oss << t;
|
|
|
|
return oss.str();
|
|
|
|
}
|
2019-06-17 11:34:42 +00:00
|
|
|
std::string operator()(const local_datetime_type& dt) const
|
2019-02-13 04:37:33 +00:00
|
|
|
{
|
|
|
|
std::ostringstream oss;
|
|
|
|
oss << dt;
|
|
|
|
return oss.str();
|
|
|
|
}
|
2019-06-17 11:34:42 +00:00
|
|
|
std::string operator()(const offset_datetime_type& odt) const
|
2019-02-13 04:37:33 +00:00
|
|
|
{
|
|
|
|
std::ostringstream oss;
|
|
|
|
oss << odt;
|
|
|
|
return oss.str();
|
|
|
|
}
|
|
|
|
|
2019-06-17 11:34:42 +00:00
|
|
|
std::string operator()(const array_type& v) const
|
2019-02-13 04:37:33 +00:00
|
|
|
{
|
2019-05-29 12:20:22 +00:00
|
|
|
if(!v.empty() && v.front().is_table())// v is an array of tables
|
2019-02-13 04:37:33 +00:00
|
|
|
{
|
|
|
|
// if it's not inlined, we need to add `[[table.key]]`.
|
2019-06-17 13:13:58 +00:00
|
|
|
// but if it can be inlined,
|
|
|
|
// ```
|
|
|
|
// table.key = [
|
|
|
|
// {...},
|
|
|
|
// # comment
|
|
|
|
// {...},
|
|
|
|
// ]
|
|
|
|
// ```
|
2019-02-13 04:37:33 +00:00
|
|
|
if(this->can_be_inlined_)
|
|
|
|
{
|
|
|
|
std::string token;
|
|
|
|
if(!keys_.empty())
|
|
|
|
{
|
2020-03-13 04:55:14 +00:00
|
|
|
token += format_key(keys_.back());
|
2019-02-13 04:37:33 +00:00
|
|
|
token += " = ";
|
|
|
|
}
|
2019-06-17 13:13:58 +00:00
|
|
|
bool failed = false;
|
2019-02-13 04:37:33 +00:00
|
|
|
token += "[\n";
|
|
|
|
for(const auto& item : v)
|
|
|
|
{
|
2019-06-17 13:13:58 +00:00
|
|
|
// if an element of the table has a comment, the table
|
|
|
|
// cannot be inlined.
|
|
|
|
if(this->has_comment_inside(item.as_table()))
|
|
|
|
{
|
|
|
|
failed = true;
|
|
|
|
break;
|
|
|
|
}
|
2019-06-29 05:59:18 +00:00
|
|
|
if(!no_comment_)
|
2019-06-17 13:13:58 +00:00
|
|
|
{
|
2019-06-29 05:59:18 +00:00
|
|
|
for(const auto& c : item.comments())
|
|
|
|
{
|
|
|
|
token += '#';
|
|
|
|
token += c;
|
|
|
|
token += '\n';
|
|
|
|
}
|
2019-06-17 13:13:58 +00:00
|
|
|
}
|
|
|
|
|
2019-06-17 11:34:42 +00:00
|
|
|
const auto t = this->make_inline_table(item.as_table());
|
2019-02-13 04:37:33 +00:00
|
|
|
|
|
|
|
if(t.size() + 1 > width_ || // +1 for the last comma {...},
|
|
|
|
std::find(t.cbegin(), t.cend(), '\n') != t.cend())
|
|
|
|
{
|
2019-06-17 13:13:58 +00:00
|
|
|
failed = true;
|
2019-02-13 04:37:33 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
token += t;
|
|
|
|
token += ",\n";
|
|
|
|
}
|
2019-06-17 13:13:58 +00:00
|
|
|
if(!failed)
|
2019-02-13 04:37:33 +00:00
|
|
|
{
|
|
|
|
token += "]\n";
|
|
|
|
return token;
|
|
|
|
}
|
2019-06-17 13:13:58 +00:00
|
|
|
// if failed, serialize them as [[array.of.tables]].
|
2019-02-13 04:37:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string token;
|
|
|
|
for(const auto& item : v)
|
|
|
|
{
|
2019-06-29 05:59:18 +00:00
|
|
|
if(!no_comment_)
|
2019-06-17 13:13:58 +00:00
|
|
|
{
|
2019-06-29 05:59:18 +00:00
|
|
|
for(const auto& c : item.comments())
|
|
|
|
{
|
|
|
|
token += '#';
|
|
|
|
token += c;
|
|
|
|
token += '\n';
|
|
|
|
}
|
2019-06-17 13:13:58 +00:00
|
|
|
}
|
2019-02-13 04:37:33 +00:00
|
|
|
token += "[[";
|
2020-03-13 04:55:14 +00:00
|
|
|
token += format_keys(keys_);
|
2019-02-13 04:37:33 +00:00
|
|
|
token += "]]\n";
|
2019-06-17 11:34:42 +00:00
|
|
|
token += this->make_multiline_table(item.as_table());
|
2019-02-13 04:37:33 +00:00
|
|
|
}
|
|
|
|
return token;
|
|
|
|
}
|
2019-02-14 06:48:05 +00:00
|
|
|
if(v.empty())
|
|
|
|
{
|
|
|
|
return std::string("[]");
|
|
|
|
}
|
2019-02-13 04:37:33 +00:00
|
|
|
|
2019-06-17 13:13:58 +00:00
|
|
|
// not an array of tables. normal array.
|
|
|
|
// first, try to make it inline if none of the elements have a comment.
|
|
|
|
if(!this->has_comment_inside(v))
|
2019-02-13 04:37:33 +00:00
|
|
|
{
|
|
|
|
const auto inl = this->make_inline_array(v);
|
|
|
|
if(inl.size() < this->width_ &&
|
|
|
|
std::find(inl.cbegin(), inl.cend(), '\n') == inl.cend())
|
|
|
|
{
|
|
|
|
return inl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-17 13:13:58 +00:00
|
|
|
// if the length exceeds this->width_, print multiline array.
|
|
|
|
// key = [
|
|
|
|
// # ...
|
|
|
|
// 42,
|
|
|
|
// ...
|
|
|
|
// ]
|
2019-02-13 04:37:33 +00:00
|
|
|
std::string token;
|
2019-02-14 06:48:05 +00:00
|
|
|
std::string current_line;
|
2019-02-13 04:37:33 +00:00
|
|
|
token += "[\n";
|
|
|
|
for(const auto& item : v)
|
|
|
|
{
|
2019-06-29 05:59:18 +00:00
|
|
|
if(!item.comments().empty() && !no_comment_)
|
2019-06-17 13:13:58 +00:00
|
|
|
{
|
|
|
|
// if comment exists, the element must be the only element in the line.
|
|
|
|
// e.g. the following is not allowed.
|
|
|
|
// ```toml
|
|
|
|
// array = [
|
|
|
|
// # comment for what?
|
|
|
|
// 1, 2, 3, 4, 5
|
|
|
|
// ]
|
|
|
|
// ```
|
|
|
|
if(!current_line.empty())
|
|
|
|
{
|
|
|
|
if(current_line.back() != '\n')
|
|
|
|
{
|
|
|
|
current_line += '\n';
|
|
|
|
}
|
|
|
|
token += current_line;
|
|
|
|
current_line.clear();
|
|
|
|
}
|
|
|
|
for(const auto& c : item.comments())
|
|
|
|
{
|
|
|
|
token += '#';
|
|
|
|
token += c;
|
|
|
|
token += '\n';
|
|
|
|
}
|
|
|
|
token += toml::visit(*this, item);
|
|
|
|
if(token.back() == '\n') {token.pop_back();}
|
|
|
|
token += ",\n";
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
std::string next_elem;
|
|
|
|
next_elem += toml::visit(*this, item);
|
2019-02-14 07:17:32 +00:00
|
|
|
|
2019-06-17 13:13:58 +00:00
|
|
|
// comma before newline.
|
|
|
|
if(next_elem.back() == '\n') {next_elem.pop_back();}
|
|
|
|
|
|
|
|
// if current line does not exceeds the width limit, continue.
|
2019-02-14 06:48:05 +00:00
|
|
|
if(current_line.size() + next_elem.size() + 1 < this->width_)
|
|
|
|
{
|
|
|
|
current_line += next_elem;
|
|
|
|
current_line += ',';
|
|
|
|
}
|
|
|
|
else if(current_line.empty())
|
|
|
|
{
|
2019-06-17 13:13:58 +00:00
|
|
|
// if current line was empty, force put the next_elem because
|
|
|
|
// next_elem is not splittable
|
2019-02-14 06:48:05 +00:00
|
|
|
token += next_elem;
|
|
|
|
token += ",\n";
|
2019-06-17 13:13:58 +00:00
|
|
|
// current_line is kept empty
|
2019-02-14 06:48:05 +00:00
|
|
|
}
|
2019-06-17 13:13:58 +00:00
|
|
|
else // reset current_line
|
2019-02-14 06:48:05 +00:00
|
|
|
{
|
2019-02-14 07:17:32 +00:00
|
|
|
assert(current_line.back() == ',');
|
2019-02-14 06:48:05 +00:00
|
|
|
token += current_line;
|
2019-02-14 07:17:32 +00:00
|
|
|
token += '\n';
|
2019-02-14 06:48:05 +00:00
|
|
|
current_line = next_elem;
|
2019-02-14 07:17:32 +00:00
|
|
|
current_line += ',';
|
2019-02-14 06:48:05 +00:00
|
|
|
}
|
2019-02-13 04:37:33 +00:00
|
|
|
}
|
2019-06-17 16:27:52 +00:00
|
|
|
if(!current_line.empty())
|
|
|
|
{
|
|
|
|
if(current_line.back() != '\n') {current_line += '\n';}
|
|
|
|
token += current_line;
|
|
|
|
}
|
2019-02-13 04:37:33 +00:00
|
|
|
token += "]\n";
|
|
|
|
return token;
|
|
|
|
}
|
|
|
|
|
2019-06-17 11:34:42 +00:00
|
|
|
// templatize for any table-like container
|
|
|
|
std::string operator()(const table_type& v) const
|
2019-02-13 04:37:33 +00:00
|
|
|
{
|
2019-06-17 13:13:58 +00:00
|
|
|
// if an element has a comment, then it can't be inlined.
|
|
|
|
// table = {# how can we write a comment for this? key = "value"}
|
|
|
|
if(this->can_be_inlined_ && !(this->has_comment_inside(v)))
|
2019-02-13 04:37:33 +00:00
|
|
|
{
|
|
|
|
std::string token;
|
|
|
|
if(!this->keys_.empty())
|
|
|
|
{
|
2020-03-13 04:55:14 +00:00
|
|
|
token += format_key(this->keys_.back());
|
2019-02-13 04:37:33 +00:00
|
|
|
token += " = ";
|
|
|
|
}
|
|
|
|
token += this->make_inline_table(v);
|
2019-06-29 07:39:54 +00:00
|
|
|
if(token.size() < this->width_ &&
|
|
|
|
token.end() == std::find(token.begin(), token.end(), '\n'))
|
2019-02-13 04:37:33 +00:00
|
|
|
{
|
|
|
|
return token;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string token;
|
|
|
|
if(!keys_.empty())
|
|
|
|
{
|
|
|
|
token += '[';
|
2020-03-13 04:55:14 +00:00
|
|
|
token += format_keys(keys_);
|
2019-02-13 04:37:33 +00:00
|
|
|
token += "]\n";
|
|
|
|
}
|
|
|
|
token += this->make_multiline_table(v);
|
|
|
|
return token;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
std::string escape_basic_string(const std::string& s) const
|
|
|
|
{
|
|
|
|
//XXX assuming `s` is a valid utf-8 sequence.
|
|
|
|
std::string retval;
|
|
|
|
for(const char c : s)
|
|
|
|
{
|
|
|
|
switch(c)
|
|
|
|
{
|
|
|
|
case '\\': {retval += "\\\\"; break;}
|
|
|
|
case '\"': {retval += "\\\""; break;}
|
|
|
|
case '\b': {retval += "\\b"; break;}
|
|
|
|
case '\t': {retval += "\\t"; break;}
|
|
|
|
case '\f': {retval += "\\f"; break;}
|
|
|
|
case '\n': {retval += "\\n"; break;}
|
|
|
|
case '\r': {retval += "\\r"; break;}
|
|
|
|
default : {retval += c; break;}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string escape_ml_basic_string(const std::string& s) const
|
|
|
|
{
|
|
|
|
std::string retval;
|
|
|
|
for(auto i=s.cbegin(), e=s.cend(); i!=e; ++i)
|
|
|
|
{
|
|
|
|
switch(*i)
|
|
|
|
{
|
|
|
|
case '\\': {retval += "\\\\"; break;}
|
2020-02-05 13:42:10 +00:00
|
|
|
// One or two consecutive "s are allowed.
|
|
|
|
// Later we will check there are no three consecutive "s.
|
|
|
|
// case '\"': {retval += "\\\""; break;}
|
2019-02-13 04:37:33 +00:00
|
|
|
case '\b': {retval += "\\b"; break;}
|
|
|
|
case '\t': {retval += "\\t"; break;}
|
|
|
|
case '\f': {retval += "\\f"; break;}
|
|
|
|
case '\n': {retval += "\n"; break;}
|
|
|
|
case '\r':
|
|
|
|
{
|
|
|
|
if(std::next(i) != e && *std::next(i) == '\n')
|
|
|
|
{
|
|
|
|
retval += "\r\n";
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
retval += "\\r";
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: {retval += *i; break;}
|
|
|
|
}
|
|
|
|
}
|
2020-02-05 13:42:10 +00:00
|
|
|
// Only 1 or 2 consecutive `"`s are allowed in multiline basic string.
|
|
|
|
// 3 consecutive `"`s are considered as a closing delimiter.
|
|
|
|
// We need to check if there are 3 or more consecutive `"`s and insert
|
|
|
|
// backslash to break them down into several short `"`s like the `str6`
|
|
|
|
// in the following example.
|
|
|
|
// ```toml
|
|
|
|
// str4 = """Here are two quotation marks: "". Simple enough."""
|
|
|
|
// # str5 = """Here are three quotation marks: """.""" # INVALID
|
|
|
|
// str5 = """Here are three quotation marks: ""\"."""
|
|
|
|
// str6 = """Here are fifteen quotation marks: ""\"""\"""\"""\"""\"."""
|
|
|
|
// ```
|
|
|
|
auto found_3_quotes = retval.find("\"\"\"");
|
|
|
|
while(found_3_quotes != std::string::npos)
|
|
|
|
{
|
|
|
|
retval.replace(found_3_quotes, 3, "\"\"\\\"");
|
|
|
|
found_3_quotes = retval.find("\"\"\"");
|
|
|
|
}
|
2019-02-13 04:37:33 +00:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2019-06-17 13:13:58 +00:00
|
|
|
// if an element of a table or an array has a comment, it cannot be inlined.
|
|
|
|
bool has_comment_inside(const array_type& a) const noexcept
|
|
|
|
{
|
2019-06-29 05:59:18 +00:00
|
|
|
// if no_comment is set, comments would not be written.
|
|
|
|
if(this->no_comment_) {return false;}
|
|
|
|
|
2019-06-17 13:13:58 +00:00
|
|
|
for(const auto& v : a)
|
|
|
|
{
|
|
|
|
if(!v.comments().empty()) {return true;}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
bool has_comment_inside(const table_type& t) const noexcept
|
|
|
|
{
|
2019-06-29 05:59:18 +00:00
|
|
|
// if no_comment is set, comments would not be written.
|
|
|
|
if(this->no_comment_) {return false;}
|
|
|
|
|
2019-06-17 13:13:58 +00:00
|
|
|
for(const auto& kv : t)
|
|
|
|
{
|
|
|
|
if(!kv.second.comments().empty()) {return true;}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-06-17 11:34:42 +00:00
|
|
|
std::string make_inline_array(const array_type& v) const
|
2019-02-13 04:37:33 +00:00
|
|
|
{
|
2019-06-17 13:13:58 +00:00
|
|
|
assert(!has_comment_inside(v));
|
2019-02-13 04:37:33 +00:00
|
|
|
std::string token;
|
|
|
|
token += '[';
|
|
|
|
bool is_first = true;
|
|
|
|
for(const auto& item : v)
|
|
|
|
{
|
|
|
|
if(is_first) {is_first = false;} else {token += ',';}
|
|
|
|
token += visit(serializer(std::numeric_limits<std::size_t>::max(),
|
|
|
|
this->float_prec_, true), item);
|
|
|
|
}
|
|
|
|
token += ']';
|
|
|
|
return token;
|
|
|
|
}
|
|
|
|
|
2019-06-17 11:34:42 +00:00
|
|
|
std::string make_inline_table(const table_type& v) const
|
2019-02-13 04:37:33 +00:00
|
|
|
{
|
2019-06-17 13:13:58 +00:00
|
|
|
assert(!has_comment_inside(v));
|
2019-02-13 04:37:33 +00:00
|
|
|
assert(this->can_be_inlined_);
|
|
|
|
std::string token;
|
|
|
|
token += '{';
|
|
|
|
bool is_first = true;
|
|
|
|
for(const auto& kv : v)
|
|
|
|
{
|
|
|
|
// in inline tables, trailing comma is not allowed (toml-lang #569).
|
|
|
|
if(is_first) {is_first = false;} else {token += ',';}
|
2020-03-13 04:55:14 +00:00
|
|
|
token += format_key(kv.first);
|
2019-02-13 04:37:33 +00:00
|
|
|
token += '=';
|
|
|
|
token += visit(serializer(std::numeric_limits<std::size_t>::max(),
|
|
|
|
this->float_prec_, true), kv.second);
|
|
|
|
}
|
|
|
|
token += '}';
|
|
|
|
return token;
|
|
|
|
}
|
|
|
|
|
2019-06-17 11:34:42 +00:00
|
|
|
std::string make_multiline_table(const table_type& v) const
|
2019-02-13 04:37:33 +00:00
|
|
|
{
|
|
|
|
std::string token;
|
|
|
|
|
|
|
|
// print non-table stuff first. because after printing [foo.bar], the
|
|
|
|
// remaining non-table values will be assigned into [foo.bar], not [foo]
|
2020-02-11 12:13:55 +00:00
|
|
|
for(const auto& kv : v)
|
2019-02-13 04:37:33 +00:00
|
|
|
{
|
2019-05-29 12:20:22 +00:00
|
|
|
if(kv.second.is_table() || is_array_of_tables(kv.second))
|
2019-02-13 04:37:33 +00:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-06-29 05:59:18 +00:00
|
|
|
if(!kv.second.comments().empty() && !no_comment_)
|
2019-06-17 13:13:58 +00:00
|
|
|
{
|
|
|
|
for(const auto& c : kv.second.comments())
|
|
|
|
{
|
|
|
|
token += '#';
|
|
|
|
token += c;
|
|
|
|
token += '\n';
|
|
|
|
}
|
|
|
|
}
|
2020-03-13 04:55:14 +00:00
|
|
|
const auto key_and_sep = format_key(kv.first) + " = ";
|
2019-02-14 06:49:13 +00:00
|
|
|
const auto residual_width = (this->width_ > key_and_sep.size()) ?
|
|
|
|
this->width_ - key_and_sep.size() : 0;
|
2019-02-13 04:37:33 +00:00
|
|
|
token += key_and_sep;
|
|
|
|
token += visit(serializer(residual_width, this->float_prec_, true),
|
|
|
|
kv.second);
|
2019-02-14 07:17:04 +00:00
|
|
|
if(token.back() != '\n')
|
|
|
|
{
|
|
|
|
token += '\n';
|
|
|
|
}
|
2019-02-13 04:37:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// normal tables / array of tables
|
|
|
|
|
|
|
|
// after multiline table appeared, the other tables cannot be inline
|
|
|
|
// because the table would be assigned into the table.
|
|
|
|
// [foo]
|
|
|
|
// ...
|
|
|
|
// bar = {...} # <- bar will be a member of [foo].
|
|
|
|
bool multiline_table_printed = false;
|
|
|
|
for(const auto& kv : v)
|
|
|
|
{
|
2019-05-29 12:20:22 +00:00
|
|
|
if(!kv.second.is_table() && !is_array_of_tables(kv.second))
|
2019-02-13 04:37:33 +00:00
|
|
|
{
|
|
|
|
continue; // other stuff are already serialized. skip them.
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<toml::key> ks(this->keys_);
|
|
|
|
ks.push_back(kv.first);
|
|
|
|
|
2019-06-29 05:59:18 +00:00
|
|
|
auto tmp = visit(serializer(this->width_, this->float_prec_,
|
|
|
|
!multiline_table_printed, this->no_comment_, ks),
|
2019-02-13 04:37:33 +00:00
|
|
|
kv.second);
|
|
|
|
|
|
|
|
if((!multiline_table_printed) &&
|
|
|
|
std::find(tmp.cbegin(), tmp.cend(), '\n') != tmp.cend())
|
|
|
|
{
|
|
|
|
multiline_table_printed = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// still inline tables only.
|
|
|
|
tmp += '\n';
|
|
|
|
}
|
2019-06-17 13:13:58 +00:00
|
|
|
|
2019-06-29 05:59:18 +00:00
|
|
|
if(!kv.second.comments().empty() && !no_comment_)
|
2019-06-17 13:13:58 +00:00
|
|
|
{
|
|
|
|
for(const auto& c : kv.second.comments())
|
|
|
|
{
|
|
|
|
token += '#';
|
|
|
|
token += c;
|
|
|
|
token += '\n';
|
|
|
|
}
|
|
|
|
}
|
2019-02-13 04:37:33 +00:00
|
|
|
token += tmp;
|
|
|
|
}
|
|
|
|
return token;
|
|
|
|
}
|
|
|
|
|
2019-06-17 11:34:42 +00:00
|
|
|
bool is_array_of_tables(const value_type& v) const
|
2019-02-13 04:37:33 +00:00
|
|
|
{
|
2019-05-29 12:20:22 +00:00
|
|
|
if(!v.is_array()) {return false;}
|
2019-05-29 12:22:32 +00:00
|
|
|
const auto& a = v.as_array();
|
2019-05-29 12:20:22 +00:00
|
|
|
return !a.empty() && a.front().is_table();
|
2019-02-13 04:37:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
bool can_be_inlined_;
|
2019-06-29 05:59:18 +00:00
|
|
|
bool no_comment_;
|
2019-02-13 04:37:33 +00:00
|
|
|
int float_prec_;
|
2019-02-14 06:47:00 +00:00
|
|
|
std::size_t width_;
|
2019-02-13 04:37:33 +00:00
|
|
|
std::vector<toml::key> keys_;
|
|
|
|
};
|
|
|
|
|
2019-06-17 11:34:42 +00:00
|
|
|
template<typename C,
|
|
|
|
template<typename ...> class M, template<typename ...> class V>
|
|
|
|
std::string
|
2019-06-20 14:59:16 +00:00
|
|
|
format(const basic_value<C, M, V>& v, std::size_t w = 80u,
|
2019-03-19 14:25:26 +00:00
|
|
|
int fprec = std::numeric_limits<toml::floating>::max_digits10,
|
2019-06-29 05:59:18 +00:00
|
|
|
bool no_comment = false, bool force_inline = false)
|
2019-02-13 04:37:33 +00:00
|
|
|
{
|
2020-03-12 04:46:17 +00:00
|
|
|
using value_type = basic_value<C, M, V>;
|
2019-03-19 12:24:51 +00:00
|
|
|
// if value is a table, it is considered to be a root object.
|
2019-06-17 11:34:42 +00:00
|
|
|
// the root object can't be an inline table.
|
|
|
|
if(v.is_table())
|
|
|
|
{
|
|
|
|
std::ostringstream oss;
|
|
|
|
if(!v.comments().empty())
|
|
|
|
{
|
2019-06-28 05:58:47 +00:00
|
|
|
oss << v.comments();
|
|
|
|
oss << '\n'; // to split the file comment from the first element
|
2019-06-17 11:34:42 +00:00
|
|
|
}
|
2020-03-12 04:46:17 +00:00
|
|
|
oss << visit(serializer<value_type>(w, fprec, no_comment, false), v);
|
2019-06-17 11:34:42 +00:00
|
|
|
return oss.str();
|
|
|
|
}
|
2020-03-12 04:46:17 +00:00
|
|
|
return visit(serializer<value_type>(w, fprec, force_inline), v);
|
2019-02-13 04:37:33 +00:00
|
|
|
}
|
|
|
|
|
2019-06-28 10:08:48 +00:00
|
|
|
namespace detail
|
|
|
|
{
|
|
|
|
template<typename charT, typename traits>
|
|
|
|
int comment_index(std::basic_ostream<charT, traits>&)
|
|
|
|
{
|
|
|
|
static const int index = std::ios_base::xalloc();
|
|
|
|
return index;
|
|
|
|
}
|
|
|
|
} // detail
|
|
|
|
|
|
|
|
template<typename charT, typename traits>
|
|
|
|
std::basic_ostream<charT, traits>&
|
|
|
|
nocomment(std::basic_ostream<charT, traits>& os)
|
|
|
|
{
|
|
|
|
// by default, it is zero. and by defalut, it shows comments.
|
|
|
|
os.iword(detail::comment_index(os)) = 1;
|
|
|
|
return os;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename charT, typename traits>
|
|
|
|
std::basic_ostream<charT, traits>&
|
|
|
|
showcomment(std::basic_ostream<charT, traits>& os)
|
|
|
|
{
|
|
|
|
// by default, it is zero. and by defalut, it shows comments.
|
|
|
|
os.iword(detail::comment_index(os)) = 0;
|
|
|
|
return os;
|
|
|
|
}
|
|
|
|
|
2019-06-17 11:34:42 +00:00
|
|
|
template<typename charT, typename traits, typename C,
|
|
|
|
template<typename ...> class M, template<typename ...> class V>
|
2019-02-13 04:37:33 +00:00
|
|
|
std::basic_ostream<charT, traits>&
|
2019-06-17 11:34:42 +00:00
|
|
|
operator<<(std::basic_ostream<charT, traits>& os, const basic_value<C, M, V>& v)
|
2019-03-20 10:30:08 +00:00
|
|
|
{
|
2020-03-12 04:46:17 +00:00
|
|
|
using value_type = basic_value<C, M, V>;
|
|
|
|
|
2019-03-20 10:30:08 +00:00
|
|
|
// get status of std::setw().
|
2019-06-20 14:59:16 +00:00
|
|
|
const auto w = static_cast<std::size_t>(os.width());
|
2019-06-20 15:25:21 +00:00
|
|
|
const int fprec = static_cast<int>(os.precision());
|
2019-03-20 10:30:08 +00:00
|
|
|
os.width(0);
|
2019-06-17 11:34:42 +00:00
|
|
|
|
2019-06-28 10:08:48 +00:00
|
|
|
// by defualt, iword is initialized byl 0. And by default, toml11 outputs
|
|
|
|
// comments. So `0` means showcomment. 1 means nocommnet.
|
2019-06-29 05:59:18 +00:00
|
|
|
const bool no_comment = (1 == os.iword(detail::comment_index(os)));
|
2019-06-28 10:08:48 +00:00
|
|
|
|
2019-06-29 05:59:18 +00:00
|
|
|
if(!no_comment && v.is_table() && !v.comments().empty())
|
2019-06-17 11:34:42 +00:00
|
|
|
{
|
2019-06-28 05:58:47 +00:00
|
|
|
os << v.comments();
|
|
|
|
os << '\n'; // to split the file comment from the first element
|
2019-06-17 11:34:42 +00:00
|
|
|
}
|
2019-03-20 10:30:08 +00:00
|
|
|
// the root object can't be an inline table. so pass `false`.
|
2020-03-12 04:46:17 +00:00
|
|
|
os << visit(serializer<value_type>(w, fprec, false, no_comment), v);
|
2019-06-28 08:53:19 +00:00
|
|
|
|
|
|
|
// if v is a non-table value, and has only one comment, then
|
|
|
|
// put a comment just after a value. in the following way.
|
|
|
|
//
|
|
|
|
// ```toml
|
|
|
|
// key = "value" # comment.
|
|
|
|
// ```
|
|
|
|
//
|
|
|
|
// Since the top-level toml object is a table, one who want to put a
|
|
|
|
// non-table toml value must use this in a following way.
|
|
|
|
//
|
|
|
|
// ```cpp
|
|
|
|
// toml::value v;
|
|
|
|
// std::cout << "user-defined-key = " << v << std::endl;
|
|
|
|
// ```
|
|
|
|
//
|
|
|
|
// In this case, it is impossible to put comments before key-value pair.
|
|
|
|
// The only way to preserve comments is to put all of them after a value.
|
2019-06-29 05:59:18 +00:00
|
|
|
if(!no_comment && !v.is_table() && !v.comments().empty())
|
2019-06-28 08:53:19 +00:00
|
|
|
{
|
|
|
|
os << " #";
|
|
|
|
for(const auto& c : v.comments()) {os << c;}
|
|
|
|
}
|
2019-03-20 10:30:08 +00:00
|
|
|
return os;
|
|
|
|
}
|
2019-02-13 04:37:33 +00:00
|
|
|
|
|
|
|
} // toml
|
|
|
|
#endif// TOML11_SERIALIZER_HPP
|