This is a follow-up to my previous question on pretty-printing STL containers, for which we managed to develop a very elegant and fully general solution.


In this next step, I would like to include pretty-printing for std::tuple<Args...>, using variadic templates (so this is strictly C++11). For std::pair<S,T>, I simply say

std::ostream & operator<<(std::ostream & o, const std::pair<S,T> & p)
{
  return o << "(" << p.first << ", " << p.second << ")";
}

What is the analogous construction for printing a tuple?

I've tried various bits of template argument stack unpacking, passing indices around and using SFINAE to discover when I'm at the last element, but with no success. I shan't burden you with my broken code; the problem description is hopefully straight-forward enough. Essentially, I'd like the following behaviour:

auto a = std::make_tuple(5, "Hello", -0.1);
std::cout << a << std::endl; // prints: (5, "Hello", -0.1)

Bonus points for including the same level of generality (char/wchar_t, pair delimiters) as the the previous question!

link|improve this question

feedback

1 Answer

up vote 15 down vote accepted

You need compile-time "recursion" for that (well, it's not really recursive, the functions aren't the same):

#include <tuple>
#include <iostream>

template<std::size_t> struct int_{}; // compile-time counter

template<class Ch, class Tr, class Tuple, std::size_t I>
void print_tuple(std::basic_ostream<Ch,Tr>& os, Tuple const& t, int_<I>){
  print_tuple(os, t, int_<I-1>());
  os << ", " << std::get<I>(t);
}

template<class Ch, class Tr, class Tuple>
void print_tuple(std::basic_ostream<Ch,Tr>& os, Tuple const& t, int_<0>){
  os << std::get<0>(t);
}

template<class Ch, class Traits, class... Args>
std::ostream& operator<<(std::basic_ostream<Ch,Traits>& os,
     std::tuple<Args...> const& t)
{
  os << "(";
  print_tuple(os, t, int_<sizeof...(Args)-1>());
  return os << ")";
}

Live example on Ideone.


For the delimiter stuff, just add these partial specializations:

// Delimiters for tuple
template<class... Args>
struct delimiters<std::tuple<Args...>, char> {
  static const delimiters_values<char> values;
};

template<class... Args>
const delimiters_values<char> delimiters<std::tuple<Args...>, char>::values = { "(", ", ", ")" };

template<class... Args>
struct delimiters<std::tuple<Args...>, wchar_t> {
  static const delimiters_values<wchar_t> values;
};

template<class... Args>
const delimiters_values<wchar_t> delimiters<std::tuple<Args...>, wchar_t>::values = { L"(", L", ", L")" };

and change the operator<< and print_tuple accordingly:

template<class Ch, class Traits, class... Args>
std::ostream& operator<<(std::basic_ostream<Ch,Traits>& os,
    std::tuple<Args...> const& t)
{
  typedef std::tuple<Args...> tuple_t;
  if(delimiters<tuple_t,char>::values.prefix != 0)
    os << delimiters<tuple_t,char>::values.prefix;

  print_tuple(os, t, int_<sizeof...(Args)-1>());

  if(delimiters<tuple_t,char>::values.postfix != 0)
    os << delimiters<tuple_t,char>::values.postfix;
}

And

template<class Ch, class Tr, class Tuple, std::size_t I>
void print_tuple(std::basic_ostream<Ch,Tr>& os, Tuple const& t, int_<I>){
  print_tuple(os, t, int_<I-1>());
  if(delimiters<Tuple,char>::values.delimiter != 0)
    os << delimiters<Tuple,char>::values.delimiter;
  os << std::get<I>(t);
}
link|improve this answer
@Kerrek: I'm currently testing & fixing myself, I get weird output on Ideone though. – Xeo Jun 5 '11 at 21:03
Make the base case 1, not 0, to avoid the extraneous delimiter... – Kerrek SB Jun 5 '11 at 21:04
I think you're also confusing streams and strings. You're writing something akin to "std::cout << std::cout". In other words, TuplePrinter doesn't have an operator<<. – Kerrek SB Jun 5 '11 at 21:13
@Kerrek: Yeah, I did some pretty strange stuff.. New version is edited, and works like requested. :P – Xeo Jun 5 '11 at 21:16
Grand, now it works! I'll now try to include this into the pretty printer project from the previous question. Thanks a bunch! – Kerrek SB Jun 5 '11 at 21:24
show 7 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.