blob: 647e306e9b56a3e7bf2441a06132852c261eda88 [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
Alexander Afanasyev09c613f2014-01-29 00:23:58 -080011#include "ndn-cpp-config.h"
Alexander Afanasyevd409d592014-01-28 18:36:38 -080012#include <stdint.h>
13// TODO: Is stddef.h portable?
14#include <stddef.h>
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -080015#include <unistd.h>
16
17// Standard headers to precompile
Alexander Afanasyevd409d592014-01-28 18:36:38 -080018
Jeff Thompson51dd5fd2013-07-10 19:27:18 -070019#include <vector>
Alexander Afanasyev19508852014-01-29 01:01:51 -080020#include <list>
21#include <set>
22#include <algorithm>
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -080023#include <map>
24#include <sstream>
25#include <fstream>
26#include <exception>
27#include <map>
28
29// Other useful headers to precompile
30#include <boost/lexical_cast.hpp>
31#include <boost/asio.hpp>
32#include <boost/date_time/posix_time/posix_time.hpp>
Alexander Afanasyev233750e2014-02-16 00:50:07 -080033#include <boost/utility.hpp>
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -080034
35#include <boost/iostreams/detail/ios.hpp>
36#include <boost/iostreams/categories.hpp>
37#include <boost/iostreams/stream.hpp>
Jeff Thompson571f3522013-07-07 22:39:31 -070038
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080039#if NDN_CPP_HAVE_CXX11
Alexander Afanasyev472fa022014-01-07 13:30:49 -080040
41#if (__cplusplus < 201103L)
Yingdi Yu61ec2722014-01-20 14:22:32 -080042#error "NDN-CPP-DEV library is configured and compiled in C++11 mode, but the current compiler is not C++11 enabled"
Alexander Afanasyev472fa022014-01-07 13:30:49 -080043#endif
44
Jeff Thompson571f3522013-07-07 22:39:31 -070045#include <memory>
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080046#include <functional>
Alexander Afanasyev19508852014-01-29 01:01:51 -080047
48namespace ndn {
49
50namespace ptr_lib = std;
Alexander Afanasyev8460afb2014-02-15 20:31:42 -080051namespace func_lib = std;
52
Alexander Afanasyev19508852014-01-29 01:01:51 -080053using std::shared_ptr;
54using std::make_shared;
55using std::enable_shared_from_this;
56
57using std::function;
58using std::bind;
59using std::placeholders; // _1, _2, ..
60
61} // namespace ndn
62
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080063
Alexander Afanasyevd409d592014-01-28 18:36:38 -080064#else
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080065
Jeff Thompson571f3522013-07-07 22:39:31 -070066#include <boost/shared_ptr.hpp>
Alexander Afanasyevb790d952014-01-24 12:07:53 -080067#include <boost/enable_shared_from_this.hpp>
Jeff Thompson571f3522013-07-07 22:39:31 -070068#include <boost/make_shared.hpp>
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080069
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080070#include <boost/function.hpp>
71#include <boost/bind.hpp>
Alexander Afanasyev19508852014-01-29 01:01:51 -080072
73namespace ndn {
74
75namespace ptr_lib = boost;
76namespace func_lib = boost;
77
78using boost::shared_ptr;
79using boost::make_shared;
80using boost::enable_shared_from_this;
81
82using boost::function;
83using boost::bind;
84
85} // namespace ndn
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080086
Jeff Thompsona28eed82013-08-22 16:21:10 -070087#endif
88
Jeff Thompson51dd5fd2013-07-10 19:27:18 -070089namespace ndn {
Jeff Thompson9a8e82f2013-10-17 14:13:43 -070090
Alexander Afanasyev233750e2014-02-16 00:50:07 -080091using boost::noncopyable;
Alexander Afanasyev19508852014-01-29 01:01:51 -080092
Jeff Thompson9a8e82f2013-10-17 14:13:43 -070093/**
94 * A time interval represented as the number of milliseconds.
95 */
Alexander Afanasyevee940312013-12-24 19:43:15 -080096typedef int64_t Milliseconds;
Jeff Thompson04bfd942013-09-12 15:55:58 -070097
Jeff Thompson9a8e82f2013-10-17 14:13:43 -070098/**
99 * The calendar time represented as the number of milliseconds since 1/1/1970.
100 */
Alexander Afanasyevee940312013-12-24 19:43:15 -0800101typedef int64_t MillisecondsSince1970;
Jeff Thompson9a8e82f2013-10-17 14:13:43 -0700102
Jeff Thompsona8d7b062013-08-08 15:56:35 -0700103/**
104 * Return the hex representation of the bytes in array.
105 * @param array The array of bytes.
106 * @return Hex string.
107 */
Jeff Thompson0050abe2013-09-17 12:50:25 -0700108std::string
Jeff Thompson10ad12a2013-09-24 16:19:11 -0700109toHex(const std::vector<uint8_t>& array);
Jeff Thompsona8d7b062013-08-08 15:56:35 -0700110
Yingdi Yu31b4af22014-01-14 14:13:00 -0800111MillisecondsSince1970
112getNow();
113
Jeff Thompson51dd5fd2013-07-10 19:27:18 -0700114}
115
Jeff Thompson571f3522013-07-07 22:39:31 -0700116#endif