Steve DiBenedetto | 6214e56 | 2014-03-15 16:27:04 -0600 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -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 | * |
| 10 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 11 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 12 | * |
| 13 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 14 | * of the GNU General Public License as published by the Free Software Foundation, |
| 15 | * either version 3 of the License, or (at your option) any later version. |
| 16 | * |
| 17 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 18 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 19 | * PURPOSE. See the GNU General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License along with |
| 22 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 23 | **/ |
Steve DiBenedetto | 6214e56 | 2014-03-15 16:27:04 -0600 | [diff] [blame] | 24 | |
| 25 | #include "fib-enumeration-publisher.hpp" |
Steve DiBenedetto | bf6a93d | 2014-03-21 14:03:02 -0600 | [diff] [blame] | 26 | #include "core/logger.hpp" |
Davide Pesavento | 52a18f9 | 2014-04-10 00:55:01 +0200 | [diff] [blame] | 27 | #include "table/fib.hpp" |
Steve DiBenedetto | 6214e56 | 2014-03-15 16:27:04 -0600 | [diff] [blame] | 28 | |
| 29 | #include <ndn-cpp-dev/management/nfd-fib-entry.hpp> |
| 30 | |
| 31 | namespace nfd { |
| 32 | |
| 33 | NFD_LOG_INIT("FibEnumerationPublisher"); |
| 34 | |
| 35 | FibEnumerationPublisher::FibEnumerationPublisher(const Fib& fib, |
| 36 | shared_ptr<AppFace> face, |
| 37 | const Name& prefix) |
| 38 | : SegmentPublisher(face, prefix) |
| 39 | , m_fib(fib) |
| 40 | { |
Steve DiBenedetto | 6214e56 | 2014-03-15 16:27:04 -0600 | [diff] [blame] | 41 | } |
| 42 | |
| 43 | FibEnumerationPublisher::~FibEnumerationPublisher() |
| 44 | { |
Steve DiBenedetto | 6214e56 | 2014-03-15 16:27:04 -0600 | [diff] [blame] | 45 | } |
| 46 | |
| 47 | size_t |
| 48 | FibEnumerationPublisher::generate(ndn::EncodingBuffer& outBuffer) |
| 49 | { |
Steve DiBenedetto | 6214e56 | 2014-03-15 16:27:04 -0600 | [diff] [blame] | 50 | size_t totalLength = 0; |
Alexander Afanasyev | 7b7dfdd | 2014-03-21 13:57:54 -0700 | [diff] [blame] | 51 | |
| 52 | /// \todo Enable use of Fib::const_reverse_iterator (when it is available) |
Steve DiBenedetto | 6214e56 | 2014-03-15 16:27:04 -0600 | [diff] [blame] | 53 | for (Fib::const_iterator i = m_fib.begin(); i != m_fib.end(); ++i) |
| 54 | { |
| 55 | const fib::Entry& entry = *i; |
| 56 | const Name& prefix = entry.getPrefix(); |
| 57 | size_t fibEntryLength = 0; |
| 58 | |
| 59 | ndn::nfd::FibEntry tlvEntry; |
| 60 | const fib::NextHopList& nextHops = entry.getNextHops(); |
| 61 | |
| 62 | for (fib::NextHopList::const_iterator j = nextHops.begin(); |
| 63 | j != nextHops.end(); |
| 64 | ++j) |
| 65 | { |
| 66 | const fib::NextHop& next = *j; |
| 67 | ndn::nfd::NextHopRecord nextHopRecord; |
| 68 | nextHopRecord.setFaceId(next.getFace()->getId()); |
| 69 | nextHopRecord.setCost(next.getCost()); |
| 70 | |
| 71 | tlvEntry.addNextHopRecord(nextHopRecord); |
| 72 | } |
| 73 | |
| 74 | tlvEntry.setPrefix(prefix); |
| 75 | fibEntryLength += tlvEntry.wireEncode(outBuffer); |
| 76 | |
| 77 | NFD_LOG_DEBUG("generate: fib entry length = " << fibEntryLength); |
| 78 | |
| 79 | totalLength += fibEntryLength; |
| 80 | } |
| 81 | NFD_LOG_DEBUG("generate: Total length = " << totalLength); |
| 82 | return totalLength; |
| 83 | } |
| 84 | |
| 85 | |
| 86 | } // namespace nfd |