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