Junxiao Shi | eef49a9 | 2018-11-10 12:19:36 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /* |
Davide Pesavento | 2c9d2ca | 2024-01-27 16:36:51 -0500 | [diff] [blame] | 3 | * Copyright (c) 2014-2024, Regents of the University of California, |
Junxiao Shi | eef49a9 | 2018-11-10 12:19:36 +0000 | [diff] [blame] | 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 | #ifndef NFD_DAEMON_FACE_NETDEV_BOUND_HPP |
| 27 | #define NFD_DAEMON_FACE_NETDEV_BOUND_HPP |
| 28 | |
Davide Pesavento | c5a9f81 | 2023-10-17 18:01:52 -0400 | [diff] [blame] | 29 | #include "network-predicate.hpp" |
Junxiao Shi | eef49a9 | 2018-11-10 12:19:36 +0000 | [diff] [blame] | 30 | #include "protocol-factory.hpp" |
| 31 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 32 | namespace nfd::face { |
Junxiao Shi | eef49a9 | 2018-11-10 12:19:36 +0000 | [diff] [blame] | 33 | |
| 34 | class FaceSystem; |
| 35 | |
Davide Pesavento | 2c9d2ca | 2024-01-27 16:36:51 -0500 | [diff] [blame] | 36 | /** |
| 37 | * \brief Manages netdev-bound faces. |
Junxiao Shi | eef49a9 | 2018-11-10 12:19:36 +0000 | [diff] [blame] | 38 | */ |
| 39 | class NetdevBound : noncopyable |
| 40 | { |
| 41 | public: |
| 42 | class RuleParseError : public ConfigFile::Error |
| 43 | { |
| 44 | public: |
| 45 | RuleParseError(int index, std::string msg) |
Davide Pesavento | 2c9d2ca | 2024-01-27 16:36:51 -0500 | [diff] [blame] | 46 | : Error("Error parsing face_system.netdev_bound.rule[" + std::to_string(index) + "]: " + msg) |
Junxiao Shi | eef49a9 | 2018-11-10 12:19:36 +0000 | [diff] [blame] | 47 | , index(index) |
| 48 | , msg(std::move(msg)) |
| 49 | { |
| 50 | } |
| 51 | |
Junxiao Shi | eef49a9 | 2018-11-10 12:19:36 +0000 | [diff] [blame] | 52 | public: |
| 53 | int index; |
| 54 | std::string msg; |
| 55 | }; |
| 56 | |
| 57 | NetdevBound(const ProtocolFactoryCtorParams& params, const FaceSystem& faceSystem); |
| 58 | |
Davide Pesavento | aa9e3b2 | 2022-10-21 17:00:07 -0400 | [diff] [blame] | 59 | /** \brief Process `face_system.netdev_bound` config section. |
Junxiao Shi | eef49a9 | 2018-11-10 12:19:36 +0000 | [diff] [blame] | 60 | */ |
| 61 | void |
| 62 | processConfig(OptionalConfigSection configSection, |
| 63 | FaceSystem::ConfigContext& context); |
| 64 | |
Davide Pesavento | 264af77 | 2021-02-09 21:48:24 -0500 | [diff] [blame] | 65 | NFD_PUBLIC_WITH_TESTS_ELSE_PRIVATE: |
Junxiao Shi | eef49a9 | 2018-11-10 12:19:36 +0000 | [diff] [blame] | 66 | struct Rule |
| 67 | { |
| 68 | std::vector<FaceUri> remotes; |
| 69 | NetworkInterfacePredicate netifPredicate; |
| 70 | }; |
| 71 | |
| 72 | Rule |
| 73 | parseRule(int index, const ConfigSection& confRule) const; |
| 74 | |
Davide Pesavento | 264af77 | 2021-02-09 21:48:24 -0500 | [diff] [blame] | 75 | NFD_PUBLIC_WITH_TESTS_ELSE_PRIVATE: |
Junxiao Shi | eef49a9 | 2018-11-10 12:19:36 +0000 | [diff] [blame] | 76 | const FaceSystem& m_faceSystem; |
| 77 | FaceCreatedCallback m_addFace; |
| 78 | shared_ptr<ndn::net::NetworkMonitor> m_netmon; |
| 79 | |
| 80 | std::vector<Rule> m_rules; |
| 81 | |
| 82 | using Key = std::pair<FaceUri, std::string>; |
| 83 | std::map<Key, shared_ptr<Face>> m_faces; |
| 84 | }; |
| 85 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 86 | } // namespace nfd::face |
Junxiao Shi | eef49a9 | 2018-11-10 12:19:36 +0000 | [diff] [blame] | 87 | |
| 88 | #endif // NFD_DAEMON_FACE_NETDEV_BOUND_HPP |