blob: d9129925b307ae5780b22655c9c5ce9dc45a943f [file] [log] [blame]
Craig Tiller064db442016-10-20 09:34:58 -07001/*
2 *
3 * Copyright 2016, Google Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following disclaimer
14 * in the documentation and/or other materials provided with the
15 * distribution.
16 * * Neither the name of Google Inc. nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 */
33
34#include "src/core/lib/transport/bdp_estimator.h"
35
Craig Tiller56331f72016-10-20 13:43:07 -070036#include <stdlib.h>
37
38#include <grpc/support/log.h>
Craig Tiller064db442016-10-20 09:34:58 -070039#include <grpc/support/useful.h>
40
41void grpc_bdp_estimator_init(grpc_bdp_estimator *estimator) {
42 estimator->num_samples = 0;
43 estimator->first_sample_idx = 0;
44 estimator->sampling = false;
45}
46
Craig Tiller064db442016-10-20 09:34:58 -070047bool grpc_bdp_estimator_get_estimate(grpc_bdp_estimator *estimator,
48 int64_t *estimate) {
49 if (estimator->num_samples < GRPC_BDP_MIN_SAMPLES_FOR_ESTIMATE) {
50 return false;
51 }
52
Craig Tiller11a204c2016-10-20 16:51:08 -070053 *estimate = -1;
Craig Tiller064db442016-10-20 09:34:58 -070054 for (uint8_t i = 0; i < estimator->num_samples; i++) {
Craig Tiller11a204c2016-10-20 16:51:08 -070055 *estimate = GPR_MAX(
56 *estimate,
Craig Tiller064db442016-10-20 09:34:58 -070057 estimator
Craig Tiller11a204c2016-10-20 16:51:08 -070058 ->samples[(estimator->first_sample_idx + i) % GRPC_BDP_SAMPLES]);
Craig Tiller064db442016-10-20 09:34:58 -070059 }
Craig Tiller56331f72016-10-20 13:43:07 -070060 return true;
61}
62
63static int64_t *sampling(grpc_bdp_estimator *estimator) {
64 return &estimator
65 ->samples[(estimator->first_sample_idx + estimator->num_samples) %
66 GRPC_BDP_SAMPLES];
67}
68
69bool grpc_bdp_estimator_add_incoming_bytes(grpc_bdp_estimator *estimator,
70 int64_t num_bytes) {
71 if (estimator->sampling) {
72 *sampling(estimator) += num_bytes;
73 return false;
74 } else {
75 return true;
76 }
77}
78
79void grpc_bdp_estimator_start_ping(grpc_bdp_estimator *estimator) {
80 GPR_ASSERT(!estimator->sampling);
81 estimator->sampling = true;
82 if (estimator->num_samples == GRPC_BDP_SAMPLES) {
83 estimator->first_sample_idx++;
84 estimator->num_samples--;
85 }
86 *sampling(estimator) = 0;
87}
88
89void grpc_bdp_estimator_complete_ping(grpc_bdp_estimator *estimator) {
90 GPR_ASSERT(estimator->sampling);
91 estimator->num_samples++;
92 estimator->sampling = false;
Craig Tiller064db442016-10-20 09:34:58 -070093}