225 lines
8.4 KiB
C++
225 lines
8.4 KiB
C++
// Copyright (c) 2009-2020 Vladimir Batov.
|
|
// Use, modification and distribution are subject to the Boost Software License,
|
|
// Version 1.0. See http://www.boost.org/LICENSE_1_0.txt.
|
|
|
|
#ifndef BOOST_CONVERT_STRINGSTREAM_BASED_CONVERTER_HPP
|
|
#define BOOST_CONVERT_STRINGSTREAM_BASED_CONVERTER_HPP
|
|
|
|
#include <boost/convert/parameters.hpp>
|
|
#include <boost/convert/detail/is_string.hpp>
|
|
#include <boost/make_default.hpp>
|
|
#include <sstream>
|
|
#include <iomanip>
|
|
|
|
#define BOOST_CNV_STRING_ENABLE \
|
|
template<typename string_type, typename type> \
|
|
typename std::enable_if<cnv::is_string<string_type>::value, void>::type \
|
|
operator()
|
|
|
|
#define BOOST_CNV_PARAM_SET(param_name) \
|
|
template <typename argument_pack> \
|
|
void set_( \
|
|
argument_pack const& arg, \
|
|
cnv::parameter::type::param_name, \
|
|
mpl::true_)
|
|
|
|
#define BOOST_CNV_PARAM_TRY(param_name) \
|
|
this->set_( \
|
|
arg, \
|
|
cnv::parameter::type::param_name(), \
|
|
typename mpl::has_key< \
|
|
argument_pack, cnv::parameter::type::param_name>::type());
|
|
|
|
namespace boost::cnv
|
|
{
|
|
template<class Char> struct basic_stream;
|
|
|
|
using cstream = boost::cnv::basic_stream<char>;
|
|
using wstream = boost::cnv::basic_stream<wchar_t>;
|
|
}
|
|
|
|
template<class Char>
|
|
struct boost::cnv::basic_stream
|
|
{
|
|
// C01. In string-to-type conversions the "string" must be a CONTIGUOUS ARRAY of
|
|
// characters because "ibuffer_type" uses/relies on that (it deals with char_type*).
|
|
// C02. Use the provided "string_in" as the input (read-from) buffer and, consequently,
|
|
// avoid the overhead associated with stream_.str(string_in) --
|
|
// copying of the content into internal buffer.
|
|
// C03. The "strbuf.gptr() != strbuf.egptr()" check replaces "istream.eof() != true"
|
|
// which for some reason does not work when we try converting the "true" string
|
|
// to "bool" with std::boolalpha set. Seems that istream state gets unsynced compared
|
|
// to the actual underlying buffer.
|
|
|
|
using char_type = Char;
|
|
using this_type = boost::cnv::basic_stream<char_type>;
|
|
using stream_type = std::basic_stringstream<char_type>;
|
|
using istream_type = std::basic_istream<char_type>;
|
|
using buffer_type = std::basic_streambuf<char_type>;
|
|
using stdstr_type = std::basic_string<char_type>;
|
|
using manipulator_type = std::ios_base& (*)(std::ios_base&);
|
|
|
|
struct ibuffer_type : buffer_type
|
|
{
|
|
using buffer_type::eback;
|
|
using buffer_type::gptr;
|
|
using buffer_type::egptr;
|
|
|
|
ibuffer_type(char_type const* beg, std::size_t sz) //C01
|
|
{
|
|
char_type* b = const_cast<char_type*>(beg);
|
|
|
|
buffer_type::setg(b, b, b + sz);
|
|
}
|
|
};
|
|
struct obuffer_type : buffer_type
|
|
{
|
|
using buffer_type::pbase;
|
|
using buffer_type::pptr;
|
|
using buffer_type::epptr;
|
|
};
|
|
|
|
basic_stream () : stream_(std::ios_base::in | std::ios_base::out) {}
|
|
basic_stream (this_type&& other) : stream_(std::move(other.stream_)) {}
|
|
|
|
basic_stream(this_type const&) = delete;
|
|
this_type& operator=(this_type const&) = delete;
|
|
|
|
BOOST_CNV_STRING_ENABLE(type const& v, optional<string_type>& s) const { to_str(v, s); }
|
|
BOOST_CNV_STRING_ENABLE(string_type const& s, optional<type>& r) const { str_to(cnv::range<string_type const>(s), r); }
|
|
|
|
// Resolve ambiguity of string-to-string
|
|
template<typename type> void operator()( char_type const* s, optional<type>& r) const { str_to(cnv::range< char_type const*>(s), r); }
|
|
template<typename type> void operator()(stdstr_type const& s, optional<type>& r) const { str_to(cnv::range<stdstr_type const>(s), r); }
|
|
|
|
// Formatters
|
|
template<typename manipulator>
|
|
typename boost::disable_if<boost::parameter::is_argument_pack<manipulator>, this_type&>::type
|
|
operator()(manipulator m) { return (this->stream_ << m, *this); }
|
|
|
|
this_type& operator() (manipulator_type m) { return (m(stream_), *this); }
|
|
this_type& operator() (std::locale const& l) { return (stream_.imbue(l), *this); }
|
|
|
|
template<typename argument_pack>
|
|
typename std::enable_if<boost::parameter::is_argument_pack<argument_pack>::value, this_type&>::type
|
|
operator()(argument_pack const& arg)
|
|
{
|
|
BOOST_CNV_PARAM_TRY(precision);
|
|
BOOST_CNV_PARAM_TRY(width);
|
|
BOOST_CNV_PARAM_TRY(fill);
|
|
BOOST_CNV_PARAM_TRY(uppercase);
|
|
BOOST_CNV_PARAM_TRY(skipws);
|
|
BOOST_CNV_PARAM_TRY(adjust);
|
|
BOOST_CNV_PARAM_TRY(base);
|
|
BOOST_CNV_PARAM_TRY(notation);
|
|
|
|
return *this;
|
|
}
|
|
|
|
private:
|
|
|
|
template<typename argument_pack, typename keyword_tag>
|
|
void set_(argument_pack const&, keyword_tag, mpl::false_) {}
|
|
|
|
BOOST_CNV_PARAM_SET (locale) { stream_.imbue(arg[cnv::parameter::locale]); }
|
|
BOOST_CNV_PARAM_SET (precision) { stream_.precision(arg[cnv::parameter::precision]); }
|
|
BOOST_CNV_PARAM_SET (width) { stream_.width(arg[cnv::parameter::width]); }
|
|
BOOST_CNV_PARAM_SET (fill) { stream_.fill(arg[cnv::parameter::fill]); }
|
|
BOOST_CNV_PARAM_SET (uppercase)
|
|
{
|
|
bool uppercase = arg[cnv::parameter::uppercase];
|
|
uppercase ? (void) stream_.setf(std::ios::uppercase) : stream_.unsetf(std::ios::uppercase);
|
|
}
|
|
BOOST_CNV_PARAM_SET (skipws)
|
|
{
|
|
bool skipws = arg[cnv::parameter::skipws];
|
|
skipws ? (void) stream_.setf(std::ios::skipws) : stream_.unsetf(std::ios::skipws);
|
|
}
|
|
BOOST_CNV_PARAM_SET (adjust)
|
|
{
|
|
cnv::adjust adjust = arg[cnv::parameter::adjust];
|
|
|
|
/**/ if (adjust == cnv::adjust:: left) stream_.setf(std::ios::adjustfield, std::ios:: left);
|
|
else if (adjust == cnv::adjust::right) stream_.setf(std::ios::adjustfield, std::ios::right);
|
|
else BOOST_ASSERT(!"Not implemented");
|
|
}
|
|
BOOST_CNV_PARAM_SET (base)
|
|
{
|
|
cnv::base base = arg[cnv::parameter::base];
|
|
|
|
/**/ if (base == cnv::base::dec) std::dec(stream_);
|
|
else if (base == cnv::base::hex) std::hex(stream_);
|
|
else if (base == cnv::base::oct) std::oct(stream_);
|
|
else BOOST_ASSERT(!"Not implemented");
|
|
}
|
|
BOOST_CNV_PARAM_SET (notation)
|
|
{
|
|
cnv::notation notation = arg[cnv::parameter::notation];
|
|
|
|
/**/ if (notation == cnv::notation:: fixed) std::fixed(stream_);
|
|
else if (notation == cnv::notation::scientific) std::scientific(stream_);
|
|
else if (notation == cnv::notation:: hex) std::hexfloat(stream_);
|
|
else BOOST_ASSERT(!"Not implemented");
|
|
}
|
|
|
|
template<typename string_type, typename out_type> void str_to(cnv::range<string_type>, optional<out_type>&) const;
|
|
template<typename string_type, typename in_type> void to_str(in_type const&, optional<string_type>&) const;
|
|
|
|
mutable stream_type stream_;
|
|
};
|
|
|
|
template<typename char_type>
|
|
template<typename string_type, typename in_type>
|
|
inline
|
|
void
|
|
boost::cnv::basic_stream<char_type>::to_str(
|
|
in_type const& value_in,
|
|
boost::optional<string_type>& string_out) const
|
|
{
|
|
stream_.clear(); // Clear the flags
|
|
stream_.str(stdstr_type()); // Clear/empty the content of the stream
|
|
|
|
if (!(stream_ << value_in).fail())
|
|
{
|
|
buffer_type* buf = stream_.rdbuf();
|
|
obuffer_type* obuf = reinterpret_cast<obuffer_type*>(buf);
|
|
char_type const* beg = obuf->pbase();
|
|
char_type const* end = obuf->pptr();
|
|
|
|
string_out = string_type(beg, end); // Instead of stream_.str();
|
|
}
|
|
}
|
|
|
|
template<typename char_type>
|
|
template<typename string_type, typename out_type>
|
|
inline
|
|
void
|
|
boost::cnv::basic_stream<char_type>::str_to(
|
|
boost::cnv::range<string_type> string_in,
|
|
boost::optional<out_type>& result_out) const
|
|
{
|
|
if (string_in.empty ()) return;
|
|
|
|
istream_type& istream = stream_;
|
|
buffer_type* oldbuf = istream.rdbuf();
|
|
char_type const* beg = &*string_in.begin();
|
|
std::size_t sz = string_in.end() - string_in.begin();
|
|
ibuffer_type newbuf (beg, sz); //C02
|
|
|
|
istream.rdbuf(&newbuf);
|
|
istream.clear(); // Clear the flags
|
|
|
|
istream >> *(result_out = boost::make_default<out_type>());
|
|
|
|
if (istream.fail() || newbuf.gptr() != newbuf.egptr()/*C03*/)
|
|
result_out = boost::none;
|
|
|
|
istream.rdbuf(oldbuf);
|
|
}
|
|
|
|
#undef BOOST_CNV_STRING_ENABLE
|
|
#undef BOOST_CNV_PARAM_SET
|
|
#undef BOOST_CNV_PARAM_TRY
|
|
|
|
#endif // BOOST_CONVERT_STRINGSTREAM_BASED_CONVERTER_HPP
|