blob: 4e451a9ad8c329ecf706c37db73f0c19f832403d [file] [log] [blame]
Jeff Thompson47eecfc2013-07-07 22:56:46 -07001/**
Jeff Thompson7687dc02013-09-13 11:54:07 -07002 * Copyright (C) 2013 Regents of the University of California.
3 * @author: Jeff Thompson <jefft0@remap.ucla.edu>
Jeff Thompson47eecfc2013-07-07 22:56:46 -07004 * See COPYING for copyright and distribution information.
Jeff Thompson571f3522013-07-07 22:39:31 -07005 */
6
7#ifndef NDN_COMMON_HPP
8#define NDN_COMMON_HPP
9
Jeff Thompson51dd5fd2013-07-10 19:27:18 -070010#include <vector>
Jeff Thompson571f3522013-07-07 22:39:31 -070011#include "../config.h"
12
13// Depending on where ./configure found shared_ptr, define the ptr_lib namespace.
Jeff Thompsonf7d49942013-08-01 16:47:40 -070014// We always use ndn::ptr_lib.
Jeff Thompson571f3522013-07-07 22:39:31 -070015#if HAVE_STD_SHARED_PTR
16#include <memory>
17namespace ndn { namespace ptr_lib = std; }
18#elif HAVE_BOOST_SHARED_PTR
19#include <boost/shared_ptr.hpp>
20#include <boost/make_shared.hpp>
21namespace ndn { namespace ptr_lib = boost; }
22#else
Jeff Thompsonf7d49942013-08-01 16:47:40 -070023// Use the boost header files in this distribution that were extracted with:
Jeff Thompsona28eed82013-08-22 16:21:10 -070024// cd <INCLUDE DIRECTORY WITH boost SUBDIRECTORY>
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070025// dist/bin/bcp --namespace=ndnboost shared_ptr make_shared weak_ptr function bind <NDN-CPP ROOT>
Jeff Thompsona28eed82013-08-22 16:21:10 -070026// cd <NDN-CPP ROOT>
27// mv boost ndnboost
28// cd ndnboost
29// (unset LANG; find . -type f -exec sed -i '' 's/\<boost\//\<ndnboost\//g' {} +)
30// (unset LANG; find . -type f -exec sed -i '' 's/\"boost\//\"ndnboost\//g' {} +)
Jeff Thompson2277ce52013-08-01 17:34:11 -070031#include <ndnboost/shared_ptr.hpp>
32#include <ndnboost/make_shared.hpp>
Jeff Thompsonf7d49942013-08-01 16:47:40 -070033namespace ndn { namespace ptr_lib = ndnboost; }
Jeff Thompson571f3522013-07-07 22:39:31 -070034#endif
35
Jeff Thompsona28eed82013-08-22 16:21:10 -070036// Depending on where ./configure found function, define the func_lib namespace.
37// We always use ndn::func_lib.
38#if HAVE_STD_FUNCTION
39#include <functional>
40namespace ndn { namespace func_lib = std; }
41#elif HAVE_BOOST_FUNCTION
42#include <boost/function.hpp>
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070043#include <boost/bind.hpp>
Jeff Thompsona28eed82013-08-22 16:21:10 -070044namespace ndn { namespace func_lib = boost; }
45#else
46// Use the boost header files in this distribution that were extracted as above:
47#include <ndnboost/function.hpp>
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070048#include <ndnboost/bind.hpp>
Jeff Thompsona28eed82013-08-22 16:21:10 -070049namespace ndn { namespace func_lib = ndnboost; }
50#endif
51
Jeff Thompson51dd5fd2013-07-10 19:27:18 -070052namespace ndn {
Jeff Thompson04bfd942013-09-12 15:55:58 -070053
Jeff Thompsona8d7b062013-08-08 15:56:35 -070054/**
55 * Return the hex representation of the bytes in array.
56 * @param array The array of bytes.
57 * @return Hex string.
58 */
Jeff Thompson0050abe2013-09-17 12:50:25 -070059std::string
60toHex(const std::vector<unsigned char>& array);
Jeff Thompsona8d7b062013-08-08 15:56:35 -070061
Jeff Thompson51dd5fd2013-07-10 19:27:18 -070062}
63
Jeff Thompson571f3522013-07-07 22:39:31 -070064#endif