blob: 3592530720dffd04ca2021a66c1d7cacf4d9d092 [file] [log] [blame]
Davide Pesavento44deacc2014-02-19 10:48:07 +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/>.
Steve DiBenedettoef04f272014-06-04 14:28:31 -060024 */
Davide Pesavento44deacc2014-02-19 10:48:07 +010025
Alexander Afanasyev0eb70652014-02-27 18:35:07 -080026#include "ethernet-factory.hpp"
Davide Pesavento35120ea2015-11-17 21:13:18 +010027#include "ethernet-transport.hpp"
28#include "generic-link-service.hpp"
29#include "lp-face-wrapper.hpp"
Davide Pesavento44deacc2014-02-19 10:48:07 +010030#include "core/global-io.hpp"
31
Davide Pesavento44deacc2014-02-19 10:48:07 +010032namespace nfd {
33
Davide Pesavento35120ea2015-11-17 21:13:18 +010034shared_ptr<face::LpFaceWrapper>
Davide Pesaventob499a602014-11-18 22:36:56 +010035EthernetFactory::createMulticastFace(const NetworkInterfaceInfo& interface,
Davide Pesavento35120ea2015-11-17 21:13:18 +010036 const ethernet::Address& address)
Davide Pesavento44deacc2014-02-19 10:48:07 +010037{
Davide Pesavento44deacc2014-02-19 10:48:07 +010038 if (!address.isMulticast())
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -070039 BOOST_THROW_EXCEPTION(Error(address.toString() + " is not a multicast address"));
Davide Pesavento44deacc2014-02-19 10:48:07 +010040
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020041 auto face = findMulticastFace(interface.name, address);
Davide Pesavento44deacc2014-02-19 10:48:07 +010042 if (face)
43 return face;
44
Davide Pesavento35120ea2015-11-17 21:13:18 +010045 face::GenericLinkService::Options opts;
46 opts.allowFragmentation = true;
47 opts.allowReassembly = true;
48
49 auto linkService = make_unique<face::GenericLinkService>(opts);
50 auto transport = make_unique<face::EthernetTransport>(interface, address);
51 auto lpFace = make_unique<face::LpFace>(std::move(linkService), std::move(transport));
52 face = make_shared<face::LpFaceWrapper>(std::move(lpFace));
Davide Pesavento7726ae52014-11-23 21:01:05 +010053
54 auto key = std::make_pair(interface.name, address);
Junxiao Shic099ddb2014-12-25 20:53:20 -070055 face->onFail.connectSingleShot([this, key] (const std::string& reason) {
Davide Pesavento7726ae52014-11-23 21:01:05 +010056 m_multicastFaces.erase(key);
Junxiao Shic099ddb2014-12-25 20:53:20 -070057 });
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020058 m_multicastFaces[key] = face;
Davide Pesavento44deacc2014-02-19 10:48:07 +010059
60 return face;
61}
62
Alexander Afanasyevd6655302014-02-28 08:41:28 -080063void
64EthernetFactory::createFace(const FaceUri& uri,
Yukai Tu7c90e6d2015-07-11 12:21:46 +080065 ndn::nfd::FacePersistency persistency,
Alexander Afanasyevd6655302014-02-28 08:41:28 -080066 const FaceCreatedCallback& onCreated,
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020067 const FaceCreationFailedCallback& onConnectFailed)
Alexander Afanasyevd6655302014-02-28 08:41:28 -080068{
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -070069 BOOST_THROW_EXCEPTION(Error("EthernetFactory does not support 'createFace' operation"));
Alexander Afanasyevd6655302014-02-28 08:41:28 -080070}
71
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020072std::vector<shared_ptr<const Channel>>
Steve DiBenedettoef04f272014-06-04 14:28:31 -060073EthernetFactory::getChannels() const
74{
Davide Pesavento7726ae52014-11-23 21:01:05 +010075 return {};
Steve DiBenedettoef04f272014-06-04 14:28:31 -060076}
77
Davide Pesavento35120ea2015-11-17 21:13:18 +010078shared_ptr<face::LpFaceWrapper>
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020079EthernetFactory::findMulticastFace(const std::string& interfaceName,
80 const ethernet::Address& address) const
81{
82 auto i = m_multicastFaces.find({interfaceName, address});
83 if (i != m_multicastFaces.end())
84 return i->second;
85 else
86 return nullptr;
87}
88
Davide Pesavento44deacc2014-02-19 10:48:07 +010089} // namespace nfd