Andrea Tosatto | 672b9a7 | 2016-01-05 16:18:20 +0100 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Davide Pesavento | bf1c069 | 2017-01-15 19:15:09 -0500 | [diff] [blame] | 3 | * Copyright (c) 2016-2017, Regents of the University of California, |
| 4 | * Colorado State University, |
| 5 | * University Pierre & Marie Curie, Sorbonne University. |
Andrea Tosatto | 672b9a7 | 2016-01-05 16:18:20 +0100 | [diff] [blame] | 6 | * |
| 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 |
| 26 | */ |
| 27 | |
| 28 | #include "consumer.hpp" |
Andrea Tosatto | 672b9a7 | 2016-01-05 16:18:20 +0100 | [diff] [blame] | 29 | |
| 30 | namespace ndn { |
| 31 | namespace chunks { |
| 32 | |
Junxiao Shi | f860649 | 2017-07-23 03:44:34 +0000 | [diff] [blame^] | 33 | Consumer::Consumer(security::v2::Validator& validator, bool isVerbose, std::ostream& os) |
Weiwei Liu | 05d9209 | 2016-07-19 17:34:33 -0700 | [diff] [blame] | 34 | : m_validator(validator) |
Andrea Tosatto | 672b9a7 | 2016-01-05 16:18:20 +0100 | [diff] [blame] | 35 | , m_outputStream(os) |
Weiwei Liu | e476501 | 2016-06-01 00:10:29 -0700 | [diff] [blame] | 36 | , m_nextToPrint(0) |
Andrea Tosatto | 672b9a7 | 2016-01-05 16:18:20 +0100 | [diff] [blame] | 37 | , m_isVerbose(isVerbose) |
| 38 | { |
| 39 | } |
| 40 | |
Weiwei Liu | e476501 | 2016-06-01 00:10:29 -0700 | [diff] [blame] | 41 | void |
| 42 | Consumer::run(unique_ptr<DiscoverVersion> discover, unique_ptr<PipelineInterests> pipeline) |
Andrea Tosatto | 672b9a7 | 2016-01-05 16:18:20 +0100 | [diff] [blame] | 43 | { |
Weiwei Liu | e476501 | 2016-06-01 00:10:29 -0700 | [diff] [blame] | 44 | m_discover = std::move(discover); |
| 45 | m_pipeline = std::move(pipeline); |
Andrea Tosatto | 672b9a7 | 2016-01-05 16:18:20 +0100 | [diff] [blame] | 46 | m_nextToPrint = 0; |
Weiwei Liu | e476501 | 2016-06-01 00:10:29 -0700 | [diff] [blame] | 47 | m_bufferedData.clear(); |
Andrea Tosatto | 672b9a7 | 2016-01-05 16:18:20 +0100 | [diff] [blame] | 48 | |
Weiwei Liu | 05d9209 | 2016-07-19 17:34:33 -0700 | [diff] [blame] | 49 | m_discover->onDiscoverySuccess.connect(bind(&Consumer::startPipeline, this, _1)); |
Junxiao Shi | f860649 | 2017-07-23 03:44:34 +0000 | [diff] [blame^] | 50 | m_discover->onDiscoveryFailure.connect([] (const std::string& msg) { |
| 51 | BOOST_THROW_EXCEPTION(std::runtime_error(msg)); |
| 52 | }); |
Weiwei Liu | 05d9209 | 2016-07-19 17:34:33 -0700 | [diff] [blame] | 53 | m_discover->run(); |
Andrea Tosatto | 672b9a7 | 2016-01-05 16:18:20 +0100 | [diff] [blame] | 54 | } |
| 55 | |
Weiwei Liu | e476501 | 2016-06-01 00:10:29 -0700 | [diff] [blame] | 56 | void |
| 57 | Consumer::startPipeline(const Data& data) |
Andrea Tosatto | 672b9a7 | 2016-01-05 16:18:20 +0100 | [diff] [blame] | 58 | { |
Junxiao Shi | f860649 | 2017-07-23 03:44:34 +0000 | [diff] [blame^] | 59 | this->handleData(data); |
Andrea Tosatto | 672b9a7 | 2016-01-05 16:18:20 +0100 | [diff] [blame] | 60 | |
Weiwei Liu | e476501 | 2016-06-01 00:10:29 -0700 | [diff] [blame] | 61 | m_pipeline->run(data, |
Junxiao Shi | f860649 | 2017-07-23 03:44:34 +0000 | [diff] [blame^] | 62 | [this] (const Interest&, const Data& data) { this->handleData(data); }, |
| 63 | [] (const std::string& msg) { BOOST_THROW_EXCEPTION(std::runtime_error(msg)); }); |
Andrea Tosatto | 672b9a7 | 2016-01-05 16:18:20 +0100 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | void |
Junxiao Shi | f860649 | 2017-07-23 03:44:34 +0000 | [diff] [blame^] | 67 | Consumer::handleData(const Data& data) |
Andrea Tosatto | 672b9a7 | 2016-01-05 16:18:20 +0100 | [diff] [blame] | 68 | { |
Junxiao Shi | f860649 | 2017-07-23 03:44:34 +0000 | [diff] [blame^] | 69 | auto dataPtr = data.shared_from_this(); |
| 70 | |
Andrea Tosatto | 672b9a7 | 2016-01-05 16:18:20 +0100 | [diff] [blame] | 71 | m_validator.validate(data, |
Junxiao Shi | f860649 | 2017-07-23 03:44:34 +0000 | [diff] [blame^] | 72 | [this, dataPtr] (const Data& data) { |
| 73 | if (data.getContentType() == ndn::tlv::ContentType_Nack) { |
| 74 | if (m_isVerbose) { |
| 75 | std::cerr << "Application level NACK: " << data << std::endl; |
| 76 | } |
| 77 | m_pipeline->cancel(); |
| 78 | BOOST_THROW_EXCEPTION(ApplicationNackError(data)); |
| 79 | } |
Andrea Tosatto | 672b9a7 | 2016-01-05 16:18:20 +0100 | [diff] [blame] | 80 | |
Junxiao Shi | f860649 | 2017-07-23 03:44:34 +0000 | [diff] [blame^] | 81 | // 'data' passed to callback comes from DataValidationState and was not created with make_shared |
| 82 | m_bufferedData[getSegmentFromPacket(data)] = dataPtr; |
| 83 | writeInOrderData(); |
| 84 | }, |
| 85 | [this] (const Data& data, const security::v2::ValidationError& error) { |
| 86 | BOOST_THROW_EXCEPTION(DataValidationError(error)); |
| 87 | }); |
Andrea Tosatto | 672b9a7 | 2016-01-05 16:18:20 +0100 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | void |
| 91 | Consumer::writeInOrderData() |
| 92 | { |
| 93 | for (auto it = m_bufferedData.begin(); |
| 94 | it != m_bufferedData.end() && it->first == m_nextToPrint; |
| 95 | it = m_bufferedData.erase(it), ++m_nextToPrint) { |
Andrea Tosatto | 672b9a7 | 2016-01-05 16:18:20 +0100 | [diff] [blame] | 96 | const Block& content = it->second->getContent(); |
| 97 | m_outputStream.write(reinterpret_cast<const char*>(content.value()), content.value_size()); |
| 98 | } |
| 99 | } |
| 100 | |
| 101 | } // namespace chunks |
| 102 | } // namespace ndn |