Alexander Afanasyev | 689f0e9 | 2014-11-09 12:09:00 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
susmit | 91e1d7c | 2016-10-03 16:16:57 -0600 | [diff] [blame] | 3 | * Copyright (c) 2014-2016, 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 |
Alexander Afanasyev | 689f0e9 | 2014-11-09 12:09:00 -0800 | [diff] [blame] | 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_CORE_NETWORK_HPP |
| 27 | #define NFD_CORE_NETWORK_HPP |
| 28 | |
Davide Pesavento | 89567d3 | 2016-11-19 16:39:45 +0100 | [diff] [blame] | 29 | #include "common.hpp" |
Alexander Afanasyev | 689f0e9 | 2014-11-09 12:09:00 -0800 | [diff] [blame] | 30 | |
| 31 | namespace nfd { |
| 32 | |
| 33 | class Network |
| 34 | { |
| 35 | public: |
Davide Pesavento | 89567d3 | 2016-11-19 16:39:45 +0100 | [diff] [blame] | 36 | Network(); |
Alexander Afanasyev | 689f0e9 | 2014-11-09 12:09:00 -0800 | [diff] [blame] | 37 | |
| 38 | Network(const boost::asio::ip::address& minAddress, |
Davide Pesavento | 89567d3 | 2016-11-19 16:39:45 +0100 | [diff] [blame] | 39 | const boost::asio::ip::address& maxAddress); |
Alexander Afanasyev | 689f0e9 | 2014-11-09 12:09:00 -0800 | [diff] [blame] | 40 | |
| 41 | bool |
| 42 | doesContain(const boost::asio::ip::address& address) const |
| 43 | { |
Davide Pesavento | 89567d3 | 2016-11-19 16:39:45 +0100 | [diff] [blame] | 44 | return m_minAddress <= address && address <= m_maxAddress; |
Alexander Afanasyev | 689f0e9 | 2014-11-09 12:09:00 -0800 | [diff] [blame] | 45 | } |
| 46 | |
Alexander Afanasyev | 689f0e9 | 2014-11-09 12:09:00 -0800 | [diff] [blame] | 47 | static const Network& |
| 48 | getMaxRangeV4(); |
| 49 | |
| 50 | static const Network& |
| 51 | getMaxRangeV6(); |
| 52 | |
Davide Pesavento | 89567d3 | 2016-11-19 16:39:45 +0100 | [diff] [blame] | 53 | static bool |
| 54 | isValidCidr(const std::string& cidr); |
| 55 | |
Alexander Afanasyev | 689f0e9 | 2014-11-09 12:09:00 -0800 | [diff] [blame] | 56 | bool |
| 57 | operator==(const Network& rhs) const |
| 58 | { |
| 59 | return m_minAddress == rhs.m_minAddress && m_maxAddress == rhs.m_maxAddress; |
| 60 | } |
| 61 | |
| 62 | bool |
| 63 | operator!=(const Network& rhs) const |
| 64 | { |
| 65 | return !(*this == rhs); |
| 66 | } |
| 67 | |
| 68 | private: |
| 69 | boost::asio::ip::address m_minAddress; |
| 70 | boost::asio::ip::address m_maxAddress; |
| 71 | |
Alexander Afanasyev | 689f0e9 | 2014-11-09 12:09:00 -0800 | [diff] [blame] | 72 | friend std::ostream& |
| 73 | operator<<(std::ostream& os, const Network& network); |
Davide Pesavento | 89567d3 | 2016-11-19 16:39:45 +0100 | [diff] [blame] | 74 | |
| 75 | friend std::istream& |
| 76 | operator>>(std::istream& is, Network& network); |
Alexander Afanasyev | 689f0e9 | 2014-11-09 12:09:00 -0800 | [diff] [blame] | 77 | }; |
| 78 | |
| 79 | std::ostream& |
| 80 | operator<<(std::ostream& os, const Network& network); |
| 81 | |
| 82 | std::istream& |
| 83 | operator>>(std::istream& is, Network& network); |
| 84 | |
| 85 | } // namespace nfd |
| 86 | |
| 87 | #endif // NFD_CORE_NETWORK_HPP |