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
|
/*
* Copyright (c) 2012 Nicira, Inc.
*
* 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.
*/
#include <config.h>
#include "token-bucket.h"
#include "poll-loop.h"
#include "sat-math.h"
#include "timeval.h"
#include "util.h"
/* Initializes 'tb' to accumulate 'rate' tokens per millisecond, with a
* maximum of 'burst' tokens.
*
* The token bucket is initially full.
*
* It may be more convenient to use TOKEN_BUCKET_INIT. */
void
token_bucket_init(struct token_bucket *tb,
unsigned int rate, unsigned int burst)
{
tb->rate = rate;
tb->burst = burst;
tb->tokens = 0;
tb->last_fill = LLONG_MIN;
}
/* Changes 'tb' to accumulate 'rate' tokens per millisecond, with a maximum of
* 'burst' tokens.
*
* 'tb' must already have been initialized with TOKEN_BUCKET_INIT or
* token_bucket_init(). */
void
token_bucket_set(struct token_bucket *tb,
unsigned int rate, unsigned int burst)
{
tb->rate = rate;
tb->burst = burst;
if (burst > tb->tokens) {
tb->tokens = burst;
}
}
/* Attempts to remove 'n' tokens from 'tb'. Returns true if successful, false
* if 'tb' contained fewer than 'n' tokens (and thus 'n' tokens could not be
* removed) . */
bool
token_bucket_withdraw(struct token_bucket *tb, unsigned int n)
{
if (tb->tokens < n) {
long long int now = time_msec();
if (now > tb->last_fill) {
unsigned long long int elapsed_ull
= (unsigned long long int) now - tb->last_fill;
unsigned int elapsed = MIN(UINT_MAX, elapsed_ull);
unsigned int add = sat_mul(tb->rate, elapsed);
unsigned int tokens = sat_add(tb->tokens, add);
tb->tokens = MIN(tokens, tb->burst);
tb->last_fill = now;
}
if (tb->tokens < n) {
return false;
}
}
tb->tokens -= n;
return true;
}
/* Causes the poll loop to wake up when at least 'n' tokens will be available
* for withdrawal from 'tb'. */
void
token_bucket_wait(struct token_bucket *tb, unsigned int n)
{
if (tb->tokens >= n) {
poll_immediate_wake();
} else {
unsigned int need = n - tb->tokens;
poll_timer_wait_until(tb->last_fill + need / tb->rate + 1);
}
}
|