blob: e4d66b3eef48f150b0268054b1c4c5205fadf3c4 [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
Junxiao Shi99848502014-10-13 19:22:22 -070027// ndn-cxx specific macros declared in this and other headers must have NDN_CXX_ prefix
28// to avoid conflicts with other projects that include ndn-cxx headers.
Jiewen Tan99135962014-09-20 02:18:53 -070029#ifdef NDN_CXX_HAVE_TESTS
Junxiao Shi99848502014-10-13 19:22:22 -070030#define NDN_CXX_VIRTUAL_WITH_TESTS virtual
31#define NDN_CXX_PUBLIC_WITH_TESTS_ELSE_PROTECTED public
32#define NDN_CXX_PUBLIC_WITH_TESTS_ELSE_PRIVATE public
33#define NDN_CXX_PROTECTED_WITH_TESTS_ELSE_PRIVATE protected
Jiewen Tan99135962014-09-20 02:18:53 -070034#else
Junxiao Shi99848502014-10-13 19:22:22 -070035#define NDN_CXX_VIRTUAL_WITH_TESTS
36#define NDN_CXX_PUBLIC_WITH_TESTS_ELSE_PROTECTED protected
37#define NDN_CXX_PUBLIC_WITH_TESTS_ELSE_PRIVATE private
38#define NDN_CXX_PROTECTED_WITH_TESTS_ELSE_PRIVATE private
Jiewen Tan99135962014-09-20 02:18:53 -070039#endif
40
Alexander Afanasyevd409d592014-01-28 18:36:38 -080041#include <stdint.h>
Alexander Afanasyevd409d592014-01-28 18:36:38 -080042#include <stddef.h>
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -080043#include <unistd.h>
44
Steve DiBenedettoc145d492014-03-11 16:35:45 -060045#if defined(__GNUC__) || defined(__clang__)
46#define DEPRECATED(func) func __attribute__ ((deprecated))
47#elif defined(_MSC_VER)
48#define DEPRECATED(func) __declspec(deprecated) func
49#else
50#pragma message("DEPRECATED not implemented")
51#define DEPRECATED(func) func
52#endif
53
Alexander Afanasyev49bb1fb2014-07-21 12:54:01 -070054namespace ndn {
55
56const size_t MAX_NDN_PACKET_SIZE = 8800;
57
58} // namespace ndn
59
Alexander Afanasyev766cea72014-04-24 19:16:42 -070060#ifdef NDN_CXX_HAVE_CXX11
Alexander Afanasyev472fa022014-01-07 13:30:49 -080061
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -070062#if defined(__GNUC__)
63# if !defined(__GXX_EXPERIMENTAL_CXX0X__) && __cplusplus < 201103L
Alexander Afanasyev766cea72014-04-24 19:16:42 -070064# 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 -070065# endif // !defined(__GXX_EXPERIMENTAL_CXX0X__) && __cplusplus < 201103L
66#endif // defined(__GNUC__)
67
68#if defined(__clang__) && __cplusplus < 201103L
Alexander Afanasyev766cea72014-04-24 19:16:42 -070069# 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 -070070#endif // defined(__clang__) && (__cplusplus < 201103L)
71
Jeff Thompson571f3522013-07-07 22:39:31 -070072#include <memory>
Alexander Afanasyev0541cf42014-01-02 19:10:37 -080073#include <functional>
Alexander Afanasyev19508852014-01-29 01:01:51 -080074
75namespace ndn {
76
77namespace ptr_lib = std;
Alexander Afanasyev8460afb2014-02-15 20:31:42 -080078namespace func_lib = std;
79
Alexander Afanasyev19508852014-01-29 01:01:51 -080080using std::shared_ptr;
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -070081using std::weak_ptr;
Alexander Afanasyev6a05b4b2014-07-18 17:23:00 -070082using std::bad_weak_ptr;
Alexander Afanasyev19508852014-01-29 01:01:51 -080083using std::make_shared;
84using std::enable_shared_from_this;
85
Alexander Afanasyev15151312014-02-16 00:53:51 -080086using std::static_pointer_cast;
87using std::dynamic_pointer_cast;
88using std::const_pointer_cast;
89
Alexander Afanasyev19508852014-01-29 01:01:51 -080090using std::function;
91using std::bind;
Alexander Afanasyevb67090a2014-04-29 22:31:01 -070092using std::placeholders::_1;
93using std::placeholders::_2;
94using std::placeholders::_3;
95using std::placeholders::_4;
96using std::placeholders::_5;
97using std::placeholders::_6;
98using std::placeholders::_7;
99using std::placeholders::_8;
100using std::placeholders::_9;
101
102using std::ref;
103using std::cref;
Alexander Afanasyev19508852014-01-29 01:01:51 -0800104
105} // namespace ndn
106
Alexander Afanasyev0541cf42014-01-02 19:10:37 -0800107
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800108#else
Alexander Afanasyev0541cf42014-01-02 19:10:37 -0800109
Jeff Thompson571f3522013-07-07 22:39:31 -0700110#include <boost/shared_ptr.hpp>
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -0700111#include <boost/weak_ptr.hpp>
Alexander Afanasyevb790d952014-01-24 12:07:53 -0800112#include <boost/enable_shared_from_this.hpp>
Jeff Thompson571f3522013-07-07 22:39:31 -0700113#include <boost/make_shared.hpp>
Alexander Afanasyev0541cf42014-01-02 19:10:37 -0800114
Alexander Afanasyev0541cf42014-01-02 19:10:37 -0800115#include <boost/function.hpp>
116#include <boost/bind.hpp>
Alexander Afanasyev19508852014-01-29 01:01:51 -0800117
118namespace ndn {
119
120namespace ptr_lib = boost;
121namespace func_lib = boost;
122
123using boost::shared_ptr;
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -0700124using boost::weak_ptr;
Alexander Afanasyev6a05b4b2014-07-18 17:23:00 -0700125using boost::bad_weak_ptr;
Alexander Afanasyev19508852014-01-29 01:01:51 -0800126using boost::make_shared;
127using boost::enable_shared_from_this;
128
Alexander Afanasyev15151312014-02-16 00:53:51 -0800129using boost::static_pointer_cast;
130using boost::dynamic_pointer_cast;
131using boost::const_pointer_cast;
132
Alexander Afanasyev19508852014-01-29 01:01:51 -0800133using boost::function;
134using boost::bind;
135
Alexander Afanasyevb67090a2014-04-29 22:31:01 -0700136using boost::ref;
137using boost::cref;
138
Alexander Afanasyev19508852014-01-29 01:01:51 -0800139} // namespace ndn
Alexander Afanasyev0541cf42014-01-02 19:10:37 -0800140
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700141#endif // NDN_CXX_HAVE_CXX11
Jeff Thompsona28eed82013-08-22 16:21:10 -0700142
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700143#include <boost/utility.hpp>
144
Jeff Thompson51dd5fd2013-07-10 19:27:18 -0700145namespace ndn {
Jeff Thompson9a8e82f2013-10-17 14:13:43 -0700146
Alexander Afanasyev233750e2014-02-16 00:50:07 -0800147using boost::noncopyable;
Alexander Afanasyev19508852014-01-29 01:01:51 -0800148
Jeff Thompson51dd5fd2013-07-10 19:27:18 -0700149}
150
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700151#endif // NDN_COMMON_HPP