blob: b7bad5119540e3e81c01251ba4b7f354d654feda [file] [log] [blame]
Steve DiBenedetto6214e562014-03-15 16:27:04 -06001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -07003 * 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 DiBenedetto6214e562014-03-15 16:27:04 -060024
25#include "fib-enumeration-publisher.hpp"
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060026#include "core/logger.hpp"
Davide Pesavento52a18f92014-04-10 00:55:01 +020027#include "table/fib.hpp"
Steve DiBenedetto6214e562014-03-15 16:27:04 -060028
Alexander Afanasyev4a771362014-04-24 21:29:33 -070029#include <ndn-cxx/management/nfd-fib-entry.hpp>
Steve DiBenedetto6214e562014-03-15 16:27:04 -060030
31namespace nfd {
32
33NFD_LOG_INIT("FibEnumerationPublisher");
34
35FibEnumerationPublisher::FibEnumerationPublisher(const Fib& fib,
Vince Lehman5144f822014-07-23 15:12:56 -070036 AppFace& face,
37 const Name& prefix,
38 ndn::KeyChain& keyChain)
39 : SegmentPublisher(face, prefix, keyChain)
Steve DiBenedetto6214e562014-03-15 16:27:04 -060040 , m_fib(fib)
41{
Steve DiBenedetto6214e562014-03-15 16:27:04 -060042}
43
44FibEnumerationPublisher::~FibEnumerationPublisher()
45{
Steve DiBenedetto6214e562014-03-15 16:27:04 -060046}
47
48size_t
49FibEnumerationPublisher::generate(ndn::EncodingBuffer& outBuffer)
50{
Steve DiBenedetto6214e562014-03-15 16:27:04 -060051 size_t totalLength = 0;
Alexander Afanasyev7b7dfdd2014-03-21 13:57:54 -070052
53 /// \todo Enable use of Fib::const_reverse_iterator (when it is available)
Steve DiBenedetto6214e562014-03-15 16:27:04 -060054 for (Fib::const_iterator i = m_fib.begin(); i != m_fib.end(); ++i)
55 {
56 const fib::Entry& entry = *i;
57 const Name& prefix = entry.getPrefix();
58 size_t fibEntryLength = 0;
59
60 ndn::nfd::FibEntry tlvEntry;
61 const fib::NextHopList& nextHops = entry.getNextHops();
62
63 for (fib::NextHopList::const_iterator j = nextHops.begin();
64 j != nextHops.end();
65 ++j)
66 {
67 const fib::NextHop& next = *j;
68 ndn::nfd::NextHopRecord nextHopRecord;
69 nextHopRecord.setFaceId(next.getFace()->getId());
70 nextHopRecord.setCost(next.getCost());
71
72 tlvEntry.addNextHopRecord(nextHopRecord);
73 }
74
75 tlvEntry.setPrefix(prefix);
76 fibEntryLength += tlvEntry.wireEncode(outBuffer);
77
78 NFD_LOG_DEBUG("generate: fib entry length = " << fibEntryLength);
79
80 totalLength += fibEntryLength;
81 }
82 NFD_LOG_DEBUG("generate: Total length = " << totalLength);
83 return totalLength;
84}
85
86
87} // namespace nfd