blob: b0f3fbf6256e46f901a4d0c343cbe6e7fe0024ce [file] [log] [blame]
Jeff Thompson47eecfc2013-07-07 22:56:46 -07001/**
2 * @author: Jeff Thompson
3 * See COPYING for copyright and distribution information.
Jeff Thompson571f3522013-07-07 22:39:31 -07004 */
5
6#ifndef NDN_COMMON_HPP
7#define NDN_COMMON_HPP
8
Jeff Thompson51dd5fd2013-07-10 19:27:18 -07009#include <vector>
Jeff Thompson571f3522013-07-07 22:39:31 -070010#include "../config.h"
11
12// Depending on where ./configure found shared_ptr, define the ptr_lib namespace.
Jeff Thompsonf7d49942013-08-01 16:47:40 -070013// We always use ndn::ptr_lib.
Jeff Thompson571f3522013-07-07 22:39:31 -070014#if HAVE_STD_SHARED_PTR
15#include <memory>
16namespace ndn { namespace ptr_lib = std; }
17#elif HAVE_BOOST_SHARED_PTR
18#include <boost/shared_ptr.hpp>
19#include <boost/make_shared.hpp>
20namespace ndn { namespace ptr_lib = boost; }
21#else
Jeff Thompsonf7d49942013-08-01 16:47:40 -070022// Use the boost header files in this distribution that were extracted with:
23// bcp --namespace=ndnboost shared_ptr make_shared ~/bcp_temp
24// Since HAVE_BOOST_SHARED_PTR failed, assume that there is no boost subdirectory on the INCLUDE path, so that
25// <boost> is the boost subdirectory in this distribution.
26#include <boost/shared_ptr.hpp>
27#include <boost/make_shared.hpp>
28namespace ndn { namespace ptr_lib = ndnboost; }
Jeff Thompson571f3522013-07-07 22:39:31 -070029#endif
30
Jeff Thompson51dd5fd2013-07-10 19:27:18 -070031namespace ndn {
32
33/**
34 * Clear the vector and copy valueLength bytes from value.
35 * @param v the vector to copy to
36 * @param value the array of bytes, or 0 to not copy
37 * @param valueLength the length of value
38 */
39static inline void setVector(std::vector<unsigned char> &vec, const unsigned char *value, unsigned int valueLength)
40{
41 vec.clear();
42 if (value)
43 vec.insert(vec.begin(), value, value + valueLength);
44}
45
46}
47
Jeff Thompson571f3522013-07-07 22:39:31 -070048#endif