blob: 9eb38c3a6a495e1f0bd762ce57c78518eb4ecafa [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)
38 : DatagramFace<protocol, Multicast>(FaceUri(multicastEndpoint),
Alexander Afanasyevcd591e12014-06-18 16:35:16 -070039 FaceUri(localEndpoint),
Alexander Afanasyevdc017002014-06-18 16:37:54 -070040 recvSocket, false)
41 , m_multicastGroup(multicastEndpoint)
42 , m_sendSocket(sendSocket)
Giulio Grassi624f6c62014-02-18 19:42:14 +010043{
Davide Pesaventobe40fb12015-02-23 21:09:34 +010044 NFD_LOG_FACE_INFO("Creating face");
Giulio Grassi624f6c62014-02-18 19:42:14 +010045}
46
Davide Pesaventod8d4d982014-03-21 18:47:58 +010047const MulticastUdpFace::protocol::endpoint&
Giulio Grassi624f6c62014-02-18 19:42:14 +010048MulticastUdpFace::getMulticastGroup() const
49{
50 return m_multicastGroup;
51}
52
53void
Alexander Afanasyevcd591e12014-06-18 16:35:16 -070054MulticastUdpFace::sendBlock(const Block& block)
55{
Alexander Afanasyevdc017002014-06-18 16:37:54 -070056 m_sendSocket->async_send_to(boost::asio::buffer(block.wire(), block.size()),
57 m_multicastGroup,
Junxiao Shi5dd26c32014-07-20 23:15:14 -070058 bind(&MulticastUdpFace::handleSend, this, _1, _2, block));
Alexander Afanasyevcd591e12014-06-18 16:35:16 -070059}
60
61void
Giulio Grassi624f6c62014-02-18 19:42:14 +010062MulticastUdpFace::sendInterest(const Interest& interest)
63{
Davide Pesaventobe40fb12015-02-23 21:09:34 +010064 NFD_LOG_FACE_TRACE(__func__);
65
Junxiao Shic099ddb2014-12-25 20:53:20 -070066 this->emitSignal(onSendInterest, interest);
Alexander Afanasyev7e698e62014-03-07 16:48:35 +000067
Alexander Afanasyevcd591e12014-06-18 16:35:16 -070068 sendBlock(interest.wireEncode());
Giulio Grassi624f6c62014-02-18 19:42:14 +010069}
70
71void
72MulticastUdpFace::sendData(const Data& data)
73{
Davide Pesaventobe40fb12015-02-23 21:09:34 +010074 NFD_LOG_FACE_TRACE(__func__);
75
76 /// \todo After this face implements duplicate suppression, onSendData should
77 /// be emitted only when data is actually sent out. See also #2555
Junxiao Shic099ddb2014-12-25 20:53:20 -070078 this->emitSignal(onSendData, data);
Alexander Afanasyev7e698e62014-03-07 16:48:35 +000079
Alexander Afanasyevcd591e12014-06-18 16:35:16 -070080 sendBlock(data.wireEncode());
Giulio Grassi624f6c62014-02-18 19:42:14 +010081}
Davide Pesaventod8d4d982014-03-21 18:47:58 +010082
Giulio Grassi624f6c62014-02-18 19:42:14 +010083bool
84MulticastUdpFace::isMultiAccess() const
85{
86 return true;
87}
88
89} // namespace nfd