Sprout/testspr/print.hpp

247 lines
6.6 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
Copyright (c) 2011-2017 Bolero MURAKAMI
2013-08-08 09:54:33 +00:00
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/
2011-12-23 11:59:33 +00:00
#ifndef TESTSPR_PRINT_HPP
#define TESTSPR_PRINT_HPP
#include <algorithm>
#include <iterator>
#include <bitset>
2014-02-19 23:04:36 +00:00
#include <utility>
2017-09-29 14:17:17 +00:00
#include <string>
#include <sstream>
2014-02-19 23:04:36 +00:00
#include <iomanip>
2017-09-29 14:17:17 +00:00
#include <iostream>
2014-07-22 00:33:13 +00:00
#include <sprout/config.hpp>
2017-09-19 11:01:44 +00:00
#include <sprout/preprocessor/config.hpp>
#include <sprout/preprocessor/stringize.hpp>
#include <sprout/container.hpp>
2014-02-19 23:04:36 +00:00
#include <sprout/detail/io/ios_state.hpp>
#include <testspr/typeinfo.hpp>
2011-12-23 11:59:33 +00:00
namespace testspr {
2017-09-29 22:23:16 +00:00
namespace detail {
inline SPROUT_NON_CONSTEXPR std::ostream&
to_string_impl(std::ostream& os) {
return os;
}
template<typename Head, typename... Tail>
inline SPROUT_NON_CONSTEXPR std::ostream&
to_string_impl(std::ostream& os, Head const& head, Tail const&... tail) {
return testspr::detail::to_string_impl(os << head, tail...);
}
} // namespace detail
//
// to_string
//
template<typename Head, typename... Tail>
inline SPROUT_NON_CONSTEXPR std::string
to_string(Head const& head, Tail const&... tail) {
std::ostringstream os;
testspr::detail::to_string_impl(os, head, tail...);
return os.str();
}
2011-12-23 11:59:33 +00:00
//
// print
//
2014-07-22 00:33:13 +00:00
inline SPROUT_NON_CONSTEXPR void
print() {}
2014-02-19 23:04:36 +00:00
template<typename Head, typename... Tail>
2014-07-22 00:33:13 +00:00
inline SPROUT_NON_CONSTEXPR void
print(Head const& head, Tail const&... tail) {
2014-02-19 23:04:36 +00:00
std::cout << head;
testspr::print(tail...);
}
//
// print_ln
//
2014-07-22 00:33:13 +00:00
inline SPROUT_NON_CONSTEXPR void
print_ln() {
std::cout << std::endl;
}
2014-02-19 23:04:36 +00:00
template<typename... Args>
2014-07-22 00:33:13 +00:00
inline SPROUT_NON_CONSTEXPR void
print_ln(Args const&... args) {
2014-02-19 23:04:36 +00:00
sprout::detail::io::ios_all_saver saver(std::cout);
testspr::print(args...);
std::cout << std::endl;
}
//
// print_tokens
//
2014-07-22 00:33:13 +00:00
inline SPROUT_NON_CONSTEXPR void
print_tokens() {
2014-02-19 23:04:36 +00:00
testspr::print_ln();
}
template<typename Head, typename... Tail>
2014-07-22 00:33:13 +00:00
inline SPROUT_NON_CONSTEXPR void
print_tokens(Head const& head, Tail const&... tail) {
2014-02-19 23:04:36 +00:00
sprout::detail::io::ios_all_saver saver(std::cout);
testspr::print(head, ' ');
testspr::print_tokens(tail...);
}
//
// print_quotes
//
2014-07-22 00:33:13 +00:00
inline SPROUT_NON_CONSTEXPR void
print_quotes() {
2014-02-19 23:04:36 +00:00
testspr::print_ln();
}
template<typename Head, typename... Tail>
2014-07-22 00:33:13 +00:00
inline SPROUT_NON_CONSTEXPR void
print_quotes(Head const& head, Tail const&... tail) {
2014-02-19 23:04:36 +00:00
sprout::detail::io::ios_all_saver saver(std::cout);
testspr::print('\"', head, "\" ");
testspr::print_quotes(tail...);
}
//
// print_range
//
template<typename InputIterator>
2014-07-22 00:33:13 +00:00
inline SPROUT_NON_CONSTEXPR void
print_range(InputIterator first, InputIterator last) {
2014-02-19 23:04:36 +00:00
sprout::detail::io::ios_all_saver saver(std::cout);
for (; first != last; ++first) {
std::cout << *first << ' ';
}
std::cout << std::endl;
}
template<typename InputRange>
2014-07-22 00:33:13 +00:00
inline SPROUT_NON_CONSTEXPR void
print_range(InputRange const& range) {
2014-02-19 23:04:36 +00:00
testspr::print_range(sprout::begin(range), sprout::end(range));
}
//
// print_bits
//
template<typename T>
2014-07-22 00:33:13 +00:00
inline SPROUT_NON_CONSTEXPR void
print_bits(T const& t) {
testspr::print_ln(std::bitset<sizeof(T) * 8>(t).template to_string<char>());
2011-12-23 11:59:33 +00:00
}
//
// print_typename
//
template<typename T>
2014-07-22 00:33:13 +00:00
inline SPROUT_NON_CONSTEXPR void
print_typename() {
testspr::print_ln(testspr::typename_of<T>());
}
2017-10-18 05:42:38 +00:00
template<typename T>
inline SPROUT_NON_CONSTEXPR void
print_typename(T&& t) {
testspr::print_ln(testspr::typename_of(std::forward<T>(t)));
}
//
// print_type
//
template<typename T>
2014-07-22 00:33:13 +00:00
inline SPROUT_NON_CONSTEXPR void
print_type() {
2017-07-26 06:22:14 +00:00
testspr::print_ln(testspr::qualified_typename_of<T>());
}
2011-12-23 11:59:33 +00:00
//
// print_hl
//
2014-07-22 00:33:13 +00:00
inline SPROUT_NON_CONSTEXPR void
print_hl() {
testspr::print_ln("--------------------------------------------------------------------------------");
2011-12-23 11:59:33 +00:00
}
2017-09-29 14:17:17 +00:00
template<typename T>
inline SPROUT_NON_CONSTEXPR void
print_hl(char c) {
for (std::string::size_type i = 0, last = 80; i != last; ++i) {
std::cout << c;
}
std::cout << std::endl;
}
template<typename T>
inline SPROUT_NON_CONSTEXPR void
print_hl(T const& t) {
2017-09-29 22:23:16 +00:00
std::string s(testspr::to_string(t));
for (std::string::size_type i = 0, n = 80 / s.size(); i != n; ++i) {
2017-09-29 14:17:17 +00:00
std::cout << s;
}
2017-09-29 22:23:16 +00:00
for (std::string::const_iterator it = s.begin(), last = s.begin() + 80 % s.size(); it != last; ++it) {
std::cout << *it;
}
2017-09-29 14:17:17 +00:00
std::cout << std::endl;
}
2014-02-19 23:04:36 +00:00
//
// manip_holder
//
template<typename T>
class manip_holder {
public:
typedef T value_type;
private:
value_type m_;
public:
2014-07-22 00:33:13 +00:00
SPROUT_CONSTEXPR manip_holder(value_type const& m)
2014-02-19 23:04:36 +00:00
: m_(m)
{}
2014-07-22 00:33:13 +00:00
SPROUT_CONSTEXPR value_type const& get() const {
2014-02-19 23:04:36 +00:00
return m_;
}
};
template<typename T, typename Elem, typename Traits>
2014-07-22 00:33:13 +00:00
inline SPROUT_NON_CONSTEXPR std::basic_ostream<Elem, Traits>&
operator<<(std::basic_ostream<Elem, Traits>& lhs, testspr::manip_holder<T> const& rhs) {
2014-02-19 23:04:36 +00:00
return lhs << rhs.get();
}
template<typename T, typename Elem, typename Traits>
2014-07-22 00:33:13 +00:00
inline SPROUT_NON_CONSTEXPR std::basic_istream<Elem, Traits>&
operator>>(std::basic_istream<Elem, Traits>& lhs, testspr::manip_holder<T> const& rhs) {
2014-02-19 23:04:36 +00:00
return lhs >> rhs.get();
}
//
// manip
//
template<typename T>
2014-07-22 00:33:13 +00:00
inline SPROUT_NON_CONSTEXPR T&&
2014-02-19 23:04:36 +00:00
manip(T&& t) {
return std::forward<T>(t);
}
template<typename Elem, typename Traits>
2014-07-22 00:33:13 +00:00
inline SPROUT_NON_CONSTEXPR testspr::manip_holder<std::basic_ostream<Elem, Traits>& (*)(std::basic_ostream<Elem, Traits>&)>
2014-02-19 23:04:36 +00:00
manip(std::basic_ostream<Elem, Traits>& (*pf)(std::basic_ostream<Elem, Traits>&)) {
return pf;
}
template<typename Elem, typename Traits>
2014-07-22 00:33:13 +00:00
inline SPROUT_NON_CONSTEXPR testspr::manip_holder<std::basic_ios<Elem, Traits>& (*)(std::basic_ios<Elem, Traits>&)>
2014-02-19 23:04:36 +00:00
manip(std::basic_ios<Elem, Traits>& (*pf)(std::basic_ios<Elem, Traits>&)) {
return pf;
}
2014-07-22 00:33:13 +00:00
inline SPROUT_NON_CONSTEXPR testspr::manip_holder<std::ios_base& (*)(std::ios_base&)>
2014-02-19 23:04:36 +00:00
manip(std::ios_base& (*pf)(std::ios_base&)) {
return pf;
}
2011-12-23 11:59:33 +00:00
} // namespace testspr
2017-09-19 11:01:44 +00:00
//
// TESTSPR_PRINT_EXPR
//
#if SPROUT_PP_VARIADICS
# define TESTSPR_PRINT_EXPR(...) \
::testspr::print_ln(SPROUT_PP_STRINGIZE((__VA_ARGS__)), " => ", __VA_ARGS__)
#else
# define TESTSPR_PRINT_EXPR(EXPR) \
::testspr::print_ln(SPROUT_PP_STRINGIZE((EXPR)), " => ", EXPR)
#endif
2011-12-23 11:59:33 +00:00
#endif // #ifndef TESTSPR_PRINT_HPP