NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
cs-policy-priority-fifo.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2014-2018, 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_CS_POLICY_PRIORITY_FIFO_HPP
27 #define NFD_DAEMON_TABLE_CS_POLICY_PRIORITY_FIFO_HPP
28 
29 #include "cs-policy.hpp"
30 #include "core/scheduler.hpp"
31 
32 namespace nfd {
33 namespace cs {
34 namespace priority_fifo {
35 
36 typedef std::list<iterator> Queue;
38 
39 enum QueueType {
44 };
45 
46 struct EntryInfo
47 {
51 };
52 
54 {
55  bool
56  operator()(const iterator& a, const iterator& b) const
57  {
58  return *a < *b;
59  }
60 };
61 
62 typedef std::map<iterator, EntryInfo*, EntryItComparator> EntryInfoMapFifo;
63 
76 class PriorityFifoPolicy : public Policy
77 {
78 public:
80 
81  virtual
83 
84 public:
85  static const std::string POLICY_NAME;
86 
87 private:
88  void
89  doAfterInsert(iterator i) override;
90 
91  void
92  doAfterRefresh(iterator i) override;
93 
94  void
95  doBeforeErase(iterator i) override;
96 
97  void
98  doBeforeUse(iterator i) override;
99 
100  void
101  evictEntries() override;
102 
103 private:
107  void
108  evictOne();
109 
113  void
114  attachQueue(iterator i);
115 
119  void
120  detachQueue(iterator i);
121 
124  void
125  moveToStaleQueue(iterator i);
126 
127 private:
128  Queue m_queues[QUEUE_MAX];
129  EntryInfoMapFifo m_entryInfoMap;
130 };
131 
132 } // namespace priority_fifo
133 
135 
136 } // namespace cs
137 } // namespace nfd
138 
139 #endif // NFD_DAEMON_TABLE_CS_POLICY_PRIORITY_FIFO_HPP
Opaque handle for a scheduled event.
Table::const_iterator iterator
Definition: cs-internal.hpp:41
represents a CS replacement policy
Definition: cs-policy.hpp:39
Copyright (c) 2011-2015 Regents of the University of California.
Definition: ndn-common.hpp:40
std::map< iterator, EntryInfo *, EntryItComparator > EntryInfoMapFifo
bool operator()(const iterator &a, const iterator &b) const