blob: 15344c6216148418d029b43c5b12b635ca3614d0 [file] [log] [blame]
Alexander Afanasyev6f95e702012-10-31 16:27:31 -07001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2011 University of California, Los Angeles
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation;
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
19 */
20
21#ifndef _NDN_LIMITS_RATE_H_
22#define _NDN_LIMITS_RATE_H_
23
24#include "ndn-limits.h"
25
26namespace ns3 {
27namespace ndn {
28
29/**
30 * \ingroup ndn
31 * \brief Structure to manage limits for outstanding interests
32 */
33class LimitsRate :
34 public Limits
35{
36public:
37 typedef Limits super;
38
39 static TypeId
40 GetTypeId ();
41
42 /**
43 * \brief Constructor
44 * \param prefix smart pointer to the prefix for the FIB entry
45 */
46 LimitsRate ()
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -070047 : m_isLeakScheduled (false)
48 , m_bucketMax (0)
49 , m_bucketLeak (1)
Alexander Afanasyev6f95e702012-10-31 16:27:31 -070050 , m_bucket (0)
51 { }
52
53 virtual
54 ~LimitsRate () { }
55
56 virtual void
57 SetLimits (double rate, double delay)
58 {
59 super::SetLimits (rate, delay);
60
61 // maximum allowed burst
62 m_bucketMax = GetMaxRate () * GetMaxDelay ();
63
64 // amount of packets allowed every second (leak rate)
65 m_bucketLeak = GetMaxRate ();
66 }
67
68 /**
69 * @brief Check if Interest limit is reached (token bucket is not empty)
70 */
71 virtual bool
72 IsBelowLimit ();
73
74 /**
75 * @brief Get token from the bucket
76 */
77 virtual void
78 BorrowLimit ();
79
80 /**
81 * @brief Does nothing (token bucket leakage is time-dependent only)
82 */
83 virtual void
84 ReturnLimit ();
85
86 /**
87 * @brief Update current leak ratio and maximum burst
88 */
89 virtual void
90 UpdateCurrentLimit (double limit);
91
92 /**
93 */
94 virtual double
95 GetCurrentLimit () const
96 {
97 return m_bucketLeak;
98 }
99
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -0700100protected:
101 // from Node
102 void
103 NotifyNewAggregate ();
104
Alexander Afanasyev6f95e702012-10-31 16:27:31 -0700105private:
106 /**
107 * @brief Leak bucket, assuming `interval' seconds between leakages
108 *
109 * @param interval Time interval for leakage. Used to calculate size of the leak
110 */
111 void
112 LeakBucket (double interval);
113
114private:
Alexander Afanasyev7e4235a2012-10-31 16:58:44 -0700115 bool m_isLeakScheduled;
116
Alexander Afanasyev6f95e702012-10-31 16:27:31 -0700117 double m_bucketMax; ///< \brief Maximum Interest allowance for this face (maximum tokens that can be issued at the same time)
118 double m_bucketLeak; ///< \brief Normalized amount that should be leaked every second (token bucket leak rate)
119 double m_bucket; ///< \brief Value representing current size of the Interest allowance for this face (current size of token bucket)
120};
121
122
123} // namespace ndn
124} // namespace ns3
125
126#endif // _NDN_LIMITS_RATE_H_