Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Jeff Thompson | 47eecfc | 2013-07-07 22:56:46 -0700 | [diff] [blame] | 2 | /** |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 3 | * Copyright (c) 2013-2014 Regents of the University of California. |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 6 | * |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 7 | * ndn-cxx library is free software: you can redistribute it and/or modify it under the |
| 8 | * terms of the GNU Lesser General Public License as published by the Free Software |
| 9 | * Foundation, either version 3 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY |
| 12 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A |
| 13 | * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. |
| 14 | * |
| 15 | * You should have received copies of the GNU General Public License and GNU Lesser |
| 16 | * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see |
| 17 | * <http://www.gnu.org/licenses/>. |
| 18 | * |
| 19 | * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 20 | */ |
| 21 | |
| 22 | #ifndef NDN_COMMON_HPP |
| 23 | #define NDN_COMMON_HPP |
| 24 | |
Alexander Afanasyev | 766cea7 | 2014-04-24 19:16:42 -0700 | [diff] [blame] | 25 | #include "ndn-cxx-config.hpp" |
Alexander Afanasyev | 258ec2b | 2014-05-14 16:15:37 -0700 | [diff] [blame] | 26 | |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 27 | #include <stdint.h> |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 28 | #include <stddef.h> |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 29 | #include <unistd.h> |
| 30 | |
Steve DiBenedetto | c145d49 | 2014-03-11 16:35:45 -0600 | [diff] [blame] | 31 | #if defined(__GNUC__) || defined(__clang__) |
| 32 | #define DEPRECATED(func) func __attribute__ ((deprecated)) |
| 33 | #elif defined(_MSC_VER) |
| 34 | #define DEPRECATED(func) __declspec(deprecated) func |
| 35 | #else |
| 36 | #pragma message("DEPRECATED not implemented") |
| 37 | #define DEPRECATED(func) func |
| 38 | #endif |
| 39 | |
Alexander Afanasyev | 49bb1fb | 2014-07-21 12:54:01 -0700 | [diff] [blame] | 40 | namespace ndn { |
| 41 | |
| 42 | const size_t MAX_NDN_PACKET_SIZE = 8800; |
| 43 | |
| 44 | } // namespace ndn |
| 45 | |
Alexander Afanasyev | 766cea7 | 2014-04-24 19:16:42 -0700 | [diff] [blame] | 46 | #ifdef NDN_CXX_HAVE_CXX11 |
Alexander Afanasyev | 472fa02 | 2014-01-07 13:30:49 -0800 | [diff] [blame] | 47 | |
Alexander Afanasyev | b78bc4d | 2014-04-09 21:20:52 -0700 | [diff] [blame] | 48 | #if defined(__GNUC__) |
| 49 | # if !defined(__GXX_EXPERIMENTAL_CXX0X__) && __cplusplus < 201103L |
Alexander Afanasyev | 766cea7 | 2014-04-24 19:16:42 -0700 | [diff] [blame] | 50 | # error "NDN-CXX library is configured and compiled in C++11 mode, but the current compiler is not C++11 enabled" |
Alexander Afanasyev | b78bc4d | 2014-04-09 21:20:52 -0700 | [diff] [blame] | 51 | # endif // !defined(__GXX_EXPERIMENTAL_CXX0X__) && __cplusplus < 201103L |
| 52 | #endif // defined(__GNUC__) |
| 53 | |
| 54 | #if defined(__clang__) && __cplusplus < 201103L |
Alexander Afanasyev | 766cea7 | 2014-04-24 19:16:42 -0700 | [diff] [blame] | 55 | # error "NDN-CXX library is configured and compiled in C++11 mode, but the current compiler is not C++11 enabled" |
Alexander Afanasyev | b78bc4d | 2014-04-09 21:20:52 -0700 | [diff] [blame] | 56 | #endif // defined(__clang__) && (__cplusplus < 201103L) |
| 57 | |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 58 | #include <memory> |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 59 | #include <functional> |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 60 | |
| 61 | namespace ndn { |
| 62 | |
| 63 | namespace ptr_lib = std; |
Alexander Afanasyev | 8460afb | 2014-02-15 20:31:42 -0800 | [diff] [blame] | 64 | namespace func_lib = std; |
| 65 | |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 66 | using std::shared_ptr; |
Alexander Afanasyev | b78bc4d | 2014-04-09 21:20:52 -0700 | [diff] [blame] | 67 | using std::weak_ptr; |
Alexander Afanasyev | 6a05b4b | 2014-07-18 17:23:00 -0700 | [diff] [blame] | 68 | using std::bad_weak_ptr; |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 69 | using std::make_shared; |
| 70 | using std::enable_shared_from_this; |
| 71 | |
Alexander Afanasyev | 1515131 | 2014-02-16 00:53:51 -0800 | [diff] [blame] | 72 | using std::static_pointer_cast; |
| 73 | using std::dynamic_pointer_cast; |
| 74 | using std::const_pointer_cast; |
| 75 | |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 76 | using std::function; |
| 77 | using std::bind; |
Alexander Afanasyev | b67090a | 2014-04-29 22:31:01 -0700 | [diff] [blame] | 78 | using std::placeholders::_1; |
| 79 | using std::placeholders::_2; |
| 80 | using std::placeholders::_3; |
| 81 | using std::placeholders::_4; |
| 82 | using std::placeholders::_5; |
| 83 | using std::placeholders::_6; |
| 84 | using std::placeholders::_7; |
| 85 | using std::placeholders::_8; |
| 86 | using std::placeholders::_9; |
| 87 | |
| 88 | using std::ref; |
| 89 | using std::cref; |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 90 | |
| 91 | } // namespace ndn |
| 92 | |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 93 | |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 94 | #else |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 95 | |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 96 | #include <boost/shared_ptr.hpp> |
Alexander Afanasyev | b78bc4d | 2014-04-09 21:20:52 -0700 | [diff] [blame] | 97 | #include <boost/weak_ptr.hpp> |
Alexander Afanasyev | b790d95 | 2014-01-24 12:07:53 -0800 | [diff] [blame] | 98 | #include <boost/enable_shared_from_this.hpp> |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 99 | #include <boost/make_shared.hpp> |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 100 | |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 101 | #include <boost/function.hpp> |
| 102 | #include <boost/bind.hpp> |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 103 | |
| 104 | namespace ndn { |
| 105 | |
| 106 | namespace ptr_lib = boost; |
| 107 | namespace func_lib = boost; |
| 108 | |
| 109 | using boost::shared_ptr; |
Alexander Afanasyev | b78bc4d | 2014-04-09 21:20:52 -0700 | [diff] [blame] | 110 | using boost::weak_ptr; |
Alexander Afanasyev | 6a05b4b | 2014-07-18 17:23:00 -0700 | [diff] [blame] | 111 | using boost::bad_weak_ptr; |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 112 | using boost::make_shared; |
| 113 | using boost::enable_shared_from_this; |
| 114 | |
Alexander Afanasyev | 1515131 | 2014-02-16 00:53:51 -0800 | [diff] [blame] | 115 | using boost::static_pointer_cast; |
| 116 | using boost::dynamic_pointer_cast; |
| 117 | using boost::const_pointer_cast; |
| 118 | |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 119 | using boost::function; |
| 120 | using boost::bind; |
| 121 | |
Alexander Afanasyev | b67090a | 2014-04-29 22:31:01 -0700 | [diff] [blame] | 122 | using boost::ref; |
| 123 | using boost::cref; |
| 124 | |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 125 | } // namespace ndn |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 126 | |
Alexander Afanasyev | 766cea7 | 2014-04-24 19:16:42 -0700 | [diff] [blame] | 127 | #endif // NDN_CXX_HAVE_CXX11 |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 128 | |
Alexander Afanasyev | 258ec2b | 2014-05-14 16:15:37 -0700 | [diff] [blame] | 129 | #include <boost/utility.hpp> |
| 130 | |
Jeff Thompson | 51dd5fd | 2013-07-10 19:27:18 -0700 | [diff] [blame] | 131 | namespace ndn { |
Jeff Thompson | 9a8e82f | 2013-10-17 14:13:43 -0700 | [diff] [blame] | 132 | |
Alexander Afanasyev | 233750e | 2014-02-16 00:50:07 -0800 | [diff] [blame] | 133 | using boost::noncopyable; |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 134 | |
Jeff Thompson | 51dd5fd | 2013-07-10 19:27:18 -0700 | [diff] [blame] | 135 | } |
| 136 | |
Alexander Afanasyev | 258ec2b | 2014-05-14 16:15:37 -0700 | [diff] [blame] | 137 | #endif // NDN_COMMON_HPP |