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 | |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 15 | #if NDN_CPP_HAVE_CXX11 |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 16 | // Depending on where ./configure found shared_ptr, define the ptr_lib namespace. |
Jeff Thompson | f7d4994 | 2013-08-01 16:47:40 -0700 | [diff] [blame] | 17 | // We always use ndn::ptr_lib. |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 18 | // #if NDN_CPP_HAVE_STD_SHARED_PTR |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 19 | #include <memory> |
| 20 | namespace ndn { namespace ptr_lib = std; } |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 21 | |
| 22 | // #if NDN_CPP_HAVE_STD_FUNCTION |
| 23 | #include <functional> |
| 24 | namespace ndn { namespace func_lib = std; } |
| 25 | |
| 26 | #elif NDN_CPP_USE_SYSTEM_BOOST |
| 27 | |
| 28 | // #if NDN_CPP_HAVE_BOOST_SHARED_PTR |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 29 | #include <boost/shared_ptr.hpp> |
| 30 | #include <boost/make_shared.hpp> |
| 31 | namespace ndn { namespace ptr_lib = boost; } |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 32 | |
| 33 | // #if NDN_CPP_HAVE_BOOST_FUNCTION |
| 34 | #include <boost/function.hpp> |
| 35 | #include <boost/bind.hpp> |
| 36 | namespace ndn { namespace func_lib = boost; } |
| 37 | |
| 38 | #else // use embedded boost headers |
Jeff Thompson | 86b6d64 | 2013-10-17 15:01:56 -0700 | [diff] [blame] | 39 | /* Use the boost header files in this distribution that were extracted with: |
| 40 | cd <BOOST DEVELOPMENT DIRECTORY WITH boost SUBDIRECTORY> |
| 41 | dist/bin/bcp --namespace=ndnboost shared_ptr make_shared weak_ptr function bind any iostreams <NDN-CPP ROOT>/include |
| 42 | cd <NDN-CPP ROOT>/include |
| 43 | rm -rf boost.css boost.png Jamroot libs |
| 44 | mv boost ndnboost |
| 45 | cd ndnboost |
| 46 | # Replace when including files. |
| 47 | (unset LANG; find . -type f -exec sed -i '' 's/\<boost\//\<ndnboost\//g' {} +) |
| 48 | (unset LANG; find . -type f -exec sed -i '' 's/\"boost\//\"ndnboost\//g' {} +) |
| 49 | (unset LANG; find . -type f -exec sed -i '' 's/ boost\// ndnboost\//g' {} +) |
| 50 | (unset LANG; find . -type f -exec sed -i '' 's/(boost\//(ndnboost\//g' {} +) |
| 51 | # Replace macro definitions. |
| 52 | (unset LANG; find . -type f -exec sed -i '' 's/BOOST_/NDNBOOST_/g' {} +) |
| 53 | # Replace header include guards which don't start with BOOST_ . This may result in some with NDNBOOST twice, but that is OK. |
| 54 | (unset LANG; find . -type f -exec sed -i '' 's/_DWA/_NDNBOOST_DWA/g' {} +) |
| 55 | (unset LANG; find . -type f -exec sed -i '' 's/ UUID_/ NDNBOOST_UUID_/g' {} +) |
| 56 | (unset LANG; find . -type f -exec sed -i '' 's/ FILE_boost/ FILE_ndnboost/g' {} +) |
| 57 | # Replace the mpl_ barrier namespace. This should only change file adl_barrier.hpp. |
| 58 | (unset LANG; find . -type f -exec sed -i '' 's/ mpl_/ ndnboost_mpl_/g' {} +) |
| 59 | */ |
Jeff Thompson | 2277ce5 | 2013-08-01 17:34:11 -0700 | [diff] [blame] | 60 | #include <ndnboost/shared_ptr.hpp> |
| 61 | #include <ndnboost/make_shared.hpp> |
Jeff Thompson | f7d4994 | 2013-08-01 16:47:40 -0700 | [diff] [blame] | 62 | namespace ndn { namespace ptr_lib = ndnboost; } |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 63 | |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 64 | // Use the boost header files in this distribution that were extracted as above: |
| 65 | #include <ndnboost/function.hpp> |
Jeff Thompson | ef2d5a4 | 2013-08-22 19:09:24 -0700 | [diff] [blame] | 66 | #include <ndnboost/bind.hpp> |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 67 | namespace ndn { namespace func_lib = ndnboost; } |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 68 | |
Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 69 | #endif |
| 70 | |
Jeff Thompson | 51dd5fd | 2013-07-10 19:27:18 -0700 | [diff] [blame] | 71 | namespace ndn { |
Jeff Thompson | 9a8e82f | 2013-10-17 14:13:43 -0700 | [diff] [blame] | 72 | |
| 73 | /** |
| 74 | * A time interval represented as the number of milliseconds. |
| 75 | */ |
Alexander Afanasyev | ee94031 | 2013-12-24 19:43:15 -0800 | [diff] [blame] | 76 | typedef int64_t Milliseconds; |
Jeff Thompson | 04bfd94 | 2013-09-12 15:55:58 -0700 | [diff] [blame] | 77 | |
Jeff Thompson | 9a8e82f | 2013-10-17 14:13:43 -0700 | [diff] [blame] | 78 | /** |
| 79 | * The calendar time represented as the number of milliseconds since 1/1/1970. |
| 80 | */ |
Alexander Afanasyev | ee94031 | 2013-12-24 19:43:15 -0800 | [diff] [blame] | 81 | typedef int64_t MillisecondsSince1970; |
Jeff Thompson | 9a8e82f | 2013-10-17 14:13:43 -0700 | [diff] [blame] | 82 | |
Jeff Thompson | a8d7b06 | 2013-08-08 15:56:35 -0700 | [diff] [blame] | 83 | /** |
| 84 | * Return the hex representation of the bytes in array. |
| 85 | * @param array The array of bytes. |
| 86 | * @return Hex string. |
| 87 | */ |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 88 | std::string |
Jeff Thompson | 10ad12a | 2013-09-24 16:19:11 -0700 | [diff] [blame] | 89 | toHex(const std::vector<uint8_t>& array); |
Jeff Thompson | a8d7b06 | 2013-08-08 15:56:35 -0700 | [diff] [blame] | 90 | |
Jeff Thompson | 51dd5fd | 2013-07-10 19:27:18 -0700 | [diff] [blame] | 91 | } |
| 92 | |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 93 | #endif |