blob: 732834209168c97846564c1debaf777e9d65a518 [file] [log] [blame]
Junxiao Shieef49a92018-11-10 12:19:36 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
Davide Pesaventoe422f9e2022-06-03 01:30:23 -04003 * Copyright (c) 2014-2022, Regents of the University of California,
Junxiao Shieef49a92018-11-10 12:19:36 +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#ifndef NFD_DAEMON_FACE_NETDEV_BOUND_HPP
27#define NFD_DAEMON_FACE_NETDEV_BOUND_HPP
28
29#include "protocol-factory.hpp"
30
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040031namespace nfd::face {
Junxiao Shieef49a92018-11-10 12:19:36 +000032
33class FaceSystem;
34
35/** \brief manages netdev-bound faces
36 */
37class NetdevBound : noncopyable
38{
39public:
40 class RuleParseError : public ConfigFile::Error
41 {
42 public:
43 RuleParseError(int index, std::string msg)
44 : Error("Error parsing face_system.netdev_bound.rule[" + to_string(index) + "]: " + msg)
45 , index(index)
46 , msg(std::move(msg))
47 {
48 }
49
Junxiao Shieef49a92018-11-10 12:19:36 +000050 public:
51 int index;
52 std::string msg;
53 };
54
55 NetdevBound(const ProtocolFactoryCtorParams& params, const FaceSystem& faceSystem);
56
57 /** \brief process face_system.netdev_bound config section
58 */
59 void
60 processConfig(OptionalConfigSection configSection,
61 FaceSystem::ConfigContext& context);
62
Davide Pesavento264af772021-02-09 21:48:24 -050063NFD_PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Junxiao Shieef49a92018-11-10 12:19:36 +000064 struct Rule
65 {
66 std::vector<FaceUri> remotes;
67 NetworkInterfacePredicate netifPredicate;
68 };
69
70 Rule
71 parseRule(int index, const ConfigSection& confRule) const;
72
Davide Pesavento264af772021-02-09 21:48:24 -050073NFD_PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Junxiao Shieef49a92018-11-10 12:19:36 +000074 const FaceSystem& m_faceSystem;
75 FaceCreatedCallback m_addFace;
76 shared_ptr<ndn::net::NetworkMonitor> m_netmon;
77
78 std::vector<Rule> m_rules;
79
80 using Key = std::pair<FaceUri, std::string>;
81 std::map<Key, shared_ptr<Face>> m_faces;
82};
83
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040084} // namespace nfd::face
Junxiao Shieef49a92018-11-10 12:19:36 +000085
86#endif // NFD_DAEMON_FACE_NETDEV_BOUND_HPP