/* * Copyright (c) 2017-2019 Cisco and/or its affiliates. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include namespace transport { namespace protocol { using namespace interface; TransportProtocol::TransportProtocol(implementation::ConsumerSocket *icn_socket, Indexer *indexer, Reassembly *reassembly) : socket_(icn_socket), indexer_verifier_(indexer), reassembly_(reassembly), fec_decoder_(nullptr), is_first_(false), on_interest_retransmission_(VOID_HANDLER), on_interest_output_(VOID_HANDLER), on_interest_timeout_(VOID_HANDLER), on_interest_satisfied_(VOID_HANDLER), on_content_object_input_(VOID_HANDLER), stats_summary_(VOID_HANDLER), on_payload_(VOID_HANDLER), fec_type_(fec::FECType::UNKNOWN), is_running_(false) { socket_->getSocketOption(GeneralTransportOptions::PORTAL, portal_); socket_->getSocketOption(OtherOptions::STATISTICS, &stats_); // Set this transport protocol as portal's consumer callback portal_->setConsumerCallback(this); indexer_verifier_->setReassembly(reassembly_.get()); reassembly->setIndexer(indexer_verifier_.get()); } int TransportProtocol::start() { // If the protocol is already running, return otherwise set as running if (is_running_) return -1; // Get all callbacks references socket_->getSocketOption(ConsumerCallbacksOptions::INTEREST_RETRANSMISSION, &on_interest_retransmission_); socket_->getSocketOption(ConsumerCallbacksOptions::INTEREST_OUTPUT, &on_interest_output_); socket_->getSocketOption(ConsumerCallbacksOptions::INTEREST_EXPIRED, &on_interest_timeout_); socket_->getSocketOption(ConsumerCallbacksOptions::INTEREST_SATISFIED, &on_interest_satisfied_); socket_->getSocketOption(ConsumerCallbacksOptions::CONTENT_OBJECT_INPUT, &on_content_object_input_); socket_->getSocketOption(ConsumerCallbacksOptions::STATS_SUMMARY, &stats_summary_); socket_->getSocketOption(ConsumerCallbacksOptions::READ_CALLBACK, &on_payload_); socket_->getSocketOption(GeneralTransportOptions::ASYNC_MODE, is_async_); // Set it is the first time we schedule an interest is_first_ = true; // Reset the protocol state machine reset(); // Schedule next interests scheduleNextInterests(); is_first_ = false; // Set the protocol as running is_running_ = true; if (!is_async_) { // Start Event loop portal_->runEventsLoop(); // Not running anymore is_running_ = false; } return 0; } void TransportProtocol::stop() { is_running_ = false; if (!is_async_) { portal_->stopEventsLoop(); } else { portal_->clear(); } } void TransportProtocol::resume() { if (isRunning()) return; is_running_ = true; scheduleNextInterests(); if (!is_async_) { // Start Event loop portal_->runEventsLoop(); // Not running anymore is_running_ = false; } } void TransportProtocol::reset() { reassembly_->reInitialize(); indexer_verifier_->reset(); if (fec_decoder_) { fec_decoder_->reset(); } } void TransportProtocol::onContentReassembled(std::error_code ec) { stop(); if (!on_payload_) { throw errors::RuntimeException( "The read callback must be installed in the transport before " "starting " "the content retrieval."); } if (!ec) { on_payload_->readSuccess(stats_->getBytesRecv()); } else { on_payload_->readError(ec); } } void TransportProtocol::sendInterest( const Name &interest_name, std::array *additional_suffixes, uint32_t len) { DLOG_IF(INFO, VLOG_IS_ON(3)) << "Sending interest for name " << interest_name; auto interest = core::PacketManager<>::getInstance().getPacket(); interest->setName(interest_name); for (uint32_t i = 0; i < len; i++) { interest->appendSuffix(additional_suffixes->at(i)); } uint32_t lifetime = default_values::interest_lifetime; socket_->getSocketOption(GeneralTransportOptions::INTEREST_LIFETIME, lifetime); interest->setLifetime(uint32_t(lifetime)); if (*on_interest_output_) { (*on_interest_output_)(*socket_->getInterface(), *interest); } if (TRANSPORT_EXPECT_FALSE(!isRunning() && !is_first_)) { return; } portal_->sendInterest(std::move(interest)); } void TransportProtocol::onTimeout(Interest::Ptr &i, const Name &n) { if (TRANSPORT_EXPECT_FALSE(!isRunning())) { return; } DLOG_IF(INFO, VLOG_IS_ON(3)) << "Timeout on content " << n; onInterestTimeout(i, n); } void TransportProtocol::onContentObject(Interest &i, ContentObject &c) { // Check whether it makes sense to continue if (TRANSPORT_EXPECT_FALSE(!isRunning())) { return; } // Call transport protocol function std::error_code ec; onContentObjectReceived(i, c, ec); // Call reassemble function, if packet is eligible for reassemblying bool reassemble = false; if (!ec) { reassemble = true; } // Perform verification and update indexer. This step may be performed offline // - i.e. we may not get a result here (e.g. we use manifest). Verification // failures in that case will be handled in the onPacketDropped function. // XXX This step should be done before calling onContentObjectReceived, but // for now we do it here since currently the indexer does not need manifests // to move forward. indexer_verifier_->onContentObject(i, c, reassemble); } } // end namespace protocol } // end namespace transport