blob: 4c2c1d3e8c07e0151db595abcf35b41dc0cc943f [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;
Craig Tillerc0118b42016-12-29 12:17:57 -080044 estimator->ping_state = GRPC_BDP_PING_UNSCHEDULED;
Craig Tiller064db442016-10-20 09:34:58 -070045}
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) {
Craig Tillerc0118b42016-12-29 12:17:57 -080071 switch (estimator->ping_state) {
72 case GRPC_BDP_PING_UNSCHEDULED:
73 return true;
74 case GRPC_BDP_PING_SCHEDULED:
75 return false;
76 case GRPC_BDP_PING_STARTED:
77 *sampling(estimator) += num_bytes;
78 return false;
Craig Tiller56331f72016-10-20 13:43:07 -070079 }
Craig Tillerc0118b42016-12-29 12:17:57 -080080 GPR_UNREACHABLE_CODE(return false);
81}
82
83void grpc_bdp_estimator_schedule_ping(grpc_bdp_estimator *estimator) {
84 GPR_ASSERT(estimator->ping_state == GRPC_BDP_PING_UNSCHEDULED);
85 estimator->ping_state = GRPC_BDP_PING_SCHEDULED;
Craig Tiller56331f72016-10-20 13:43:07 -070086}
87
88void grpc_bdp_estimator_start_ping(grpc_bdp_estimator *estimator) {
Craig Tillerc0118b42016-12-29 12:17:57 -080089 GPR_ASSERT(estimator->ping_state == GRPC_BDP_PING_SCHEDULED);
90 estimator->ping_state = GRPC_BDP_PING_STARTED;
Craig Tiller56331f72016-10-20 13:43:07 -070091 if (estimator->num_samples == GRPC_BDP_SAMPLES) {
92 estimator->first_sample_idx++;
93 estimator->num_samples--;
94 }
95 *sampling(estimator) = 0;
96}
97
98void grpc_bdp_estimator_complete_ping(grpc_bdp_estimator *estimator) {
Craig Tillerc0118b42016-12-29 12:17:57 -080099 GPR_ASSERT(estimator->ping_state == GRPC_BDP_PING_STARTED);
Craig Tiller56331f72016-10-20 13:43:07 -0700100 estimator->num_samples++;
Craig Tillerc0118b42016-12-29 12:17:57 -0800101 estimator->ping_state = GRPC_BDP_PING_UNSCHEDULED;
Craig Tiller064db442016-10-20 09:34:58 -0700102}