blob: 5ba6875679ee558dff44ae9efe9e3b6f72c36374 [file] [log] [blame]
Jeff Thompson25b4e612013-10-10 16:03:24 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
Jeff Thompson47eecfc2013-07-07 22:56:46 -07002/**
Jeff Thompson7687dc02013-09-13 11:54:07 -07003 * Copyright (C) 2013 Regents of the University of California.
4 * @author: Jeff Thompson <jefft0@remap.ucla.edu>
Jeff Thompson47eecfc2013-07-07 22:56:46 -07005 * See COPYING for copyright and distribution information.
Jeff Thompson571f3522013-07-07 22:39:31 -07006 */
7
8#ifndef NDN_COMMON_HPP
9#define NDN_COMMON_HPP
10
Jeff Thompson51dd5fd2013-07-10 19:27:18 -070011#include <vector>
Jeff Thompson25b4e612013-10-10 16:03:24 -070012// common.h include ndn-cpp-config.h.
Jeff Thompsonc868dd02013-09-24 15:50:47 -070013#include "c/common.h"
Jeff Thompson571f3522013-07-07 22:39:31 -070014
15// Depending on where ./configure found shared_ptr, define the ptr_lib namespace.
Jeff Thompsonf7d49942013-08-01 16:47:40 -070016// We always use ndn::ptr_lib.
Jeff Thompsonb7523002013-10-09 10:25:00 -070017#if NDN_CPP_HAVE_STD_SHARED_PTR
Jeff Thompson571f3522013-07-07 22:39:31 -070018#include <memory>
19namespace ndn { namespace ptr_lib = std; }
Jeff Thompsonb7523002013-10-09 10:25:00 -070020#elif NDN_CPP_HAVE_BOOST_SHARED_PTR
Jeff Thompson571f3522013-07-07 22:39:31 -070021#include <boost/shared_ptr.hpp>
22#include <boost/make_shared.hpp>
23namespace ndn { namespace ptr_lib = boost; }
24#else
Jeff Thompsonf7d49942013-08-01 16:47:40 -070025// Use the boost header files in this distribution that were extracted with:
Jeff Thompsond0a7d6d2013-10-15 12:34:26 -070026// cd <BOOST DEVELOPMENT DIRECTORY WITH boost SUBDIRECTORY>
27// dist/bin/bcp --namespace=ndnboost shared_ptr make_shared weak_ptr function bind any <NDN-CPP ROOT>/include
Jeff Thompson6e229042013-10-10 11:09:49 -070028// cd <NDN-CPP ROOT>/include
Jeff Thompsona28eed82013-08-22 16:21:10 -070029// mv boost ndnboost
30// cd ndnboost
Jeff Thompson2491bd62013-10-15 17:10:24 -070031// # Replace when including files.
Jeff Thompsona28eed82013-08-22 16:21:10 -070032// (unset LANG; find . -type f -exec sed -i '' 's/\<boost\//\<ndnboost\//g' {} +)
33// (unset LANG; find . -type f -exec sed -i '' 's/\"boost\//\"ndnboost\//g' {} +)
Jeff Thompson2491bd62013-10-15 17:10:24 -070034// (unset LANG; find . -type f -exec sed -i '' 's/ boost\// ndnboost\//g' {} +)
Jeff Thompson9939dcd2013-10-15 15:12:24 -070035// (unset LANG; find . -type f -exec sed -i '' 's/(boost\//(ndnboost\//g' {} +)
Jeff Thompson2491bd62013-10-15 17:10:24 -070036// # Replace macro definitions.
Jeff Thompson3d613fd2013-10-15 15:39:04 -070037// (unset LANG; find . -type f -exec sed -i '' 's/BOOST_/NDNBOOST_/g' {} +)
Jeff Thompson2491bd62013-10-15 17:10:24 -070038// # Replace header include guards which don't start with BOOST_ . This may result in some with NDNBOOST twice, but that is OK.
39// (unset LANG; find . -type f -exec sed -i '' 's/_DWA/_NDNBOOST_DWA/g' {} +)
40// (unset LANG; find . -type f -exec sed -i '' 's/ UUID_/ NDNBOOST_UUID_/g' {} +)
41// (unset LANG; find . -type f -exec sed -i '' 's/ FILE_boost/ FILE_ndnboost/g' {} +)
Jeff Thompson2277ce52013-08-01 17:34:11 -070042#include <ndnboost/shared_ptr.hpp>
43#include <ndnboost/make_shared.hpp>
Jeff Thompsonf7d49942013-08-01 16:47:40 -070044namespace ndn { namespace ptr_lib = ndnboost; }
Jeff Thompson571f3522013-07-07 22:39:31 -070045#endif
46
Jeff Thompsona28eed82013-08-22 16:21:10 -070047// Depending on where ./configure found function, define the func_lib namespace.
48// We always use ndn::func_lib.
Jeff Thompsonb7523002013-10-09 10:25:00 -070049#if NDN_CPP_HAVE_STD_FUNCTION
Jeff Thompsona28eed82013-08-22 16:21:10 -070050#include <functional>
51namespace ndn { namespace func_lib = std; }
Jeff Thompsonb7523002013-10-09 10:25:00 -070052#elif NDN_CPP_HAVE_BOOST_FUNCTION
Jeff Thompsona28eed82013-08-22 16:21:10 -070053#include <boost/function.hpp>
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070054#include <boost/bind.hpp>
Jeff Thompsona28eed82013-08-22 16:21:10 -070055namespace ndn { namespace func_lib = boost; }
56#else
57// Use the boost header files in this distribution that were extracted as above:
58#include <ndnboost/function.hpp>
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070059#include <ndnboost/bind.hpp>
Jeff Thompsona28eed82013-08-22 16:21:10 -070060namespace ndn { namespace func_lib = ndnboost; }
61#endif
62
Jeff Thompson51dd5fd2013-07-10 19:27:18 -070063namespace ndn {
Jeff Thompson04bfd942013-09-12 15:55:58 -070064
Jeff Thompsoncf6b4312013-10-12 17:52:33 -070065// TODO: Implement Time, used in certificates and DER encoding.
66typedef double Time;
67
Jeff Thompsona8d7b062013-08-08 15:56:35 -070068/**
69 * Return the hex representation of the bytes in array.
70 * @param array The array of bytes.
71 * @return Hex string.
72 */
Jeff Thompson0050abe2013-09-17 12:50:25 -070073std::string
Jeff Thompson10ad12a2013-09-24 16:19:11 -070074toHex(const std::vector<uint8_t>& array);
Jeff Thompsona8d7b062013-08-08 15:56:35 -070075
Jeff Thompson51dd5fd2013-07-10 19:27:18 -070076}
77
Jeff Thompson571f3522013-07-07 22:39:31 -070078#endif