blob: 9d15e49c598d1dbfd058e25882c974f5c228b153 [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Jeff Thompson47eecfc2013-07-07 22:56:46 -07002/**
Alexander Afanasyevc169a812014-05-20 20:37:29 -04003 * Copyright (c) 2013-2014 Regents of the University of California.
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07006 *
Alexander Afanasyevc169a812014-05-20 20:37:29 -04007 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
10 *
11 * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
Jeff Thompson571f3522013-07-07 22:39:31 -070020 */
21
22#ifndef NDN_COMMON_HPP
23#define NDN_COMMON_HPP
24
Alexander Afanasyev766cea72014-04-24 19:16:42 -070025#include "ndn-cxx-config.hpp"
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -070026
Alexander Afanasyevd409d592014-01-28 18:36:38 -080027#include <stdint.h>
Alexander Afanasyevd409d592014-01-28 18:36:38 -080028#include <stddef.h>
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -080029#include <unistd.h>
30
Steve DiBenedettoc145d492014-03-11 16:35:45 -060031#if defined(__GNUC__) || defined(__clang__)
32#define DEPRECATED(func) func __attribute__ ((deprecated))
33#elif defined(_MSC_VER)
34#define DEPRECATED(func) __declspec(deprecated) func
35#else
36#pragma message("DEPRECATED not implemented")
37#define DEPRECATED(func) func
38#endif
39
Alexander Afanasyev49bb1fb2014-07-21 12:54:01 -070040namespace ndn {
41
42const size_t MAX_NDN_PACKET_SIZE = 8800;
43
44} // namespace ndn
45
Alexander Afanasyev766cea72014-04-24 19:16:42 -070046#ifdef NDN_CXX_HAVE_CXX11
Alexander Afanasyev472fa022014-01-07 13:30:49 -080047
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -070048#if defined(__GNUC__)
49# if !defined(__GXX_EXPERIMENTAL_CXX0X__) && __cplusplus < 201103L
Alexander Afanasyev766cea72014-04-24 19:16:42 -070050# error "NDN-CXX library is configured and compiled in C++11 mode, but the current compiler is not C++11 enabled"
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -070051# endif // !defined(__GXX_EXPERIMENTAL_CXX0X__) && __cplusplus < 201103L
52#endif // defined(__GNUC__)
53
54#if defined(__clang__) && __cplusplus < 201103L
Alexander Afanasyev766cea72014-04-24 19:16:42 -070055# error "NDN-CXX library is configured and compiled in C++11 mode, but the current compiler is not C++11 enabled"
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -070056#endif // defined(__clang__) && (__cplusplus < 201103L)
57
Jeff Thompson571f3522013-07-07 22:39:31 -070058#include <memory>
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080059#include <functional>
Alexander Afanasyev19508852014-01-29 01:01:51 -080060
61namespace ndn {
62
63namespace ptr_lib = std;
Alexander Afanasyev8460afb2014-02-15 20:31:42 -080064namespace func_lib = std;
65
Alexander Afanasyev19508852014-01-29 01:01:51 -080066using std::shared_ptr;
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -070067using std::weak_ptr;
Alexander Afanasyev6a05b4b2014-07-18 17:23:00 -070068using std::bad_weak_ptr;
Alexander Afanasyev19508852014-01-29 01:01:51 -080069using std::make_shared;
70using std::enable_shared_from_this;
71
Alexander Afanasyev15151312014-02-16 00:53:51 -080072using std::static_pointer_cast;
73using std::dynamic_pointer_cast;
74using std::const_pointer_cast;
75
Alexander Afanasyev19508852014-01-29 01:01:51 -080076using std::function;
77using std::bind;
Alexander Afanasyevb67090a2014-04-29 22:31:01 -070078using std::placeholders::_1;
79using std::placeholders::_2;
80using std::placeholders::_3;
81using std::placeholders::_4;
82using std::placeholders::_5;
83using std::placeholders::_6;
84using std::placeholders::_7;
85using std::placeholders::_8;
86using std::placeholders::_9;
87
88using std::ref;
89using std::cref;
Alexander Afanasyev19508852014-01-29 01:01:51 -080090
91} // namespace ndn
92
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080093
Alexander Afanasyevd409d592014-01-28 18:36:38 -080094#else
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080095
Jeff Thompson571f3522013-07-07 22:39:31 -070096#include <boost/shared_ptr.hpp>
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -070097#include <boost/weak_ptr.hpp>
Alexander Afanasyevb790d952014-01-24 12:07:53 -080098#include <boost/enable_shared_from_this.hpp>
Jeff Thompson571f3522013-07-07 22:39:31 -070099#include <boost/make_shared.hpp>
Alexander Afanasyev0541cf42014-01-02 19:10:37 -0800100
Alexander Afanasyev0541cf42014-01-02 19:10:37 -0800101#include <boost/function.hpp>
102#include <boost/bind.hpp>
Alexander Afanasyev19508852014-01-29 01:01:51 -0800103
104namespace ndn {
105
106namespace ptr_lib = boost;
107namespace func_lib = boost;
108
109using boost::shared_ptr;
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -0700110using boost::weak_ptr;
Alexander Afanasyev6a05b4b2014-07-18 17:23:00 -0700111using boost::bad_weak_ptr;
Alexander Afanasyev19508852014-01-29 01:01:51 -0800112using boost::make_shared;
113using boost::enable_shared_from_this;
114
Alexander Afanasyev15151312014-02-16 00:53:51 -0800115using boost::static_pointer_cast;
116using boost::dynamic_pointer_cast;
117using boost::const_pointer_cast;
118
Alexander Afanasyev19508852014-01-29 01:01:51 -0800119using boost::function;
120using boost::bind;
121
Alexander Afanasyevb67090a2014-04-29 22:31:01 -0700122using boost::ref;
123using boost::cref;
124
Alexander Afanasyev19508852014-01-29 01:01:51 -0800125} // namespace ndn
Alexander Afanasyev0541cf42014-01-02 19:10:37 -0800126
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700127#endif // NDN_CXX_HAVE_CXX11
Jeff Thompsona28eed82013-08-22 16:21:10 -0700128
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700129#include <boost/utility.hpp>
130
Jeff Thompson51dd5fd2013-07-10 19:27:18 -0700131namespace ndn {
Jeff Thompson9a8e82f2013-10-17 14:13:43 -0700132
Alexander Afanasyev233750e2014-02-16 00:50:07 -0800133using boost::noncopyable;
Alexander Afanasyev19508852014-01-29 01:01:51 -0800134
Jeff Thompson51dd5fd2013-07-10 19:27:18 -0700135}
136
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700137#endif // NDN_COMMON_HPP