Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Davide Pesavento | b84bd3a | 2016-04-22 02:21:45 +0200 | [diff] [blame] | 3 | * Copyright (c) 2014-2016, Regents of the University of California, |
Junxiao Shi | a37405d | 2015-01-26 10:50:58 -0700 | [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. |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [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/>. |
Junxiao Shi | 5dd26c3 | 2014-07-20 23:15:14 -0700 | [diff] [blame] | 24 | */ |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 25 | |
Junxiao Shi | 9f5b01d | 2016-08-05 03:54:28 +0000 | [diff] [blame^] | 26 | #ifndef NFD_CORE_COMMON_HPP |
| 27 | #define NFD_CORE_COMMON_HPP |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 28 | |
Junxiao Shi | 9f5b01d | 2016-08-05 03:54:28 +0000 | [diff] [blame^] | 29 | #include "core/config.hpp" |
Junxiao Shi | 61c5ef3 | 2014-01-24 20:59:30 -0700 | [diff] [blame] | 30 | |
Junxiao Shi | 8888449 | 2014-02-15 15:57:43 -0700 | [diff] [blame] | 31 | #ifdef WITH_TESTS |
| 32 | #define VIRTUAL_WITH_TESTS virtual |
| 33 | #define PUBLIC_WITH_TESTS_ELSE_PROTECTED public |
| 34 | #define PUBLIC_WITH_TESTS_ELSE_PRIVATE public |
| 35 | #define PROTECTED_WITH_TESTS_ELSE_PRIVATE protected |
| 36 | #else |
| 37 | #define VIRTUAL_WITH_TESTS |
| 38 | #define PUBLIC_WITH_TESTS_ELSE_PROTECTED protected |
| 39 | #define PUBLIC_WITH_TESTS_ELSE_PRIVATE private |
| 40 | #define PROTECTED_WITH_TESTS_ELSE_PRIVATE private |
| 41 | #endif |
| 42 | |
Junxiao Shi | 5dd26c3 | 2014-07-20 23:15:14 -0700 | [diff] [blame] | 43 | #include <cstddef> |
Davide Pesavento | d2856a4 | 2015-09-19 21:29:50 +0200 | [diff] [blame] | 44 | #include <cstdint> |
| 45 | #include <functional> |
| 46 | #include <limits> |
Alexander Afanasyev | 8552a38 | 2014-05-15 20:13:42 -0700 | [diff] [blame] | 47 | #include <list> |
Junxiao Shi | a37405d | 2015-01-26 10:50:58 -0700 | [diff] [blame] | 48 | #include <map> |
Davide Pesavento | d2856a4 | 2015-09-19 21:29:50 +0200 | [diff] [blame] | 49 | #include <memory> |
Alexander Afanasyev | 8552a38 | 2014-05-15 20:13:42 -0700 | [diff] [blame] | 50 | #include <set> |
Davide Pesavento | d2856a4 | 2015-09-19 21:29:50 +0200 | [diff] [blame] | 51 | #include <string> |
Junxiao Shi | a37405d | 2015-01-26 10:50:58 -0700 | [diff] [blame] | 52 | #include <unordered_map> |
| 53 | #include <unordered_set> |
Davide Pesavento | d2856a4 | 2015-09-19 21:29:50 +0200 | [diff] [blame] | 54 | #include <utility> |
Alexander Afanasyev | 8552a38 | 2014-05-15 20:13:42 -0700 | [diff] [blame] | 55 | #include <vector> |
| 56 | |
Alexander Afanasyev | 4a77136 | 2014-04-24 21:29:33 -0700 | [diff] [blame] | 57 | #include <ndn-cxx/interest.hpp> |
| 58 | #include <ndn-cxx/data.hpp> |
Davide Pesavento | d2856a4 | 2015-09-19 21:29:50 +0200 | [diff] [blame] | 59 | #include <ndn-cxx/name.hpp> |
| 60 | #include <ndn-cxx/encoding/block.hpp> |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 61 | #include <ndn-cxx/lp/nack.hpp> |
Davide Pesavento | 01f8dba | 2015-09-19 21:11:45 +0200 | [diff] [blame] | 62 | #include <ndn-cxx/util/backports.hpp> |
Davide Pesavento | 9427941 | 2015-02-27 01:29:32 +0100 | [diff] [blame] | 63 | #include <ndn-cxx/util/face-uri.hpp> |
Junxiao Shi | 1e06417 | 2014-12-14 19:37:46 -0700 | [diff] [blame] | 64 | #include <ndn-cxx/util/signal.hpp> |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 65 | |
Alexander Afanasyev | 8552a38 | 2014-05-15 20:13:42 -0700 | [diff] [blame] | 66 | #include <boost/algorithm/string.hpp> |
| 67 | #include <boost/asio.hpp> |
Alexander Afanasyev | 920af2f | 2014-01-25 22:56:11 -0800 | [diff] [blame] | 68 | #include <boost/assert.hpp> |
Steve DiBenedetto | bf6a93d | 2014-03-21 14:03:02 -0600 | [diff] [blame] | 69 | #include <boost/lexical_cast.hpp> |
Davide Pesavento | 52a18f9 | 2014-04-10 00:55:01 +0200 | [diff] [blame] | 70 | #include <boost/noncopyable.hpp> |
Alexander Afanasyev | 8552a38 | 2014-05-15 20:13:42 -0700 | [diff] [blame] | 71 | #include <boost/property_tree/ptree.hpp> |
Spyridon Mastorakis | 149e02c | 2015-07-27 13:22:22 -0700 | [diff] [blame] | 72 | #include <boost/throw_exception.hpp> |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 73 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 74 | namespace nfd { |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 75 | |
Junxiao Shi | 5dd26c3 | 2014-07-20 23:15:14 -0700 | [diff] [blame] | 76 | using std::size_t; |
| 77 | |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 78 | using boost::noncopyable; |
Davide Pesavento | 52a18f9 | 2014-04-10 00:55:01 +0200 | [diff] [blame] | 79 | |
Davide Pesavento | ab1e8f2 | 2014-10-21 22:45:33 +0200 | [diff] [blame] | 80 | using std::shared_ptr; |
| 81 | using std::unique_ptr; |
| 82 | using std::weak_ptr; |
Davide Pesavento | ab1e8f2 | 2014-10-21 22:45:33 +0200 | [diff] [blame] | 83 | using std::make_shared; |
Davide Pesavento | 01f8dba | 2015-09-19 21:11:45 +0200 | [diff] [blame] | 84 | using ndn::make_unique; |
Davide Pesavento | ab1e8f2 | 2014-10-21 22:45:33 +0200 | [diff] [blame] | 85 | using std::enable_shared_from_this; |
| 86 | |
| 87 | using std::static_pointer_cast; |
| 88 | using std::dynamic_pointer_cast; |
| 89 | using std::const_pointer_cast; |
| 90 | |
| 91 | using std::function; |
| 92 | using std::bind; |
| 93 | using std::ref; |
| 94 | using std::cref; |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 95 | |
Davide Pesavento | ec2a698 | 2015-09-18 23:59:17 +0200 | [diff] [blame] | 96 | using ndn::to_string; |
| 97 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 98 | using ndn::Interest; |
| 99 | using ndn::Data; |
| 100 | using ndn::Name; |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 101 | using ndn::PartialName; |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 102 | using ndn::Exclude; |
Junxiao Shi | 0355e9f | 2015-09-02 07:24:53 -0700 | [diff] [blame] | 103 | using ndn::Link; |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 104 | using ndn::Block; |
Davide Pesavento | 9427941 | 2015-02-27 01:29:32 +0100 | [diff] [blame] | 105 | using ndn::util::FaceUri; |
Davide Pesavento | 52a18f9 | 2014-04-10 00:55:01 +0200 | [diff] [blame] | 106 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 107 | namespace tlv { |
Junxiao Shi | 67f11ac | 2014-10-19 09:29:13 -0700 | [diff] [blame] | 108 | // Don't write "namespace tlv = ndn::tlv", because NFD can add other members into this namespace. |
| 109 | using namespace ndn::tlv; |
| 110 | } // namespace tlv |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 111 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 112 | namespace lp = ndn::lp; |
Davide Pesavento | 52a18f9 | 2014-04-10 00:55:01 +0200 | [diff] [blame] | 113 | namespace name = ndn::name; |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 114 | namespace time = ndn::time; |
Junxiao Shi | 1e06417 | 2014-12-14 19:37:46 -0700 | [diff] [blame] | 115 | namespace signal = ndn::util::signal; |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 116 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 117 | } // namespace nfd |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 118 | |
Junxiao Shi | 9f5b01d | 2016-08-05 03:54:28 +0000 | [diff] [blame^] | 119 | #endif // NFD_CORE_COMMON_HPP |