blob: 4e9e4cda3612134d4b5037d91ad878fd80f8db11 [file] [log] [blame]
Yingdi Yub20ae812014-08-15 11:20:19 -07001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
2/*
Davide Pesavento07684bc2021-02-07 20:09:28 -05003 * Copyright (c) 2012-2021 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
Davide Pesavento07684bc2021-02-07 20:09:28 -050023#ifndef CHRONOSYNC_DETAIL_COMMON_HPP
24#define CHRONOSYNC_DETAIL_COMMON_HPP
Yingdi Yub20ae812014-08-15 11:20:19 -070025
Davide Pesavento07684bc2021-02-07 20:09:28 -050026#include "detail/config.hpp"
Yingdi Yub20ae812014-08-15 11:20:19 -070027
Davide Pesavento07684bc2021-02-07 20:09:28 -050028#ifdef CHRONOSYNC_WITH_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>
Alexander Afanasyevcc6f67c2020-06-03 14:00:32 -040052#include <ndn-cxx/security/validator.hpp>
Ashlesh Gawande08784d42017-09-06 23:40:21 -050053#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>
Davide Pesavento5f408ae2020-07-15 21:17:04 -040060#include <boost/core/noncopyable.hpp>
Yingdi Yub20ae812014-08-15 11:20:19 -070061#include <boost/lexical_cast.hpp>
Yingdi Yub20ae812014-08-15 11:20:19 -070062
63namespace chronosync {
64
65using std::size_t;
66
67using boost::noncopyable;
Yingdi Yub20ae812014-08-15 11:20:19 -070068
Yingdi Yu9d5679a2015-02-01 00:17:58 -080069using std::bind;
Yingdi Yu9d5679a2015-02-01 00:17:58 -080070using std::cref;
Ashlesh Gawande08784d42017-09-06 23:40:21 -050071using std::function;
72using std::make_shared;
73using std::make_tuple;
74using std::ref;
75using std::shared_ptr;
Yingdi Yub20ae812014-08-15 11:20:19 -070076
Yingdi Yub20ae812014-08-15 11:20:19 -070077using ndn::Block;
Ashlesh Gawande08784d42017-09-06 23:40:21 -050078using ndn::ConstBufferPtr;
79using ndn::Data;
Ashlesh Gawande08784d42017-09-06 23:40:21 -050080using ndn::Interest;
81using ndn::Name;
Alexander Afanasyevcc6f67c2020-06-03 14:00:32 -040082using ndn::security::ValidationError;
83using ndn::security::Validator;
Yingdi Yub20ae812014-08-15 11:20:19 -070084
85namespace tlv {
Yingdi Yu906c2ea2014-10-31 11:24:50 -070086using namespace ndn::tlv;
Ashlesh Gawande687cf922017-05-30 15:04:16 -050087} // namespace tlv
Yingdi Yub20ae812014-08-15 11:20:19 -070088
89namespace name = ndn::name;
90namespace time = ndn::time;
Ashlesh Gawande687cf922017-05-30 15:04:16 -050091namespace security = ndn::security;
Ashlesh Gawande08784d42017-09-06 23:40:21 -050092namespace encoding = ndn::encoding;
Yingdi Yub20ae812014-08-15 11:20:19 -070093
94} // namespace chronosync
95
Davide Pesavento07684bc2021-02-07 20:09:28 -050096#endif // CHRONOSYNC_DETAIL_COMMON_HPP