blob: 59e6828e2215d2fe468710d325f994b632bd45a5 [file] [log] [blame]
Yingdi Yub20ae812014-08-15 11:20:19 -07001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
2/*
Ashlesh Gawande4a9ecd52018-02-06 14:36:19 -06003 * Copyright (c) 2012-2018 University of California, Los Angeles
Yingdi Yub20ae812014-08-15 11:20:19 -07004 *
5 * This file is part of ChronoSync, synchronization library for distributed realtime
6 * applications for NDN.
7 *
8 * ChronoSync is free software: you can redistribute it and/or modify it under the terms
9 * of the GNU General Public License as published by the Free Software Foundation, either
10 * version 3 of the License, or (at your option) any later version.
11 *
12 * ChronoSync is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
13 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * ChronoSync, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * @author Alexander Afanasyev <http://lasr.cs.ucla.edu/afanasyev/index.html>
20 * @author Yingdi Yu <yingdi@cs.ucla.edu>
21 */
22
23#ifndef CHRONOSYNC_COMMON_HPP
24#define CHRONOSYNC_COMMON_HPP
25
26#include "config.hpp"
27
Ashlesh Gawande4a9ecd52018-02-06 14:36:19 -060028#ifdef CHRONOSYNC_HAVE_TESTS
Yingdi Yu906c2ea2014-10-31 11:24:50 -070029#define CHRONOSYNC_VIRTUAL_WITH_TESTS virtual
30#define CHRONOSYNC_PUBLIC_WITH_TESTS_ELSE_PROTECTED public
31#define CHRONOSYNC_PUBLIC_WITH_TESTS_ELSE_PRIVATE public
32#define CHRONOSYNC_PROTECTED_WITH_TESTS_ELSE_PRIVATE protected
Yingdi Yub20ae812014-08-15 11:20:19 -070033#else
Yingdi Yu906c2ea2014-10-31 11:24:50 -070034#define CHRONOSYNC_VIRTUAL_WITH_TESTS
35#define CHRONOSYNC_PUBLIC_WITH_TESTS_ELSE_PROTECTED protected
36#define CHRONOSYNC_PUBLIC_WITH_TESTS_ELSE_PRIVATE private
37#define CHRONOSYNC_PROTECTED_WITH_TESTS_ELSE_PRIVATE private
Yingdi Yub20ae812014-08-15 11:20:19 -070038#endif
39
40#include <cstddef>
41#include <list>
Yingdi Yub20ae812014-08-15 11:20:19 -070042#include <queue>
Ashlesh Gawande08784d42017-09-06 23:40:21 -050043#include <set>
Yingdi Yub20ae812014-08-15 11:20:19 -070044#include <vector>
Ashlesh Gawande08784d42017-09-06 23:40:21 -050045#include <tuple>
Yingdi Yub20ae812014-08-15 11:20:19 -070046
Yingdi Yub20ae812014-08-15 11:20:19 -070047#include <ndn-cxx/data.hpp>
Ashlesh Gawande08784d42017-09-06 23:40:21 -050048#include <ndn-cxx/face.hpp>
49#include <ndn-cxx/interest.hpp>
50#include <ndn-cxx/security/key-chain.hpp>
51#include <ndn-cxx/security/signing-helpers.hpp>
52#include <ndn-cxx/security/v2/validator.hpp>
53#include <ndn-cxx/security/validator-config.hpp>
54#include <ndn-cxx/util/scheduler.hpp>
55#include <ndn-cxx/util/time.hpp>
Yingdi Yub20ae812014-08-15 11:20:19 -070056
57#include <boost/algorithm/string.hpp>
58#include <boost/asio.hpp>
59#include <boost/assert.hpp>
Yingdi Yud514c172014-08-26 21:49:39 -070060#include <boost/foreach.hpp>
Yingdi Yub20ae812014-08-15 11:20:19 -070061#include <boost/lexical_cast.hpp>
62#include <boost/noncopyable.hpp>
Yingdi Yub20ae812014-08-15 11:20:19 -070063
64namespace chronosync {
65
66using std::size_t;
67
68using boost::noncopyable;
Yingdi Yub20ae812014-08-15 11:20:19 -070069
Yingdi Yu9d5679a2015-02-01 00:17:58 -080070using std::bind;
Yingdi Yu9d5679a2015-02-01 00:17:58 -080071using std::cref;
Ashlesh Gawande08784d42017-09-06 23:40:21 -050072using std::function;
73using std::make_shared;
74using std::make_tuple;
75using std::ref;
76using std::shared_ptr;
Yingdi Yub20ae812014-08-15 11:20:19 -070077
Yingdi Yub20ae812014-08-15 11:20:19 -070078using ndn::Block;
Ashlesh Gawande08784d42017-09-06 23:40:21 -050079using ndn::ConstBufferPtr;
80using ndn::Data;
Ashlesh Gawande08784d42017-09-06 23:40:21 -050081using ndn::Interest;
82using ndn::Name;
83using ndn::security::v2::ValidationError;
84using ndn::security::v2::Validator;
Yingdi Yub20ae812014-08-15 11:20:19 -070085
86namespace tlv {
Yingdi Yu906c2ea2014-10-31 11:24:50 -070087using namespace ndn::tlv;
Ashlesh Gawande687cf922017-05-30 15:04:16 -050088} // namespace tlv
Yingdi Yub20ae812014-08-15 11:20:19 -070089
90namespace name = ndn::name;
91namespace time = ndn::time;
Ashlesh Gawande687cf922017-05-30 15:04:16 -050092namespace security = ndn::security;
Ashlesh Gawande08784d42017-09-06 23:40:21 -050093namespace encoding = ndn::encoding;
Yingdi Yub20ae812014-08-15 11:20:19 -070094
95} // namespace chronosync
96
97#endif // CHRONOSYNC_COMMON_HPP