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 | cd591e1 | 2014-06-18 16:35:16 -0700 | [diff] [blame] | 3 | * Copyright (c) 2014, 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 | |
Alexander Afanasyev | dc01700 | 2014-06-18 16:37:54 -0700 | [diff] [blame] | 34 | MulticastUdpFace::MulticastUdpFace(const shared_ptr<MulticastUdpFace::protocol::socket>& recvSocket, |
| 35 | const shared_ptr<MulticastUdpFace::protocol::socket>& sendSocket, |
| 36 | const MulticastUdpFace::protocol::endpoint& localEndpoint, |
| 37 | const MulticastUdpFace::protocol::endpoint& multicastEndpoint) |
| 38 | : DatagramFace<protocol, Multicast>(FaceUri(multicastEndpoint), |
Alexander Afanasyev | cd591e1 | 2014-06-18 16:35:16 -0700 | [diff] [blame] | 39 | FaceUri(localEndpoint), |
Alexander Afanasyev | dc01700 | 2014-06-18 16:37:54 -0700 | [diff] [blame] | 40 | recvSocket, false) |
| 41 | , m_multicastGroup(multicastEndpoint) |
| 42 | , m_sendSocket(sendSocket) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 43 | { |
Davide Pesavento | d8d4d98 | 2014-03-21 18:47:58 +0100 | [diff] [blame] | 44 | NFD_LOG_INFO("Creating multicast UDP face for group " << m_multicastGroup); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 45 | } |
| 46 | |
Davide Pesavento | d8d4d98 | 2014-03-21 18:47:58 +0100 | [diff] [blame] | 47 | const MulticastUdpFace::protocol::endpoint& |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 48 | MulticastUdpFace::getMulticastGroup() const |
| 49 | { |
| 50 | return m_multicastGroup; |
| 51 | } |
| 52 | |
| 53 | void |
Alexander Afanasyev | cd591e1 | 2014-06-18 16:35:16 -0700 | [diff] [blame] | 54 | MulticastUdpFace::sendBlock(const Block& block) |
| 55 | { |
Alexander Afanasyev | dc01700 | 2014-06-18 16:37:54 -0700 | [diff] [blame] | 56 | m_sendSocket->async_send_to(boost::asio::buffer(block.wire(), block.size()), |
| 57 | m_multicastGroup, |
Junxiao Shi | 5dd26c3 | 2014-07-20 23:15:14 -0700 | [diff] [blame] | 58 | bind(&MulticastUdpFace::handleSend, this, _1, _2, block)); |
Alexander Afanasyev | cd591e1 | 2014-06-18 16:35:16 -0700 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | void |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 62 | MulticastUdpFace::sendInterest(const Interest& interest) |
| 63 | { |
Alexander Afanasyev | 7e698e6 | 2014-03-07 16:48:35 +0000 | [diff] [blame] | 64 | onSendInterest(interest); |
| 65 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 66 | NFD_LOG_DEBUG("Sending interest"); |
Alexander Afanasyev | cd591e1 | 2014-06-18 16:35:16 -0700 | [diff] [blame] | 67 | sendBlock(interest.wireEncode()); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 68 | } |
| 69 | |
| 70 | void |
| 71 | MulticastUdpFace::sendData(const Data& data) |
| 72 | { |
Alexander Afanasyev | 7e698e6 | 2014-03-07 16:48:35 +0000 | [diff] [blame] | 73 | /// \todo After this method implements duplicate suppression, onSendData event should |
| 74 | /// be triggered only when data is actually sent out |
| 75 | onSendData(data); |
| 76 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 77 | NFD_LOG_DEBUG("Sending data"); |
Alexander Afanasyev | cd591e1 | 2014-06-18 16:35:16 -0700 | [diff] [blame] | 78 | sendBlock(data.wireEncode()); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 79 | } |
Davide Pesavento | d8d4d98 | 2014-03-21 18:47:58 +0100 | [diff] [blame] | 80 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 81 | bool |
| 82 | MulticastUdpFace::isMultiAccess() const |
| 83 | { |
| 84 | return true; |
| 85 | } |
| 86 | |
| 87 | } // namespace nfd |