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: |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 23 | // cd <INCLUDE DIRECTORY WITH boost SUBDIRECTORY> |
Jeff Thompson | ef2d5a4 | 2013-08-22 19:09:24 -0700 | [diff] [blame] | 24 | // dist/bin/bcp --namespace=ndnboost shared_ptr make_shared weak_ptr function bind <NDN-CPP ROOT> |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 25 | // cd <NDN-CPP ROOT> |
| 26 | // mv boost ndnboost |
| 27 | // cd ndnboost |
| 28 | // (unset LANG; find . -type f -exec sed -i '' 's/\<boost\//\<ndnboost\//g' {} +) |
| 29 | // (unset LANG; find . -type f -exec sed -i '' 's/\"boost\//\"ndnboost\//g' {} +) |
Jeff Thompson | 2277ce5 | 2013-08-01 17:34:11 -0700 | [diff] [blame] | 30 | #include <ndnboost/shared_ptr.hpp> |
| 31 | #include <ndnboost/make_shared.hpp> |
Jeff Thompson | f7d4994 | 2013-08-01 16:47:40 -0700 | [diff] [blame] | 32 | namespace ndn { namespace ptr_lib = ndnboost; } |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 33 | #endif |
| 34 | |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 35 | // Depending on where ./configure found function, define the func_lib namespace. |
| 36 | // We always use ndn::func_lib. |
| 37 | #if HAVE_STD_FUNCTION |
| 38 | #include <functional> |
| 39 | namespace ndn { namespace func_lib = std; } |
| 40 | #elif HAVE_BOOST_FUNCTION |
| 41 | #include <boost/function.hpp> |
Jeff Thompson | ef2d5a4 | 2013-08-22 19:09:24 -0700 | [diff] [blame] | 42 | #include <boost/bind.hpp> |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 43 | namespace ndn { namespace func_lib = boost; } |
| 44 | #else |
| 45 | // Use the boost header files in this distribution that were extracted as above: |
| 46 | #include <ndnboost/function.hpp> |
Jeff Thompson | ef2d5a4 | 2013-08-22 19:09:24 -0700 | [diff] [blame] | 47 | #include <ndnboost/bind.hpp> |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 48 | namespace ndn { namespace func_lib = ndnboost; } |
| 49 | #endif |
| 50 | |
Jeff Thompson | 51dd5fd | 2013-07-10 19:27:18 -0700 | [diff] [blame] | 51 | namespace ndn { |
Jeff Thompson | 04bfd94 | 2013-09-12 15:55:58 -0700 | [diff] [blame] | 52 | |
Jeff Thompson | a8d7b06 | 2013-08-08 15:56:35 -0700 | [diff] [blame] | 53 | /** |
| 54 | * Return the hex representation of the bytes in array. |
| 55 | * @param array The array of bytes. |
| 56 | * @return Hex string. |
| 57 | */ |
Jeff Thompson | 1656e6a | 2013-08-29 18:01:48 -0700 | [diff] [blame] | 58 | std::string toHex(const std::vector<unsigned char>& array); |
Jeff Thompson | a8d7b06 | 2013-08-08 15:56:35 -0700 | [diff] [blame] | 59 | |
Jeff Thompson | 51dd5fd | 2013-07-10 19:27:18 -0700 | [diff] [blame] | 60 | } |
| 61 | |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 62 | #endif |