Alexander Afanasyev | 4a77136 | 2014-04-24 21:29:33 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 2 | /** |
Alexander Afanasyev | 4a77136 | 2014-04-24 21:29:33 -0700 | [diff] [blame] | 3 | * Copyright (c) 2014, 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 |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 10 | * |
Alexander Afanasyev | 4a77136 | 2014-04-24 21:29:33 -0700 | [diff] [blame] | 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 | * @author Jerald Paul Abraham <jeraldabraham@email.arizona.edu> |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 26 | */ |
| 27 | |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 28 | #include "version.hpp" |
| 29 | |
Alexander Afanasyev | 4a77136 | 2014-04-24 21:29:33 -0700 | [diff] [blame] | 30 | #include <ndn-cxx/face.hpp> |
| 31 | #include <ndn-cxx/name.hpp> |
| 32 | #include <ndn-cxx/interest.hpp> |
Alexander Afanasyev | b3893c9 | 2014-05-15 01:49:54 -0700 | [diff] [blame] | 33 | #include <ndn-cxx/encoding/buffer-stream.hpp> |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 34 | |
Alexander Afanasyev | 4a77136 | 2014-04-24 21:29:33 -0700 | [diff] [blame] | 35 | #include <ndn-cxx/management/nfd-forwarder-status.hpp> |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 36 | #include <ndn-cxx/management/nfd-channel-status.hpp> |
| 37 | #include <ndn-cxx/management/nfd-face-status.hpp> |
| 38 | #include <ndn-cxx/management/nfd-fib-entry.hpp> |
| 39 | #include <ndn-cxx/management/nfd-strategy-choice.hpp> |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 40 | |
Alexander Afanasyev | b3893c9 | 2014-05-15 01:49:54 -0700 | [diff] [blame] | 41 | #include <boost/algorithm/string/replace.hpp> |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 42 | #include <list> |
Alexander Afanasyev | b3893c9 | 2014-05-15 01:49:54 -0700 | [diff] [blame] | 43 | |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 44 | namespace ndn { |
| 45 | |
| 46 | class NfdStatus |
| 47 | { |
| 48 | public: |
Alexander Afanasyev | 7b7dfdd | 2014-03-21 13:57:54 -0700 | [diff] [blame] | 49 | explicit |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 50 | NfdStatus(char* toolName) |
| 51 | : m_toolName(toolName) |
| 52 | , m_needVersionRetrieval(false) |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 53 | , m_needChannelStatusRetrieval(false) |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 54 | , m_needFaceStatusRetrieval(false) |
| 55 | , m_needFibEnumerationRetrieval(false) |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 56 | , m_needStrategyChoiceRetrieval(false) |
| 57 | , m_isOutputXml(false) |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 58 | { |
| 59 | } |
| 60 | |
| 61 | void |
| 62 | usage() |
| 63 | { |
Alexander Afanasyev | 60a7ba5 | 2014-03-23 11:23:06 -0700 | [diff] [blame] | 64 | std::cout << "Usage: \n " << m_toolName << " [options]\n\n" |
| 65 | "Show NFD version and status information\n\n" |
| 66 | "Options:\n" |
| 67 | " [-h] - print this help message\n" |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 68 | " [-v] - retrieve version information\n" |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 69 | " [-c] - retrieve channel status information\n" |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 70 | " [-f] - retrieve face status information\n" |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 71 | " [-b] - retrieve FIB information\n" |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 72 | " [-s] - retrieve configured strategy choice for NDN namespaces\n" |
Chengyu Fan | ee92fc7 | 2014-06-21 14:58:19 -0600 | [diff] [blame] | 73 | " [-x] - output NFD status information in XML format\n" |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 74 | "\n" |
| 75 | " [-V] - show version information of nfd-status and exit\n" |
| 76 | "\n" |
Alexander Afanasyev | 60a7ba5 | 2014-03-23 11:23:06 -0700 | [diff] [blame] | 77 | "If no options are provided, all information is retrieved.\n" |
Chengyu Fan | ee92fc7 | 2014-06-21 14:58:19 -0600 | [diff] [blame] | 78 | "If -x is provided, other options(-v, -c, etc.) are ignored, and all information is printed in XML format.\n" |
Alexander Afanasyev | 60a7ba5 | 2014-03-23 11:23:06 -0700 | [diff] [blame] | 79 | ; |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 80 | } |
| 81 | |
| 82 | void |
| 83 | enableVersionRetrieval() |
| 84 | { |
| 85 | m_needVersionRetrieval = true; |
| 86 | } |
| 87 | |
| 88 | void |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 89 | enableChannelStatusRetrieval() |
| 90 | { |
| 91 | m_needChannelStatusRetrieval = true; |
| 92 | } |
| 93 | |
| 94 | void |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 95 | enableFaceStatusRetrieval() |
| 96 | { |
| 97 | m_needFaceStatusRetrieval = true; |
| 98 | } |
| 99 | |
| 100 | void |
| 101 | enableFibEnumerationRetrieval() |
| 102 | { |
| 103 | m_needFibEnumerationRetrieval = true; |
| 104 | } |
| 105 | |
| 106 | void |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 107 | enableStrategyChoiceRetrieval() |
Chengyu Fan | 514ed5e | 2014-04-17 13:07:30 -0600 | [diff] [blame] | 108 | { |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 109 | m_needStrategyChoiceRetrieval = true; |
| 110 | } |
| 111 | |
| 112 | void |
| 113 | enableXmlOutput() |
| 114 | { |
| 115 | m_isOutputXml = true; |
Chengyu Fan | 514ed5e | 2014-04-17 13:07:30 -0600 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | void |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 119 | onTimeout() |
| 120 | { |
| 121 | std::cerr << "Request timed out" << std::endl; |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 122 | |
| 123 | runNextStep(); |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 124 | } |
| 125 | |
| 126 | void |
| 127 | fetchSegments(const Data& data, void (NfdStatus::*onDone)()) |
| 128 | { |
| 129 | m_buffer->write((const char*)data.getContent().value(), |
| 130 | data.getContent().value_size()); |
| 131 | |
| 132 | uint64_t currentSegment = data.getName().get(-1).toSegment(); |
| 133 | |
| 134 | const name::Component& finalBlockId = data.getMetaInfo().getFinalBlockId(); |
| 135 | if (finalBlockId.empty() || |
| 136 | finalBlockId.toSegment() > currentSegment) |
| 137 | { |
| 138 | m_face.expressInterest(data.getName().getPrefix(-1).appendSegment(currentSegment+1), |
| 139 | bind(&NfdStatus::fetchSegments, this, _2, onDone), |
| 140 | bind(&NfdStatus::onTimeout, this)); |
| 141 | } |
| 142 | else |
| 143 | { |
| 144 | return (this->*onDone)(); |
| 145 | } |
| 146 | } |
| 147 | |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 148 | void |
| 149 | escapeSpecialCharacters(std::string *data) |
Chengyu Fan | 514ed5e | 2014-04-17 13:07:30 -0600 | [diff] [blame] | 150 | { |
| 151 | using boost::algorithm::replace_all; |
| 152 | replace_all(*data, "&", "&"); |
| 153 | replace_all(*data, "\"", """); |
| 154 | replace_all(*data, "\'", "'"); |
| 155 | replace_all(*data, "<", "<"); |
| 156 | replace_all(*data, ">", ">"); |
| 157 | } |
| 158 | |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 159 | ////////////////////////////////////////////////////////////////////////////////// |
| 160 | ////////////////////////////////////////////////////////////////////////////////// |
| 161 | |
| 162 | void |
| 163 | fetchVersionInformation() |
| 164 | { |
| 165 | Interest interest("/localhost/nfd/status"); |
| 166 | interest.setChildSelector(1); |
| 167 | interest.setMustBeFresh(true); |
| 168 | m_face.expressInterest( |
| 169 | interest, |
| 170 | bind(&NfdStatus::afterFetchedVersionInformation, this, _2), |
| 171 | bind(&NfdStatus::onTimeout, this)); |
| 172 | } |
| 173 | |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 174 | void |
| 175 | afterFetchedVersionInformation(const Data& data) |
| 176 | { |
Junxiao Shi | 88d6937 | 2014-03-28 11:52:39 -0700 | [diff] [blame] | 177 | nfd::ForwarderStatus status(data.getContent()); |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 178 | if (m_isOutputXml) |
Chengyu Fan | 514ed5e | 2014-04-17 13:07:30 -0600 | [diff] [blame] | 179 | { |
Chengyu Fan | 514ed5e | 2014-04-17 13:07:30 -0600 | [diff] [blame] | 180 | std::cout << "<generalStatus>"; |
| 181 | std::cout << "<version>" |
| 182 | << status.getNfdVersion() << "</version>"; |
| 183 | std::cout << "<startTime>" |
| 184 | << time::toString(status.getStartTimestamp(), "%Y-%m-%dT%H:%M:%S%F") |
| 185 | << "</startTime>"; |
| 186 | std::cout << "<currentTime>" |
| 187 | << time::toString(status.getCurrentTimestamp(), "%Y-%m-%dT%H:%M:%S%F") |
| 188 | << "</currentTime>"; |
| 189 | std::cout << "<uptime>PT" |
| 190 | << time::duration_cast<time::seconds>(status.getCurrentTimestamp() |
| 191 | - status.getStartTimestamp()).count() |
| 192 | << "S</uptime>"; |
| 193 | std::cout << "<nNameTreeEntries>" << status.getNNameTreeEntries() |
| 194 | << "</nNameTreeEntries>"; |
| 195 | std::cout << "<nFibEntries>" << status.getNFibEntries() |
| 196 | << "</nFibEntries>"; |
| 197 | std::cout << "<nPitEntries>" << status.getNPitEntries() |
| 198 | << "</nPitEntries>"; |
| 199 | std::cout << "<nMeasurementsEntries>" << status.getNMeasurementsEntries() |
| 200 | << "</nMeasurementsEntries>"; |
| 201 | std::cout << "<nCsEntries>" << status.getNCsEntries() |
| 202 | << "</nCsEntries>"; |
| 203 | std::cout << "<packetCounters>"; |
| 204 | std::cout << "<incomingPackets>"; |
| 205 | std::cout << "<nInterests>" << status.getNInInterests() |
| 206 | << "</nInterests>"; |
| 207 | std::cout << "<nDatas>" << status.getNInDatas() |
| 208 | << "</nDatas>"; |
| 209 | std::cout << "</incomingPackets>"; |
| 210 | std::cout << "<outgoingPackets>"; |
| 211 | std::cout << "<nInterests>" << status.getNOutInterests() |
| 212 | << "</nInterests>"; |
| 213 | std::cout << "<nDatas>" << status.getNOutDatas() |
| 214 | << "</nDatas>"; |
| 215 | std::cout << "</outgoingPackets>"; |
| 216 | std::cout << "</packetCounters>"; |
| 217 | std::cout << "</generalStatus>"; |
| 218 | } |
| 219 | else |
| 220 | { |
| 221 | std::cout << "General NFD status:" << std::endl; |
| 222 | std::cout << " version=" |
| 223 | << status.getNfdVersion() << std::endl; |
| 224 | std::cout << " startTime=" |
| 225 | << time::toIsoString(status.getStartTimestamp()) << std::endl; |
| 226 | std::cout << " currentTime=" |
| 227 | << time::toIsoString(status.getCurrentTimestamp()) << std::endl; |
| 228 | std::cout << " uptime=" |
| 229 | << time::duration_cast<time::seconds>(status.getCurrentTimestamp() |
| 230 | - status.getStartTimestamp()) << std::endl; |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 231 | |
Chengyu Fan | 514ed5e | 2014-04-17 13:07:30 -0600 | [diff] [blame] | 232 | std::cout << " nNameTreeEntries=" << status.getNNameTreeEntries() << std::endl; |
| 233 | std::cout << " nFibEntries=" << status.getNFibEntries() << std::endl; |
| 234 | std::cout << " nPitEntries=" << status.getNPitEntries() << std::endl; |
| 235 | std::cout << " nMeasurementsEntries=" << status.getNMeasurementsEntries() << std::endl; |
| 236 | std::cout << " nCsEntries=" << status.getNCsEntries() << std::endl; |
| 237 | std::cout << " nInInterests=" << status.getNInInterests() << std::endl; |
| 238 | std::cout << " nOutInterests=" << status.getNOutInterests() << std::endl; |
| 239 | std::cout << " nInDatas=" << status.getNInDatas() << std::endl; |
| 240 | std::cout << " nOutDatas=" << status.getNOutDatas() << std::endl; |
| 241 | } |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 242 | |
| 243 | runNextStep(); |
| 244 | } |
| 245 | |
| 246 | ////////////////////////////////////////////////////////////////////////////////// |
| 247 | ////////////////////////////////////////////////////////////////////////////////// |
| 248 | |
| 249 | void |
| 250 | fetchChannelStatusInformation() |
| 251 | { |
| 252 | m_buffer = make_shared<OBufferStream>(); |
| 253 | |
| 254 | Interest interest("/localhost/nfd/faces/channels"); |
| 255 | interest.setChildSelector(1); |
| 256 | interest.setMustBeFresh(true); |
| 257 | |
| 258 | m_face.expressInterest(interest, |
| 259 | bind(&NfdStatus::fetchSegments, this, _2, |
| 260 | &NfdStatus::afterFetchedChannelStatusInformation), |
| 261 | bind(&NfdStatus::onTimeout, this)); |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 262 | } |
| 263 | |
| 264 | void |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 265 | afterFetchedChannelStatusInformation() |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 266 | { |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 267 | ConstBufferPtr buf = m_buffer->buf(); |
| 268 | if (m_isOutputXml) |
| 269 | { |
| 270 | std::cout << "<channels>"; |
| 271 | |
| 272 | Block block; |
| 273 | size_t offset = 0; |
| 274 | while (offset < buf->size()) |
| 275 | { |
| 276 | bool ok = Block::fromBuffer(buf, offset, block); |
| 277 | if (!ok) |
| 278 | { |
| 279 | std::cerr << "ERROR: cannot decode ChannelStatus TLV" << std::endl; |
| 280 | break; |
| 281 | } |
| 282 | |
| 283 | offset += block.size(); |
| 284 | |
| 285 | nfd::ChannelStatus channelStatus(block); |
| 286 | |
| 287 | std::cout << "<channel>"; |
| 288 | |
| 289 | std::string localUri(channelStatus.getLocalUri()); |
| 290 | escapeSpecialCharacters(&localUri); |
| 291 | std::cout << "<localUri>" << localUri << "</localUri>"; |
| 292 | std::cout << "</channel>"; |
| 293 | } |
| 294 | std::cout << "</channels>"; |
| 295 | } |
| 296 | else |
| 297 | { |
| 298 | std::cout << "Channels:" << std::endl; |
| 299 | |
| 300 | Block block; |
| 301 | size_t offset = 0; |
| 302 | while (offset < buf->size()) |
| 303 | { |
| 304 | bool ok = Block::fromBuffer(buf, offset, block); |
| 305 | if (!ok) |
| 306 | { |
| 307 | std::cerr << "ERROR: cannot decode ChannelStatus TLV" << std::endl; |
| 308 | break; |
| 309 | } |
| 310 | |
| 311 | offset += block.size(); |
| 312 | |
| 313 | nfd::ChannelStatus channelStatus(block); |
| 314 | std::cout << " " << channelStatus.getLocalUri() << std::endl; |
| 315 | } |
| 316 | } |
| 317 | |
| 318 | runNextStep(); |
| 319 | } |
| 320 | |
| 321 | ////////////////////////////////////////////////////////////////////////////////// |
| 322 | ////////////////////////////////////////////////////////////////////////////////// |
| 323 | |
| 324 | void |
| 325 | fetchFaceStatusInformation() |
| 326 | { |
| 327 | m_buffer = make_shared<OBufferStream>(); |
| 328 | |
| 329 | Interest interest("/localhost/nfd/faces/list"); |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 330 | interest.setChildSelector(1); |
| 331 | interest.setMustBeFresh(true); |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 332 | |
| 333 | m_face.expressInterest(interest, |
| 334 | bind(&NfdStatus::fetchSegments, this, _2, |
| 335 | &NfdStatus::afterFetchedFaceStatusInformation), |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 336 | bind(&NfdStatus::onTimeout, this)); |
| 337 | } |
| 338 | |
| 339 | void |
| 340 | afterFetchedFaceStatusInformation() |
| 341 | { |
Alexander Afanasyev | 7b7dfdd | 2014-03-21 13:57:54 -0700 | [diff] [blame] | 342 | ConstBufferPtr buf = m_buffer->buf(); |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 343 | if (m_isOutputXml) |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 344 | { |
Chengyu Fan | 514ed5e | 2014-04-17 13:07:30 -0600 | [diff] [blame] | 345 | std::cout << "<faces>"; |
| 346 | |
| 347 | Block block; |
| 348 | size_t offset = 0; |
| 349 | while (offset < buf->size()) |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 350 | { |
Chengyu Fan | 514ed5e | 2014-04-17 13:07:30 -0600 | [diff] [blame] | 351 | bool ok = Block::fromBuffer(buf, offset, block); |
| 352 | if (!ok) |
| 353 | { |
| 354 | std::cerr << "ERROR: cannot decode FaceStatus TLV" << std::endl; |
| 355 | break; |
| 356 | } |
| 357 | |
| 358 | offset += block.size(); |
| 359 | |
| 360 | nfd::FaceStatus faceStatus(block); |
| 361 | |
| 362 | std::cout << "<face>"; |
| 363 | std::cout << "<faceId>" << faceStatus.getFaceId() << "</faceId>"; |
| 364 | |
| 365 | std::string remoteUri(faceStatus.getRemoteUri()); |
| 366 | escapeSpecialCharacters(&remoteUri); |
| 367 | std::cout << "<remoteUri>" << remoteUri << "</remoteUri>"; |
| 368 | |
| 369 | std::string localUri(faceStatus.getLocalUri()); |
| 370 | escapeSpecialCharacters(&localUri); |
| 371 | std::cout << "<localUri>" << localUri << "</localUri>"; |
| 372 | std::cout << "<packetCounters>"; |
| 373 | std::cout << "<incomingPackets>"; |
| 374 | std::cout << "<nInterests>" << faceStatus.getNInInterests() |
| 375 | << "</nInterests>"; |
| 376 | std::cout << "<nDatas>" << faceStatus.getNInInterests() |
| 377 | << "</nDatas>"; |
| 378 | std::cout << "</incomingPackets>"; |
| 379 | std::cout << "<outgoingPackets>"; |
| 380 | std::cout << "<nInterests>" << faceStatus.getNOutInterests() |
| 381 | << "</nInterests>"; |
| 382 | std::cout << "<nDatas>" << faceStatus.getNOutInterests() |
| 383 | << "</nDatas>"; |
| 384 | std::cout << "</outgoingPackets>"; |
| 385 | std::cout << "</packetCounters>"; |
| 386 | std::cout << "</face>"; |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 387 | } |
Chengyu Fan | 514ed5e | 2014-04-17 13:07:30 -0600 | [diff] [blame] | 388 | std::cout << "</faces>"; |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 389 | } |
Chengyu Fan | 514ed5e | 2014-04-17 13:07:30 -0600 | [diff] [blame] | 390 | else |
| 391 | { |
| 392 | std::cout << "Faces:" << std::endl; |
| 393 | |
| 394 | Block block; |
| 395 | size_t offset = 0; |
| 396 | while (offset < buf->size()) |
| 397 | { |
| 398 | bool ok = Block::fromBuffer(buf, offset, block); |
| 399 | if (!ok) |
| 400 | { |
| 401 | std::cerr << "ERROR: cannot decode FaceStatus TLV" << std::endl; |
| 402 | break; |
| 403 | } |
| 404 | |
| 405 | offset += block.size(); |
| 406 | |
| 407 | nfd::FaceStatus faceStatus(block); |
| 408 | |
| 409 | std::cout << " faceid=" << faceStatus.getFaceId() |
| 410 | << " remote=" << faceStatus.getRemoteUri() |
| 411 | << " local=" << faceStatus.getLocalUri() |
| 412 | << " counters={" |
| 413 | << "in={" << faceStatus.getNInInterests() << "i " |
| 414 | << faceStatus.getNInDatas() << "d}" |
| 415 | << " out={" << faceStatus.getNOutInterests() << "i " |
| 416 | << faceStatus.getNOutDatas() << "d}" |
| 417 | << "}" << std::endl; |
| 418 | } |
| 419 | } |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 420 | |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 421 | runNextStep(); |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 422 | } |
| 423 | |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 424 | ////////////////////////////////////////////////////////////////////////////////// |
| 425 | ////////////////////////////////////////////////////////////////////////////////// |
| 426 | |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 427 | void |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 428 | fetchFibEnumerationInformation() |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 429 | { |
| 430 | m_buffer = make_shared<OBufferStream>(); |
| 431 | |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 432 | Interest interest("/localhost/nfd/fib/list"); |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 433 | interest.setChildSelector(1); |
| 434 | interest.setMustBeFresh(true); |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 435 | m_face.expressInterest(interest, |
| 436 | bind(&NfdStatus::fetchSegments, this, _2, |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 437 | &NfdStatus::afterFetchedFibEnumerationInformation), |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 438 | bind(&NfdStatus::onTimeout, this)); |
| 439 | } |
| 440 | |
| 441 | void |
| 442 | afterFetchedFibEnumerationInformation() |
| 443 | { |
Alexander Afanasyev | 7b7dfdd | 2014-03-21 13:57:54 -0700 | [diff] [blame] | 444 | ConstBufferPtr buf = m_buffer->buf(); |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 445 | if (m_isOutputXml) |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 446 | { |
Chengyu Fan | 514ed5e | 2014-04-17 13:07:30 -0600 | [diff] [blame] | 447 | std::cout << "<fib>"; |
Alexander Afanasyev | 7b7dfdd | 2014-03-21 13:57:54 -0700 | [diff] [blame] | 448 | |
Chengyu Fan | 514ed5e | 2014-04-17 13:07:30 -0600 | [diff] [blame] | 449 | Block block; |
| 450 | size_t offset = 0; |
| 451 | while (offset < buf->size()) |
Alexander Afanasyev | 7b7dfdd | 2014-03-21 13:57:54 -0700 | [diff] [blame] | 452 | { |
Chengyu Fan | 514ed5e | 2014-04-17 13:07:30 -0600 | [diff] [blame] | 453 | bool ok = Block::fromBuffer(buf, offset, block); |
| 454 | if (!ok) |
| 455 | { |
| 456 | std::cerr << "ERROR: cannot decode FibEntry TLV"; |
| 457 | break; |
| 458 | } |
| 459 | offset += block.size(); |
| 460 | |
| 461 | nfd::FibEntry fibEntry(block); |
| 462 | |
| 463 | std::cout << "<fibEntry>"; |
| 464 | std::string prefix(fibEntry.getPrefix().toUri()); |
| 465 | escapeSpecialCharacters(&prefix); |
| 466 | std::cout << "<prefix>" << prefix << "</prefix>"; |
| 467 | std::cout << "<nextHops>"; |
| 468 | for (std::list<nfd::NextHopRecord>::const_iterator |
| 469 | nextHop = fibEntry.getNextHopRecords().begin(); |
| 470 | nextHop != fibEntry.getNextHopRecords().end(); |
| 471 | ++nextHop) |
| 472 | { |
| 473 | std::cout << "<nextHop>" ; |
| 474 | std::cout << "<faceId>" << nextHop->getFaceId() << "</faceId>"; |
| 475 | std::cout << "<cost>" << nextHop->getCost() << "</cost>"; |
| 476 | std::cout << "</nextHop>"; |
| 477 | } |
| 478 | std::cout << "</nextHops>"; |
| 479 | std::cout << "</fibEntry>"; |
Alexander Afanasyev | 7b7dfdd | 2014-03-21 13:57:54 -0700 | [diff] [blame] | 480 | } |
Chengyu Fan | 514ed5e | 2014-04-17 13:07:30 -0600 | [diff] [blame] | 481 | |
| 482 | std::cout << "</fib>"; |
Chengyu Fan | 514ed5e | 2014-04-17 13:07:30 -0600 | [diff] [blame] | 483 | } |
| 484 | else |
| 485 | { |
| 486 | std::cout << "FIB:" << std::endl; |
| 487 | |
| 488 | Block block; |
| 489 | size_t offset = 0; |
| 490 | while (offset < buf->size()) |
| 491 | { |
| 492 | bool ok = Block::fromBuffer(buf, offset, block); |
| 493 | if (!ok) |
| 494 | { |
| 495 | std::cerr << "ERROR: cannot decode FibEntry TLV" << std::endl; |
| 496 | break; |
| 497 | } |
| 498 | offset += block.size(); |
| 499 | |
| 500 | nfd::FibEntry fibEntry(block); |
| 501 | |
| 502 | std::cout << " " << fibEntry.getPrefix() << " nexthops={"; |
| 503 | for (std::list<nfd::NextHopRecord>::const_iterator |
| 504 | nextHop = fibEntry.getNextHopRecords().begin(); |
| 505 | nextHop != fibEntry.getNextHopRecords().end(); |
| 506 | ++nextHop) |
| 507 | { |
| 508 | if (nextHop != fibEntry.getNextHopRecords().begin()) |
| 509 | std::cout << ", "; |
| 510 | std::cout << "faceid=" << nextHop->getFaceId() |
| 511 | << " (cost=" << nextHop->getCost() << ")"; |
| 512 | } |
| 513 | std::cout << "}" << std::endl; |
| 514 | } |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 515 | } |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 516 | |
| 517 | runNextStep(); |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 518 | } |
| 519 | |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 520 | ////////////////////////////////////////////////////////////////////////////////// |
| 521 | ////////////////////////////////////////////////////////////////////////////////// |
| 522 | |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 523 | void |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 524 | fetchStrategyChoiceInformation() |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 525 | { |
| 526 | m_buffer = make_shared<OBufferStream>(); |
| 527 | |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 528 | Interest interest("/localhost/nfd/strategy-choice/list"); |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 529 | interest.setChildSelector(1); |
| 530 | interest.setMustBeFresh(true); |
| 531 | m_face.expressInterest(interest, |
| 532 | bind(&NfdStatus::fetchSegments, this, _2, |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 533 | &NfdStatus::afterFetchedStrategyChoiceInformationInformation), |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 534 | bind(&NfdStatus::onTimeout, this)); |
| 535 | } |
| 536 | |
| 537 | void |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 538 | afterFetchedStrategyChoiceInformationInformation() |
| 539 | { |
| 540 | ConstBufferPtr buf = m_buffer->buf(); |
| 541 | if (m_isOutputXml) |
| 542 | { |
| 543 | std::cout << "<strategyChoices>"; |
| 544 | |
| 545 | Block block; |
| 546 | size_t offset = 0; |
| 547 | while (offset < buf->size()) |
| 548 | { |
| 549 | bool ok = Block::fromBuffer(buf, offset, block); |
| 550 | if (!ok) |
| 551 | { |
| 552 | std::cerr << "ERROR: cannot decode StrategyChoice TLV"; |
| 553 | break; |
| 554 | } |
| 555 | offset += block.size(); |
| 556 | |
| 557 | nfd::StrategyChoice strategyChoice(block); |
| 558 | |
| 559 | std::cout << "<strategyChoice>"; |
| 560 | |
| 561 | std::string name(strategyChoice.getName().toUri()); |
| 562 | escapeSpecialCharacters(&name); |
| 563 | std::cout << "<namespace>" << name << "</namespace>"; |
| 564 | std::cout << "<strategy>"; |
| 565 | |
| 566 | std::string strategy(strategyChoice.getStrategy().toUri()); |
| 567 | escapeSpecialCharacters(&strategy); |
| 568 | |
| 569 | std::cout << "<name>" << strategy << "</name>"; |
| 570 | std::cout << "</strategy>"; |
| 571 | std::cout << "</strategyChoice>"; |
| 572 | } |
| 573 | |
| 574 | std::cout << "</strategyChoices>"; |
| 575 | } |
| 576 | else |
| 577 | { |
| 578 | std::cout << "Strategy choices:" << std::endl; |
| 579 | |
| 580 | Block block; |
| 581 | size_t offset = 0; |
| 582 | while (offset < buf->size()) |
| 583 | { |
| 584 | bool ok = Block::fromBuffer(buf, offset, block); |
| 585 | if (!ok) |
| 586 | { |
| 587 | std::cerr << "ERROR: cannot decode StrategyChoice TLV" << std::endl; |
| 588 | break; |
| 589 | } |
| 590 | offset += block.size(); |
| 591 | |
| 592 | nfd::StrategyChoice strategyChoice(block); |
| 593 | |
| 594 | std::cout << " " << strategyChoice.getName() |
| 595 | << " strategy=" << strategyChoice.getStrategy() << std::endl; |
| 596 | } |
| 597 | } |
| 598 | |
| 599 | runNextStep(); |
| 600 | } |
| 601 | |
| 602 | void |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 603 | fetchInformation() |
| 604 | { |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 605 | if (m_isOutputXml || |
Chengyu Fan | 514ed5e | 2014-04-17 13:07:30 -0600 | [diff] [blame] | 606 | (!m_needVersionRetrieval && |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 607 | !m_needChannelStatusRetrieval && |
| 608 | !m_needFaceStatusRetrieval && |
| 609 | !m_needFibEnumerationRetrieval && |
| 610 | !m_needStrategyChoiceRetrieval)) |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 611 | { |
| 612 | enableVersionRetrieval(); |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 613 | enableChannelStatusRetrieval(); |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 614 | enableFaceStatusRetrieval(); |
| 615 | enableFibEnumerationRetrieval(); |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 616 | enableStrategyChoiceRetrieval(); |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 617 | } |
| 618 | |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 619 | if (m_isOutputXml) |
| 620 | m_fetchSteps.push_back(bind(&NfdStatus::printXmlHeader, this)); |
| 621 | |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 622 | if (m_needVersionRetrieval) |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 623 | m_fetchSteps.push_back(bind(&NfdStatus::fetchVersionInformation, this)); |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 624 | |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 625 | if (m_needChannelStatusRetrieval) |
| 626 | m_fetchSteps.push_back(bind(&NfdStatus::fetchChannelStatusInformation, this)); |
| 627 | |
| 628 | if (m_needFaceStatusRetrieval) |
| 629 | m_fetchSteps.push_back(bind(&NfdStatus::fetchFaceStatusInformation, this)); |
| 630 | |
| 631 | if (m_needFibEnumerationRetrieval) |
| 632 | m_fetchSteps.push_back(bind(&NfdStatus::fetchFibEnumerationInformation, this)); |
| 633 | |
| 634 | if (m_needStrategyChoiceRetrieval) |
| 635 | m_fetchSteps.push_back(bind(&NfdStatus::fetchStrategyChoiceInformation, this)); |
| 636 | |
| 637 | if (m_isOutputXml) |
| 638 | m_fetchSteps.push_back(bind(&NfdStatus::printXmlFooter, this)); |
| 639 | |
| 640 | runNextStep(); |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 641 | m_face.processEvents(); |
| 642 | } |
| 643 | |
| 644 | private: |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 645 | void |
| 646 | printXmlHeader() |
| 647 | { |
| 648 | std::cout << "<?xml version=\"1.0\"?>"; |
| 649 | std::cout << "<nfdStatus xmlns=\"ndn:/localhost/nfd/status/1\">"; |
| 650 | |
| 651 | runNextStep(); |
| 652 | } |
| 653 | |
| 654 | void |
| 655 | printXmlFooter() |
| 656 | { |
| 657 | std::cout << "</nfdStatus>"; |
| 658 | |
| 659 | runNextStep(); |
| 660 | } |
| 661 | |
| 662 | void |
| 663 | runNextStep() |
| 664 | { |
| 665 | if (m_fetchSteps.empty()) |
| 666 | return; |
| 667 | |
| 668 | function<void()> nextStep = m_fetchSteps.front(); |
| 669 | m_fetchSteps.pop_front(); |
| 670 | nextStep(); |
| 671 | } |
| 672 | |
| 673 | private: |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 674 | std::string m_toolName; |
| 675 | bool m_needVersionRetrieval; |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 676 | bool m_needChannelStatusRetrieval; |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 677 | bool m_needFaceStatusRetrieval; |
| 678 | bool m_needFibEnumerationRetrieval; |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 679 | bool m_needStrategyChoiceRetrieval; |
| 680 | bool m_isOutputXml; |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 681 | Face m_face; |
| 682 | |
| 683 | shared_ptr<OBufferStream> m_buffer; |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 684 | |
| 685 | std::deque<function<void()> > m_fetchSteps; |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 686 | }; |
| 687 | |
| 688 | } |
| 689 | |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 690 | int main(int argc, char* argv[]) |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 691 | { |
| 692 | int option; |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 693 | ndn::NfdStatus nfdStatus(argv[0]); |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 694 | |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 695 | while ((option = getopt(argc, argv, "hvcfbsxV")) != -1) { |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 696 | switch (option) { |
| 697 | case 'h': |
| 698 | nfdStatus.usage(); |
Alexander Afanasyev | 60a7ba5 | 2014-03-23 11:23:06 -0700 | [diff] [blame] | 699 | return 0; |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 700 | case 'v': |
| 701 | nfdStatus.enableVersionRetrieval(); |
| 702 | break; |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 703 | case 'c': |
| 704 | nfdStatus.enableChannelStatusRetrieval(); |
| 705 | break; |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 706 | case 'f': |
| 707 | nfdStatus.enableFaceStatusRetrieval(); |
| 708 | break; |
| 709 | case 'b': |
| 710 | nfdStatus.enableFibEnumerationRetrieval(); |
| 711 | break; |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 712 | case 's': |
| 713 | nfdStatus.enableStrategyChoiceRetrieval(); |
| 714 | break; |
Chengyu Fan | 514ed5e | 2014-04-17 13:07:30 -0600 | [diff] [blame] | 715 | case 'x': |
Alexander Afanasyev | 0417d2a | 2014-06-08 10:56:43 +0300 | [diff] [blame] | 716 | nfdStatus.enableXmlOutput(); |
Chengyu Fan | 514ed5e | 2014-04-17 13:07:30 -0600 | [diff] [blame] | 717 | break; |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 718 | case 'V': |
| 719 | std::cout << NFD_VERSION_BUILD_STRING << std::endl; |
| 720 | return 0; |
Alexander Afanasyev | 7b7dfdd | 2014-03-21 13:57:54 -0700 | [diff] [blame] | 721 | default: |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 722 | nfdStatus.usage(); |
| 723 | return 1; |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 724 | } |
| 725 | } |
| 726 | |
| 727 | try { |
| 728 | nfdStatus.fetchInformation(); |
| 729 | } |
Alexander Afanasyev | 7b7dfdd | 2014-03-21 13:57:54 -0700 | [diff] [blame] | 730 | catch (std::exception& e) { |
jeraldabraham | b6dde38 | 2014-03-19 18:58:09 -0700 | [diff] [blame] | 731 | std::cerr << "ERROR: " << e.what() << std::endl; |
| 732 | return 2; |
| 733 | } |
| 734 | |
| 735 | return 0; |
| 736 | } |