blob: 5eae2505204950628c8c76fde70120ea4f8aef5d [file] [log] [blame]
Andrea Tosatto672b9a72016-01-05 16:18:20 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento887336c2017-09-19 15:25:23 -04002/*
Davide Pesaventob3570c62022-02-19 19:19:00 -05003 * Copyright (c) 2016-2022, Regents of the University of California,
Davide Pesavento887336c2017-09-19 15:25:23 -04004 * Colorado State University,
5 * University Pierre & Marie Curie, Sorbonne University.
Andrea Tosatto672b9a72016-01-05 16:18:20 +01006 *
7 * This file is part of ndn-tools (Named Data Networking Essential Tools).
8 * See AUTHORS.md for complete list of ndn-tools authors and contributors.
9 *
10 * ndn-tools is free software: you can redistribute it and/or modify it under the terms
11 * of the GNU General Public License as published by the Free Software Foundation,
12 * either version 3 of the License, or (at your option) any later version.
13 *
14 * ndn-tools is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
15 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
16 * PURPOSE. See the GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along with
19 * ndn-tools, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
20 *
21 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
22 *
23 * @author Wentao Shang
24 * @author Steve DiBenedetto
25 * @author Andrea Tosatto
Chavoosh Ghasemibb2d2802019-03-26 16:07:58 -070026 * @author Chavoosh Ghasemi
Andrea Tosatto672b9a72016-01-05 16:18:20 +010027 */
28
29#include "discover-version.hpp"
30#include "data-fetcher.hpp"
31
Chavoosh Ghasemibb2d2802019-03-26 16:07:58 -070032#include <ndn-cxx/metadata-object.hpp>
33
Davide Pesaventob3570c62022-02-19 19:19:00 -050034namespace ndn::chunks {
Andrea Tosatto672b9a72016-01-05 16:18:20 +010035
Davide Pesavento97a33b22019-10-17 22:10:47 -040036DiscoverVersion::DiscoverVersion(Face& face, const Name& prefix, const Options& options)
37 : m_face(face)
Chavoosh Ghasemibb2d2802019-03-26 16:07:58 -070038 , m_prefix(prefix)
Davide Pesavento97a33b22019-10-17 22:10:47 -040039 , m_options(options)
Andrea Tosatto672b9a72016-01-05 16:18:20 +010040{
41}
42
43void
Chavoosh Ghasemibb2d2802019-03-26 16:07:58 -070044DiscoverVersion::run()
Andrea Tosatto672b9a72016-01-05 16:18:20 +010045{
Davide Pesavento296b3852019-10-20 16:00:16 -040046 if (m_options.disableVersionDiscovery || (!m_prefix.empty() && m_prefix[-1].isVersion())) {
Chavoosh Ghasemibb2d2802019-03-26 16:07:58 -070047 onDiscoverySuccess(m_prefix);
48 return;
49 }
50
51 Interest interest = MetadataObject::makeDiscoveryInterest(m_prefix)
Davide Pesavento97a33b22019-10-17 22:10:47 -040052 .setInterestLifetime(m_options.interestLifetime);
Chavoosh Ghasemibb2d2802019-03-26 16:07:58 -070053
54 m_fetcher = DataFetcher::fetch(m_face, interest,
Davide Pesaventof8d9a532021-07-03 16:04:12 -040055 m_options.maxRetriesOnTimeoutOrNack,
56 m_options.maxRetriesOnTimeoutOrNack,
57 FORWARD_TO_MEM_FN(handleData),
58 [this] (const auto&, const auto& reason) {
Chavoosh Ghasemibb2d2802019-03-26 16:07:58 -070059 onDiscoveryFailure(reason);
60 },
Davide Pesaventof8d9a532021-07-03 16:04:12 -040061 [this] (const auto&, const auto& reason) {
Chavoosh Ghasemibb2d2802019-03-26 16:07:58 -070062 onDiscoveryFailure(reason);
63 },
Davide Pesavento97a33b22019-10-17 22:10:47 -040064 m_options.isVerbose);
Andrea Tosatto672b9a72016-01-05 16:18:20 +010065}
66
67void
Chavoosh Ghasemibb2d2802019-03-26 16:07:58 -070068DiscoverVersion::handleData(const Interest& interest, const Data& data)
Andrea Tosatto672b9a72016-01-05 16:18:20 +010069{
Davide Pesavento97a33b22019-10-17 22:10:47 -040070 if (m_options.isVerbose)
Davide Pesaventof8d9a532021-07-03 16:04:12 -040071 std::cerr << "Data: " << data << "\n";
Andrea Tosatto672b9a72016-01-05 16:18:20 +010072
Chavoosh Ghasemibb2d2802019-03-26 16:07:58 -070073 // make a metadata object from received metadata packet
74 MetadataObject mobject;
75 try {
76 mobject = MetadataObject(data);
77 }
78 catch (const tlv::Error& e) {
79 onDiscoveryFailure("Invalid metadata packet: "s + e.what());
80 return;
81 }
82
83 if (mobject.getVersionedName().empty() || !mobject.getVersionedName()[-1].isVersion()) {
84 onDiscoveryFailure(mobject.getVersionedName().toUri() + " is not a valid versioned name");
85 return;
86 }
87
Davide Pesavento97a33b22019-10-17 22:10:47 -040088 if (m_options.isVerbose) {
Davide Pesaventof8d9a532021-07-03 16:04:12 -040089 std::cerr << "Discovered Data version: " << mobject.getVersionedName()[-1] << "\n";
Chavoosh Ghasemibb2d2802019-03-26 16:07:58 -070090 }
91
92 onDiscoverySuccess(mobject.getVersionedName());
Andrea Tosatto672b9a72016-01-05 16:18:20 +010093}
94
Davide Pesaventob3570c62022-02-19 19:19:00 -050095} // namespace ndn::chunks