Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Eric Newberry | 84d3adc | 2017-08-09 23:31:40 -0400 | [diff] [blame] | 2 | /* |
Eric Newberry | de33245 | 2018-01-30 11:45:32 -0700 | [diff] [blame] | 3 | * Copyright (c) 2014-2018, Regents of the University of California, |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 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 | |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 26 | #include "face-module.hpp" |
Junxiao Shi | 05dd444 | 2017-02-06 22:50:07 +0000 | [diff] [blame] | 27 | #include "find-face.hpp" |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 28 | |
| 29 | namespace nfd { |
| 30 | namespace tools { |
Junxiao Shi | 331ade7 | 2016-08-19 14:07:19 +0000 | [diff] [blame] | 31 | namespace nfdc { |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 32 | |
| 33 | void |
Junxiao Shi | 1f481fa | 2017-01-26 15:14:43 +0000 | [diff] [blame] | 34 | FaceModule::registerCommands(CommandParser& parser) |
| 35 | { |
Junxiao Shi | 36e5429 | 2017-02-17 18:43:16 +0000 | [diff] [blame] | 36 | CommandDefinition defFaceList("face", "list"); |
| 37 | defFaceList |
| 38 | .setTitle("print face list") |
| 39 | .addArg("remote", ArgValueType::FACE_URI, Required::NO, Positional::YES) |
| 40 | .addArg("local", ArgValueType::FACE_URI, Required::NO, Positional::NO) |
| 41 | .addArg("scheme", ArgValueType::STRING, Required::NO, Positional::NO, "scheme"); |
| 42 | parser.addCommand(defFaceList, &FaceModule::list); |
Davide Pesavento | d214744 | 2018-02-19 23:58:17 -0500 | [diff] [blame] | 43 | parser.addAlias("face", "list", ""); |
Junxiao Shi | 36e5429 | 2017-02-17 18:43:16 +0000 | [diff] [blame] | 44 | |
Junxiao Shi | 1f481fa | 2017-01-26 15:14:43 +0000 | [diff] [blame] | 45 | CommandDefinition defFaceShow("face", "show"); |
| 46 | defFaceShow |
| 47 | .setTitle("show face information") |
| 48 | .addArg("id", ArgValueType::UNSIGNED, Required::YES, Positional::YES); |
| 49 | parser.addCommand(defFaceShow, &FaceModule::show); |
Junxiao Shi | 1d7fef5 | 2017-02-02 05:33:14 +0000 | [diff] [blame] | 50 | |
| 51 | CommandDefinition defFaceCreate("face", "create"); |
| 52 | defFaceCreate |
| 53 | .setTitle("create a face") |
| 54 | .addArg("remote", ArgValueType::FACE_URI, Required::YES, Positional::YES) |
Junxiao Shi | 0d97692 | 2017-04-01 14:35:21 +0000 | [diff] [blame] | 55 | .addArg("persistency", ArgValueType::FACE_PERSISTENCY, Required::NO, Positional::YES) |
Eric Newberry | 84d3adc | 2017-08-09 23:31:40 -0400 | [diff] [blame] | 56 | .addArg("local", ArgValueType::FACE_URI, Required::NO, Positional::NO) |
Eric Newberry | de33245 | 2018-01-30 11:45:32 -0700 | [diff] [blame] | 57 | .addArg("reliability", ArgValueType::BOOLEAN, Required::NO, Positional::NO) |
| 58 | .addArg("congestion-marking", ArgValueType::BOOLEAN, Required::NO, Positional::NO) |
| 59 | .addArg("congestion-marking-interval", ArgValueType::UNSIGNED, Required::NO, Positional::NO) |
Eric Newberry | 4f8dd96 | 2018-06-17 21:32:07 -0700 | [diff] [blame] | 60 | .addArg("default-congestion-threshold", ArgValueType::UNSIGNED, Required::NO, Positional::NO) |
| 61 | .addArg("mtu", ArgValueType::UNSIGNED, Required::NO, Positional::NO); |
Junxiao Shi | 1d7fef5 | 2017-02-02 05:33:14 +0000 | [diff] [blame] | 62 | parser.addCommand(defFaceCreate, &FaceModule::create); |
Junxiao Shi | 05dd444 | 2017-02-06 22:50:07 +0000 | [diff] [blame] | 63 | |
| 64 | CommandDefinition defFaceDestroy("face", "destroy"); |
| 65 | defFaceDestroy |
| 66 | .setTitle("destroy a face") |
| 67 | .addArg("face", ArgValueType::FACE_ID_OR_URI, Required::YES, Positional::YES); |
| 68 | parser.addCommand(defFaceDestroy, &FaceModule::destroy); |
Junxiao Shi | 1f481fa | 2017-01-26 15:14:43 +0000 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | void |
Junxiao Shi | 36e5429 | 2017-02-17 18:43:16 +0000 | [diff] [blame] | 72 | FaceModule::list(ExecuteContext& ctx) |
| 73 | { |
| 74 | auto remoteUri = ctx.args.getOptional<FaceUri>("remote"); |
| 75 | auto localUri = ctx.args.getOptional<FaceUri>("local"); |
| 76 | auto uriScheme = ctx.args.getOptional<std::string>("scheme"); |
| 77 | |
| 78 | FaceQueryFilter filter; |
| 79 | if (remoteUri) { |
| 80 | filter.setRemoteUri(remoteUri->toString()); |
| 81 | } |
| 82 | if (localUri) { |
| 83 | filter.setLocalUri(localUri->toString()); |
| 84 | } |
| 85 | if (uriScheme) { |
| 86 | filter.setUriScheme(*uriScheme); |
| 87 | } |
| 88 | |
| 89 | FindFace findFace(ctx); |
| 90 | FindFace::Code res = findFace.execute(filter, true); |
| 91 | |
| 92 | ctx.exitCode = static_cast<int>(res); |
| 93 | switch (res) { |
| 94 | case FindFace::Code::OK: |
| 95 | for (const FaceStatus& item : findFace.getResults()) { |
| 96 | formatItemText(ctx.out, item, false); |
| 97 | ctx.out << '\n'; |
| 98 | } |
| 99 | break; |
| 100 | case FindFace::Code::ERROR: |
| 101 | case FindFace::Code::NOT_FOUND: |
| 102 | case FindFace::Code::CANONIZE_ERROR: |
| 103 | ctx.err << findFace.getErrorReason() << '\n'; |
| 104 | break; |
| 105 | default: |
| 106 | BOOST_ASSERT_MSG(false, "unexpected FindFace result"); |
| 107 | break; |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | void |
Junxiao Shi | 1f481fa | 2017-01-26 15:14:43 +0000 | [diff] [blame] | 112 | FaceModule::show(ExecuteContext& ctx) |
| 113 | { |
| 114 | uint64_t faceId = ctx.args.get<uint64_t>("id"); |
| 115 | |
Junxiao Shi | 8f803f2 | 2017-02-10 03:04:28 +0000 | [diff] [blame] | 116 | FindFace findFace(ctx); |
| 117 | FindFace::Code res = findFace.execute(faceId); |
Junxiao Shi | 1d7fef5 | 2017-02-02 05:33:14 +0000 | [diff] [blame] | 118 | |
Junxiao Shi | 8f803f2 | 2017-02-10 03:04:28 +0000 | [diff] [blame] | 119 | ctx.exitCode = static_cast<int>(res); |
| 120 | switch (res) { |
| 121 | case FindFace::Code::OK: |
| 122 | formatItemText(ctx.out, findFace.getFaceStatus(), true); |
| 123 | break; |
| 124 | case FindFace::Code::ERROR: |
| 125 | case FindFace::Code::NOT_FOUND: |
| 126 | ctx.err << findFace.getErrorReason() << '\n'; |
| 127 | break; |
| 128 | default: |
| 129 | BOOST_ASSERT_MSG(false, "unexpected FindFace result"); |
| 130 | break; |
| 131 | } |
Junxiao Shi | 1d7fef5 | 2017-02-02 05:33:14 +0000 | [diff] [blame] | 132 | } |
| 133 | |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 134 | /** \brief order persistency in NONE < ON_DEMAND < PERSISTENCY < PERMANENT |
| 135 | */ |
| 136 | static bool |
| 137 | persistencyLessThan(FacePersistency x, FacePersistency y) |
| 138 | { |
| 139 | switch (x) { |
| 140 | case FacePersistency::FACE_PERSISTENCY_NONE: |
| 141 | return y != FacePersistency::FACE_PERSISTENCY_NONE; |
| 142 | case FacePersistency::FACE_PERSISTENCY_ON_DEMAND: |
| 143 | return y == FacePersistency::FACE_PERSISTENCY_PERSISTENT || |
| 144 | y == FacePersistency::FACE_PERSISTENCY_PERMANENT; |
| 145 | case FacePersistency::FACE_PERSISTENCY_PERSISTENT: |
| 146 | return y == FacePersistency::FACE_PERSISTENCY_PERMANENT; |
| 147 | case FacePersistency::FACE_PERSISTENCY_PERMANENT: |
| 148 | return false; |
| 149 | } |
| 150 | return static_cast<int>(x) < static_cast<int>(y); |
| 151 | } |
| 152 | |
Junxiao Shi | 1d7fef5 | 2017-02-02 05:33:14 +0000 | [diff] [blame] | 153 | void |
| 154 | FaceModule::create(ExecuteContext& ctx) |
| 155 | { |
Junxiao Shi | 0d97692 | 2017-04-01 14:35:21 +0000 | [diff] [blame] | 156 | auto remoteUri = ctx.args.get<FaceUri>("remote"); |
| 157 | auto localUri = ctx.args.getOptional<FaceUri>("local"); |
Junxiao Shi | 1d7fef5 | 2017-02-02 05:33:14 +0000 | [diff] [blame] | 158 | auto persistency = ctx.args.get<FacePersistency>("persistency", FacePersistency::FACE_PERSISTENCY_PERSISTENT); |
Eric Newberry | 84d3adc | 2017-08-09 23:31:40 -0400 | [diff] [blame] | 159 | auto lpReliability = ctx.args.getTribool("reliability"); |
Eric Newberry | de33245 | 2018-01-30 11:45:32 -0700 | [diff] [blame] | 160 | auto congestionMarking = ctx.args.getTribool("congestion-marking"); |
| 161 | auto baseCongestionMarkingIntervalMs = ctx.args.getOptional<uint64_t>("congestion-marking-interval"); |
| 162 | auto defaultCongestionThreshold = ctx.args.getOptional<uint64_t>("default-congestion-threshold"); |
Eric Newberry | 4f8dd96 | 2018-06-17 21:32:07 -0700 | [diff] [blame] | 163 | auto mtu = ctx.args.getOptional<uint64_t>("mtu"); |
Eric Newberry | 84d3adc | 2017-08-09 23:31:40 -0400 | [diff] [blame] | 164 | |
Junxiao Shi | 0d97692 | 2017-04-01 14:35:21 +0000 | [diff] [blame] | 165 | FaceUri canonicalRemote; |
Davide Pesavento | 87fc0f8 | 2018-04-11 23:43:51 -0400 | [diff] [blame] | 166 | optional<FaceUri> canonicalLocal; |
Junxiao Shi | 0d97692 | 2017-04-01 14:35:21 +0000 | [diff] [blame] | 167 | |
| 168 | auto handleCanonizeError = [&] (const FaceUri& faceUri, const std::string& error) { |
| 169 | ctx.exitCode = 4; |
| 170 | ctx.err << "Error when canonizing '" << faceUri << "': " << error << '\n'; |
| 171 | }; |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 172 | |
| 173 | auto printPositiveResult = [&] (const std::string& actionSummary, const ControlParameters& resp) { |
| 174 | text::ItemAttributes ia; |
| 175 | ctx.out << actionSummary << ' ' |
| 176 | << ia("id") << resp.getFaceId() |
Junxiao Shi | 1cce2a3 | 2017-05-02 02:39:55 +0000 | [diff] [blame] | 177 | << ia("local") << resp.getLocalUri() |
| 178 | << ia("remote") << resp.getUri() |
Eric Newberry | de33245 | 2018-01-30 11:45:32 -0700 | [diff] [blame] | 179 | << ia("persistency") << resp.getFacePersistency(); |
| 180 | printFaceParams(ctx.out, ia, resp); |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 181 | }; |
| 182 | |
Eric Newberry | 84d3adc | 2017-08-09 23:31:40 -0400 | [diff] [blame] | 183 | auto updateFace = [&printPositiveResult] (ControlParameters respParams, ControlParameters resp) { |
| 184 | // faces/update response does not have FaceUris, copy from faces/create response |
| 185 | resp.setLocalUri(respParams.getLocalUri()) |
| 186 | .setUri(respParams.getUri()); |
| 187 | printPositiveResult("face-updated", resp); |
| 188 | }; |
| 189 | |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 190 | auto handle409 = [&] (const ControlResponse& resp) { |
| 191 | ControlParameters respParams(resp.getBody()); |
Junxiao Shi | 0d97692 | 2017-04-01 14:35:21 +0000 | [diff] [blame] | 192 | if (respParams.getUri() != canonicalRemote.toString()) { |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 193 | // we are conflicting with a different face, which is a general error |
| 194 | return false; |
| 195 | } |
| 196 | |
Eric Newberry | 4f8dd96 | 2018-06-17 21:32:07 -0700 | [diff] [blame] | 197 | if (mtu && (!respParams.hasMtu() || respParams.getMtu() != *mtu)) { |
| 198 | // Mtu cannot be changed with faces/update |
| 199 | return false; |
| 200 | } |
| 201 | else if (persistencyLessThan(respParams.getFacePersistency(), persistency)) { |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 202 | // need to upgrade persistency |
Eric Newberry | 84d3adc | 2017-08-09 23:31:40 -0400 | [diff] [blame] | 203 | ControlParameters params; |
| 204 | params.setFaceId(respParams.getFaceId()).setFacePersistency(persistency); |
| 205 | if (!boost::logic::indeterminate(lpReliability)) { |
| 206 | params.setFlagBit(ndn::nfd::BIT_LP_RELIABILITY_ENABLED, lpReliability); |
| 207 | } |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 208 | ctx.controller.start<ndn::nfd::FaceUpdateCommand>( |
Eric Newberry | 84d3adc | 2017-08-09 23:31:40 -0400 | [diff] [blame] | 209 | params, |
| 210 | bind(updateFace, respParams, _1), |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 211 | ctx.makeCommandFailureHandler("upgrading face persistency"), |
| 212 | ctx.makeCommandOptions()); |
| 213 | } |
Eric Newberry | de33245 | 2018-01-30 11:45:32 -0700 | [diff] [blame] | 214 | else if ((!boost::logic::indeterminate(lpReliability) && |
| 215 | lpReliability != respParams.getFlagBit(ndn::nfd::BIT_LP_RELIABILITY_ENABLED)) || |
| 216 | (!boost::logic::indeterminate(congestionMarking) && |
| 217 | congestionMarking != respParams.getFlagBit(ndn::nfd::BIT_CONGESTION_MARKING_ENABLED)) || |
| 218 | baseCongestionMarkingIntervalMs || |
| 219 | defaultCongestionThreshold) { |
Eric Newberry | 84d3adc | 2017-08-09 23:31:40 -0400 | [diff] [blame] | 220 | ControlParameters params; |
Eric Newberry | de33245 | 2018-01-30 11:45:32 -0700 | [diff] [blame] | 221 | params.setFaceId(respParams.getFaceId()); |
| 222 | |
| 223 | if (!boost::logic::indeterminate(lpReliability) && |
| 224 | lpReliability != respParams.getFlagBit(ndn::nfd::BIT_LP_RELIABILITY_ENABLED)) { |
| 225 | params.setFlagBit(ndn::nfd::BIT_LP_RELIABILITY_ENABLED, lpReliability); |
| 226 | } |
| 227 | if (!boost::logic::indeterminate(congestionMarking) && |
| 228 | congestionMarking != respParams.getFlagBit(ndn::nfd::BIT_CONGESTION_MARKING_ENABLED)) { |
| 229 | params.setFlagBit(ndn::nfd::BIT_CONGESTION_MARKING_ENABLED, congestionMarking); |
| 230 | } |
| 231 | |
| 232 | if (baseCongestionMarkingIntervalMs) { |
| 233 | params.setBaseCongestionMarkingInterval(time::milliseconds(*baseCongestionMarkingIntervalMs)); |
| 234 | } |
| 235 | |
| 236 | if (defaultCongestionThreshold) { |
| 237 | params.setDefaultCongestionThreshold(*defaultCongestionThreshold); |
| 238 | } |
| 239 | |
Eric Newberry | 84d3adc | 2017-08-09 23:31:40 -0400 | [diff] [blame] | 240 | ctx.controller.start<ndn::nfd::FaceUpdateCommand>( |
| 241 | params, |
| 242 | bind(updateFace, respParams, _1), |
Eric Newberry | de33245 | 2018-01-30 11:45:32 -0700 | [diff] [blame] | 243 | ctx.makeCommandFailureHandler("updating face"), |
Eric Newberry | 84d3adc | 2017-08-09 23:31:40 -0400 | [diff] [blame] | 244 | ctx.makeCommandOptions()); |
| 245 | } |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 246 | else { |
Eric Newberry | 84d3adc | 2017-08-09 23:31:40 -0400 | [diff] [blame] | 247 | // don't do anything |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 248 | printPositiveResult("face-exists", respParams); |
| 249 | } |
| 250 | return true; |
| 251 | }; |
Junxiao Shi | 1d7fef5 | 2017-02-02 05:33:14 +0000 | [diff] [blame] | 252 | |
Junxiao Shi | 0d97692 | 2017-04-01 14:35:21 +0000 | [diff] [blame] | 253 | auto doCreateFace = [&] { |
| 254 | ControlParameters params; |
| 255 | params.setUri(canonicalRemote.toString()); |
| 256 | if (canonicalLocal) { |
| 257 | params.setLocalUri(canonicalLocal->toString()); |
| 258 | } |
| 259 | params.setFacePersistency(persistency); |
Eric Newberry | 84d3adc | 2017-08-09 23:31:40 -0400 | [diff] [blame] | 260 | if (!boost::logic::indeterminate(lpReliability)) { |
| 261 | params.setFlagBit(ndn::nfd::BIT_LP_RELIABILITY_ENABLED, lpReliability); |
| 262 | } |
Eric Newberry | de33245 | 2018-01-30 11:45:32 -0700 | [diff] [blame] | 263 | if (!boost::logic::indeterminate(congestionMarking)) { |
| 264 | params.setFlagBit(ndn::nfd::BIT_CONGESTION_MARKING_ENABLED, congestionMarking); |
| 265 | } |
| 266 | if (baseCongestionMarkingIntervalMs) { |
| 267 | params.setBaseCongestionMarkingInterval(time::milliseconds(*baseCongestionMarkingIntervalMs)); |
| 268 | } |
| 269 | if (defaultCongestionThreshold) { |
| 270 | params.setDefaultCongestionThreshold(*defaultCongestionThreshold); |
| 271 | } |
Eric Newberry | 4f8dd96 | 2018-06-17 21:32:07 -0700 | [diff] [blame] | 272 | if (mtu) { |
| 273 | params.setMtu(*mtu); |
| 274 | } |
Junxiao Shi | 0d97692 | 2017-04-01 14:35:21 +0000 | [diff] [blame] | 275 | |
| 276 | ctx.controller.start<ndn::nfd::FaceCreateCommand>( |
| 277 | params, |
| 278 | bind(printPositiveResult, "face-created", _1), |
| 279 | [&] (const ControlResponse& resp) { |
| 280 | if (resp.getCode() == 409 && handle409(resp)) { |
| 281 | return; |
| 282 | } |
| 283 | ctx.makeCommandFailureHandler("creating face")(resp); // invoke general error handler |
| 284 | }, |
| 285 | ctx.makeCommandOptions()); |
| 286 | }; |
| 287 | |
| 288 | remoteUri.canonize( |
| 289 | [&] (const FaceUri& canonicalUri) { |
| 290 | canonicalRemote = canonicalUri; |
| 291 | if (localUri) { |
| 292 | localUri->canonize( |
| 293 | [&] (const FaceUri& canonicalUri) { |
| 294 | canonicalLocal = canonicalUri; |
| 295 | doCreateFace(); |
| 296 | }, |
| 297 | bind(handleCanonizeError, *localUri, _1), |
| 298 | ctx.face.getIoService(), ctx.getTimeout()); |
| 299 | } |
| 300 | else { |
| 301 | doCreateFace(); |
| 302 | } |
Junxiao Shi | 1d7fef5 | 2017-02-02 05:33:14 +0000 | [diff] [blame] | 303 | }, |
Junxiao Shi | 0d97692 | 2017-04-01 14:35:21 +0000 | [diff] [blame] | 304 | bind(handleCanonizeError, remoteUri, _1), |
Junxiao Shi | 1d7fef5 | 2017-02-02 05:33:14 +0000 | [diff] [blame] | 305 | ctx.face.getIoService(), ctx.getTimeout()); |
Junxiao Shi | 1f481fa | 2017-01-26 15:14:43 +0000 | [diff] [blame] | 306 | |
| 307 | ctx.face.processEvents(); |
| 308 | } |
| 309 | |
| 310 | void |
Junxiao Shi | 05dd444 | 2017-02-06 22:50:07 +0000 | [diff] [blame] | 311 | FaceModule::destroy(ExecuteContext& ctx) |
| 312 | { |
Junxiao Shi | 05dd444 | 2017-02-06 22:50:07 +0000 | [diff] [blame] | 313 | FindFace findFace(ctx); |
Davide Pesavento | 8b663a9 | 2018-11-21 22:57:20 -0500 | [diff] [blame^] | 314 | FindFace::Code res = findFace.execute(ctx.args.at("face")); |
Junxiao Shi | 05dd444 | 2017-02-06 22:50:07 +0000 | [diff] [blame] | 315 | |
| 316 | ctx.exitCode = static_cast<int>(res); |
| 317 | switch (res) { |
| 318 | case FindFace::Code::OK: |
| 319 | break; |
| 320 | case FindFace::Code::ERROR: |
| 321 | case FindFace::Code::CANONIZE_ERROR: |
| 322 | case FindFace::Code::NOT_FOUND: |
| 323 | ctx.err << findFace.getErrorReason() << '\n'; |
| 324 | return; |
| 325 | case FindFace::Code::AMBIGUOUS: |
| 326 | ctx.err << "Multiple faces match specified remote FaceUri. Re-run the command with a FaceId:"; |
| 327 | findFace.printDisambiguation(ctx.err, FindFace::DisambiguationStyle::LOCAL_URI); |
| 328 | ctx.err << '\n'; |
| 329 | return; |
| 330 | default: |
| 331 | BOOST_ASSERT_MSG(false, "unexpected FindFace result"); |
| 332 | return; |
| 333 | } |
| 334 | |
| 335 | const FaceStatus& face = findFace.getFaceStatus(); |
| 336 | |
| 337 | ctx.controller.start<ndn::nfd::FaceDestroyCommand>( |
| 338 | ControlParameters().setFaceId(face.getFaceId()), |
| 339 | [&] (const ControlParameters& resp) { |
| 340 | ctx.out << "face-destroyed "; |
| 341 | text::ItemAttributes ia; |
| 342 | ctx.out << ia("id") << face.getFaceId() |
| 343 | << ia("local") << face.getLocalUri() |
| 344 | << ia("remote") << face.getRemoteUri() |
Eric Newberry | de33245 | 2018-01-30 11:45:32 -0700 | [diff] [blame] | 345 | << ia("persistency") << face.getFacePersistency(); |
| 346 | printFaceParams(ctx.out, ia, resp); |
Junxiao Shi | 05dd444 | 2017-02-06 22:50:07 +0000 | [diff] [blame] | 347 | }, |
| 348 | ctx.makeCommandFailureHandler("destroying face"), |
| 349 | ctx.makeCommandOptions()); |
| 350 | |
| 351 | ctx.face.processEvents(); |
| 352 | } |
| 353 | |
| 354 | void |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 355 | FaceModule::fetchStatus(Controller& controller, |
Davide Pesavento | 87fc0f8 | 2018-04-11 23:43:51 -0400 | [diff] [blame] | 356 | const std::function<void()>& onSuccess, |
Junxiao Shi | 29b4128 | 2016-08-22 03:47:02 +0000 | [diff] [blame] | 357 | const Controller::DatasetFailCallback& onFailure, |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 358 | const CommandOptions& options) |
| 359 | { |
| 360 | controller.fetch<ndn::nfd::FaceDataset>( |
| 361 | [this, onSuccess] (const std::vector<FaceStatus>& result) { |
| 362 | m_status = result; |
| 363 | onSuccess(); |
| 364 | }, |
| 365 | onFailure, options); |
| 366 | } |
| 367 | |
| 368 | void |
| 369 | FaceModule::formatStatusXml(std::ostream& os) const |
| 370 | { |
| 371 | os << "<faces>"; |
| 372 | for (const FaceStatus& item : m_status) { |
| 373 | this->formatItemXml(os, item); |
| 374 | } |
| 375 | os << "</faces>"; |
| 376 | } |
| 377 | |
| 378 | void |
| 379 | FaceModule::formatItemXml(std::ostream& os, const FaceStatus& item) const |
| 380 | { |
| 381 | os << "<face>"; |
| 382 | |
| 383 | os << "<faceId>" << item.getFaceId() << "</faceId>"; |
| 384 | os << "<remoteUri>" << xml::Text{item.getRemoteUri()} << "</remoteUri>"; |
| 385 | os << "<localUri>" << xml::Text{item.getLocalUri()} << "</localUri>"; |
| 386 | |
| 387 | if (item.hasExpirationPeriod()) { |
| 388 | os << "<expirationPeriod>" << xml::formatDuration(item.getExpirationPeriod()) |
| 389 | << "</expirationPeriod>"; |
| 390 | } |
| 391 | os << "<faceScope>" << item.getFaceScope() << "</faceScope>"; |
| 392 | os << "<facePersistency>" << item.getFacePersistency() << "</facePersistency>"; |
| 393 | os << "<linkType>" << item.getLinkType() << "</linkType>"; |
| 394 | |
Eric Newberry | de33245 | 2018-01-30 11:45:32 -0700 | [diff] [blame] | 395 | if (!item.hasBaseCongestionMarkingInterval() && !item.hasDefaultCongestionThreshold()) { |
| 396 | os << "<congestion/>"; |
| 397 | } |
| 398 | else { |
| 399 | os << "<congestion>"; |
| 400 | if (item.hasBaseCongestionMarkingInterval()) { |
| 401 | os << "<baseMarkingInterval>" << xml::formatDuration(item.getBaseCongestionMarkingInterval()) |
| 402 | << "</baseMarkingInterval>"; |
| 403 | } |
| 404 | if (item.hasDefaultCongestionThreshold()) { |
| 405 | os << "<defaultThreshold>" << item.getDefaultCongestionThreshold() << "</defaultThreshold>"; |
| 406 | } |
| 407 | os << "</congestion>"; |
| 408 | } |
| 409 | |
Eric Newberry | 4f8dd96 | 2018-06-17 21:32:07 -0700 | [diff] [blame] | 410 | if (item.hasMtu()) { |
| 411 | os << "<mtu>" << item.getMtu() << "</mtu>"; |
| 412 | } |
| 413 | |
Eric Newberry | 6d932e8 | 2016-11-24 05:05:43 +0000 | [diff] [blame] | 414 | if (item.getFlags() == 0) { |
| 415 | os << "<flags/>"; |
| 416 | } |
| 417 | else { |
| 418 | os << "<flags>"; |
Junxiao Shi | 7a36ac7 | 2018-03-21 15:23:22 +0000 | [diff] [blame] | 419 | os << xml::Flag{"localFieldsEnabled", item.getFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED)}; |
| 420 | os << xml::Flag{"lpReliabilityEnabled", item.getFlagBit(ndn::nfd::BIT_LP_RELIABILITY_ENABLED)}; |
| 421 | os << xml::Flag{"congestionMarkingEnabled", item.getFlagBit(ndn::nfd::BIT_CONGESTION_MARKING_ENABLED)}; |
Eric Newberry | 6d932e8 | 2016-11-24 05:05:43 +0000 | [diff] [blame] | 422 | os << "</flags>"; |
| 423 | } |
| 424 | |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 425 | os << "<packetCounters>"; |
| 426 | os << "<incomingPackets>" |
| 427 | << "<nInterests>" << item.getNInInterests() << "</nInterests>" |
Junxiao Shi | f03d479 | 2017-04-06 16:41:22 +0000 | [diff] [blame] | 428 | << "<nData>" << item.getNInData() << "</nData>" |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 429 | << "<nNacks>" << item.getNInNacks() << "</nNacks>" |
| 430 | << "</incomingPackets>"; |
| 431 | os << "<outgoingPackets>" |
| 432 | << "<nInterests>" << item.getNOutInterests() << "</nInterests>" |
Junxiao Shi | f03d479 | 2017-04-06 16:41:22 +0000 | [diff] [blame] | 433 | << "<nData>" << item.getNOutData() << "</nData>" |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 434 | << "<nNacks>" << item.getNOutNacks() << "</nNacks>" |
| 435 | << "</outgoingPackets>"; |
| 436 | os << "</packetCounters>"; |
| 437 | |
| 438 | os << "<byteCounters>"; |
| 439 | os << "<incomingBytes>" << item.getNInBytes() << "</incomingBytes>"; |
| 440 | os << "<outgoingBytes>" << item.getNOutBytes() << "</outgoingBytes>"; |
| 441 | os << "</byteCounters>"; |
| 442 | |
| 443 | os << "</face>"; |
| 444 | } |
| 445 | |
| 446 | void |
| 447 | FaceModule::formatStatusText(std::ostream& os) const |
| 448 | { |
| 449 | os << "Faces:\n"; |
| 450 | for (const FaceStatus& item : m_status) { |
Junxiao Shi | 1f481fa | 2017-01-26 15:14:43 +0000 | [diff] [blame] | 451 | os << " "; |
| 452 | formatItemText(os, item, false); |
| 453 | os << '\n'; |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 454 | } |
| 455 | } |
| 456 | |
| 457 | void |
Junxiao Shi | 1f481fa | 2017-01-26 15:14:43 +0000 | [diff] [blame] | 458 | FaceModule::formatItemText(std::ostream& os, const FaceStatus& item, bool wantMultiLine) |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 459 | { |
Eric Newberry | de33245 | 2018-01-30 11:45:32 -0700 | [diff] [blame] | 460 | text::ItemAttributes ia(wantMultiLine, 10); |
Junxiao Shi | 1f481fa | 2017-01-26 15:14:43 +0000 | [diff] [blame] | 461 | |
| 462 | os << ia("faceid") << item.getFaceId(); |
| 463 | os << ia("remote") << item.getRemoteUri(); |
| 464 | os << ia("local") << item.getLocalUri(); |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 465 | |
| 466 | if (item.hasExpirationPeriod()) { |
Eric Newberry | de33245 | 2018-01-30 11:45:32 -0700 | [diff] [blame] | 467 | os << ia("expires") << text::formatDuration<time::seconds>(item.getExpirationPeriod()); |
| 468 | } |
| 469 | |
| 470 | if (item.hasBaseCongestionMarkingInterval() || item.hasDefaultCongestionThreshold()) { |
| 471 | os << ia("congestion") << "{"; |
| 472 | text::Separator congestionSep("", " "); |
| 473 | if (item.hasBaseCongestionMarkingInterval()) { |
| 474 | os << congestionSep << "base-marking-interval=" |
| 475 | << text::formatDuration<time::milliseconds>(item.getBaseCongestionMarkingInterval()); |
| 476 | } |
| 477 | if (item.hasDefaultCongestionThreshold()) { |
| 478 | os << congestionSep << "default-threshold=" << item.getDefaultCongestionThreshold() << "B"; |
| 479 | } |
| 480 | os << "}"; |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 481 | } |
| 482 | |
Eric Newberry | 4f8dd96 | 2018-06-17 21:32:07 -0700 | [diff] [blame] | 483 | if (item.hasMtu()) { |
| 484 | os << ia("mtu") << item.getMtu(); |
| 485 | } |
| 486 | |
Junxiao Shi | 1f481fa | 2017-01-26 15:14:43 +0000 | [diff] [blame] | 487 | os << ia("counters") |
| 488 | << "{in={" |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 489 | << item.getNInInterests() << "i " |
Junxiao Shi | f03d479 | 2017-04-06 16:41:22 +0000 | [diff] [blame] | 490 | << item.getNInData() << "d " |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 491 | << item.getNInNacks() << "n " |
Junxiao Shi | 1f481fa | 2017-01-26 15:14:43 +0000 | [diff] [blame] | 492 | << item.getNInBytes() << "B} " |
| 493 | << "out={" |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 494 | << item.getNOutInterests() << "i " |
Junxiao Shi | f03d479 | 2017-04-06 16:41:22 +0000 | [diff] [blame] | 495 | << item.getNOutData() << "d " |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 496 | << item.getNOutNacks() << "n " |
| 497 | << item.getNOutBytes() << "B}}"; |
| 498 | |
Junxiao Shi | 1f481fa | 2017-01-26 15:14:43 +0000 | [diff] [blame] | 499 | os << ia("flags") << '{'; |
| 500 | text::Separator flagSep("", " "); |
| 501 | os << flagSep << item.getFaceScope(); |
| 502 | os << flagSep << item.getFacePersistency(); |
| 503 | os << flagSep << item.getLinkType(); |
Eric Newberry | 6d932e8 | 2016-11-24 05:05:43 +0000 | [diff] [blame] | 504 | if (item.getFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED)) { |
Junxiao Shi | 1f481fa | 2017-01-26 15:14:43 +0000 | [diff] [blame] | 505 | os << flagSep << "local-fields"; |
Eric Newberry | 6d932e8 | 2016-11-24 05:05:43 +0000 | [diff] [blame] | 506 | } |
Eric Newberry | 84d3adc | 2017-08-09 23:31:40 -0400 | [diff] [blame] | 507 | if (item.getFlagBit(ndn::nfd::BIT_LP_RELIABILITY_ENABLED)) { |
| 508 | os << flagSep << "lp-reliability"; |
| 509 | } |
Eric Newberry | de33245 | 2018-01-30 11:45:32 -0700 | [diff] [blame] | 510 | if (item.getFlagBit(ndn::nfd::BIT_CONGESTION_MARKING_ENABLED)) { |
| 511 | os << flagSep << "congestion-marking"; |
| 512 | } |
Junxiao Shi | 1f481fa | 2017-01-26 15:14:43 +0000 | [diff] [blame] | 513 | os << '}'; |
Eric Newberry | 6d932e8 | 2016-11-24 05:05:43 +0000 | [diff] [blame] | 514 | |
Junxiao Shi | 1f481fa | 2017-01-26 15:14:43 +0000 | [diff] [blame] | 515 | os << ia.end(); |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 516 | } |
| 517 | |
Eric Newberry | de33245 | 2018-01-30 11:45:32 -0700 | [diff] [blame] | 518 | void |
| 519 | FaceModule::printFaceParams(std::ostream& os, text::ItemAttributes& ia, const ControlParameters& resp) |
| 520 | { |
Junxiao Shi | 8dc473a | 2018-03-02 15:10:18 +0000 | [diff] [blame] | 521 | os << ia("reliability") << text::OnOff{resp.getFlagBit(ndn::nfd::BIT_LP_RELIABILITY_ENABLED)} |
| 522 | << ia("congestion-marking") << text::OnOff{resp.getFlagBit(ndn::nfd::BIT_CONGESTION_MARKING_ENABLED)}; |
Eric Newberry | de33245 | 2018-01-30 11:45:32 -0700 | [diff] [blame] | 523 | if (resp.hasBaseCongestionMarkingInterval()) { |
| 524 | os << ia("congestion-marking-interval") |
| 525 | << text::formatDuration<time::milliseconds>(resp.getBaseCongestionMarkingInterval()); |
| 526 | } |
| 527 | if (resp.hasDefaultCongestionThreshold()) { |
| 528 | os << ia("default-congestion-threshold") << resp.getDefaultCongestionThreshold() << "B"; |
| 529 | } |
Eric Newberry | 4f8dd96 | 2018-06-17 21:32:07 -0700 | [diff] [blame] | 530 | if (resp.hasMtu()) { |
| 531 | os << ia("mtu") << resp.getMtu(); |
| 532 | } |
Eric Newberry | de33245 | 2018-01-30 11:45:32 -0700 | [diff] [blame] | 533 | os << '\n'; |
| 534 | } |
| 535 | |
Junxiao Shi | 331ade7 | 2016-08-19 14:07:19 +0000 | [diff] [blame] | 536 | } // namespace nfdc |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 537 | } // namespace tools |
| 538 | } // namespace nfd |