Jeff Thompson | 25b4e61 | 2013-10-10 16:03:24 -0700 | [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 | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 3 | * Copyright (c) 2013-2014, Regents of the University of California. |
| 4 | * All rights reserved. |
| 5 | * |
| 6 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
| 7 | * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
| 8 | * |
| 9 | * This file licensed under New BSD License. See COPYING for detailed information about |
| 10 | * ndn-cxx library copyright, permissions, and redistribution restrictions. |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #ifndef NDN_COMMON_HPP |
| 14 | #define NDN_COMMON_HPP |
| 15 | |
Alexander Afanasyev | 766cea7 | 2014-04-24 19:16:42 -0700 | [diff] [blame] | 16 | #include "ndn-cxx-config.hpp" |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 17 | #include <stdint.h> |
| 18 | // TODO: Is stddef.h portable? |
| 19 | #include <stddef.h> |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 20 | #include <unistd.h> |
| 21 | |
| 22 | // Standard headers to precompile |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 23 | |
Jeff Thompson | 51dd5fd | 2013-07-10 19:27:18 -0700 | [diff] [blame] | 24 | #include <vector> |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 25 | #include <list> |
| 26 | #include <set> |
| 27 | #include <algorithm> |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 28 | #include <map> |
| 29 | #include <sstream> |
| 30 | #include <fstream> |
| 31 | #include <exception> |
| 32 | #include <map> |
| 33 | |
| 34 | // Other useful headers to precompile |
| 35 | #include <boost/lexical_cast.hpp> |
| 36 | #include <boost/asio.hpp> |
| 37 | #include <boost/date_time/posix_time/posix_time.hpp> |
Alexander Afanasyev | 233750e | 2014-02-16 00:50:07 -0800 | [diff] [blame] | 38 | #include <boost/utility.hpp> |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 39 | |
| 40 | #include <boost/iostreams/detail/ios.hpp> |
| 41 | #include <boost/iostreams/categories.hpp> |
| 42 | #include <boost/iostreams/stream.hpp> |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 43 | |
Steve DiBenedetto | c145d49 | 2014-03-11 16:35:45 -0600 | [diff] [blame] | 44 | #if defined(__GNUC__) || defined(__clang__) |
| 45 | #define DEPRECATED(func) func __attribute__ ((deprecated)) |
| 46 | #elif defined(_MSC_VER) |
| 47 | #define DEPRECATED(func) __declspec(deprecated) func |
| 48 | #else |
| 49 | #pragma message("DEPRECATED not implemented") |
| 50 | #define DEPRECATED(func) func |
| 51 | #endif |
| 52 | |
Alexander Afanasyev | 766cea7 | 2014-04-24 19:16:42 -0700 | [diff] [blame] | 53 | #ifdef NDN_CXX_HAVE_CXX11 |
Alexander Afanasyev | 472fa02 | 2014-01-07 13:30:49 -0800 | [diff] [blame] | 54 | |
Alexander Afanasyev | b78bc4d | 2014-04-09 21:20:52 -0700 | [diff] [blame] | 55 | #if defined(__GNUC__) |
| 56 | # if !defined(__GXX_EXPERIMENTAL_CXX0X__) && __cplusplus < 201103L |
Alexander Afanasyev | 766cea7 | 2014-04-24 19:16:42 -0700 | [diff] [blame] | 57 | # 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] | 58 | # endif // !defined(__GXX_EXPERIMENTAL_CXX0X__) && __cplusplus < 201103L |
| 59 | #endif // defined(__GNUC__) |
| 60 | |
| 61 | #if defined(__clang__) && __cplusplus < 201103L |
Alexander Afanasyev | 766cea7 | 2014-04-24 19:16:42 -0700 | [diff] [blame] | 62 | # 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] | 63 | #endif // defined(__clang__) && (__cplusplus < 201103L) |
| 64 | |
Alexander Afanasyev | 472fa02 | 2014-01-07 13:30:49 -0800 | [diff] [blame] | 65 | |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 66 | #include <memory> |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 67 | #include <functional> |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 68 | |
| 69 | namespace ndn { |
| 70 | |
| 71 | namespace ptr_lib = std; |
Alexander Afanasyev | 8460afb | 2014-02-15 20:31:42 -0800 | [diff] [blame] | 72 | namespace func_lib = std; |
| 73 | |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 74 | using std::shared_ptr; |
Alexander Afanasyev | b78bc4d | 2014-04-09 21:20:52 -0700 | [diff] [blame] | 75 | using std::weak_ptr; |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 76 | using std::make_shared; |
| 77 | using std::enable_shared_from_this; |
| 78 | |
Alexander Afanasyev | 1515131 | 2014-02-16 00:53:51 -0800 | [diff] [blame] | 79 | using std::static_pointer_cast; |
| 80 | using std::dynamic_pointer_cast; |
| 81 | using std::const_pointer_cast; |
| 82 | |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 83 | using std::function; |
| 84 | using std::bind; |
Alexander Afanasyev | b67090a | 2014-04-29 22:31:01 -0700 | [diff] [blame] | 85 | using std::placeholders::_1; |
| 86 | using std::placeholders::_2; |
| 87 | using std::placeholders::_3; |
| 88 | using std::placeholders::_4; |
| 89 | using std::placeholders::_5; |
| 90 | using std::placeholders::_6; |
| 91 | using std::placeholders::_7; |
| 92 | using std::placeholders::_8; |
| 93 | using std::placeholders::_9; |
| 94 | |
| 95 | using std::ref; |
| 96 | using std::cref; |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 97 | |
| 98 | } // namespace ndn |
| 99 | |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 100 | |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 101 | #else |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 102 | |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 103 | #include <boost/shared_ptr.hpp> |
Alexander Afanasyev | b78bc4d | 2014-04-09 21:20:52 -0700 | [diff] [blame] | 104 | #include <boost/weak_ptr.hpp> |
Alexander Afanasyev | b790d95 | 2014-01-24 12:07:53 -0800 | [diff] [blame] | 105 | #include <boost/enable_shared_from_this.hpp> |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 106 | #include <boost/make_shared.hpp> |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 107 | |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 108 | #include <boost/function.hpp> |
| 109 | #include <boost/bind.hpp> |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 110 | |
| 111 | namespace ndn { |
| 112 | |
| 113 | namespace ptr_lib = boost; |
| 114 | namespace func_lib = boost; |
| 115 | |
| 116 | using boost::shared_ptr; |
Alexander Afanasyev | b78bc4d | 2014-04-09 21:20:52 -0700 | [diff] [blame] | 117 | using boost::weak_ptr; |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 118 | using boost::make_shared; |
| 119 | using boost::enable_shared_from_this; |
| 120 | |
Alexander Afanasyev | 1515131 | 2014-02-16 00:53:51 -0800 | [diff] [blame] | 121 | using boost::static_pointer_cast; |
| 122 | using boost::dynamic_pointer_cast; |
| 123 | using boost::const_pointer_cast; |
| 124 | |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 125 | using boost::function; |
| 126 | using boost::bind; |
| 127 | |
Alexander Afanasyev | b67090a | 2014-04-29 22:31:01 -0700 | [diff] [blame] | 128 | using boost::ref; |
| 129 | using boost::cref; |
| 130 | |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 131 | } // namespace ndn |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 132 | |
Alexander Afanasyev | 766cea7 | 2014-04-24 19:16:42 -0700 | [diff] [blame] | 133 | #endif // NDN_CXX_HAVE_CXX11 |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 134 | |
Jeff Thompson | 51dd5fd | 2013-07-10 19:27:18 -0700 | [diff] [blame] | 135 | namespace ndn { |
Jeff Thompson | 9a8e82f | 2013-10-17 14:13:43 -0700 | [diff] [blame] | 136 | |
Alexander Afanasyev | 233750e | 2014-02-16 00:50:07 -0800 | [diff] [blame] | 137 | using boost::noncopyable; |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 138 | |
Jeff Thompson | 51dd5fd | 2013-07-10 19:27:18 -0700 | [diff] [blame] | 139 | } |
| 140 | |
Alexander Afanasyev | 809805d | 2014-02-17 17:20:33 -0800 | [diff] [blame] | 141 | #include "util/time.hpp" |
| 142 | |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 143 | #endif |