blob: edb078389165adf472873cf82ed2368fe20a40be [file] [log] [blame]
Junxiao Shicbba04c2014-01-26 14:21:22 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
ashiqopud3ae85d2019-02-17 02:29:55 +00002/*
Davide Pesaventoe422f9e2022-06-03 01:30:23 -04003 * Copyright (c) 2014-2022, Regents of the University of California,
Junxiao Shi9cff7792016-08-01 21:45:11 +00004 * 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 Shi2bf8d2a2014-11-27 14:22:32 -070024 */
Junxiao Shicbba04c2014-01-26 14:21:22 -070025
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070026#ifndef NFD_DAEMON_TABLE_PIT_FACE_RECORD_HPP
27#define NFD_DAEMON_TABLE_PIT_FACE_RECORD_HPP
Junxiao Shicbba04c2014-01-26 14:21:22 -070028
29#include "face/face.hpp"
Junxiao Shi408a7002014-02-12 17:53:47 -070030#include "strategy-info-host.hpp"
Junxiao Shicbba04c2014-01-26 14:21:22 -070031
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040032namespace nfd::pit {
Junxiao Shicbba04c2014-01-26 14:21:22 -070033
Davide Pesavento50a6af32019-02-21 00:04:40 -050034/** \brief Contains information about an Interest on an incoming or outgoing face
Junxiao Shicbba04c2014-01-26 14:21:22 -070035 * \note This is an implementation detail to extract common functionality
36 * of InRecord and OutRecord
37 */
Junxiao Shi408a7002014-02-12 17:53:47 -070038class FaceRecord : public StrategyInfoHost
Junxiao Shicbba04c2014-01-26 14:21:22 -070039{
40public:
Md Ashiqur Rahmanc88d2d42019-08-28 20:19:47 +000041 explicit
42 FaceRecord(Face& face)
Davide Pesavento50a6af32019-02-21 00:04:40 -050043 : m_face(face)
Davide Pesavento50a6af32019-02-21 00:04:40 -050044 {
45 }
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070046
Junxiao Shi9cff7792016-08-01 21:45:11 +000047 Face&
Davide Pesavento50a6af32019-02-21 00:04:40 -050048 getFace() const
49 {
50 return m_face;
51 }
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070052
Davide Pesavento51cf75c2020-03-11 22:21:13 -040053 Interest::Nonce
Davide Pesavento50a6af32019-02-21 00:04:40 -050054 getLastNonce() const
55 {
56 return m_lastNonce;
57 }
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070058
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070059 time::steady_clock::TimePoint
Davide Pesavento50a6af32019-02-21 00:04:40 -050060 getLastRenewed() const
61 {
62 return m_lastRenewed;
63 }
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070064
Davide Pesavento50a6af32019-02-21 00:04:40 -050065 /** \brief Returns the time point at which this record expires
Junxiao Shif3c07812014-03-11 21:48:49 -070066 * \return getLastRenewed() + InterestLifetime
Junxiao Shicbba04c2014-01-26 14:21:22 -070067 */
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070068 time::steady_clock::TimePoint
Davide Pesavento50a6af32019-02-21 00:04:40 -050069 getExpiry() const
70 {
71 return m_expiry;
72 }
Junxiao Shicbba04c2014-01-26 14:21:22 -070073
Junxiao Shi2bf8d2a2014-11-27 14:22:32 -070074 /** \brief updates lastNonce, lastRenewed, expiry fields
75 */
Junxiao Shicbba04c2014-01-26 14:21:22 -070076 void
77 update(const Interest& interest);
78
79private:
Junxiao Shi9cff7792016-08-01 21:45:11 +000080 Face& m_face;
Davide Pesavento51cf75c2020-03-11 22:21:13 -040081 Interest::Nonce m_lastNonce{0, 0, 0, 0};
Davide Pesavento50a6af32019-02-21 00:04:40 -050082 time::steady_clock::TimePoint m_lastRenewed = time::steady_clock::TimePoint::min();
83 time::steady_clock::TimePoint m_expiry = time::steady_clock::TimePoint::min();
Junxiao Shicbba04c2014-01-26 14:21:22 -070084};
85
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040086} // namespace nfd::pit
Junxiao Shicbba04c2014-01-26 14:21:22 -070087
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070088#endif // NFD_DAEMON_TABLE_PIT_FACE_RECORD_HPP