Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Junxiao Shi | 5dd26c3 | 2014-07-20 23:15:14 -0700 | [diff] [blame] | 3 | * Copyright (c) 2014, 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 | 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 | |
| 26 | #ifndef NFD_COMMON_HPP |
| 27 | #define NFD_COMMON_HPP |
| 28 | |
Junxiao Shi | 61c5ef3 | 2014-01-24 20:59:30 -0700 | [diff] [blame] | 29 | #include "config.hpp" |
| 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 | 1c93cae | 2014-12-09 22:52:17 -0700 | [diff] [blame] | 43 | /** \def DECL_OVERRIDE |
| 44 | * \brief expands to 'override' if compiler supports this feature, otherwise expands to nothing |
| 45 | */ |
| 46 | #ifdef HAVE_CXX_OVERRIDE |
| 47 | #define DECL_OVERRIDE override |
| 48 | #else |
| 49 | #define DECL_OVERRIDE |
| 50 | #endif |
| 51 | |
Junxiao Shi | 5dd26c3 | 2014-07-20 23:15:14 -0700 | [diff] [blame] | 52 | #include <cstddef> |
Alexander Afanasyev | 8552a38 | 2014-05-15 20:13:42 -0700 | [diff] [blame] | 53 | #include <list> |
| 54 | #include <set> |
Junxiao Shi | 651b75e | 2014-07-17 20:15:09 -0700 | [diff] [blame] | 55 | #include <queue> |
Alexander Afanasyev | 8552a38 | 2014-05-15 20:13:42 -0700 | [diff] [blame] | 56 | #include <vector> |
| 57 | |
Alexander Afanasyev | 4a77136 | 2014-04-24 21:29:33 -0700 | [diff] [blame] | 58 | #include <ndn-cxx/common.hpp> |
| 59 | #include <ndn-cxx/interest.hpp> |
| 60 | #include <ndn-cxx/data.hpp> |
Junxiao Shi | 1e06417 | 2014-12-14 19:37:46 -0700 | [diff] [blame] | 61 | #include <ndn-cxx/util/event-emitter.hpp> // deprecated |
| 62 | #include <ndn-cxx/util/signal.hpp> |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 63 | |
Alexander Afanasyev | 8552a38 | 2014-05-15 20:13:42 -0700 | [diff] [blame] | 64 | #include <boost/algorithm/string.hpp> |
| 65 | #include <boost/asio.hpp> |
Alexander Afanasyev | 920af2f | 2014-01-25 22:56:11 -0800 | [diff] [blame] | 66 | #include <boost/assert.hpp> |
Steve DiBenedetto | bf6a93d | 2014-03-21 14:03:02 -0600 | [diff] [blame] | 67 | #include <boost/lexical_cast.hpp> |
Davide Pesavento | 52a18f9 | 2014-04-10 00:55:01 +0200 | [diff] [blame] | 68 | #include <boost/noncopyable.hpp> |
Alexander Afanasyev | 8552a38 | 2014-05-15 20:13:42 -0700 | [diff] [blame] | 69 | #include <boost/property_tree/ptree.hpp> |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 70 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 71 | namespace nfd { |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 72 | |
Junxiao Shi | 5dd26c3 | 2014-07-20 23:15:14 -0700 | [diff] [blame] | 73 | using std::size_t; |
| 74 | |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 75 | using boost::noncopyable; |
Davide Pesavento | 52a18f9 | 2014-04-10 00:55:01 +0200 | [diff] [blame] | 76 | |
Davide Pesavento | ab1e8f2 | 2014-10-21 22:45:33 +0200 | [diff] [blame] | 77 | using std::shared_ptr; |
| 78 | using std::unique_ptr; |
| 79 | using std::weak_ptr; |
| 80 | using std::bad_weak_ptr; |
| 81 | using std::make_shared; |
| 82 | using std::enable_shared_from_this; |
| 83 | |
| 84 | using std::static_pointer_cast; |
| 85 | using std::dynamic_pointer_cast; |
| 86 | using std::const_pointer_cast; |
| 87 | |
| 88 | using std::function; |
| 89 | using std::bind; |
| 90 | using std::ref; |
| 91 | using std::cref; |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 92 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 93 | using ndn::Interest; |
| 94 | using ndn::Data; |
| 95 | using ndn::Name; |
| 96 | using ndn::Exclude; |
| 97 | using ndn::Block; |
Junxiao Shi | 1e06417 | 2014-12-14 19:37:46 -0700 | [diff] [blame] | 98 | using ndn::util::EventEmitter; // deprecated |
Davide Pesavento | 52a18f9 | 2014-04-10 00:55:01 +0200 | [diff] [blame] | 99 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 100 | namespace tlv { |
Junxiao Shi | 67f11ac | 2014-10-19 09:29:13 -0700 | [diff] [blame] | 101 | // Don't write "namespace tlv = ndn::tlv", because NFD can add other members into this namespace. |
| 102 | using namespace ndn::tlv; |
| 103 | } // namespace tlv |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 104 | |
Davide Pesavento | 52a18f9 | 2014-04-10 00:55:01 +0200 | [diff] [blame] | 105 | namespace name = ndn::name; |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 106 | namespace time = ndn::time; |
Junxiao Shi | 1e06417 | 2014-12-14 19:37:46 -0700 | [diff] [blame] | 107 | namespace signal = ndn::util::signal; |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 108 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 109 | } // namespace nfd |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 110 | |
| 111 | #endif // NFD_COMMON_HPP |