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