Alexander Afanasyev | bbb31f9 | 2014-12-01 13:15:59 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Davide Pesavento | aeeb3fc | 2016-08-14 03:40:02 +0200 | [diff] [blame] | 3 | * Copyright (c) 2013-2016 Regents of the University of California. |
Alexander Afanasyev | bbb31f9 | 2014-12-01 13:15:59 -0800 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
| 6 | * |
| 7 | * ndn-cxx library is free software: you can redistribute it and/or modify it under the |
| 8 | * terms of the GNU Lesser General Public License as published by the Free Software |
| 9 | * Foundation, either version 3 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY |
| 12 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A |
| 13 | * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. |
| 14 | * |
| 15 | * You should have received copies of the GNU General Public License and GNU Lesser |
| 16 | * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see |
| 17 | * <http://www.gnu.org/licenses/>. |
| 18 | * |
| 19 | * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
| 20 | */ |
| 21 | |
| 22 | #ifndef NDN_UTIL_INDENTED_STREAM_HPP |
| 23 | #define NDN_UTIL_INDENTED_STREAM_HPP |
| 24 | |
| 25 | #include <ostream> |
| 26 | #include <sstream> |
| 27 | #include <string> |
| 28 | |
| 29 | namespace ndn { |
| 30 | namespace util { |
| 31 | |
| 32 | /** |
| 33 | * @brief Output to stream with specified indent or prefix |
| 34 | * |
| 35 | * For example, the following code: |
| 36 | * |
| 37 | * std::cout << "Hello" << std::endl; |
| 38 | * IndentedStream os1(std::cout, " [prefix] "); |
| 39 | * os1 << "," << "\n"; |
| 40 | * { |
| 41 | * IndentedStream os2(os1, " [another prefix] "); |
| 42 | * os2 << "World!" << "\n"; |
| 43 | * } |
| 44 | * // either os1 needs to go out of scope or call os1.flush() |
| 45 | * |
| 46 | * Will produce the following output: |
| 47 | * |
| 48 | * Hello |
| 49 | * [prefix] , |
| 50 | * [prefix] [another prefix] World! |
| 51 | * |
| 52 | * Based on http://stackoverflow.com/a/2212940/2150331 |
| 53 | */ |
| 54 | class IndentedStream : public std::ostream |
| 55 | { |
| 56 | public: |
| 57 | IndentedStream(std::ostream& os, const std::string& indent); |
| 58 | |
Davide Pesavento | aeeb3fc | 2016-08-14 03:40:02 +0200 | [diff] [blame] | 59 | ~IndentedStream() override; |
Alexander Afanasyev | bbb31f9 | 2014-12-01 13:15:59 -0800 | [diff] [blame] | 60 | |
| 61 | private: |
| 62 | // Write a stream buffer that prefixes each line |
| 63 | class StreamBuf : public std::stringbuf |
| 64 | { |
| 65 | public: |
| 66 | StreamBuf(std::ostream& os, const std::string& indent); |
| 67 | |
Davide Pesavento | 57c07df | 2016-12-11 18:41:45 -0500 | [diff] [blame^] | 68 | int |
Davide Pesavento | aeeb3fc | 2016-08-14 03:40:02 +0200 | [diff] [blame] | 69 | sync() override; |
Alexander Afanasyev | bbb31f9 | 2014-12-01 13:15:59 -0800 | [diff] [blame] | 70 | |
| 71 | private: |
| 72 | std::ostream& m_output; |
| 73 | std::string m_indent; |
| 74 | }; |
| 75 | |
| 76 | StreamBuf m_buffer; |
| 77 | }; |
| 78 | |
| 79 | } // namespace util |
| 80 | } // namespace ndn |
| 81 | |
| 82 | #endif // NDN_UTIL_INDENTED_STREAM_HPP |