blob: b44c2b7378f3193eb21bdf39e381f2903a9a07db [file] [log] [blame]
Davide Pesavento44deacc2014-02-19 10:48:07 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Davide Pesaventob84bd3a2016-04-22 02:21:45 +02003 * Copyright (c) 2014-2016, 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"
Alexander Afanasyeveae4f802015-01-05 17:28:15 -080030#include "core/network-interface.hpp"
Davide Pesavento44deacc2014-02-19 10:48:07 +010031
32namespace nfd {
33
Alexander Afanasyev0eb70652014-02-27 18:35:07 -080034class EthernetFactory : public ProtocolFactory
Davide Pesavento44deacc2014-02-19 10:48:07 +010035{
36public:
37 /**
Alexander Afanasyev0eb70652014-02-27 18:35:07 -080038 * \brief Exception of EthernetFactory
Davide Pesavento44deacc2014-02-19 10:48:07 +010039 */
Alexander Afanasyev5959b012014-06-02 19:18:12 +030040 class Error : public ProtocolFactory::Error
Davide Pesavento44deacc2014-02-19 10:48:07 +010041 {
Alexander Afanasyev5959b012014-06-02 19:18:12 +030042 public:
43 explicit
44 Error(const std::string& what)
45 : ProtocolFactory::Error(what)
46 {
47 }
Davide Pesavento44deacc2014-02-19 10:48:07 +010048 };
49
Davide Pesavento7726ae52014-11-23 21:01:05 +010050 typedef std::map<std::pair<std::string, ethernet::Address>,
Junxiao Shicde37ad2015-12-24 01:02:05 -070051 shared_ptr<Face>> MulticastFaceMap;
Alexander Afanasyev5959b012014-06-02 19:18:12 +030052
Davide Pesavento44deacc2014-02-19 10:48:07 +010053 /**
54 * \brief Create an EthernetFace to communicate with the given multicast group
55 *
Davide Pesaventob60cc122014-03-19 19:26:02 +010056 * If this method is called twice with the same interface and group, only
Davide Pesavento44deacc2014-02-19 10:48:07 +010057 * one face will be created. Instead, the second call will just retrieve
58 * the existing face.
59 *
60 * \param interface Local network interface
61 * \param address Ethernet broadcast/multicast destination address
62 *
63 * \returns always a valid shared pointer to an EthernetFace object,
64 * an exception will be thrown if the creation fails
65 *
Davide Pesavento35120ea2015-11-17 21:13:18 +010066 * \throws EthernetFactory::Error or EthernetTransport::Error
Davide Pesavento44deacc2014-02-19 10:48:07 +010067 */
Junxiao Shicde37ad2015-12-24 01:02:05 -070068 shared_ptr<Face>
Davide Pesaventob499a602014-11-18 22:36:56 +010069 createMulticastFace(const NetworkInterfaceInfo& interface,
Alexander Afanasyevd6655302014-02-28 08:41:28 -080070 const ethernet::Address& address);
Davide Pesavento44deacc2014-02-19 10:48:07 +010071
Alexander Afanasyev5959b012014-06-02 19:18:12 +030072 /**
73 * \brief Get map of configured multicast faces
74 */
75 const MulticastFaceMap&
76 getMulticastFaces() const;
77
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020078public: // from ProtocolFactory
79 virtual void
80 createFace(const FaceUri& uri,
81 ndn::nfd::FacePersistency persistency,
82 const FaceCreatedCallback& onCreated,
Davide Pesaventob84bd3a2016-04-22 02:21:45 +020083 const FaceCreationFailedCallback& onConnectFailed) override;
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020084
85 virtual std::vector<shared_ptr<const Channel>>
Davide Pesaventob84bd3a2016-04-22 02:21:45 +020086 getChannels() const override;
Steve DiBenedettoef04f272014-06-04 14:28:31 -060087
Davide Pesavento44deacc2014-02-19 10:48:07 +010088private:
Davide Pesavento44deacc2014-02-19 10:48:07 +010089 /**
90 * \brief Look up EthernetFace using specified interface and address
91 *
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020092 * \returns shared pointer to the existing EthernetFace object
93 * or nullptr when such face does not exist
Davide Pesavento44deacc2014-02-19 10:48:07 +010094 */
Junxiao Shicde37ad2015-12-24 01:02:05 -070095 shared_ptr<Face>
Davide Pesaventob60cc122014-03-19 19:26:02 +010096 findMulticastFace(const std::string& interfaceName,
Alexander Afanasyevd6655302014-02-28 08:41:28 -080097 const ethernet::Address& address) const;
Davide Pesavento44deacc2014-02-19 10:48:07 +010098
99private:
Alexander Afanasyev5959b012014-06-02 19:18:12 +0300100 MulticastFaceMap m_multicastFaces;
Davide Pesavento44deacc2014-02-19 10:48:07 +0100101};
102
Alexander Afanasyev5959b012014-06-02 19:18:12 +0300103inline const EthernetFactory::MulticastFaceMap&
104EthernetFactory::getMulticastFaces() const
105{
106 return m_multicastFaces;
107}
108
Davide Pesavento44deacc2014-02-19 10:48:07 +0100109} // namespace nfd
110
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700111#endif // NFD_DAEMON_FACE_ETHERNET_FACTORY_HPP