Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Alexander Afanasyev | 319f2c8 | 2015-01-07 14:56:53 -0800 | [diff] [blame] | 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. |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 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/>. |
Alexander Afanasyev | cd591e1 | 2014-06-18 16:35:16 -0700 | [diff] [blame] | 24 | */ |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 25 | |
| 26 | #include "multicast-udp-face.hpp" |
| 27 | |
| 28 | namespace nfd { |
| 29 | |
Alexander Afanasyev | cd591e1 | 2014-06-18 16:35:16 -0700 | [diff] [blame] | 30 | NFD_LOG_INCLASS_2TEMPLATE_SPECIALIZATION_DEFINE(DatagramFace, |
| 31 | MulticastUdpFace::protocol, Multicast, |
| 32 | "MulticastUdpFace"); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 33 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame^] | 34 | MulticastUdpFace::MulticastUdpFace(const protocol::endpoint& multicastGroup, |
| 35 | const FaceUri& localUri, |
| 36 | protocol::socket recvSocket, protocol::socket sendSocket) |
| 37 | : DatagramFace(FaceUri(multicastGroup), localUri, std::move(recvSocket)) |
| 38 | , m_multicastGroup(multicastGroup) |
| 39 | , m_sendSocket(std::move(sendSocket)) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 40 | { |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 41 | } |
| 42 | |
Davide Pesavento | d8d4d98 | 2014-03-21 18:47:58 +0100 | [diff] [blame] | 43 | const MulticastUdpFace::protocol::endpoint& |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 44 | MulticastUdpFace::getMulticastGroup() const |
| 45 | { |
| 46 | return m_multicastGroup; |
| 47 | } |
| 48 | |
| 49 | void |
| 50 | MulticastUdpFace::sendInterest(const Interest& interest) |
| 51 | { |
Davide Pesavento | be40fb1 | 2015-02-23 21:09:34 +0100 | [diff] [blame] | 52 | NFD_LOG_FACE_TRACE(__func__); |
Junxiao Shi | c099ddb | 2014-12-25 20:53:20 -0700 | [diff] [blame] | 53 | this->emitSignal(onSendInterest, interest); |
Alexander Afanasyev | cd591e1 | 2014-06-18 16:35:16 -0700 | [diff] [blame] | 54 | sendBlock(interest.wireEncode()); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | void |
| 58 | MulticastUdpFace::sendData(const Data& data) |
| 59 | { |
Davide Pesavento | be40fb1 | 2015-02-23 21:09:34 +0100 | [diff] [blame] | 60 | NFD_LOG_FACE_TRACE(__func__); |
Davide Pesavento | be40fb1 | 2015-02-23 21:09:34 +0100 | [diff] [blame] | 61 | /// \todo After this face implements duplicate suppression, onSendData should |
| 62 | /// be emitted only when data is actually sent out. See also #2555 |
Junxiao Shi | c099ddb | 2014-12-25 20:53:20 -0700 | [diff] [blame] | 63 | this->emitSignal(onSendData, data); |
Alexander Afanasyev | cd591e1 | 2014-06-18 16:35:16 -0700 | [diff] [blame] | 64 | sendBlock(data.wireEncode()); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 65 | } |
Davide Pesavento | d8d4d98 | 2014-03-21 18:47:58 +0100 | [diff] [blame] | 66 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame^] | 67 | void |
| 68 | MulticastUdpFace::sendBlock(const Block& block) |
| 69 | { |
| 70 | m_sendSocket.async_send_to(boost::asio::buffer(block.wire(), block.size()), m_multicastGroup, |
| 71 | bind(&MulticastUdpFace::handleSend, this, |
| 72 | boost::asio::placeholders::error, |
| 73 | boost::asio::placeholders::bytes_transferred, |
| 74 | block)); |
| 75 | } |
| 76 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 77 | } // namespace nfd |