| /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| /* |
| * Copyright (c) 2016-2022, Regents of the University of California, |
| * Colorado State University, |
| * University Pierre & Marie Curie, Sorbonne University. |
| * |
| * This file is part of ndn-tools (Named Data Networking Essential Tools). |
| * See AUTHORS.md for complete list of ndn-tools authors and contributors. |
| * |
| * ndn-tools is free software: you can redistribute it and/or modify it under the terms |
| * of the GNU General Public License as published by the Free Software Foundation, |
| * either version 3 of the License, or (at your option) any later version. |
| * |
| * ndn-tools is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| * PURPOSE. See the GNU General Public License for more details. |
| * |
| * You should have received a copy of the GNU General Public License along with |
| * ndn-tools, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| * |
| * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
| * |
| * @author Wentao Shang |
| * @author Steve DiBenedetto |
| * @author Andrea Tosatto |
| * @author Davide Pesavento |
| * @author Klaus Schneider |
| * @author Chavoosh Ghasemi |
| */ |
| |
| #include "producer.hpp" |
| |
| #include <ndn-cxx/metadata-object.hpp> |
| |
| namespace ndn::chunks { |
| |
| Producer::Producer(const Name& prefix, Face& face, KeyChain& keyChain, std::istream& is, |
| const Options& opts) |
| : m_face(face) |
| , m_keyChain(keyChain) |
| , m_options(opts) |
| { |
| if (!prefix.empty() && prefix[-1].isVersion()) { |
| m_prefix = prefix.getPrefix(-1); |
| m_versionedPrefix = prefix; |
| } |
| else { |
| m_prefix = prefix; |
| m_versionedPrefix = Name(m_prefix).appendVersion(); |
| } |
| |
| populateStore(is); |
| |
| if (m_options.wantShowVersion) |
| std::cout << m_versionedPrefix[-1] << "\n"; |
| |
| // register m_prefix without interest handler |
| m_face.registerPrefix(m_prefix, nullptr, [this] (const Name& prefix, const auto& reason) { |
| std::cerr << "ERROR: Failed to register prefix '" << prefix << "' (" << reason << ")\n"; |
| m_face.shutdown(); |
| }); |
| |
| // match Interests whose name starts with m_versionedPrefix |
| face.setInterestFilter(m_versionedPrefix, [this] (const auto&, const auto& interest) { |
| processSegmentInterest(interest); |
| }); |
| |
| // match Interests whose name is exactly m_prefix |
| face.setInterestFilter(InterestFilter(m_prefix, ""), [this] (const auto&, const auto& interest) { |
| processSegmentInterest(interest); |
| }); |
| |
| // match discovery Interests |
| auto discoveryName = MetadataObject::makeDiscoveryInterest(m_prefix).getName(); |
| face.setInterestFilter(discoveryName, [this] (const auto&, const auto& interest) { |
| processDiscoveryInterest(interest); |
| }); |
| |
| if (!m_options.isQuiet) |
| std::cerr << "Data published with name: " << m_versionedPrefix << "\n"; |
| } |
| |
| void |
| Producer::run() |
| { |
| m_face.processEvents(); |
| } |
| |
| void |
| Producer::processDiscoveryInterest(const Interest& interest) |
| { |
| if (m_options.isVerbose) |
| std::cerr << "Discovery Interest: " << interest << "\n"; |
| |
| if (!interest.getCanBePrefix()) { |
| if (m_options.isVerbose) |
| std::cerr << "Discovery Interest lacks CanBePrefix, sending Nack\n"; |
| m_face.put(lp::Nack(interest)); |
| return; |
| } |
| |
| MetadataObject mobject; |
| mobject.setVersionedName(m_versionedPrefix); |
| |
| // make a metadata packet based on the received discovery Interest name |
| Data mdata(mobject.makeData(interest.getName(), m_keyChain, m_options.signingInfo)); |
| |
| if (m_options.isVerbose) |
| std::cerr << "Sending metadata: " << mdata << "\n"; |
| |
| m_face.put(mdata); |
| } |
| |
| void |
| Producer::processSegmentInterest(const Interest& interest) |
| { |
| BOOST_ASSERT(!m_store.empty()); |
| |
| if (m_options.isVerbose) |
| std::cerr << "Interest: " << interest << "\n"; |
| |
| const Name& name = interest.getName(); |
| shared_ptr<Data> data; |
| |
| if (name.size() == m_versionedPrefix.size() + 1 && name[-1].isSegment()) { |
| const auto segmentNo = static_cast<size_t>(interest.getName()[-1].toSegment()); |
| // specific segment retrieval |
| if (segmentNo < m_store.size()) { |
| data = m_store[segmentNo]; |
| } |
| } |
| else if (interest.matchesData(*m_store[0])) { |
| // unspecified version or segment number, return first segment |
| data = m_store[0]; |
| } |
| |
| if (data != nullptr) { |
| if (m_options.isVerbose) |
| std::cerr << "Data: " << *data << "\n"; |
| |
| m_face.put(*data); |
| } |
| else { |
| if (m_options.isVerbose) |
| std::cerr << "Interest cannot be satisfied, sending Nack\n"; |
| m_face.put(lp::Nack(interest)); |
| } |
| } |
| |
| void |
| Producer::populateStore(std::istream& is) |
| { |
| BOOST_ASSERT(m_store.empty()); |
| |
| if (!m_options.isQuiet) |
| std::cerr << "Loading input ...\n"; |
| |
| std::vector<uint8_t> buffer(m_options.maxSegmentSize); |
| while (is.good()) { |
| is.read(reinterpret_cast<char*>(buffer.data()), buffer.size()); |
| const auto nCharsRead = is.gcount(); |
| |
| if (nCharsRead > 0) { |
| auto data = make_shared<Data>(Name(m_versionedPrefix).appendSegment(m_store.size())); |
| data->setFreshnessPeriod(m_options.freshnessPeriod); |
| data->setContent(make_span(buffer).first(nCharsRead)); |
| m_store.push_back(data); |
| } |
| } |
| |
| if (m_store.empty()) { |
| auto data = make_shared<Data>(Name(m_versionedPrefix).appendSegment(0)); |
| data->setFreshnessPeriod(m_options.freshnessPeriod); |
| m_store.push_back(data); |
| } |
| |
| auto finalBlockId = name::Component::fromSegment(m_store.size() - 1); |
| for (const auto& data : m_store) { |
| data->setFinalBlock(finalBlockId); |
| m_keyChain.sign(*data, m_options.signingInfo); |
| } |
| |
| if (!m_options.isQuiet) |
| std::cerr << "Created " << m_store.size() << " chunks for prefix " << m_prefix << "\n"; |
| } |
| |
| } // namespace ndn::chunks |