From ad96ee03d2179aa43d359dcbcd5943c9166abbba Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Fri, 7 Mar 2014 08:27:23 +0100 Subject: [PATCH] iohelpers: templatize read_all_input --- src/iohelpers.cpp | 14 -------------- src/iohelpers.h | 20 +++++++++++++++++++- 2 files changed, 19 insertions(+), 15 deletions(-) diff --git a/src/iohelpers.cpp b/src/iohelpers.cpp index 6e6794d..7636ec1 100644 --- a/src/iohelpers.cpp +++ b/src/iohelpers.cpp @@ -36,17 +36,3 @@ bool redirect_cout (const std::string& fn) return true; } -#define bufsize 1024 -bool read_all_input (std::string&data, std::istream&input) -{ - data.clear(); - char buf[bufsize]; - for (;;) { - input.read (buf, bufsize); - if (input) data.append (buf, bufsize); - else if (input.eof() ) { - data.append (buf, input.gcount() ); - return true; - } else return false; - } -} diff --git a/src/iohelpers.h b/src/iohelpers.h index d9bc3bf..5d7b822 100644 --- a/src/iohelpers.h +++ b/src/iohelpers.h @@ -27,6 +27,8 @@ #include #include +#include "types.h" + #define out(x) std::cout << x << std::endl #define out_bin(x) std::cout << x #define outeol std::cout << std::endl @@ -41,6 +43,22 @@ bool redirect_cin (const std::string& fn); bool redirect_cout (const std::string& fn); -bool read_all_input (std::string&, std::istream&in = std::cin); +#define readall_bufsize 8192 +template +bool read_all_input (output_seq&data, std::istream&input = std::cin) +{ + data.clear(); + char buf[readall_bufsize]; + for (;;) { + input.read (buf, readall_bufsize); + if (input) data.insert (data.end(), buf, + buf + readall_bufsize); + else if (input.eof() ) { + data.insert (data.end(), buf, + buf + input.gcount() ); + return true; + } else return false; + } +} #endif