Jeff Thompson | 47eecfc | 2013-07-07 22:56:46 -0700 | [diff] [blame] | 1 | /** |
| 2 | * @author: Jeff Thompson |
| 3 | * See COPYING for copyright and distribution information. |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef NDN_COMMON_HPP |
| 7 | #define NDN_COMMON_HPP |
| 8 | |
Jeff Thompson | 51dd5fd | 2013-07-10 19:27:18 -0700 | [diff] [blame] | 9 | #include <vector> |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 10 | #include "../config.h" |
| 11 | |
| 12 | // Depending on where ./configure found shared_ptr, define the ptr_lib namespace. |
Jeff Thompson | f7d4994 | 2013-08-01 16:47:40 -0700 | [diff] [blame] | 13 | // We always use ndn::ptr_lib. |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 14 | #if HAVE_STD_SHARED_PTR |
| 15 | #include <memory> |
| 16 | namespace ndn { namespace ptr_lib = std; } |
| 17 | #elif HAVE_BOOST_SHARED_PTR |
| 18 | #include <boost/shared_ptr.hpp> |
| 19 | #include <boost/make_shared.hpp> |
| 20 | namespace ndn { namespace ptr_lib = boost; } |
| 21 | #else |
Jeff Thompson | f7d4994 | 2013-08-01 16:47:40 -0700 | [diff] [blame] | 22 | // Use the boost header files in this distribution that were extracted with: |
| 23 | // bcp --namespace=ndnboost shared_ptr make_shared ~/bcp_temp |
| 24 | // Since HAVE_BOOST_SHARED_PTR failed, assume that there is no boost subdirectory on the INCLUDE path, so that |
| 25 | // <boost> is the boost subdirectory in this distribution. |
| 26 | #include <boost/shared_ptr.hpp> |
| 27 | #include <boost/make_shared.hpp> |
| 28 | namespace ndn { namespace ptr_lib = ndnboost; } |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 29 | #endif |
| 30 | |
Jeff Thompson | 51dd5fd | 2013-07-10 19:27:18 -0700 | [diff] [blame] | 31 | namespace ndn { |
| 32 | |
| 33 | /** |
| 34 | * Clear the vector and copy valueLength bytes from value. |
| 35 | * @param v the vector to copy to |
| 36 | * @param value the array of bytes, or 0 to not copy |
| 37 | * @param valueLength the length of value |
| 38 | */ |
| 39 | static inline void setVector(std::vector<unsigned char> &vec, const unsigned char *value, unsigned int valueLength) |
| 40 | { |
| 41 | vec.clear(); |
| 42 | if (value) |
| 43 | vec.insert(vec.begin(), value, value + valueLength); |
| 44 | } |
| 45 | |
| 46 | } |
| 47 | |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 48 | #endif |