Jeff Thompson | 47eecfc | 2013-07-07 22:56:46 -0700 | [diff] [blame] | 1 | /** |
Jeff Thompson | 7687dc0 | 2013-09-13 11:54:07 -0700 | [diff] [blame] | 2 | * Copyright (C) 2013 Regents of the University of California. |
| 3 | * @author: Jeff Thompson <jefft0@remap.ucla.edu> |
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 | |
Jeff Thompson | 51dd5fd | 2013-07-10 19:27:18 -0700 | [diff] [blame] | 10 | #include <vector> |
Jeff Thompson | 649e95f | 2013-10-08 17:13:09 -0700 | [diff] [blame^] | 11 | // common.h includes ndn-cpp-config.h. |
Jeff Thompson | c868dd0 | 2013-09-24 15:50:47 -0700 | [diff] [blame] | 12 | #include "c/common.h" |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 13 | |
| 14 | // Depending on where ./configure found shared_ptr, define the ptr_lib namespace. |
Jeff Thompson | f7d4994 | 2013-08-01 16:47:40 -0700 | [diff] [blame] | 15 | // We always use ndn::ptr_lib. |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 16 | #if HAVE_STD_SHARED_PTR |
| 17 | #include <memory> |
| 18 | namespace ndn { namespace ptr_lib = std; } |
| 19 | #elif HAVE_BOOST_SHARED_PTR |
| 20 | #include <boost/shared_ptr.hpp> |
| 21 | #include <boost/make_shared.hpp> |
| 22 | namespace ndn { namespace ptr_lib = boost; } |
| 23 | #else |
Jeff Thompson | f7d4994 | 2013-08-01 16:47:40 -0700 | [diff] [blame] | 24 | // Use the boost header files in this distribution that were extracted with: |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 25 | // cd <INCLUDE DIRECTORY WITH boost SUBDIRECTORY> |
Jeff Thompson | ef2d5a4 | 2013-08-22 19:09:24 -0700 | [diff] [blame] | 26 | // 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] | 27 | // cd <NDN-CPP ROOT> |
| 28 | // mv boost ndnboost |
| 29 | // cd ndnboost |
| 30 | // (unset LANG; find . -type f -exec sed -i '' 's/\<boost\//\<ndnboost\//g' {} +) |
| 31 | // (unset LANG; find . -type f -exec sed -i '' 's/\"boost\//\"ndnboost\//g' {} +) |
Jeff Thompson | 2277ce5 | 2013-08-01 17:34:11 -0700 | [diff] [blame] | 32 | #include <ndnboost/shared_ptr.hpp> |
| 33 | #include <ndnboost/make_shared.hpp> |
Jeff Thompson | f7d4994 | 2013-08-01 16:47:40 -0700 | [diff] [blame] | 34 | namespace ndn { namespace ptr_lib = ndnboost; } |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 35 | #endif |
| 36 | |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 37 | // Depending on where ./configure found function, define the func_lib namespace. |
| 38 | // We always use ndn::func_lib. |
| 39 | #if HAVE_STD_FUNCTION |
| 40 | #include <functional> |
| 41 | namespace ndn { namespace func_lib = std; } |
| 42 | #elif HAVE_BOOST_FUNCTION |
| 43 | #include <boost/function.hpp> |
Jeff Thompson | ef2d5a4 | 2013-08-22 19:09:24 -0700 | [diff] [blame] | 44 | #include <boost/bind.hpp> |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 45 | namespace ndn { namespace func_lib = boost; } |
| 46 | #else |
| 47 | // Use the boost header files in this distribution that were extracted as above: |
| 48 | #include <ndnboost/function.hpp> |
Jeff Thompson | ef2d5a4 | 2013-08-22 19:09:24 -0700 | [diff] [blame] | 49 | #include <ndnboost/bind.hpp> |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 50 | namespace ndn { namespace func_lib = ndnboost; } |
| 51 | #endif |
| 52 | |
Jeff Thompson | 51dd5fd | 2013-07-10 19:27:18 -0700 | [diff] [blame] | 53 | namespace ndn { |
Jeff Thompson | 04bfd94 | 2013-09-12 15:55:58 -0700 | [diff] [blame] | 54 | |
Jeff Thompson | a8d7b06 | 2013-08-08 15:56:35 -0700 | [diff] [blame] | 55 | /** |
| 56 | * Return the hex representation of the bytes in array. |
| 57 | * @param array The array of bytes. |
| 58 | * @return Hex string. |
| 59 | */ |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 60 | std::string |
Jeff Thompson | 10ad12a | 2013-09-24 16:19:11 -0700 | [diff] [blame] | 61 | toHex(const std::vector<uint8_t>& array); |
Jeff Thompson | a8d7b06 | 2013-08-08 15:56:35 -0700 | [diff] [blame] | 62 | |
Jeff Thompson | 51dd5fd | 2013-07-10 19:27:18 -0700 | [diff] [blame] | 63 | } |
| 64 | |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 65 | #endif |