blob: 910f1cbec922cd96a4beb0b9d4f5b4373311eb53 [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
Alexander Afanasyevdc017002014-06-18 16:37:54 -070034MulticastUdpFace::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)
Davide Pesavento94279412015-02-27 01:29:32 +010038 : DatagramFace(FaceUri(multicastEndpoint), FaceUri(localEndpoint), recvSocket)
Alexander Afanasyevdc017002014-06-18 16:37:54 -070039 , m_multicastGroup(multicastEndpoint)
40 , m_sendSocket(sendSocket)
Giulio Grassi624f6c62014-02-18 19:42:14 +010041{
Giulio Grassi624f6c62014-02-18 19:42:14 +010042}
43
Davide Pesaventod8d4d982014-03-21 18:47:58 +010044const MulticastUdpFace::protocol::endpoint&
Giulio Grassi624f6c62014-02-18 19:42:14 +010045MulticastUdpFace::getMulticastGroup() const
46{
47 return m_multicastGroup;
48}
49
50void
Alexander Afanasyevcd591e12014-06-18 16:35:16 -070051MulticastUdpFace::sendBlock(const Block& block)
52{
Alexander Afanasyevdc017002014-06-18 16:37:54 -070053 m_sendSocket->async_send_to(boost::asio::buffer(block.wire(), block.size()),
54 m_multicastGroup,
Junxiao Shi5dd26c32014-07-20 23:15:14 -070055 bind(&MulticastUdpFace::handleSend, this, _1, _2, block));
Alexander Afanasyevcd591e12014-06-18 16:35:16 -070056}
57
58void
Giulio Grassi624f6c62014-02-18 19:42:14 +010059MulticastUdpFace::sendInterest(const Interest& interest)
60{
Davide Pesaventobe40fb12015-02-23 21:09:34 +010061 NFD_LOG_FACE_TRACE(__func__);
62
Junxiao Shic099ddb2014-12-25 20:53:20 -070063 this->emitSignal(onSendInterest, interest);
Alexander Afanasyev7e698e62014-03-07 16:48:35 +000064
Alexander Afanasyevcd591e12014-06-18 16:35:16 -070065 sendBlock(interest.wireEncode());
Giulio Grassi624f6c62014-02-18 19:42:14 +010066}
67
68void
69MulticastUdpFace::sendData(const Data& data)
70{
Davide Pesaventobe40fb12015-02-23 21:09:34 +010071 NFD_LOG_FACE_TRACE(__func__);
72
73 /// \todo After this face implements duplicate suppression, onSendData should
74 /// be emitted only when data is actually sent out. See also #2555
Junxiao Shic099ddb2014-12-25 20:53:20 -070075 this->emitSignal(onSendData, data);
Alexander Afanasyev7e698e62014-03-07 16:48:35 +000076
Alexander Afanasyevcd591e12014-06-18 16:35:16 -070077 sendBlock(data.wireEncode());
Giulio Grassi624f6c62014-02-18 19:42:14 +010078}
Davide Pesaventod8d4d982014-03-21 18:47:58 +010079
Giulio Grassi624f6c62014-02-18 19:42:14 +010080} // namespace nfd