blob: 830316eadf355cb2c8e21fb690d2e13e209acdf9 [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 Pesaventoaa9e3b22022-10-21 17:00:07 -040034/**
35 * \brief Contains information about an Interest on an incoming or outgoing face.
36 * \note This class is an implementation detail to extract common functionality
37 * of InRecord and OutRecord.
Junxiao Shicbba04c2014-01-26 14:21:22 -070038 */
Junxiao Shi408a7002014-02-12 17:53:47 -070039class FaceRecord : public StrategyInfoHost
Junxiao Shicbba04c2014-01-26 14:21:22 -070040{
41public:
Md Ashiqur Rahmanc88d2d42019-08-28 20:19:47 +000042 explicit
43 FaceRecord(Face& face)
Davide Pesavento50a6af32019-02-21 00:04:40 -050044 : m_face(face)
Davide Pesavento50a6af32019-02-21 00:04:40 -050045 {
46 }
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070047
Junxiao Shi9cff7792016-08-01 21:45:11 +000048 Face&
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040049 getFace() const noexcept
Davide Pesavento50a6af32019-02-21 00:04:40 -050050 {
51 return m_face;
52 }
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070053
Davide Pesavento51cf75c2020-03-11 22:21:13 -040054 Interest::Nonce
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040055 getLastNonce() const noexcept
Davide Pesavento50a6af32019-02-21 00:04:40 -050056 {
57 return m_lastNonce;
58 }
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070059
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040060 time::steady_clock::time_point
61 getLastRenewed() const noexcept
Davide Pesavento50a6af32019-02-21 00:04:40 -050062 {
63 return m_lastRenewed;
64 }
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070065
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040066 /** \brief Returns the time point at which this record expires.
Junxiao Shif3c07812014-03-11 21:48:49 -070067 * \return getLastRenewed() + InterestLifetime
Junxiao Shicbba04c2014-01-26 14:21:22 -070068 */
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040069 time::steady_clock::time_point
70 getExpiry() const noexcept
Davide Pesavento50a6af32019-02-21 00:04:40 -050071 {
72 return m_expiry;
73 }
Junxiao Shicbba04c2014-01-26 14:21:22 -070074
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040075 /** \brief Updates lastNonce, lastRenewed, expiry fields.
Junxiao Shi2bf8d2a2014-11-27 14:22:32 -070076 */
Junxiao Shicbba04c2014-01-26 14:21:22 -070077 void
78 update(const Interest& interest);
79
80private:
Junxiao Shi9cff7792016-08-01 21:45:11 +000081 Face& m_face;
Davide Pesavento51cf75c2020-03-11 22:21:13 -040082 Interest::Nonce m_lastNonce{0, 0, 0, 0};
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040083 time::steady_clock::time_point m_lastRenewed = time::steady_clock::time_point::min();
84 time::steady_clock::time_point m_expiry = time::steady_clock::time_point::min();
Junxiao Shicbba04c2014-01-26 14:21:22 -070085};
86
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040087} // namespace nfd::pit
Junxiao Shicbba04c2014-01-26 14:21:22 -070088
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070089#endif // NFD_DAEMON_TABLE_PIT_FACE_RECORD_HPP