blob: ee44591566ce2a184213d4c59b5846e66466993f [file] [log] [blame]
Junxiao Shib8590312016-12-29 21:22:25 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi38b24c72017-01-05 02:59:31 +00003 * Copyright (c) 2014-2017, Regents of the University of California,
Junxiao Shib8590312016-12-29 21:22:25 +00004 * 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.
10 *
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 */
25
26#include "face-system.hpp"
Junxiao Shib47247d2017-01-24 15:09:16 +000027#include "protocol-factory.hpp"
Junxiao Shib8590312016-12-29 21:22:25 +000028#include "fw/face-table.hpp"
29
Junxiao Shib8590312016-12-29 21:22:25 +000030namespace nfd {
31namespace face {
32
Junxiao Shib47247d2017-01-24 15:09:16 +000033NFD_LOG_INIT("FaceSystem");
Junxiao Shib8590312016-12-29 21:22:25 +000034
35FaceSystem::FaceSystem(FaceTable& faceTable)
36 : m_faceTable(faceTable)
37{
Junxiao Shib47247d2017-01-24 15:09:16 +000038 for (const std::string& id : ProtocolFactory::listRegistered()) {
39 NFD_LOG_TRACE("creating factory " << id);
40 m_factories[id] = ProtocolFactory::create(id);
41 }
Junxiao Shib8590312016-12-29 21:22:25 +000042}
43
Junxiao Shib47247d2017-01-24 15:09:16 +000044FaceSystem::~FaceSystem() = default;
45
Junxiao Shib8590312016-12-29 21:22:25 +000046std::set<const ProtocolFactory*>
47FaceSystem::listProtocolFactories() const
48{
49 std::set<const ProtocolFactory*> factories;
Junxiao Shib47247d2017-01-24 15:09:16 +000050 for (const auto& p : m_factories) {
Junxiao Shib8590312016-12-29 21:22:25 +000051 factories.insert(p.second.get());
52 }
53 return factories;
54}
55
56ProtocolFactory*
Junxiao Shi38b24c72017-01-05 02:59:31 +000057FaceSystem::getFactoryById(const std::string& id)
Junxiao Shib8590312016-12-29 21:22:25 +000058{
Junxiao Shi38b24c72017-01-05 02:59:31 +000059 auto found = m_factories.find(id);
Junxiao Shib8590312016-12-29 21:22:25 +000060 return found == m_factories.end() ? nullptr : found->second.get();
61}
62
Junxiao Shi38b24c72017-01-05 02:59:31 +000063ProtocolFactory*
64FaceSystem::getFactoryByScheme(const std::string& scheme)
65{
66 auto found = m_factoryByScheme.find(scheme);
Junxiao Shib47247d2017-01-24 15:09:16 +000067 return found == m_factoryByScheme.end() ? nullptr : found->second;
Junxiao Shi38b24c72017-01-05 02:59:31 +000068}
69
Junxiao Shib8590312016-12-29 21:22:25 +000070void
71FaceSystem::setConfigFile(ConfigFile& configFile)
72{
73 configFile.addSectionHandler("face_system", bind(&FaceSystem::processConfig, this, _1, _2, _3));
74}
75
76void
77FaceSystem::processConfig(const ConfigSection& configSection, bool isDryRun, const std::string& filename)
78{
Junxiao Shi38b24c72017-01-05 02:59:31 +000079 ConfigContext context;
80 context.isDryRun = isDryRun;
81 context.addFace = bind(&FaceTable::add, &m_faceTable, _1);
Junxiao Shi7003c602017-01-10 13:35:28 +000082 context.m_netifs = listNetworkInterfaces();
Junxiao Shi38b24c72017-01-05 02:59:31 +000083
84 // process sections in protocol factories
85 for (const auto& pair : m_factories) {
86 const std::string& sectionName = pair.first;
Junxiao Shib47247d2017-01-24 15:09:16 +000087 ProtocolFactory* factory = pair.second.get();
Junxiao Shi38b24c72017-01-05 02:59:31 +000088
89 std::set<std::string> oldProvidedSchemes = factory->getProvidedSchemes();
90 factory->processConfig(configSection.get_child_optional(sectionName), context);
91
92 if (!isDryRun) {
93 for (const std::string& scheme : factory->getProvidedSchemes()) {
94 m_factoryByScheme[scheme] = factory;
Junxiao Shib47247d2017-01-24 15:09:16 +000095 if (oldProvidedSchemes.erase(scheme) == 0) {
96 NFD_LOG_TRACE("factory " << sectionName <<
97 " provides " << scheme << " FaceUri scheme");
98 }
Junxiao Shi38b24c72017-01-05 02:59:31 +000099 }
100 for (const std::string& scheme : oldProvidedSchemes) {
101 m_factoryByScheme.erase(scheme);
Junxiao Shib47247d2017-01-24 15:09:16 +0000102 NFD_LOG_TRACE("factory " << sectionName <<
103 " no longer provides " << scheme << " FaceUri scheme");
Junxiao Shi38b24c72017-01-05 02:59:31 +0000104 }
105 }
106 }
107
108 // process other sections
Junxiao Shib8590312016-12-29 21:22:25 +0000109 std::set<std::string> seenSections;
Junxiao Shi38b24c72017-01-05 02:59:31 +0000110 for (const auto& pair : configSection) {
111 const std::string& sectionName = pair.first;
Junxiao Shi64d99f22017-01-21 23:06:36 +0000112 // const ConfigSection& subSection = pair.second;
Junxiao Shib8590312016-12-29 21:22:25 +0000113
Junxiao Shi38b24c72017-01-05 02:59:31 +0000114 if (!seenSections.insert(sectionName).second) {
115 BOOST_THROW_EXCEPTION(ConfigFile::Error("Duplicate section face_system." + sectionName));
Junxiao Shib8590312016-12-29 21:22:25 +0000116 }
117
Junxiao Shi38b24c72017-01-05 02:59:31 +0000118 if (m_factories.count(sectionName) > 0) {
119 continue;
Junxiao Shib8590312016-12-29 21:22:25 +0000120 }
Junxiao Shi38b24c72017-01-05 02:59:31 +0000121
122 ///\todo #3521 nicfaces
123
Junxiao Shi64d99f22017-01-21 23:06:36 +0000124 BOOST_THROW_EXCEPTION(ConfigFile::Error("Unrecognized option face_system." + sectionName));
Junxiao Shib8590312016-12-29 21:22:25 +0000125 }
126}
127
Junxiao Shib8590312016-12-29 21:22:25 +0000128} // namespace face
129} // namespace nfd