blob: 8ac07af5325eab760a8e85d93ac8c2f356b00a82 [file] [log] [blame]
Giulio Grassi624f6c62014-02-18 19:42:14 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev319f2c82015-01-07 14:56:53 -08003 * 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 Afanasyev9bcbc7c2014-04-06 19:37:37 -070010 *
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 Afanasyevcd591e12014-06-18 16:35:16 -070024 */
Giulio Grassi624f6c62014-02-18 19:42:14 +010025
26#include "multicast-udp-face.hpp"
27
28namespace nfd {
29
Alexander Afanasyevcd591e12014-06-18 16:35:16 -070030NFD_LOG_INCLASS_2TEMPLATE_SPECIALIZATION_DEFINE(DatagramFace,
31 MulticastUdpFace::protocol, Multicast,
32 "MulticastUdpFace");
Giulio Grassi624f6c62014-02-18 19:42:14 +010033
Davide Pesavento292e5e12015-03-13 02:08:33 +010034MulticastUdpFace::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 Grassi624f6c62014-02-18 19:42:14 +010040{
Giulio Grassi624f6c62014-02-18 19:42:14 +010041}
42
Davide Pesaventod8d4d982014-03-21 18:47:58 +010043const MulticastUdpFace::protocol::endpoint&
Giulio Grassi624f6c62014-02-18 19:42:14 +010044MulticastUdpFace::getMulticastGroup() const
45{
46 return m_multicastGroup;
47}
48
49void
50MulticastUdpFace::sendInterest(const Interest& interest)
51{
Davide Pesaventobe40fb12015-02-23 21:09:34 +010052 NFD_LOG_FACE_TRACE(__func__);
Junxiao Shic099ddb2014-12-25 20:53:20 -070053 this->emitSignal(onSendInterest, interest);
Alexander Afanasyevcd591e12014-06-18 16:35:16 -070054 sendBlock(interest.wireEncode());
Giulio Grassi624f6c62014-02-18 19:42:14 +010055}
56
57void
58MulticastUdpFace::sendData(const Data& data)
59{
Davide Pesaventobe40fb12015-02-23 21:09:34 +010060 NFD_LOG_FACE_TRACE(__func__);
Davide Pesaventobe40fb12015-02-23 21:09:34 +010061 /// \todo After this face implements duplicate suppression, onSendData should
62 /// be emitted only when data is actually sent out. See also #2555
Junxiao Shic099ddb2014-12-25 20:53:20 -070063 this->emitSignal(onSendData, data);
Alexander Afanasyevcd591e12014-06-18 16:35:16 -070064 sendBlock(data.wireEncode());
Giulio Grassi624f6c62014-02-18 19:42:14 +010065}
Davide Pesaventod8d4d982014-03-21 18:47:58 +010066
Davide Pesavento292e5e12015-03-13 02:08:33 +010067void
68MulticastUdpFace::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 Grassi624f6c62014-02-18 19:42:14 +010077} // namespace nfd