blob: fcc57b1bb3c66c1c42650aa133d1a95200cdecbb [file] [log] [blame]
Junxiao Shi029401f2016-08-05 12:55:14 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2014-2016, Regents of the University of California,
4 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
10 *
11 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
13 *
14 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24 */
25
26#ifndef NFD_DAEMON_TABLE_NAME_TREE_ITERATOR_HPP
27#define NFD_DAEMON_TABLE_NAME_TREE_ITERATOR_HPP
28
29#include "name-tree-entry.hpp"
30
31namespace nfd {
32namespace name_tree {
33
34/** \brief a predicate to accept or reject an Entry in find operations
35 */
36typedef function<bool(const Entry& entry)> EntrySelector;
37
38/** \brief an EntrySelector that accepts every Entry
39 */
40struct AnyEntry
41{
42 bool
43 operator()(const Entry& entry) const
44 {
45 return true;
46 }
47};
48
49/** \brief a predicate to accept or reject an Entry and its children
50 * \return .first indicates whether entry should be accepted;
51 * .second indicates whether entry's children should be visited
52 */
53typedef function<std::pair<bool,bool>(const Entry& entry)> EntrySubTreeSelector;
54
55/** \brief an EntrySubTreeSelector that accepts every Entry and its children
56 */
57struct AnyEntrySubTree
58{
59 std::pair<bool, bool>
60 operator()(const Entry& entry) const
61 {
62 return {true, true};
63 }
64};
65
66class EnumerationImpl;
67
68/** \brief NameTree iterator
69 */
70class Iterator : public std::iterator<std::forward_iterator_tag, const Entry>
71{
72public:
73 Iterator();
74
Junxiao Shib660b4c2016-08-06 20:47:44 +000075 Iterator(shared_ptr<EnumerationImpl> impl, const Entry* ref);
Junxiao Shi029401f2016-08-05 12:55:14 +000076
77 virtual
78 ~Iterator() = default;
79
80 const Entry&
81 operator*() const
82 {
83 BOOST_ASSERT(m_impl != nullptr);
84 return *m_entry;
85 }
86
Junxiao Shib660b4c2016-08-06 20:47:44 +000087 const Entry*
Junxiao Shi029401f2016-08-05 12:55:14 +000088 operator->() const
89 {
90 BOOST_ASSERT(m_impl != nullptr);
91 return m_entry;
92 }
93
94 Iterator&
95 operator++();
96
97 Iterator
98 operator++(int);
99
100 bool
101 operator==(const Iterator& other) const;
102
103 bool
104 operator!=(const Iterator& other) const
105 {
106 return !this->operator==(other);
107 }
108
109private:
110 /** \brief enumeration implementation; nullptr for end iterator
111 */
112 shared_ptr<EnumerationImpl> m_impl;
113
114 /** \brief current entry; nullptr for uninitialized iterator
115 */
Junxiao Shib660b4c2016-08-06 20:47:44 +0000116 const Entry* m_entry;
Junxiao Shi029401f2016-08-05 12:55:14 +0000117
118 /** \brief reference entry used by enumeration implementation
119 */
Junxiao Shib660b4c2016-08-06 20:47:44 +0000120 const Entry* m_ref;
Junxiao Shi029401f2016-08-05 12:55:14 +0000121
122 /** \brief state used by enumeration implementation
123 */
124 int m_state;
125
126 friend std::ostream& operator<<(std::ostream&, const Iterator&);
127 friend class FullEnumerationImpl;
128 friend class PartialEnumerationImpl;
129 friend class PrefixMatchImpl;
130};
131
132std::ostream&
133operator<<(std::ostream& os, const Iterator& i);
134
135/** \brief enumeration operation implementation
136 */
137class EnumerationImpl
138{
139public:
140 explicit
141 EnumerationImpl(const NameTree& nt);
142
143 virtual void
144 advance(Iterator& i) = 0;
145
146protected:
147 const NameTree& nt;
Junxiao Shib660b4c2016-08-06 20:47:44 +0000148 const Hashtable& ht;
Junxiao Shi029401f2016-08-05 12:55:14 +0000149};
150
151/** \brief full enumeration implementation
152 */
153class FullEnumerationImpl : public EnumerationImpl
154{
155public:
156 FullEnumerationImpl(const NameTree& nt, const EntrySelector& pred);
157
158 virtual void
159 advance(Iterator& i) override;
160
161private:
162 EntrySelector m_pred;
163};
164
165/** \brief partial enumeration implementation
166 *
167 * Iterator::m_ref should be initialized to subtree root.
168 * Iterator::m_state LSB indicates whether to visit children of m_entry.
169 */
170class PartialEnumerationImpl : public EnumerationImpl
171{
172public:
173 PartialEnumerationImpl(const NameTree& nt, const EntrySubTreeSelector& pred);
174
175 virtual void
176 advance(Iterator& i) override;
177
178private:
179 EntrySubTreeSelector m_pred;
180};
181
182/** \brief partial enumeration implementation
183 *
184 * Iterator::m_ref should be initialized to longest prefix matched entry.
185 */
186class PrefixMatchImpl : public EnumerationImpl
187{
188public:
189 PrefixMatchImpl(const NameTree& nt, const EntrySelector& pred);
190
191private:
192 virtual void
193 advance(Iterator& i) override;
194
195private:
196 EntrySelector m_pred;
197};
198
199} // namespace name_tree
200} // namespace nfd
201
202#endif // NFD_DAEMON_TABLE_NAME_TREE_ITERATOR_HPP