blob: 4278c98a8b79d90114e2ee4592fad8214f4798f6 [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,
36 shared_ptr<AppFace> face,
37 const Name& prefix)
38 : SegmentPublisher(face, prefix)
39 , m_fib(fib)
40{
Steve DiBenedetto6214e562014-03-15 16:27:04 -060041}
42
43FibEnumerationPublisher::~FibEnumerationPublisher()
44{
Steve DiBenedetto6214e562014-03-15 16:27:04 -060045}
46
47size_t
48FibEnumerationPublisher::generate(ndn::EncodingBuffer& outBuffer)
49{
Steve DiBenedetto6214e562014-03-15 16:27:04 -060050 size_t totalLength = 0;
Alexander Afanasyev7b7dfdd2014-03-21 13:57:54 -070051
52 /// \todo Enable use of Fib::const_reverse_iterator (when it is available)
Steve DiBenedetto6214e562014-03-15 16:27:04 -060053 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