Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (c) 2014-2016, 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 | #include "format-helpers.hpp" |
| 27 | |
| 28 | namespace nfd { |
| 29 | namespace tools { |
Junxiao Shi | 331ade7 | 2016-08-19 14:07:19 +0000 | [diff] [blame] | 30 | namespace nfdc { |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 31 | |
| 32 | namespace xml { |
| 33 | |
| 34 | void |
| 35 | printHeader(std::ostream& os) |
| 36 | { |
| 37 | os << "<?xml version=\"1.0\"?>" |
| 38 | << "<nfdStatus xmlns=\"ndn:/localhost/nfd/status/1\">"; |
| 39 | } |
| 40 | |
| 41 | void |
| 42 | printFooter(std::ostream& os) |
| 43 | { |
| 44 | os << "</nfdStatus>"; |
| 45 | } |
| 46 | |
| 47 | std::ostream& |
| 48 | operator<<(std::ostream& os, const Text& text) |
| 49 | { |
| 50 | for (char ch : text.s) { |
| 51 | switch (ch) { |
| 52 | case '"': |
| 53 | os << """; |
| 54 | break; |
| 55 | case '&': |
| 56 | os << "&"; |
| 57 | break; |
| 58 | case '\'': |
| 59 | os << "'"; |
| 60 | break; |
| 61 | case '<': |
| 62 | os << "<"; |
| 63 | break; |
| 64 | case '>': |
| 65 | os << ">"; |
| 66 | break; |
| 67 | default: |
| 68 | os << ch; |
| 69 | break; |
| 70 | } |
| 71 | } |
| 72 | return os; |
| 73 | } |
| 74 | |
| 75 | std::string |
| 76 | formatSeconds(time::seconds d) |
| 77 | { |
| 78 | return "PT" + to_string(d.count()) + "S"; |
| 79 | } |
| 80 | |
| 81 | std::string |
| 82 | formatTimestamp(time::system_clock::TimePoint t) |
| 83 | { |
| 84 | return time::toString(t, "%Y-%m-%dT%H:%M:%S%F"); |
| 85 | } |
| 86 | |
| 87 | } // namespace xml |
| 88 | |
| 89 | namespace text { |
| 90 | |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 91 | std::ostream& |
| 92 | operator<<(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 Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 100 | Separator::Separator(const std::string& first, const std::string& subsequent) |
| 101 | : m_first(first) |
| 102 | , m_subsequent(subsequent) |
| 103 | , m_count(0) |
| 104 | { |
| 105 | } |
| 106 | |
| 107 | Separator::Separator(const std::string& subsequent) |
| 108 | : Separator("", subsequent) |
| 109 | { |
| 110 | } |
| 111 | |
| 112 | std::ostream& |
| 113 | operator<<(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 | |
| 121 | std::string |
| 122 | formatSeconds(time::seconds d, bool isLong) |
| 123 | { |
| 124 | return to_string(d.count()) + (isLong ? " seconds" : "s"); |
| 125 | } |
| 126 | |
| 127 | std::string |
| 128 | formatTimestamp(time::system_clock::TimePoint t) |
| 129 | { |
| 130 | return time::toIsoString(t); |
| 131 | } |
| 132 | |
| 133 | } // namespace text |
| 134 | |
Junxiao Shi | 331ade7 | 2016-08-19 14:07:19 +0000 | [diff] [blame] | 135 | } // namespace nfdc |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 136 | } // namespace tools |
| 137 | } // namespace nfd |