blob: 2dc62d6bc6983cc2005ef0677f6a9a62d325d5eb [file] [log] [blame]
Steve DiBenedetto9f6c3642014-03-10 17:02:27 -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 DiBenedettobf6a93d2014-03-21 14:03:02 -060024
Steve DiBenedetto9f6c3642014-03-10 17:02:27 -060025#include "face-status-publisher.hpp"
Junxiao Shi6e694322014-04-03 10:27:13 -070026#include "face-flags.hpp"
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060027#include "core/logger.hpp"
Junxiao Shi6e694322014-04-03 10:27:13 -070028#include <ndn-cpp-dev/management/nfd-face-status.hpp>
Steve DiBenedetto9f6c3642014-03-10 17:02:27 -060029
30namespace nfd {
31
32NFD_LOG_INIT("FaceStatusPublisher");
33
34
35FaceStatusPublisher::FaceStatusPublisher(const FaceTable& faceTable,
36 shared_ptr<AppFace> face,
37 const Name& prefix)
38 : SegmentPublisher(face, prefix)
39 , m_faceTable(faceTable)
40{
41
42}
43
44
45FaceStatusPublisher::~FaceStatusPublisher()
46{
47
48}
49
50size_t
51FaceStatusPublisher::generate(ndn::EncodingBuffer& outBuffer)
52{
53 size_t totalLength = 0;
54
Alexander Afanasyev7b7dfdd2014-03-21 13:57:54 -070055 for (FaceTable::const_reverse_iterator i = m_faceTable.rbegin();
Junxiao Shi6e694322014-04-03 10:27:13 -070056 i != m_faceTable.rend(); ++i) {
57 const shared_ptr<Face>& face = *i;
58 const FaceCounters& counters = face->getCounters();
Steve DiBenedetto9f6c3642014-03-10 17:02:27 -060059
Junxiao Shi6e694322014-04-03 10:27:13 -070060 ndn::nfd::FaceStatus status;
61 status.setFaceId(face->getId())
62 .setRemoteUri(face->getRemoteUri().toString())
63 .setLocalUri(face->getLocalUri().toString())
64 .setFlags(getFaceFlags(*face))
65 .setNInInterests(counters.getNInInterests())
66 .setNInDatas(counters.getNInDatas())
67 .setNOutInterests(counters.getNOutInterests())
68 .setNOutDatas(counters.getNOutDatas());
Steve DiBenedetto9f6c3642014-03-10 17:02:27 -060069
Junxiao Shi6e694322014-04-03 10:27:13 -070070 totalLength += status.wireEncode(outBuffer);
71 }
Steve DiBenedetto9f6c3642014-03-10 17:02:27 -060072 return totalLength;
73}
74
75} // namespace nfd