NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
cs-entry.cpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
26 #include "cs-entry.hpp"
27 
28 namespace nfd {
29 namespace cs {
30 
31 void
32 Entry::setData(shared_ptr<const Data> data, bool isUnsolicited)
33 {
34  m_data = data;
35  m_isUnsolicited = isUnsolicited;
36 
38 }
39 
40 bool
42 {
43  BOOST_ASSERT(this->hasData());
44  return m_staleTime < time::steady_clock::now();
45 }
46 
47 void
49 {
50  BOOST_ASSERT(this->hasData());
51  m_staleTime = time::steady_clock::now() + time::milliseconds(m_data->getFreshnessPeriod());
52 }
53 
54 bool
55 Entry::canSatisfy(const Interest& interest) const
56 {
57  BOOST_ASSERT(this->hasData());
58  if (!interest.matchesData(*m_data)) {
59  return false;
60  }
61 
62  if (interest.getMustBeFresh() == static_cast<int>(true) && this->isStale()) {
63  return false;
64  }
65 
66  return true;
67 }
68 
69 void
71 {
72  m_data.reset();
73  m_isUnsolicited = false;
74  m_staleTime = time::steady_clock::TimePoint();
75 }
76 
77 } // namespace cs
78 } // namespace nfd
void reset()
clears the entry
Definition: cs-entry.cpp:70
time_point TimePoint
Definition: time.hpp:226
bool isUnsolicited() const
Definition: cs-entry.hpp:73
static time_point now() noexcept
Definition: time.cpp:80
void setData(shared_ptr< const Data > data, bool isUnsolicited)
replaces the stored Data
Definition: cs-entry.cpp:32
Represents an Interest packet.
Definition: interest.hpp:42
bool isStale() const
checks if the stored Data is stale now
Definition: cs-entry.cpp:41
bool hasData() const
Definition: cs-entry.hpp:107
Copyright (c) 2011-2015 Regents of the University of California.
Definition: ndn-common.hpp:40
bool matchesData(const Data &data) const
Check if Interest can be satisfied by data.
Definition: interest.cpp:351
void updateStaleTime()
refreshes stale time relative to current time
Definition: cs-entry.cpp:48
bool getMustBeFresh() const
Check whether the MustBeFresh element is present.
Definition: interest.hpp:184
bool canSatisfy(const Interest &interest) const
determines whether Interest can be satisified by the stored Data
Definition: cs-entry.cpp:55