Yukai Tu | 0a49d34 | 2015-09-13 12:54:22 +0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (c) 2014-2015, Regents of the University of California, |
| 4 | * 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 NFD (Named Data Networking Forwarding Daemon). |
| 12 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 13 | * |
| 14 | * NFD 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 | * NFD 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 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 24 | */ |
| 25 | |
| 26 | #include "multicast-udp-transport.hpp" |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 27 | #include "udp-protocol.hpp" |
Yukai Tu | 0a49d34 | 2015-09-13 12:54:22 +0800 | [diff] [blame] | 28 | |
| 29 | namespace nfd { |
| 30 | namespace face { |
| 31 | |
| 32 | NFD_LOG_INCLASS_2TEMPLATE_SPECIALIZATION_DEFINE(DatagramTransport, MulticastUdpTransport::protocol, |
| 33 | Multicast, "MulticastUdpTransport"); |
| 34 | |
| 35 | MulticastUdpTransport::MulticastUdpTransport(const protocol::endpoint& localEndpoint, |
| 36 | const protocol::endpoint& multicastGroup, |
| 37 | protocol::socket&& recvSocket, |
| 38 | protocol::socket&& sendSocket) |
| 39 | : DatagramTransport(std::move(recvSocket)) |
| 40 | , m_multicastGroup(multicastGroup) |
| 41 | , m_sendSocket(std::move(sendSocket)) |
| 42 | { |
| 43 | this->setLocalUri(FaceUri(localEndpoint)); |
| 44 | this->setRemoteUri(FaceUri(multicastGroup)); |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 45 | this->setScope(ndn::nfd::FACE_SCOPE_NON_LOCAL); |
Yukai Tu | 0a49d34 | 2015-09-13 12:54:22 +0800 | [diff] [blame] | 46 | this->setPersistency(ndn::nfd::FACE_PERSISTENCY_PERMANENT); |
| 47 | this->setLinkType(ndn::nfd::LINK_TYPE_MULTI_ACCESS); |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 48 | this->setMtu(udp::computeMtu(localEndpoint)); |
Yukai Tu | 0a49d34 | 2015-09-13 12:54:22 +0800 | [diff] [blame] | 49 | |
| 50 | NFD_LOG_FACE_INFO("Creating transport"); |
| 51 | } |
| 52 | |
| 53 | void |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 54 | MulticastUdpTransport::beforeChangePersistency(ndn::nfd::FacePersistency newPersistency) |
| 55 | { |
| 56 | if (newPersistency != ndn::nfd::FACE_PERSISTENCY_PERMANENT) { |
| 57 | BOOST_THROW_EXCEPTION( |
| 58 | std::invalid_argument("MulticastUdpTransport supports only FACE_PERSISTENCY_PERMANENT")); |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | void |
Yukai Tu | 0a49d34 | 2015-09-13 12:54:22 +0800 | [diff] [blame] | 63 | MulticastUdpTransport::doSend(Transport::Packet&& packet) |
| 64 | { |
| 65 | NFD_LOG_FACE_TRACE(__func__); |
| 66 | |
| 67 | m_sendSocket.async_send_to(boost::asio::buffer(packet.packet), m_multicastGroup, |
| 68 | bind(&MulticastUdpTransport::handleSend, this, |
| 69 | boost::asio::placeholders::error, |
| 70 | boost::asio::placeholders::bytes_transferred, |
| 71 | packet.packet)); |
| 72 | } |
| 73 | |
| 74 | void |
| 75 | MulticastUdpTransport::doClose() |
| 76 | { |
| 77 | if (m_sendSocket.is_open()) { |
| 78 | NFD_LOG_FACE_TRACE("Closing sending socket"); |
| 79 | |
| 80 | // Cancel all outstanding operations and close the socket. |
| 81 | // Use the non-throwing variants and ignore errors, if any. |
| 82 | boost::system::error_code error; |
| 83 | m_sendSocket.cancel(error); |
| 84 | m_sendSocket.close(error); |
| 85 | } |
| 86 | |
| 87 | DatagramTransport::doClose(); |
| 88 | } |
| 89 | |
Davide Pesavento | eee7b97 | 2015-11-18 21:34:46 +0100 | [diff] [blame] | 90 | template<> |
| 91 | Transport::EndpointId |
| 92 | DatagramTransport<boost::asio::ip::udp, Multicast>::makeEndpointId(const protocol::endpoint& ep) |
| 93 | { |
| 94 | // IPv6 multicast is not supported |
| 95 | BOOST_ASSERT(ep.address().is_v4()); |
| 96 | |
| 97 | return (static_cast<uint64_t>(ep.port()) << 32) | |
| 98 | static_cast<uint64_t>(ep.address().to_v4().to_ulong()); |
| 99 | } |
| 100 | |
Yukai Tu | 0a49d34 | 2015-09-13 12:54:22 +0800 | [diff] [blame] | 101 | } // namespace face |
| 102 | } // namespace nfd |