blob: 41391520ed010f21e714dcceb6b294e86d852606 [file] [log] [blame]
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/**
* Copyright (C) 2014 Named Data Networking Project
* See COPYING for copyright and distribution information.
*/
#ifndef NFD_MGMT_FACE_MANAGER_HPP
#define NFD_MGMT_FACE_MANAGER_HPP
#include "common.hpp"
#include "face/face.hpp"
#include "mgmt/app-face.hpp"
#include "mgmt/manager-base.hpp"
#include "mgmt/config-file.hpp"
#include "mgmt/face-status-publisher.hpp"
#include "fw/face-table.hpp"
#include <ndn-cpp-dev/management/nfd-face-management-options.hpp>
#include <ndn-cpp-dev/management/nfd-control-response.hpp>
namespace nfd {
const std::string FACE_MANAGER_PRIVILEGE = "faces";
class ProtocolFactory;
class NetworkInterfaceInfo;
class FaceManager : public ManagerBase
{
public:
class Error : public ManagerBase::Error
{
public:
Error(const std::string& what) : ManagerBase::Error(what) {}
};
/**
* \throws FaceManager::Error if localPort is an invalid port number
*/
FaceManager(FaceTable& faceTable,
shared_ptr<InternalFace> face);
virtual
~FaceManager();
/** \brief Subscribe to a face management section(s) for the config file
*/
void
setConfigFile(ConfigFile& configFile);
void
onFaceRequest(const Interest& request);
PUBLIC_WITH_TESTS_ELSE_PRIVATE:
void
listFaces(const Interest& request);
PROTECTED_WITH_TESTS_ELSE_PRIVATE:
void
onValidatedFaceRequest(const shared_ptr<const Interest>& request);
VIRTUAL_WITH_TESTS void
createFace(const Name& requestName,
ndn::nfd::FaceManagementOptions& options);
VIRTUAL_WITH_TESTS void
destroyFace(const Name& requestName,
ndn::nfd::FaceManagementOptions& options);
bool
extractOptions(const Interest& request,
ndn::nfd::FaceManagementOptions& extractedOptions);
void
onCreated(const Name& requestName,
ndn::nfd::FaceManagementOptions& options,
const shared_ptr<Face>& newFace);
void
onConnectFailed(const Name& requestName, const std::string& reason);
private:
void
onConfig(const ConfigSection& configSection, bool isDryRun);
void
processSectionUnix(const ConfigSection& configSection, bool isDryRun);
void
processSectionTcp(const ConfigSection& configSection, bool isDryRun);
void
processSectionUdp(const ConfigSection& configSection,
bool isDryRun,
const std::list<shared_ptr<NetworkInterfaceInfo> >& nicList);
void
processSectionEther(const ConfigSection& configSection,
bool isDryRun,
const std::list<shared_ptr<NetworkInterfaceInfo> >& nicList);
/** \brief parse a config option that can be either "yes" or "no"
* \throw ConfigFile::Error value is neither "yes" nor "no"
* \return true if "yes", false if "no"
*/
bool
parseYesNo(const ConfigSection::const_iterator& i,
const std::string& optionName,
const std::string& sectionName);
private:
typedef std::map< std::string/*protocol*/, shared_ptr<ProtocolFactory> > FactoryMap;
FactoryMap m_factories;
FaceTable& m_faceTable;
FaceStatusPublisher m_statusPublisher;
typedef function<void(FaceManager*,
const Name&,
ndn::nfd::FaceManagementOptions&)> SignedVerbProcessor;
typedef std::map<Name::Component, SignedVerbProcessor> SignedVerbDispatchTable;
typedef std::pair<Name::Component, SignedVerbProcessor> SignedVerbAndProcessor;
typedef function<void(FaceManager*, const Interest&)> UnsignedVerbProcessor;
typedef std::map<Name::Component, UnsignedVerbProcessor> UnsignedVerbDispatchTable;
typedef std::pair<Name::Component, UnsignedVerbProcessor> UnsignedVerbAndProcessor;
const SignedVerbDispatchTable m_signedVerbDispatch;
const UnsignedVerbDispatchTable m_unsignedVerbDispatch;
static const Name COMMAND_PREFIX; // /localhost/nfd/faces
// number of components in an invalid signed command (i.e. should be signed, but isn't)
// (/localhost/nfd/faces + verb + options) = 5
static const size_t COMMAND_UNSIGNED_NCOMPS;
// number of components in a valid signed command.
// (see UNSIGNED_NCOMPS), 9 with signed Interest support.
static const size_t COMMAND_SIGNED_NCOMPS;
static const SignedVerbAndProcessor SIGNED_COMMAND_VERBS[];
static const UnsignedVerbAndProcessor UNSIGNED_COMMAND_VERBS[];
static const Name LIST_COMMAND_PREFIX;
static const size_t LIST_COMMAND_NCOMPS;
};
inline bool
FaceManager::parseYesNo(const ConfigSection::const_iterator& i,
const std::string& optionName,
const std::string& sectionName)
{
const std::string value = i->second.get_value<std::string>();
if (value == "yes")
{
return true;
}
else if (value == "no")
{
return false;
}
throw ConfigFile::Error("Invalid value for option \"" +
optionName + "\" in \"" +
sectionName + "\" section");
}
} // namespace nfd
#endif // NFD_MGMT_FACE_MANAGER_HPP