format-helpers.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2014-2018, Regents of the University of California,
4  * Arizona Board of Regents,
5  * Colorado State University,
6  * University Pierre & Marie Curie, Sorbonne University,
7  * Washington University in St. Louis,
8  * Beijing Institute of Technology,
9  * The University of Memphis.
10  *
11  * This file is part of NFD (Named Data Networking Forwarding Daemon).
12  * See AUTHORS.md for complete list of NFD authors and contributors.
13  *
14  * NFD is free software: you can redistribute it and/or modify it under the terms
15  * of the GNU General Public License as published by the Free Software Foundation,
16  * either version 3 of the License, or (at your option) any later version.
17  *
18  * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19  * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20  * PURPOSE. See the GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License along with
23  * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24  */
25 
26 #ifndef NFD_TOOLS_NFDC_FORMAT_HELPERS_HPP
27 #define NFD_TOOLS_NFDC_FORMAT_HELPERS_HPP
28 
29 #include "core/common.hpp"
30 
31 namespace nfd {
32 namespace tools {
33 namespace nfdc {
34 
35 namespace xml {
36 
37 void
38 printHeader(std::ostream& os);
39 
40 void
41 printFooter(std::ostream& os);
42 
43 struct Text
44 {
45  const std::string& s;
46 };
47 
50 std::ostream&
51 operator<<(std::ostream& os, const Text& text);
52 
57 std::string
58 formatDuration(time::nanoseconds d);
59 
64 std::string
65 formatTimestamp(time::system_clock::TimePoint t);
66 
67 } // namespace xml
68 
69 namespace text {
70 
73 struct Spaces
74 {
75  int nSpaces;
76 };
77 
78 std::ostream&
79 operator<<(std::ostream& os, const Spaces& spaces);
80 
91 class Separator : noncopyable
92 {
93 public:
94  Separator(const std::string& first, const std::string& subsequent);
95 
96  explicit
97  Separator(const std::string& subsequent);
98 
99  int
100  getCount() const
101  {
102  return m_count;
103  }
104 
105 private:
106  std::string m_first;
107  std::string m_subsequent;
108  int m_count;
109 
110  friend std::ostream& operator<<(std::ostream& os, Separator& sep);
111 };
112 
113 std::ostream&
114 operator<<(std::ostream& os, Separator& sep);
115 
132 class ItemAttributes : noncopyable
133 {
134 public:
139  explicit
140  ItemAttributes(bool wantMultiLine = false, int maxAttributeWidth = 0);
141 
142  struct Attribute
143  {
145  std::string attribute;
146  };
147 
151  Attribute
152  operator()(const std::string& attribute);
153 
154  std::string
155  end() const;
156 
157 private:
158  bool m_wantMultiLine;
159  int m_maxAttributeWidth;
160  int m_count;
161 
162  friend std::ostream& operator<<(std::ostream& os, const ItemAttributes::Attribute& attr);
163 };
164 
165 std::ostream&
166 operator<<(std::ostream& os, const ItemAttributes::Attribute& attr);
167 
168 namespace detail {
169 
170 template<typename DurationT>
171 std::string
172 getTimeUnit(bool isLong);
173 
174 template<>
175 inline std::string
176 getTimeUnit<time::nanoseconds>(bool isLong)
177 {
178  return isLong ? "nanoseconds" : "ns";
179 }
180 
181 template<>
182 inline std::string
183 getTimeUnit<time::microseconds>(bool isLong)
184 {
185  return isLong ? "microseconds" : "us";
186 }
187 
188 template<>
189 inline std::string
190 getTimeUnit<time::milliseconds>(bool isLong)
191 {
192  return isLong ? "milliseconds" : "ms";
193 }
194 
195 template<>
196 inline std::string
197 getTimeUnit<time::seconds>(bool isLong)
198 {
199  return isLong ? "seconds" : "s";
200 }
201 
202 template<>
203 inline std::string
204 getTimeUnit<time::minutes>(bool isLong)
205 {
206  return isLong ? "minutes" : "m";
207 }
208 
209 template<>
210 inline std::string
211 getTimeUnit<time::hours>(bool isLong)
212 {
213  return isLong ? "hours" : "h";
214 }
215 
216 template<>
217 inline std::string
218 getTimeUnit<time::days>(bool isLong)
219 {
220  return isLong ? "days" : "d";
221 }
222 
223 } // namespace detail
224 
225 template<typename OutputPrecision>
226 std::string
227 formatDuration(time::nanoseconds d, bool isLong = false)
228 {
229  return to_string(time::duration_cast<OutputPrecision>(d).count()) +
230  (isLong ? " " : "") + detail::getTimeUnit<OutputPrecision>(isLong);
231 }
232 
233 std::string
234 formatTimestamp(time::system_clock::TimePoint t);
235 
236 } // namespace text
237 
238 } // namespace nfdc
239 } // namespace tools
240 } // namespace nfd
241 
242 #endif // NFD_TOOLS_NFDC_FORMAT_HELPERS_HPP
std::string formatDuration(time::nanoseconds d)
std::string formatTimestamp(time::system_clock::TimePoint t)
std::string getTimeUnit(bool isLong)
void printHeader(std::ostream &os)
Copyright (c) 2014-2015, Regents of the University of California, Arizona Board of Regents...
Definition: algorithm.hpp:32
std::ostream & operator<<(std::ostream &os, const Text &text)
print XML text with special character represented as predefined entities
print attributes of an item
int nSpaces
number of spaces; print nothing if negative
print different string on first and subsequent usage
print a number of whitespaces
void printFooter(std::ostream &os)