blob: c17db4acf3cd70d99fd52457f369b590f7f45572 [file] [log] [blame]
Chris Wrenc8673a82016-05-17 17:11:29 -04001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License
15 */
16
17package com.android.server.notification;
18
19
20/**
21 * Exponentially weighted moving average estimator for event rate.
22 *
23 * {@hide}
24 */
25public class RateEstimator {
26 private static final double RATE_ALPHA = 0.8;
27 private static final double MINIMUM_DT = 0.0005;
Tony Makfd303322016-05-24 18:57:50 +010028 private Long mLastEventTime;
29 private Float mInterarrivalTime;
Chris Wrenc8673a82016-05-17 17:11:29 -040030
Tony Makfd303322016-05-24 18:57:50 +010031 public RateEstimator() {}
Chris Wrenc8673a82016-05-17 17:11:29 -040032
Tony Makfd303322016-05-24 18:57:50 +010033 /** Update the estimate to account for an event that just happened. */
Chris Wrenc8673a82016-05-17 17:11:29 -040034 public float update(long now) {
Tony Makfd303322016-05-24 18:57:50 +010035 float rate;
36 if (mLastEventTime == null) {
37 // No last event time, rate is zero.
38 rate = 0f;
39 } else {
40 // Calculate the new inter-arrival time based on last event time.
41 mInterarrivalTime = (float) getInterarrivalEstimate(now);
42 rate = (float) (1.0 / mInterarrivalTime);
43 }
Chris Wrenc8673a82016-05-17 17:11:29 -040044 mLastEventTime = now;
Tony Makfd303322016-05-24 18:57:50 +010045 return rate;
Chris Wrenc8673a82016-05-17 17:11:29 -040046 }
47
48 /** @return the estimated rate if there were a new event right now. */
49 public float getRate(long now) {
Tony Makfd303322016-05-24 18:57:50 +010050 if (mLastEventTime == null) {
51 return 0f;
52 }
Chris Wrenc8673a82016-05-17 17:11:29 -040053 return (float) (1.0 / getInterarrivalEstimate(now));
54 }
55
56 /** @return the average inter-arrival time if there were a new event right now. */
57 private double getInterarrivalEstimate(long now) {
Chris Wrenc8673a82016-05-17 17:11:29 -040058 double dt = ((double) (now - mLastEventTime)) / 1000.0;
59 dt = Math.max(dt, MINIMUM_DT);
Tony Makfd303322016-05-24 18:57:50 +010060 if (mInterarrivalTime == null) {
61 // No last inter-arrival time, return the new value directly.
62 return dt;
63 }
64 // a*iat_old + (1-a)*(t_now-t_last)
Chris Wrenc8673a82016-05-17 17:11:29 -040065 return (RATE_ALPHA * mInterarrivalTime + (1.0 - RATE_ALPHA) * dt);
66 }
67}