blob: 3d851dde6abfbcfcedc4c77e2f01c792055a0c1d [file] [log] [blame]
Junxiao Shi38f4ce92016-08-04 10:01:52 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi1f481fa2017-01-26 15:14:43 +00003 * Copyright (c) 2014-2017, Regents of the University of California,
Junxiao Shi38f4ce92016-08-04 10:01:52 +00004 * 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#include "format-helpers.hpp"
27
28namespace nfd {
29namespace tools {
Junxiao Shi331ade72016-08-19 14:07:19 +000030namespace nfdc {
Junxiao Shi38f4ce92016-08-04 10:01:52 +000031
32namespace xml {
33
34void
35printHeader(std::ostream& os)
36{
37 os << "<?xml version=\"1.0\"?>"
38 << "<nfdStatus xmlns=\"ndn:/localhost/nfd/status/1\">";
39}
40
41void
42printFooter(std::ostream& os)
43{
44 os << "</nfdStatus>";
45}
46
47std::ostream&
48operator<<(std::ostream& os, const Text& text)
49{
50 for (char ch : text.s) {
51 switch (ch) {
52 case '"':
53 os << "&quot;";
54 break;
55 case '&':
56 os << "&amp;";
57 break;
58 case '\'':
59 os << "&apos;";
60 break;
61 case '<':
62 os << "&lt;";
63 break;
64 case '>':
65 os << "&gt;";
66 break;
67 default:
68 os << ch;
69 break;
70 }
71 }
72 return os;
73}
74
75std::string
76formatSeconds(time::seconds d)
77{
78 return "PT" + to_string(d.count()) + "S";
79}
80
81std::string
82formatTimestamp(time::system_clock::TimePoint t)
83{
84 return time::toString(t, "%Y-%m-%dT%H:%M:%S%F");
85}
86
87} // namespace xml
88
89namespace text {
90
Junxiao Shi6c135622016-11-21 14:30:33 +000091std::ostream&
92operator<<(std::ostream& os, const Spaces& spaces)
93{
94 for (int i = 0; i < spaces.nSpaces; ++i) {
95 os << ' ';
96 }
97 return os;
98}
99
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000100Separator::Separator(const std::string& first, const std::string& subsequent)
101 : m_first(first)
102 , m_subsequent(subsequent)
103 , m_count(0)
104{
105}
106
107Separator::Separator(const std::string& subsequent)
108 : Separator("", subsequent)
109{
110}
111
112std::ostream&
113operator<<(std::ostream& os, Separator& sep)
114{
115 if (++sep.m_count == 1) {
116 return os << sep.m_first;
117 }
118 return os << sep.m_subsequent;
119}
120
Junxiao Shi1f481fa2017-01-26 15:14:43 +0000121ItemAttributes::ItemAttributes(bool wantMultiLine, int maxAttributeWidth)
122 : m_wantMultiLine(wantMultiLine)
123 , m_maxAttributeWidth(maxAttributeWidth)
124 , m_count(0)
125{
126}
127
128ItemAttributes::Attribute
129ItemAttributes::operator()(const std::string& attribute)
130{
Junxiao Shi056815e2017-01-29 16:39:19 +0000131 return {*this, attribute};
Junxiao Shi1f481fa2017-01-26 15:14:43 +0000132}
133
134std::string
135ItemAttributes::end() const
136{
137 return m_wantMultiLine ? "\n" : "";
138}
139
140std::ostream&
141operator<<(std::ostream& os, const ItemAttributes::Attribute& attr)
142{
Junxiao Shi056815e2017-01-29 16:39:19 +0000143 ++attr.ia.m_count;
144 if (attr.ia.m_wantMultiLine) {
145 if (attr.ia.m_count > 1) {
146 os << '\n';
147 }
148 os << Spaces{attr.ia.m_maxAttributeWidth - static_cast<int>(attr.attribute.size())};
Junxiao Shi1f481fa2017-01-26 15:14:43 +0000149 }
Junxiao Shi056815e2017-01-29 16:39:19 +0000150 else {
151 if (attr.ia.m_count > 1) {
152 os << ' ';
153 }
154 }
155 return os << attr.attribute << '=';
Junxiao Shi1f481fa2017-01-26 15:14:43 +0000156}
157
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000158std::string
159formatSeconds(time::seconds d, bool isLong)
160{
161 return to_string(d.count()) + (isLong ? " seconds" : "s");
162}
163
164std::string
165formatTimestamp(time::system_clock::TimePoint t)
166{
167 return time::toIsoString(t);
168}
169
170} // namespace text
171
Junxiao Shi331ade72016-08-19 14:07:19 +0000172} // namespace nfdc
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000173} // namespace tools
174} // namespace nfd