blob: 3fb540fa4beea555c38a572b10ae8e3eee33f25f [file] [log] [blame]
Zhuo Lib3558892016-08-12 15:51:12 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shib54aabd2018-04-16 19:36:24 +00002/*
Junxiao Shifd2d1012022-01-11 18:20:38 +00003 * Copyright (c) 2014-2022, Regents of the University of California,
Zhuo Lib3558892016-08-12 15:51:12 -07004 * 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 ndn-tools (Named Data Networking Essential Tools).
12 * See AUTHORS.md for complete list of ndn-tools authors and contributors.
13 *
14 * ndn-tools 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 * ndn-tools 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 * ndn-tools, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24 *
25 * @author Jerald Paul Abraham <jeraldabraham@email.arizona.edu>
26 * @author Zhuo Li <zhuoli@email.arizona.edu>
Davide Pesavento96028232019-08-17 01:26:13 -040027 * @author Davide Pesavento <davidepesa@gmail.com>
Zhuo Lib3558892016-08-12 15:51:12 -070028 */
29
30#include "ndnpeek.hpp"
31
Davide Pesaventob3570c62022-02-19 19:19:00 -050032namespace ndn::peek {
Zhuo Lib3558892016-08-12 15:51:12 -070033
34NdnPeek::NdnPeek(Face& face, const PeekOptions& options)
Davide Pesavento65d11552019-06-09 19:15:50 -040035 : m_options(options)
36 , m_face(face)
37 , m_scheduler(m_face.getIoService())
Zhuo Lib3558892016-08-12 15:51:12 -070038{
Zhuo Lib3558892016-08-12 15:51:12 -070039}
40
41void
42NdnPeek::start()
43{
Davide Pesavento65d11552019-06-09 19:15:50 -040044 m_pendingInterest = m_face.expressInterest(createInterest(),
45 [this] (auto&&, const auto& data) { this->onData(data); },
46 [this] (auto&&, const auto& nack) { this->onNack(nack); },
47 [this] (auto&&) { this->onTimeout(); });
48
49 if (m_options.timeout) {
50 m_timeoutEvent = m_scheduler.schedule(*m_options.timeout, [this] {
51 m_pendingInterest.cancel();
52 onTimeout();
53 });
54 }
55
56 m_sendTime = time::steady_clock::now();
Zhuo Lib3558892016-08-12 15:51:12 -070057}
58
59Interest
60NdnPeek::createInterest() const
61{
Junxiao Shib54aabd2018-04-16 19:36:24 +000062 Interest interest(m_options.name);
63 interest.setCanBePrefix(m_options.canBePrefix);
64 interest.setMustBeFresh(m_options.mustBeFresh);
Junxiao Shifd2d1012022-01-11 18:20:38 +000065 interest.setForwardingHint(m_options.forwardingHint);
Davide Pesaventoc214e072019-08-17 01:33:28 -040066 interest.setInterestLifetime(m_options.interestLifetime);
Davide Pesavento242d5062022-03-11 16:34:23 -050067 if (m_options.hopLimit) {
68 interest.setHopLimit(*m_options.hopLimit);
69 }
Davide Pesavento96028232019-08-17 01:26:13 -040070 if (m_options.applicationParameters) {
71 interest.setApplicationParameters(m_options.applicationParameters);
72 }
Zhuo Lib3558892016-08-12 15:51:12 -070073
74 if (m_options.isVerbose) {
75 std::cerr << "INTEREST: " << interest << std::endl;
76 }
77
78 return interest;
79}
80
Davide Pesavento242d5062022-03-11 16:34:23 -050081static void
82writeToCout(span<const uint8_t> bytes)
83{
84 std::cout.write(reinterpret_cast<const char*>(bytes.data()), bytes.size());
85}
86
Zhuo Lib3558892016-08-12 15:51:12 -070087void
88NdnPeek::onData(const Data& data)
89{
Davide Pesavento87434be2019-07-25 19:04:23 -040090 m_result = Result::DATA;
Davide Pesavento65d11552019-06-09 19:15:50 -040091 m_timeoutEvent.cancel();
Zhuo Lib3558892016-08-12 15:51:12 -070092
93 if (m_options.isVerbose) {
Jeff Thompson526ff432019-06-06 10:51:30 -070094 std::cerr << "DATA: " << data.getName() << "\nRTT: "
Davide Pesavento65d11552019-06-09 19:15:50 -040095 << time::duration_cast<time::milliseconds>(time::steady_clock::now() - m_sendTime).count()
Jeff Thompson526ff432019-06-06 10:51:30 -070096 << " ms" << std::endl;
Zhuo Lib3558892016-08-12 15:51:12 -070097 }
98
99 if (m_options.wantPayloadOnly) {
Davide Pesavento242d5062022-03-11 16:34:23 -0500100 writeToCout(data.getContent().value_bytes());
Zhuo Lib3558892016-08-12 15:51:12 -0700101 }
102 else {
Davide Pesavento242d5062022-03-11 16:34:23 -0500103 writeToCout(data.wireEncode());
Zhuo Lib3558892016-08-12 15:51:12 -0700104 }
105}
106
107void
108NdnPeek::onNack(const lp::Nack& nack)
109{
Davide Pesavento87434be2019-07-25 19:04:23 -0400110 m_result = Result::NACK;
Davide Pesavento65d11552019-06-09 19:15:50 -0400111 m_timeoutEvent.cancel();
Zhuo Lib3558892016-08-12 15:51:12 -0700112
Davide Pesavento242d5062022-03-11 16:34:23 -0500113 const auto& header = nack.getHeader();
Zhuo Lib3558892016-08-12 15:51:12 -0700114 if (m_options.isVerbose) {
Jeff Thompson526ff432019-06-06 10:51:30 -0700115 std::cerr << "NACK: " << header.getReason() << "\nRTT: "
Davide Pesavento65d11552019-06-09 19:15:50 -0400116 << time::duration_cast<time::milliseconds>(time::steady_clock::now() - m_sendTime).count()
Jeff Thompson526ff432019-06-06 10:51:30 -0700117 << " ms" << std::endl;
Zhuo Lib3558892016-08-12 15:51:12 -0700118 }
119
120 if (m_options.wantPayloadOnly) {
121 std::cout << header.getReason() << std::endl;
122 }
123 else {
Davide Pesavento242d5062022-03-11 16:34:23 -0500124 writeToCout(header.wireEncode());
Zhuo Lib3558892016-08-12 15:51:12 -0700125 }
126}
127
Davide Pesavento65d11552019-06-09 19:15:50 -0400128void
129NdnPeek::onTimeout()
130{
Davide Pesavento87434be2019-07-25 19:04:23 -0400131 m_result = Result::TIMEOUT;
Davide Pesavento65d11552019-06-09 19:15:50 -0400132 m_timeoutEvent.cancel();
133
134 if (m_options.isVerbose) {
135 std::cerr << "TIMEOUT" << std::endl;
136 }
137}
138
Davide Pesaventob3570c62022-02-19 19:19:00 -0500139} // namespace ndn::peek