tomlplusplus/include/toml++/impl/print_to_stream.h
Mark Gillard 516b8e2096 greatly simplified project header structure
also:
- removed `TOML_LARGE_FILES`
- removed unnecessary template machinery (esp. where ostreams were involved)
- made all overloaded operators 'hidden friends'
- documentation fixes
- version bump - this will form the foundation of v3
2021-10-25 01:04:23 +03:00

139 lines
3.7 KiB
C++

//# This file is a part of toml++ and is subject to the the terms of the MIT license.
//# Copyright (c) Mark Gillard <mark.gillard@outlook.com.au>
//# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text.
// SPDX-License-Identifier: MIT
#pragma once
#include "forward_declarations.h"
#include "std_string.h"
#include "header_start.h"
TOML_IMPL_NAMESPACE_START
{
// Q: "why does print_to_stream() exist? why not just use ostream::write(), ostream::put() etc?"
// A: - I'm supporting C++20's char8_t as well; wrapping streams allows switching string modes transparently.
// - I'm using <charconv> to format numerics. Faster and locale-independent.
// - I can (potentially) avoid forcing users to drag in <sstream> and <iomanip>.
// - Strings in C++. Honestly.
TOML_API
TOML_ATTR(nonnull)
void print_to_stream(std::ostream&, const char*, size_t);
TOML_API
void print_to_stream(std::ostream&, std::string_view);
TOML_API
void print_to_stream(std::ostream&, const std::string&);
TOML_API
void print_to_stream(std::ostream&, char);
TOML_API
void print_to_stream(std::ostream&, int8_t, value_flags = {});
TOML_API
void print_to_stream(std::ostream&, int16_t, value_flags = {});
TOML_API
void print_to_stream(std::ostream&, int32_t, value_flags = {});
TOML_API
void print_to_stream(std::ostream&, int64_t, value_flags = {});
TOML_API
void print_to_stream(std::ostream&, uint8_t, value_flags = {});
TOML_API
void print_to_stream(std::ostream&, uint16_t, value_flags = {});
TOML_API
void print_to_stream(std::ostream&, uint32_t, value_flags = {});
TOML_API
void print_to_stream(std::ostream&, uint64_t, value_flags = {});
TOML_API
void print_to_stream(std::ostream&, float, value_flags = {});
TOML_API
void print_to_stream(std::ostream&, double, value_flags = {});
TOML_API
void print_to_stream(std::ostream&, bool);
TOML_API
void print_to_stream(std::ostream&, const toml::date&);
TOML_API
void print_to_stream(std::ostream&, const toml::time&);
TOML_API
void print_to_stream(std::ostream&, const toml::time_offset&);
TOML_API
void print_to_stream(std::ostream&, const toml::date_time&);
TOML_API
void print_to_stream(std::ostream&, const source_position&);
TOML_API
void print_to_stream(std::ostream&, const source_region&);
TOML_API
void print_to_stream(std::ostream&, const array&);
TOML_API
void print_to_stream(std::ostream&, const table&);
TOML_API
void print_to_stream(std::ostream&, const value<std::string>&);
TOML_API
void print_to_stream(std::ostream&, const value<int64_t>&);
TOML_API
void print_to_stream(std::ostream&, const value<double>&);
TOML_API
void print_to_stream(std::ostream&, const value<bool>&);
TOML_API
void print_to_stream(std::ostream&, const value<date>&);
TOML_API
void print_to_stream(std::ostream&, const value<time>&);
TOML_API
void print_to_stream(std::ostream&, const value<date_time>&);
template <typename T>
inline void print_to_stream_with_escapes(std::ostream & stream, const T& str)
{
for (auto c : str)
{
if TOML_UNLIKELY(c >= '\x00' && c <= '\x1F')
print_to_stream(stream, low_character_escape_table[c]);
else if TOML_UNLIKELY(c == '\x7F')
print_to_stream(stream, "\\u007F"sv);
else if TOML_UNLIKELY(c == '"')
print_to_stream(stream, "\\\""sv);
else if TOML_UNLIKELY(c == '\\')
print_to_stream(stream, "\\\\"sv);
else
print_to_stream(stream, c);
}
}
template <typename T, typename U>
inline void print_to_stream_bookended(std::ostream & stream, const T& val, const U& bookend)
{
print_to_stream(stream, bookend);
print_to_stream(stream, val);
print_to_stream(stream, bookend);
}
}
TOML_IMPL_NAMESPACE_END;
#include "header_end.h"