blob: d12ba5b04416149c0bdc15028973c8df5ab8ac6e [file] [log] [blame]
Giulio Grassi624f6c62014-02-18 19:42:14 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyevcd591e12014-06-18 16:35:16 -07003 * 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 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
Junxiao Shi6e694322014-04-03 10:27:13 -070034MulticastUdpFace::MulticastUdpFace(const shared_ptr<MulticastUdpFace::protocol::socket>& socket,
35 const MulticastUdpFace::protocol::endpoint& localEndpoint)
Alexander Afanasyevcd591e12014-06-18 16:35:16 -070036 : DatagramFace<protocol, Multicast>(FaceUri(socket->local_endpoint()),
37 FaceUri(localEndpoint),
38 socket, false)
39 , m_multicastGroup(socket->local_endpoint())
Giulio Grassi624f6c62014-02-18 19:42:14 +010040{
Davide Pesaventod8d4d982014-03-21 18:47:58 +010041 NFD_LOG_INFO("Creating multicast UDP face for group " << m_multicastGroup);
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{
53 m_socket->async_send_to(boost::asio::buffer(block.wire(), block.size()),
54 m_multicastGroup,
55 bind(&DatagramFace<protocol, Multicast>::handleSend,
56 this, _1, block));
57}
58
59void
Giulio Grassi624f6c62014-02-18 19:42:14 +010060MulticastUdpFace::sendInterest(const Interest& interest)
61{
Alexander Afanasyev7e698e62014-03-07 16:48:35 +000062 onSendInterest(interest);
63
Giulio Grassi624f6c62014-02-18 19:42:14 +010064 NFD_LOG_DEBUG("Sending interest");
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{
Alexander Afanasyev7e698e62014-03-07 16:48:35 +000071 /// \todo After this method implements duplicate suppression, onSendData event should
72 /// be triggered only when data is actually sent out
73 onSendData(data);
74
Giulio Grassi624f6c62014-02-18 19:42:14 +010075 NFD_LOG_DEBUG("Sending data");
Alexander Afanasyevcd591e12014-06-18 16:35:16 -070076 sendBlock(data.wireEncode());
Giulio Grassi624f6c62014-02-18 19:42:14 +010077}
Davide Pesaventod8d4d982014-03-21 18:47:58 +010078
Giulio Grassi624f6c62014-02-18 19:42:14 +010079bool
80MulticastUdpFace::isMultiAccess() const
81{
82 return true;
83}
84
85} // namespace nfd