blob: 1dec4809709e18e971b17ff6ba956b915f08428a [file] [log] [blame]
Davide Pesavento44deacc2014-02-19 10:48:07 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi7003c602017-01-10 13:35:28 +00003 * Copyright (c) 2014-2017, Regents of the University of California,
Alexander Afanasyev319f2c82015-01-07 14:56:53 -08004 * 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/>.
Junxiao Shia1937bf2014-11-06 11:43:40 -070024 */
Davide Pesavento44deacc2014-02-19 10:48:07 +010025
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070026#ifndef NFD_DAEMON_FACE_ETHERNET_FACTORY_HPP
27#define NFD_DAEMON_FACE_ETHERNET_FACTORY_HPP
Davide Pesavento44deacc2014-02-19 10:48:07 +010028
Alexander Afanasyev0eb70652014-02-27 18:35:07 -080029#include "protocol-factory.hpp"
Davide Pesavento44deacc2014-02-19 10:48:07 +010030
31namespace nfd {
Junxiao Shi7003c602017-01-10 13:35:28 +000032namespace face {
Davide Pesavento44deacc2014-02-19 10:48:07 +010033
Junxiao Shi7003c602017-01-10 13:35:28 +000034/** \brief protocol factory for Ethernet
35 *
36 * Currently, only Ethernet multicast is supported.
37 */
Alexander Afanasyev0eb70652014-02-27 18:35:07 -080038class EthernetFactory : public ProtocolFactory
Davide Pesavento44deacc2014-02-19 10:48:07 +010039{
40public:
Junxiao Shi7003c602017-01-10 13:35:28 +000041 /** \brief process face_system.ether config section
Davide Pesavento44deacc2014-02-19 10:48:07 +010042 */
Junxiao Shi7003c602017-01-10 13:35:28 +000043 void
44 processConfig(OptionalConfigSection configSection,
45 FaceSystem::ConfigContext& context) override;
Davide Pesavento44deacc2014-02-19 10:48:07 +010046
Junxiao Shi7003c602017-01-10 13:35:28 +000047 /** \brief unicast face creation is not supported and will always fail
Davide Pesavento44deacc2014-02-19 10:48:07 +010048 */
Junxiao Shi7003c602017-01-10 13:35:28 +000049 void
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020050 createFace(const FaceUri& uri,
51 ndn::nfd::FacePersistency persistency,
Eric Newberryf40551a2016-09-05 15:41:16 -070052 bool wantLocalFieldsEnabled,
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020053 const FaceCreatedCallback& onCreated,
Eric Newberry42602412016-08-27 09:33:18 -070054 const FaceCreationFailedCallback& onFailure) override;
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020055
Junxiao Shi7003c602017-01-10 13:35:28 +000056 /** \return empty container, because Ethernet unicast is not supported
57 */
58 std::vector<shared_ptr<const Channel>>
Davide Pesaventob84bd3a2016-04-22 02:21:45 +020059 getChannels() const override;
Steve DiBenedettoef04f272014-06-04 14:28:31 -060060
Davide Pesavento44deacc2014-02-19 10:48:07 +010061private:
Junxiao Shi7003c602017-01-10 13:35:28 +000062 /** \brief Create a face to communicate on the given Ethernet multicast group
63 * \param netif local network interface
64 * \param group multicast group address
65 * \note Calling this method again with same arguments returns the existing face on the given
66 * interface and multicast group rather than creating a new one.
67 * \throw EthernetTransport::Error transport creation fails
Davide Pesavento44deacc2014-02-19 10:48:07 +010068 */
Junxiao Shicde37ad2015-12-24 01:02:05 -070069 shared_ptr<Face>
Junxiao Shi7003c602017-01-10 13:35:28 +000070 createMulticastFace(const NetworkInterfaceInfo& netif, const ethernet::Address& group);
71
72 void
73 applyConfig(const FaceSystem::ConfigContext& context);
Davide Pesavento44deacc2014-02-19 10:48:07 +010074
75private:
Junxiao Shi7003c602017-01-10 13:35:28 +000076 struct MulticastConfig
77 {
78 bool isEnabled = false;
79 ethernet::Address group = ethernet::getDefaultMulticastAddress();
80 NetworkInterfacePredicate netifPredicate;
81 };
82
83 MulticastConfig m_mcastConfig;
84
85 /// (ifname, group) => face
86 std::map<std::pair<std::string, ethernet::Address>, shared_ptr<Face>> m_mcastFaces;
Davide Pesavento44deacc2014-02-19 10:48:07 +010087};
88
Junxiao Shi7003c602017-01-10 13:35:28 +000089} // namespace face
Davide Pesavento44deacc2014-02-19 10:48:07 +010090} // namespace nfd
91
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070092#endif // NFD_DAEMON_FACE_ETHERNET_FACTORY_HPP