blob: 4571a9ee6163eee6dbddd33ab28b8d7b1e066e1f [file] [log] [blame]
Davide Pesavento44deacc2014-02-19 10:48:07 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -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,
Steve DiBenedettoef04f272014-06-04 14:28:31 -06008 * 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/>.
24 **/
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
29#include "ethernet-face.hpp"
Alexander Afanasyev0eb70652014-02-27 18:35:07 -080030#include "protocol-factory.hpp"
Davide Pesavento44deacc2014-02-19 10:48:07 +010031
32namespace nfd {
33
Davide Pesaventob60cc122014-03-19 19:26:02 +010034class NetworkInterfaceInfo;
35
Alexander Afanasyev0eb70652014-02-27 18:35:07 -080036class EthernetFactory : public ProtocolFactory
Davide Pesavento44deacc2014-02-19 10:48:07 +010037{
38public:
39 /**
Alexander Afanasyev0eb70652014-02-27 18:35:07 -080040 * \brief Exception of EthernetFactory
Davide Pesavento44deacc2014-02-19 10:48:07 +010041 */
Alexander Afanasyev5959b012014-06-02 19:18:12 +030042 class Error : public ProtocolFactory::Error
Davide Pesavento44deacc2014-02-19 10:48:07 +010043 {
Alexander Afanasyev5959b012014-06-02 19:18:12 +030044 public:
45 explicit
46 Error(const std::string& what)
47 : ProtocolFactory::Error(what)
48 {
49 }
Davide Pesavento44deacc2014-02-19 10:48:07 +010050 };
51
Alexander Afanasyev5959b012014-06-02 19:18:12 +030052 typedef std::map< std::pair<std::string, ethernet::Address>,
53 shared_ptr<EthernetFace> > MulticastFaceMap;
54
Davide Pesaventob60cc122014-03-19 19:26:02 +010055 // from ProtocolFactory
56 virtual void
57 createFace(const FaceUri& uri,
58 const FaceCreatedCallback& onCreated,
59 const FaceConnectFailedCallback& onConnectFailed);
60
Davide Pesavento44deacc2014-02-19 10:48:07 +010061 /**
62 * \brief Create an EthernetFace to communicate with the given multicast group
63 *
Davide Pesaventob60cc122014-03-19 19:26:02 +010064 * If this method is called twice with the same interface and group, only
Davide Pesavento44deacc2014-02-19 10:48:07 +010065 * one face will be created. Instead, the second call will just retrieve
66 * the existing face.
67 *
68 * \param interface Local network interface
69 * \param address Ethernet broadcast/multicast destination address
70 *
71 * \returns always a valid shared pointer to an EthernetFace object,
72 * an exception will be thrown if the creation fails
73 *
Alexander Afanasyev0eb70652014-02-27 18:35:07 -080074 * \throws EthernetFactory::Error or EthernetFace::Error
Davide Pesavento44deacc2014-02-19 10:48:07 +010075 */
76 shared_ptr<EthernetFace>
Davide Pesaventob60cc122014-03-19 19:26:02 +010077 createMulticastFace(const shared_ptr<NetworkInterfaceInfo>& interface,
Alexander Afanasyevd6655302014-02-28 08:41:28 -080078 const ethernet::Address& address);
Davide Pesavento44deacc2014-02-19 10:48:07 +010079
Alexander Afanasyev5959b012014-06-02 19:18:12 +030080 /**
81 * \brief Get map of configured multicast faces
82 */
83 const MulticastFaceMap&
84 getMulticastFaces() const;
85
Steve DiBenedettoef04f272014-06-04 14:28:31 -060086 virtual std::list<shared_ptr<const Channel> >
87 getChannels() const;
88
Davide Pesavento44deacc2014-02-19 10:48:07 +010089private:
90 void
Davide Pesaventob60cc122014-03-19 19:26:02 +010091 afterFaceFailed(const std::string& interfaceName,
Davide Pesavento44deacc2014-02-19 10:48:07 +010092 const ethernet::Address& address);
93
94 /**
95 * \brief Look up EthernetFace using specified interface and address
96 *
97 * \returns shared pointer to the existing EthernetFace object or
98 * empty shared pointer when such face does not exist
99 *
100 * \throws never
101 */
102 shared_ptr<EthernetFace>
Davide Pesaventob60cc122014-03-19 19:26:02 +0100103 findMulticastFace(const std::string& interfaceName,
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800104 const ethernet::Address& address) const;
Davide Pesavento44deacc2014-02-19 10:48:07 +0100105
106private:
Alexander Afanasyev5959b012014-06-02 19:18:12 +0300107 MulticastFaceMap m_multicastFaces;
Davide Pesavento44deacc2014-02-19 10:48:07 +0100108};
109
Alexander Afanasyev5959b012014-06-02 19:18:12 +0300110
111inline const EthernetFactory::MulticastFaceMap&
112EthernetFactory::getMulticastFaces() const
113{
114 return m_multicastFaces;
115}
116
117
Davide Pesavento44deacc2014-02-19 10:48:07 +0100118} // namespace nfd
119
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700120#endif // NFD_DAEMON_FACE_ETHERNET_FACTORY_HPP