NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
face-system.cpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2014-2018, 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.
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"
27 #include "protocol-factory.hpp"
28 #include "core/global-io.hpp"
29 #include "fw/face-table.hpp"
30 
31 namespace nfd {
32 namespace face {
33 
34 NFD_LOG_INIT("FaceSystem");
35 
36 FaceSystem::FaceSystem(FaceTable& faceTable, shared_ptr<ndn::net::NetworkMonitor> netmon)
37  : m_faceTable(faceTable)
38  , m_netmon(std::move(netmon))
39 {
40  auto pfCtorParams = this->makePFCtorParams();
41  for (const std::string& id : ProtocolFactory::listRegistered()) {
42  NFD_LOG_TRACE("creating factory " << id);
43  m_factories[id] = ProtocolFactory::create(id, pfCtorParams);
44  }
45 }
46 
48 FaceSystem::makePFCtorParams()
49 {
50  auto addFace = bind(&FaceTable::add, &m_faceTable, _1);
51  return {addFace, m_netmon};
52 }
53 
54 FaceSystem::~FaceSystem() = default;
55 
56 std::set<const ProtocolFactory*>
58 {
59  std::set<const ProtocolFactory*> factories;
60  for (const auto& p : m_factories) {
61  factories.insert(p.second.get());
62  }
63  return factories;
64 }
65 
67 FaceSystem::getFactoryById(const std::string& id)
68 {
69  auto found = m_factories.find(id);
70  return found == m_factories.end() ? nullptr : found->second.get();
71 }
72 
74 FaceSystem::getFactoryByScheme(const std::string& scheme)
75 {
76  auto found = m_factoryByScheme.find(scheme);
77  return found == m_factoryByScheme.end() ? nullptr : found->second;
78 }
79 
80 void
82 {
83  configFile.addSectionHandler("face_system", bind(&FaceSystem::processConfig, this, _1, _2, _3));
84 }
85 
86 void
87 FaceSystem::processConfig(const ConfigSection& configSection, bool isDryRun, const std::string& filename)
88 {
89  ConfigContext context;
90  context.isDryRun = isDryRun;
91 
92  // 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") {
98  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 
106  // process sections in protocol factories
107  for (const auto& pair : m_factories) {
108  const std::string& sectionName = pair.first;
109  ProtocolFactory* factory = pair.second.get();
110 
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;
117  if (oldProvidedSchemes.erase(scheme) == 0) {
118  NFD_LOG_TRACE("factory " << sectionName <<
119  " provides " << scheme << " FaceUri scheme");
120  }
121  }
122  for (const std::string& scheme : oldProvidedSchemes) {
123  m_factoryByScheme.erase(scheme);
124  NFD_LOG_TRACE("factory " << sectionName <<
125  " no longer provides " << scheme << " FaceUri scheme");
126  }
127  }
128  }
129 
130  // process other sections
131  std::set<std::string> seenSections;
132  for (const auto& pair : configSection) {
133  const std::string& sectionName = pair.first;
134  // const ConfigSection& subSection = pair.second;
135 
136  if (!seenSections.insert(sectionName).second) {
137  BOOST_THROW_EXCEPTION(ConfigFile::Error("Duplicate section face_system." + sectionName));
138  }
139 
140  if (sectionName == "general" || m_factories.count(sectionName) > 0) {
141  continue;
142  }
143 
145 
146  BOOST_THROW_EXCEPTION(ConfigFile::Error("Unrecognized option face_system." + sectionName));
147  }
148 }
149 
150 } // namespace face
151 } // namespace nfd
static std::set< std::string > listRegistered()
Get registered protocol factory ids.
static bool parseYesNo(const ConfigSection &node, const std::string &key, const std::string &sectionName)
parse a config option that can be either "yes" or "no"
Definition: config-file.cpp:59
ProtocolFactory * getFactoryById(const std::string &id)
Definition: face-system.cpp:67
configuration file parsing utility
Definition: config-file.hpp:57
void add(shared_ptr< Face > face)
add a face
Definition: face-table.cpp:58
ProtocolFactory * getFactoryByScheme(const std::string &scheme)
Definition: face-system.cpp:74
STL namespace.
std::set< const ProtocolFactory * > listProtocolFactories() const
Definition: face-system.cpp:57
FaceSystem(FaceTable &faceTable, shared_ptr< ndn::net::NetworkMonitor > netmon)
Definition: face-system.cpp:36
#define NFD_LOG_TRACE(expression)
Definition: logger.hpp:54
Provides support for an underlying protocol.
container of all faces
Definition: face-table.hpp:37
Copyright (c) 2011-2015 Regents of the University of California.
Definition: ndn-common.hpp:40
void addSectionHandler(const std::string &sectionName, ConfigSectionHandler subscriber)
setup notification of configuration file sections
Definition: config-file.cpp:76
void setConfigFile(ConfigFile &configFile)
register handler for face_system section of NFD configuration file
Definition: face-system.cpp:81
Parameters to ProtocolFactory constructor.
boost::property_tree::ptree ConfigSection
a config file section
static unique_ptr< ProtocolFactory > create(const std::string &id, const CtorParams &params)
Create a protocol factory instance.
#define NFD_LOG_INIT(name)
Definition: logger.hpp:34