File: exponentialbackoff.js

package info (click to toggle)
aseba-plugin-blockly 20180211%2Bgit-2
  • links: PTS
  • area: non-free
  • in suites: buster
  • size: 64,472 kB
  • sloc: xml: 7,976; python: 2,314; sh: 261; lisp: 24; makefile: 10
file content (206 lines) | stat: -rw-r--r-- 5,544 bytes parent folder | download | duplicates (2)
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
// Copyright 2011 The Closure Library Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS-IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.


/**
 * @fileoverview Utility class to manage the mathematics behind computing an
 * exponential backoff model.  Given an initial backoff value and a maximum
 * backoff value, every call to backoff() will double the value until maximum
 * backoff value is reached.
 *
 */


goog.provide('goog.math.ExponentialBackoff');

goog.require('goog.asserts');



/**
 * @struct
 * @constructor
 *
 * @param {number} initialValue The initial backoff value.
 * @param {number} maxValue The maximum backoff value.
 * @param {number=} opt_randomFactor When set, adds randomness to the backoff
 *     and decay to avoid a thundering herd problem. Should be a number between
 *     0 and 1, where 0 means no randomness and 1 means a factor of 0x to 2x.
 * @param {number=} opt_backoffFactor The factor to backoff by. Defaults to 2.
 *     Should be a number greater than 1.
 * @param {number=} opt_decayFactor The factor to decay by. Defaults to 2.
 *     Should be a number between greater than one.
 */
goog.math.ExponentialBackoff = function(
    initialValue, maxValue, opt_randomFactor, opt_backoffFactor,
    opt_decayFactor) {
  goog.asserts.assert(
      initialValue > 0, 'Initial value must be greater than zero.');
  goog.asserts.assert(
      maxValue >= initialValue,
      'Max value should be at least as large as initial value.');

  if (goog.isDef(opt_randomFactor)) {
    goog.asserts.assert(
        opt_randomFactor >= 0 && opt_randomFactor <= 1,
        'Randomness factor should be between 0 and 1.');
  }

  if (goog.isDef(opt_backoffFactor)) {
    goog.asserts.assert(
        opt_backoffFactor > 1, 'Backoff factor should be greater than 1');
  }

  if (goog.isDef(opt_decayFactor)) {
    goog.asserts.assert(
        opt_decayFactor >= 1, 'Decay factor should be greater than 1');
  }

  /**
   * @type {number}
   * @private
   */
  this.initialValue_ = initialValue;

  /**
   * @type {number}
   * @private
   */
  this.maxValue_ = maxValue;

  /**
   * The current backoff value.
   * @type {number}
   * @private
   */
  this.currValue_ = initialValue;

  /**
   * The current backoff value minus the random wait (if there is any).
   * @type {number}
   * @private
   */
  this.currBaseValue_ = initialValue;

  /**
   * The random factor to apply to the backoff value to avoid a thundering herd
   * problem. Should be a number between 0 and 1, where 0 means no randomness
   * and 1 means a factor of 0x to 2x.
   * @type {number}
   * @private
   */
  this.randomFactor_ = opt_randomFactor || 0;

  /**
   * Factor to backoff by.
   * @type {number}
   * @private
   */
  this.backoffFactor_ = opt_backoffFactor || 2;

  /**
   * Factor to decay by.
   * @type {number}
   * @private
   */
  this.decayFactor_ = opt_decayFactor || 2;
};


/**
 * The number of backoffs that have happened.
 * @type {number}
 * @private
 */
goog.math.ExponentialBackoff.prototype.currBackoffCount_ = 0;


/**
 * The number of decays that have happened.
 * @type {number}
 * @private
 */
goog.math.ExponentialBackoff.prototype.currDecayCount_ = 0;


/**
 * Resets the backoff value to its initial value.
 */
goog.math.ExponentialBackoff.prototype.reset = function() {
  this.currValue_ = this.initialValue_;
  this.currBaseValue_ = this.initialValue_;
  this.currBackoffCount_ = 0;
  this.currDecayCount_ = 0;
};


/**
 * @return {number} The current backoff value.
 */
goog.math.ExponentialBackoff.prototype.getValue = function() {
  return this.currValue_;
};


/**
 * @return {number} The number of times this class has backed off.
 */
goog.math.ExponentialBackoff.prototype.getBackoffCount = function() {
  return this.currBackoffCount_;
};


/**
 * @return {number} The number of times this class has decayed.
 */
goog.math.ExponentialBackoff.prototype.getDecayCount = function() {
  return this.currDecayCount_;
};


/**
 * Initiates a backoff.
 */
goog.math.ExponentialBackoff.prototype.backoff = function() {
  // If we haven't hit the maximum value yet, keep increasing the base value.
  this.currBaseValue_ =
      Math.min(this.maxValue_, this.currBaseValue_ * this.backoffFactor_);

  var randomWait = this.randomFactor_ ?
      Math.round(
          this.randomFactor_ * (Math.random() - 0.5) * 2 *
          this.currBaseValue_) :
      0;
  this.currValue_ = Math.min(this.maxValue_, this.currBaseValue_ + randomWait);
  this.currBackoffCount_++;
};


/**
 * Initiates a decay.
 */
goog.math.ExponentialBackoff.prototype.decay = function() {
  // If we haven't hit the initial value yet, keep decreasing the base value.
  this.currBaseValue_ =
      Math.max(this.initialValue_, this.currBaseValue_ / this.decayFactor_);

  var randomWait = this.randomFactor_ ?
      Math.round(
          this.randomFactor_ * (Math.random() - 0.5) * 2 *
          this.currBaseValue_) :
      0;
  this.currValue_ =
      Math.max(this.initialValue_, this.currBaseValue_ + randomWait);
  this.currDecayCount_++;
};