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 | |
Alexander Afanasyev | 09c613f | 2014-01-29 00:23:58 -0800 | [diff] [blame] | 11 | #include "ndn-cpp-config.h" |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 12 | #include <stdint.h> |
| 13 | // TODO: Is stddef.h portable? |
| 14 | #include <stddef.h> |
| 15 | |
Jeff Thompson | 51dd5fd | 2013-07-10 19:27:18 -0700 | [diff] [blame] | 16 | #include <vector> |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 17 | #include <list> |
| 18 | #include <set> |
| 19 | #include <algorithm> |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 20 | |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 21 | #if NDN_CPP_HAVE_CXX11 |
Alexander Afanasyev | 472fa02 | 2014-01-07 13:30:49 -0800 | [diff] [blame] | 22 | |
| 23 | #if (__cplusplus < 201103L) |
Yingdi Yu | 61ec272 | 2014-01-20 14:22:32 -0800 | [diff] [blame] | 24 | #error "NDN-CPP-DEV library is configured and compiled in C++11 mode, but the current compiler is not C++11 enabled" |
Alexander Afanasyev | 472fa02 | 2014-01-07 13:30:49 -0800 | [diff] [blame] | 25 | #endif |
| 26 | |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 27 | #include <memory> |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 28 | #include <functional> |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 29 | |
| 30 | namespace ndn { |
| 31 | |
| 32 | namespace ptr_lib = std; |
| 33 | namespace func_lib = std |
| 34 | |
| 35 | using std::shared_ptr; |
| 36 | using std::make_shared; |
| 37 | using std::enable_shared_from_this; |
| 38 | |
| 39 | using std::function; |
| 40 | using std::bind; |
| 41 | using std::placeholders; // _1, _2, .. |
| 42 | |
| 43 | } // namespace ndn |
| 44 | |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 45 | |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 46 | #else |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 47 | |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 48 | #include <boost/shared_ptr.hpp> |
Alexander Afanasyev | b790d95 | 2014-01-24 12:07:53 -0800 | [diff] [blame] | 49 | #include <boost/enable_shared_from_this.hpp> |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 50 | #include <boost/make_shared.hpp> |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 51 | |
Alexander Afanasyev | 0541cf4 | 2014-01-02 19:10:37 -0800 | [diff] [blame] | 52 | #include <boost/function.hpp> |
| 53 | #include <boost/bind.hpp> |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 54 | |
| 55 | namespace ndn { |
| 56 | |
| 57 | namespace ptr_lib = boost; |
| 58 | namespace func_lib = boost; |
| 59 | |
| 60 | using boost::shared_ptr; |
| 61 | using boost::make_shared; |
| 62 | using boost::enable_shared_from_this; |
| 63 | |
| 64 | using boost::function; |
| 65 | using boost::bind; |
| 66 | |
| 67 | } // namespace ndn |
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 | |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 73 | |
Jeff Thompson | 9a8e82f | 2013-10-17 14:13:43 -0700 | [diff] [blame] | 74 | /** |
| 75 | * A time interval represented as the number of milliseconds. |
| 76 | */ |
Alexander Afanasyev | ee94031 | 2013-12-24 19:43:15 -0800 | [diff] [blame] | 77 | typedef int64_t Milliseconds; |
Jeff Thompson | 04bfd94 | 2013-09-12 15:55:58 -0700 | [diff] [blame] | 78 | |
Jeff Thompson | 9a8e82f | 2013-10-17 14:13:43 -0700 | [diff] [blame] | 79 | /** |
| 80 | * The calendar time represented as the number of milliseconds since 1/1/1970. |
| 81 | */ |
Alexander Afanasyev | ee94031 | 2013-12-24 19:43:15 -0800 | [diff] [blame] | 82 | typedef int64_t MillisecondsSince1970; |
Jeff Thompson | 9a8e82f | 2013-10-17 14:13:43 -0700 | [diff] [blame] | 83 | |
Jeff Thompson | a8d7b06 | 2013-08-08 15:56:35 -0700 | [diff] [blame] | 84 | /** |
| 85 | * Return the hex representation of the bytes in array. |
| 86 | * @param array The array of bytes. |
| 87 | * @return Hex string. |
| 88 | */ |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 89 | std::string |
Jeff Thompson | 10ad12a | 2013-09-24 16:19:11 -0700 | [diff] [blame] | 90 | toHex(const std::vector<uint8_t>& array); |
Jeff Thompson | a8d7b06 | 2013-08-08 15:56:35 -0700 | [diff] [blame] | 91 | |
Yingdi Yu | 31b4af2 | 2014-01-14 14:13:00 -0800 | [diff] [blame] | 92 | MillisecondsSince1970 |
| 93 | getNow(); |
| 94 | |
Jeff Thompson | 51dd5fd | 2013-07-10 19:27:18 -0700 | [diff] [blame] | 95 | } |
| 96 | |
Jeff Thompson | 571f352 | 2013-07-07 22:39:31 -0700 | [diff] [blame] | 97 | #endif |