blob: ebdce9c7e3bae0d09a80d677f92a9e84190994f9 [file] [log] [blame]
Junxiao Shib8590312016-12-29 21:22:25 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shi2d491752017-07-14 21:32:05 +00002/*
Eric Newberry0c841642018-01-17 15:01:00 -07003 * Copyright (c) 2014-2018, 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 Shi2d491752017-07-14 21:32:05 +000028#include "core/global-io.hpp"
Junxiao Shib8590312016-12-29 21:22:25 +000029#include "fw/face-table.hpp"
30
Junxiao Shib8590312016-12-29 21:22:25 +000031namespace nfd {
32namespace face {
33
Junxiao Shib47247d2017-01-24 15:09:16 +000034NFD_LOG_INIT("FaceSystem");
Junxiao Shib8590312016-12-29 21:22:25 +000035
Junxiao Shi0ba6d642017-07-17 00:53:22 +000036FaceSystem::FaceSystem(FaceTable& faceTable, shared_ptr<ndn::net::NetworkMonitor> netmon)
Junxiao Shib8590312016-12-29 21:22:25 +000037 : m_faceTable(faceTable)
Junxiao Shi0ba6d642017-07-17 00:53:22 +000038 , m_netmon(std::move(netmon))
Junxiao Shib8590312016-12-29 21:22:25 +000039{
Junxiao Shi0ba6d642017-07-17 00:53:22 +000040 auto pfCtorParams = this->makePFCtorParams();
Junxiao Shib47247d2017-01-24 15:09:16 +000041 for (const std::string& id : ProtocolFactory::listRegistered()) {
42 NFD_LOG_TRACE("creating factory " << id);
Junxiao Shi0ba6d642017-07-17 00:53:22 +000043 m_factories[id] = ProtocolFactory::create(id, pfCtorParams);
Junxiao Shib47247d2017-01-24 15:09:16 +000044 }
Junxiao Shib8590312016-12-29 21:22:25 +000045}
46
Junxiao Shi0ba6d642017-07-17 00:53:22 +000047ProtocolFactoryCtorParams
48FaceSystem::makePFCtorParams()
49{
50 auto addFace = bind(&FaceTable::add, &m_faceTable, _1);
51 return {addFace, m_netmon};
52}
53
Junxiao Shib47247d2017-01-24 15:09:16 +000054FaceSystem::~FaceSystem() = default;
55
Junxiao Shib8590312016-12-29 21:22:25 +000056std::set<const ProtocolFactory*>
57FaceSystem::listProtocolFactories() const
58{
59 std::set<const ProtocolFactory*> factories;
Junxiao Shib47247d2017-01-24 15:09:16 +000060 for (const auto& p : m_factories) {
Junxiao Shib8590312016-12-29 21:22:25 +000061 factories.insert(p.second.get());
62 }
63 return factories;
64}
65
66ProtocolFactory*
Junxiao Shi38b24c72017-01-05 02:59:31 +000067FaceSystem::getFactoryById(const std::string& id)
Junxiao Shib8590312016-12-29 21:22:25 +000068{
Junxiao Shi38b24c72017-01-05 02:59:31 +000069 auto found = m_factories.find(id);
Junxiao Shib8590312016-12-29 21:22:25 +000070 return found == m_factories.end() ? nullptr : found->second.get();
71}
72
Junxiao Shi38b24c72017-01-05 02:59:31 +000073ProtocolFactory*
74FaceSystem::getFactoryByScheme(const std::string& scheme)
75{
76 auto found = m_factoryByScheme.find(scheme);
Junxiao Shib47247d2017-01-24 15:09:16 +000077 return found == m_factoryByScheme.end() ? nullptr : found->second;
Junxiao Shi38b24c72017-01-05 02:59:31 +000078}
79
Junxiao Shib8590312016-12-29 21:22:25 +000080void
81FaceSystem::setConfigFile(ConfigFile& configFile)
82{
83 configFile.addSectionHandler("face_system", bind(&FaceSystem::processConfig, this, _1, _2, _3));
84}
85
86void
87FaceSystem::processConfig(const ConfigSection& configSection, bool isDryRun, const std::string& filename)
88{
Junxiao Shi38b24c72017-01-05 02:59:31 +000089 ConfigContext context;
90 context.isDryRun = isDryRun;
Junxiao Shi38b24c72017-01-05 02:59:31 +000091
Eric Newberry0c841642018-01-17 15:01:00 -070092 // process general protocol factory config section
93 auto generalSection = configSection.get_child_optional("general");
94 if (generalSection) {
95 for (const auto& pair : *generalSection) {
96 const std::string& key = pair.first;
97 if (key == "enable_congestion_marking") {
Eric Newberry0c841642018-01-17 15:01:00 -070098 context.generalConfig.wantCongestionMarking = ConfigFile::parseYesNo(pair, "face_system.general");
99 }
100 else {
101 BOOST_THROW_EXCEPTION(ConfigFile::Error("Unrecognized option face_system.general." + key));
102 }
103 }
104 }
105
Junxiao Shi38b24c72017-01-05 02:59:31 +0000106 // process sections in protocol factories
107 for (const auto& pair : m_factories) {
108 const std::string& sectionName = pair.first;
Junxiao Shib47247d2017-01-24 15:09:16 +0000109 ProtocolFactory* factory = pair.second.get();
Junxiao Shi38b24c72017-01-05 02:59:31 +0000110
111 std::set<std::string> oldProvidedSchemes = factory->getProvidedSchemes();
112 factory->processConfig(configSection.get_child_optional(sectionName), context);
113
114 if (!isDryRun) {
115 for (const std::string& scheme : factory->getProvidedSchemes()) {
116 m_factoryByScheme[scheme] = factory;
Junxiao Shib47247d2017-01-24 15:09:16 +0000117 if (oldProvidedSchemes.erase(scheme) == 0) {
118 NFD_LOG_TRACE("factory " << sectionName <<
119 " provides " << scheme << " FaceUri scheme");
120 }
Junxiao Shi38b24c72017-01-05 02:59:31 +0000121 }
122 for (const std::string& scheme : oldProvidedSchemes) {
123 m_factoryByScheme.erase(scheme);
Junxiao Shib47247d2017-01-24 15:09:16 +0000124 NFD_LOG_TRACE("factory " << sectionName <<
125 " no longer provides " << scheme << " FaceUri scheme");
Junxiao Shi38b24c72017-01-05 02:59:31 +0000126 }
127 }
128 }
129
130 // process other sections
Junxiao Shib8590312016-12-29 21:22:25 +0000131 std::set<std::string> seenSections;
Junxiao Shi38b24c72017-01-05 02:59:31 +0000132 for (const auto& pair : configSection) {
133 const std::string& sectionName = pair.first;
Junxiao Shi64d99f22017-01-21 23:06:36 +0000134 // const ConfigSection& subSection = pair.second;
Junxiao Shib8590312016-12-29 21:22:25 +0000135
Junxiao Shi38b24c72017-01-05 02:59:31 +0000136 if (!seenSections.insert(sectionName).second) {
137 BOOST_THROW_EXCEPTION(ConfigFile::Error("Duplicate section face_system." + sectionName));
Junxiao Shib8590312016-12-29 21:22:25 +0000138 }
139
Eric Newberry0c841642018-01-17 15:01:00 -0700140 if (sectionName == "general" || m_factories.count(sectionName) > 0) {
Junxiao Shi38b24c72017-01-05 02:59:31 +0000141 continue;
Junxiao Shib8590312016-12-29 21:22:25 +0000142 }
Junxiao Shi38b24c72017-01-05 02:59:31 +0000143
144 ///\todo #3521 nicfaces
145
Junxiao Shi64d99f22017-01-21 23:06:36 +0000146 BOOST_THROW_EXCEPTION(ConfigFile::Error("Unrecognized option face_system." + sectionName));
Junxiao Shib8590312016-12-29 21:22:25 +0000147 }
148}
149
Junxiao Shib8590312016-12-29 21:22:25 +0000150} // namespace face
151} // namespace nfd