blob: 96f132f230db6eb0df6706f619526d5c8685dda1 [file] [log] [blame]
Junxiao Shid3c792f2014-01-30 00:46:13 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi82e7f582014-09-07 15:15:40 -07003 * Copyright (c) 2014, 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
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070010 *
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/>.
Junxiao Shi82e7f582014-09-07 15:15:40 -070024 */
Junxiao Shid3c792f2014-01-30 00:46:13 -070025
26#include "strategy.hpp"
Junxiao Shi8c8d2182014-01-30 22:33:00 -070027#include "forwarder.hpp"
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060028#include "core/logger.hpp"
Junxiao Shid3c792f2014-01-30 00:46:13 -070029
30namespace nfd {
Junxiao Shi8c8d2182014-01-30 22:33:00 -070031namespace fw {
Junxiao Shid3c792f2014-01-30 00:46:13 -070032
Junxiao Shi679e9272014-02-15 20:10:21 -070033NFD_LOG_INIT("Strategy");
34
Junxiao Shibb5105f2014-03-03 12:06:45 -070035Strategy::Strategy(Forwarder& forwarder, const Name& name)
36 : m_name(name)
37 , m_forwarder(forwarder)
Junxiao Shi7bb01512014-03-05 21:34:09 -070038 , m_measurements(m_forwarder.getMeasurements(),
39 m_forwarder.getStrategyChoice(), this)
Junxiao Shid3c792f2014-01-30 00:46:13 -070040{
41}
42
43Strategy::~Strategy()
44{
45}
46
Junxiao Shi679e9272014-02-15 20:10:21 -070047void
Junxiao Shi82e7f582014-09-07 15:15:40 -070048Strategy::beforeSatisfyInterest(shared_ptr<pit::Entry> pitEntry,
49 const Face& inFace, const Data& data)
Junxiao Shi22be22c2014-02-16 22:53:48 -070050{
Junxiao Shi82e7f582014-09-07 15:15:40 -070051 NFD_LOG_DEBUG("beforeSatisfyInterest pitEntry=" << pitEntry->getName() <<
Junxiao Shi22be22c2014-02-16 22:53:48 -070052 " inFace=" << inFace.getId() << " data=" << data.getName());
53}
54
55void
Junxiao Shi679e9272014-02-15 20:10:21 -070056Strategy::beforeExpirePendingInterest(shared_ptr<pit::Entry> pitEntry)
57{
58 NFD_LOG_DEBUG("beforeExpirePendingInterest pitEntry=" << pitEntry->getName());
59}
60
Junxiao Shi22be22c2014-02-16 22:53:48 -070061//void
62//Strategy::afterAddFibEntry(shared_ptr<fib::Entry> fibEntry)
63//{
64// NFD_LOG_DEBUG("afterAddFibEntry fibEntry=" << fibEntry->getPrefix());
65//}
66//
67//void
68//Strategy::afterUpdateFibEntry(shared_ptr<fib::Entry> fibEntry)
69//{
70// NFD_LOG_DEBUG("afterUpdateFibEntry fibEntry=" << fibEntry->getPrefix());
71//}
72//
73//void
74//Strategy::beforeRemoveFibEntry(shared_ptr<fib::Entry> fibEntry)
75//{
76// NFD_LOG_DEBUG("beforeRemoveFibEntry fibEntry=" << fibEntry->getPrefix());
77//}
Junxiao Shid3c792f2014-01-30 00:46:13 -070078
Junxiao Shi8c8d2182014-01-30 22:33:00 -070079} // namespace fw
Junxiao Shid3c792f2014-01-30 00:46:13 -070080} // namespace nfd