NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
validator-config.cpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2013-2017 Regents of the University of California.
4  *
5  * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
6  *
7  * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8  * terms of the GNU Lesser General Public License as published by the Free Software
9  * Foundation, either version 3 of the License, or (at your option) any later version.
10  *
11  * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13  * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14  *
15  * You should have received copies of the GNU General Public License and GNU Lesser
16  * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17  * <http://www.gnu.org/licenses/>.
18  *
19  * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
20  */
21 
22 #include "validator-config.hpp"
24 
25 namespace ndn {
26 namespace security {
27 
28 ValidatorConfig::ValidatorConfig(std::unique_ptr<v2::CertificateFetcher> fetcher, const Options& options)
29  : v2::Validator(make_unique<v2::ValidationPolicyCommandInterest>(make_unique<v2::ValidationPolicyConfig>(),
30  options),
31  std::move(fetcher))
32  , m_policyConfig(static_cast<v2::ValidationPolicyConfig&>(getPolicy().getInnerPolicy()))
33 {
34 }
35 
37  : ValidatorConfig(make_unique<v2::CertificateFetcherFromNetwork>(face), options)
38 {
39 }
40 
41 void
42 ValidatorConfig::load(const std::string& filename)
43 {
44  m_policyConfig.load(filename);
45 }
46 
47 void
48 ValidatorConfig::load(const std::string& input, const std::string& filename)
49 {
50  m_policyConfig.load(input, filename);
51 }
52 
53 void
54 ValidatorConfig::load(std::istream& input, const std::string& filename)
55 {
56  m_policyConfig.load(input, filename);
57 }
58 
59 void
61  const std::string& filename)
62 {
63  m_policyConfig.load(configSection, filename);
64 }
65 
66 } // namespace security
67 } // namespace ndn
Copyright (c) 2011-2015 Regents of the University of California.
void load(const std::string &filename)
ndn security v2 Validator
Definition: validator.cpp:32
Helper for validator that uses CommandInterest + Config policy and NetworkFetcher.
STL namespace.
ValidatorConfig(std::unique_ptr< v2::CertificateFetcher > fetcher, const Options &options=Options())
Provide a communication channel with local or remote NDN forwarder.
Definition: face.hpp:90
boost::property_tree::ptree ConfigSection
Definition: common.hpp:35
unique_ptr< T > make_unique(Args &&... args)
Definition: backports.hpp:96