blob: 77101ac84da16e88a840adf59f4a558a1ef06787 [file] [log] [blame]
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Minsheng Zhangffe8bbb2016-03-10 13:40:37 -07003 * Copyright (c) 2014-2016, Regents of the University of California,
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -05004 * 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#include "cs-policy.hpp"
27#include "cs.hpp"
Junxiao Shi2af9ca32016-08-25 21:51:02 +000028#include "core/logger.hpp"
29
30NFD_LOG_INIT("CsPolicy");
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050031
32namespace nfd {
33namespace cs {
34
Junxiao Shi52555b02016-11-25 21:39:06 +000035Policy::Registry&
36Policy::getRegistry()
37{
38 static Registry registry;
39 return registry;
40}
41
42unique_ptr<Policy>
43Policy::create(const std::string& key)
44{
45 Registry& registry = getRegistry();
46 auto i = registry.find(key);
47 return i == registry.end() ? nullptr : i->second();
48}
49
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050050Policy::Policy(const std::string& policyName)
51 : m_policyName(policyName)
52{
53}
54
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050055void
56Policy::setLimit(size_t nMaxEntries)
57{
Junxiao Shi2af9ca32016-08-25 21:51:02 +000058 NFD_LOG_INFO("setLimit " << nMaxEntries);
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050059 m_limit = nMaxEntries;
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050060 this->evictEntries();
61}
62
63void
64Policy::afterInsert(iterator i)
65{
66 BOOST_ASSERT(m_cs != nullptr);
67 this->doAfterInsert(i);
68}
69
70void
71Policy::afterRefresh(iterator i)
72{
73 BOOST_ASSERT(m_cs != nullptr);
74 this->doAfterRefresh(i);
75}
76
77void
78Policy::beforeErase(iterator i)
79{
80 BOOST_ASSERT(m_cs != nullptr);
81 this->doBeforeErase(i);
82}
83
84void
85Policy::beforeUse(iterator i)
86{
87 BOOST_ASSERT(m_cs != nullptr);
88 this->doBeforeUse(i);
89}
90
91} // namespace cs
92} // namespace nfd