Sprout/testspr/print.hpp

168 lines
4.2 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
2014-01-08 07:48:12 +00:00
Copyright (c) 2011-2014 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>
2011-12-23 11:59:33 +00:00
#include <iostream>
2014-02-19 23:04:36 +00:00
#include <iomanip>
#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 {
//
// print
//
2014-02-19 23:04:36 +00:00
void print() {}
template<typename Head, typename... Tail>
void print(Head const& head, Tail const&... tail) {
std::cout << head;
testspr::print(tail...);
}
//
// print_ln
//
void print_ln() {
std::cout << std::endl;
}
2014-02-19 23:04:36 +00:00
template<typename... Args>
void print_ln(Args const&... args) {
sprout::detail::io::ios_all_saver saver(std::cout);
testspr::print(args...);
std::cout << std::endl;
}
//
// print_tokens
//
void print_tokens() {
testspr::print_ln();
}
template<typename Head, typename... Tail>
2014-02-19 23:04:36 +00:00
void print_tokens(Head const& head, Tail const&... tail) {
sprout::detail::io::ios_all_saver saver(std::cout);
testspr::print(head, ' ');
testspr::print_tokens(tail...);
}
//
// print_quotes
//
void print_quotes() {
testspr::print_ln();
}
template<typename Head, typename... Tail>
void print_quotes(Head const& head, Tail const&... tail) {
sprout::detail::io::ios_all_saver saver(std::cout);
testspr::print('\"', head, "\" ");
testspr::print_quotes(tail...);
}
//
// print_range
//
template<typename InputIterator>
void print_range(InputIterator first, InputIterator last) {
sprout::detail::io::ios_all_saver saver(std::cout);
for (; first != last; ++first) {
std::cout << *first << ' ';
}
std::cout << std::endl;
}
template<typename InputRange>
void print_range(InputRange const& range) {
testspr::print_range(sprout::begin(range), sprout::end(range));
}
//
// print_bits
//
template<typename T>
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>
void print_typename() {
testspr::print_ln(testspr::typename_of<T>());
}
//
// print_type
//
template<typename T>
void print_type() {
testspr::print_typename<testspr::id<T> >();
}
2011-12-23 11:59:33 +00:00
//
// print_hl
//
void print_hl() {
testspr::print_ln("--------------------------------------------------------------------------------");
2011-12-23 11:59:33 +00:00
}
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:
manip_holder(value_type const& m)
: m_(m)
{}
value_type const& get() const {
return m_;
}
};
template<typename T, typename Elem, typename Traits>
std::basic_ostream<Elem, Traits>& operator<<(std::basic_ostream<Elem, Traits>& lhs, testspr::manip_holder<T> const& rhs) {
return lhs << rhs.get();
}
template<typename T, typename Elem, typename Traits>
std::basic_istream<Elem, Traits>& operator>>(std::basic_istream<Elem, Traits>& lhs, testspr::manip_holder<T> const& rhs) {
return lhs >> rhs.get();
}
//
// manip
//
template<typename T>
T&&
manip(T&& t) {
return std::forward<T>(t);
}
template<typename Elem, typename Traits>
testspr::manip_holder<std::basic_ostream<Elem, Traits>& (*)(std::basic_ostream<Elem, Traits>&)>
manip(std::basic_ostream<Elem, Traits>& (*pf)(std::basic_ostream<Elem, Traits>&)) {
return pf;
}
template<typename Elem, typename Traits>
testspr::manip_holder<std::basic_ios<Elem, Traits>& (*)(std::basic_ios<Elem, Traits>&)>
manip(std::basic_ios<Elem, Traits>& (*pf)(std::basic_ios<Elem, Traits>&)) {
return pf;
}
testspr::manip_holder<std::ios_base& (*)(std::ios_base&)>
manip(std::ios_base& (*pf)(std::ios_base&)) {
return pf;
}
2011-12-23 11:59:33 +00:00
} // namespace testspr
#endif // #ifndef TESTSPR_PRINT_HPP