blob: d85661c2f2779682f821504d993f953b4a6b3d0c [file] [log] [blame]
Yingdi Yu1c4ba9a2014-08-27 19:05:49 -07001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2012-2014 University of California, Los Angeles
4 *
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 Zhenkai Zhu <http://irl.cs.ucla.edu/~zhenkai/>
20 * @author Chaoyi Bian <bcy@pku.edu.cn>
21 * @author Alexander Afanasyev <http://lasr.cs.ucla.edu/afanasyev/index.html>
22 * @author Yingdi Yu <yingdi@cs.ucla.edu>
23 */
24
25#ifndef CHRONOSYNC_INTEREST_TABLE_HPP
26#define CHRONOSYNC_INTEREST_TABLE_HPP
27
28#include "interest-container.hpp"
29
30#include <ndn-cxx/util/scheduler.hpp>
31
32namespace chronosync {
33
34/**
35 * @brief A table to keep unsatisfied Sync Interest
36 */
37class InterestTable : noncopyable
38{
39public:
40 class Error : public std::runtime_error
41 {
42 public:
43 explicit
44 Error(const std::string& what)
45 : std::runtime_error(what)
46 {
47 }
48 };
49
50 typedef InterestContainer::iterator iterator;
51 typedef InterestContainer::const_iterator const_iterator;
52
53 explicit
54 InterestTable(boost::asio::io_service& io);
55
56 ~InterestTable();
57
58 /**
59 * @brief Insert an interest
60 *
61 * If the interest already exists in the table, the old interest will be replaced,
62 * and expire timer will be reset.
63 * Interests with the same name are counted as the same.
64 * This method assumes that the sync prefix of all interests are the same
65 * thus it only compares the digest part.
66 *
67 * @param interest Interest to insert.
68 * @param digest The value of the last digest component.
69 * @param isKnown false if the digest is an unknown digest.
70 * @return true if the same interest exists in the table before insertion.
71 */
72 bool
73 insert(shared_ptr<const Interest> interest,
74 ndn::ConstBufferPtr digest,
75 bool isKnown = false);
76
77 /**
78 * @brief Delete interest by digest (e.g., when it was satisfied)
79 *
80 * @return true if an interest with the digest exists in the table before deletion
81 */
82 bool
83 erase(ndn::ConstBufferPtr digest);
84
Yingdi Yu906c2ea2014-10-31 11:24:50 -070085 void
86 quiteErase(ndn::ConstBufferPtr digest);
87
Yingdi Yu1c4ba9a2014-08-27 19:05:49 -070088 const_iterator
89 begin() const
90 {
91 return m_table.begin();
92 }
93
94 iterator
95 begin()
96 {
97 return m_table.begin();
98 }
99
100 const_iterator
101 end() const
102 {
103 return m_table.end();
104 }
105
106 iterator
107 end()
108 {
109 return m_table.end();
110 }
111
112 size_t
113 size() const;
114
115 void
116 clear();
117
118private:
119 ndn::Scheduler m_scheduler;
120 ndn::time::steady_clock::Duration m_entryLifetime;
121 ndn::time::steady_clock::Duration m_cleanPeriod;
122
123 InterestContainer m_table;
124};
125
126} // namespace chronosync
127
128#endif // CHRONOSYNC_INTEREST_TABLE_HPP