-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSizeLimits.h
125 lines (101 loc) · 2.64 KB
/
SizeLimits.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
#ifndef BaseLib_Policy_SizeLimits_h_IsIncluded
#define BaseLib_Policy_SizeLimits_h_IsIncluded
#include"BaseLib/CommonDefines.h"
#include"BaseLib/Export.h"
namespace BaseLib { namespace Policy
{
class DLL_STATE SizeLimits
{
private:
// ----------------------------------
// Attributes
// ----------------------------------
int maxBytes_;
int minBytes_;
int maxBytesPerInstance_;
public:
// ----------------------------------
// Constructor
// ----------------------------------
/**
* Constructor sets the resource limits to maximum.
*/
SizeLimits()
: maxBytes_(INT_MAX)
, minBytes_(INT_MAX)
, maxBytesPerInstance_(INT_MAX)
{ }
/**
* User defined resource limits.
*/
SizeLimits(int maxBytes, int minBytes, int maxBytesPerInstance)
: maxBytes_(maxBytes)
, minBytes_(minBytes)
, maxBytesPerInstance_(maxBytesPerInstance)
{ }
/**
* Set one limit for all attributes: maxBytes, minBytes and maxBytesPerInstance.
*/
SizeLimits(int fixedLimit)
: maxBytes_(fixedLimit)
, minBytes_(fixedLimit)
, maxBytesPerInstance_(fixedLimit)
{ }
~SizeLimits()
{ }
// ----------------------------------
// Getters
// ----------------------------------
int GetMaxBytes() const
{
return maxBytes_;
}
int GetMinBytes() const
{
return minBytes_;
}
int GetMaxBytesPerInstance() const
{
return maxBytesPerInstance_;
}
// ----------------------------------
// Static functions
// ----------------------------------
/**
* @return SizeLimits with infinite samples
*/
static SizeLimits Infinite()
{
return SizeLimits();
}
/**
* @brief FixedLimit
* @param fixedLimit
* @return SizeLimits with fixedLimit samples
*/
static SizeLimits FixedLimit(int fixedLimit)
{
return SizeLimits(fixedLimit);
}
/**
* @brief MinMax
* @param bytesLimit
* @return SizeLimits with equal minimum, maximum and per instance size
*/
static SizeLimits MinMax(int bytesLimit)
{
return SizeLimits(bytesLimit, bytesLimit, bytesLimit);
}
/**
* @brief MinMaxAndMaxPerInstance
* @param bytesLimit
* @param bytesPerInstance
* @return SizeLimits with equal minimu and maximum size and explicit bytes per instance size. Can be used with UDP Datagrams.
*/
static SizeLimits MinMaxAndMaxPerInstance(int bytesLimit, int bytesPerInstance)
{
return SizeLimits(bytesLimit, bytesLimit, bytesPerInstance);
}
};
}}
#endif