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 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
|
/*
* Copyright (C) 2021 The Android Open Source Project
* Android BPF library - public API
*
* 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.
*/
#pragma once
#include <inttypes.h>
#include <log/log.h>
#include <time.h>
#include <sstream>
#include <string>
/**
* An object that can track changes of some value over time, taking into account an additional
* dimension: the object's state. As the tracked value changes, the deltas are distributed
* among the object states in accordance with the time spent in those states.
*/
namespace android {
namespace battery {
#define REPORTED_INVALID_TIMESTAMP_DELTA_MS 60000
typedef uint16_t state_t;
template <class T>
class MultiStateCounter {
uint16_t stateCount;
state_t currentState;
time_t lastStateChangeTimestamp;
T emptyValue;
T lastValue;
time_t lastUpdateTimestamp;
T deltaValue;
bool isEnabled;
struct State {
time_t timeInStateSinceUpdate;
T counter;
};
State* states;
public:
MultiStateCounter(uint16_t stateCount, const T& emptyValue);
virtual ~MultiStateCounter();
void setEnabled(bool enabled, time_t timestamp);
void setState(state_t state, time_t timestamp);
void setValue(state_t state, const T& value);
/**
* Updates the value by distributing the delta from the previously set value
* among states according to their respective time-in-state.
* Returns the delta from the previously set value.
*/
const T& updateValue(const T& value, time_t timestamp);
/**
* Updates the value by distributing the specified increment among states according
* to their respective time-in-state.
*/
void incrementValue(const T& increment, time_t timestamp);
/**
* Adds the specified increment to the value for the current state, without affecting
* the last updated value or timestamp. Ignores partial time-in-state: the entirety of
* the increment is given to the current state.
*/
void addValue(const T& increment);
void reset();
uint16_t getStateCount();
const T& getCount(state_t state);
std::string toString();
private:
/**
* Subtracts previousValue from newValue and returns the result in outValue.
* Returns true iff the combination of previousValue and newValue is valid
* (newValue >= prevValue)
*/
bool delta(const T& previousValue, const T& newValue, T* outValue) const;
/**
* Adds value2 to value1 and stores the result in value1. Denominator is
* guaranteed to be non-zero.
*/
void add(T* value1, const T& value2, const uint64_t numerator,
const uint64_t denominator) const;
std::string valueToString(const T& value) const;
};
// ---------------------- MultiStateCounter Implementation -------------------------
// Since MultiStateCounter is a template, the implementation must be inlined.
template <class T>
MultiStateCounter<T>::MultiStateCounter(uint16_t stateCount, const T& emptyValue)
: stateCount(stateCount),
currentState(0),
lastStateChangeTimestamp(-1),
emptyValue(emptyValue),
lastValue(emptyValue),
lastUpdateTimestamp(-1),
deltaValue(emptyValue),
isEnabled(true) {
states = new State[stateCount];
for (int i = 0; i < stateCount; i++) {
states[i].timeInStateSinceUpdate = 0;
states[i].counter = emptyValue;
}
}
template <class T>
MultiStateCounter<T>::~MultiStateCounter() {
delete[] states;
};
template <class T>
void MultiStateCounter<T>::setEnabled(bool enabled, time_t timestamp) {
if (enabled == isEnabled) {
return;
}
if (isEnabled) {
// Confirm the current state for the side-effect of updating the time-in-state
// counter for the current state.
setState(currentState, timestamp);
isEnabled = false;
} else {
// If the counter is being enabled with an out-of-order timestamp, just push back
// the timestamp to avoid having the situation where
// timeInStateSinceUpdate > timeSinceUpdate
if (timestamp < lastUpdateTimestamp) {
timestamp = lastUpdateTimestamp;
}
if (lastStateChangeTimestamp >= 0) {
lastStateChangeTimestamp = timestamp;
}
isEnabled = true;
}
}
template <class T>
void MultiStateCounter<T>::setState(state_t state, time_t timestamp) {
if (isEnabled && lastStateChangeTimestamp >= 0 && lastUpdateTimestamp >= 0) {
// If the update arrived out-of-order, just push back the timestamp to
// avoid having the situation where timeInStateSinceUpdate > timeSinceUpdate
if (timestamp < lastUpdateTimestamp) {
timestamp = lastUpdateTimestamp;
}
if (timestamp >= lastStateChangeTimestamp) {
states[currentState].timeInStateSinceUpdate += timestamp - lastStateChangeTimestamp;
} else {
if (timestamp < lastStateChangeTimestamp - REPORTED_INVALID_TIMESTAMP_DELTA_MS) {
ALOGE("setState is called with an earlier timestamp: %lu, "
"previous timestamp: %lu\n",
(unsigned long)timestamp, (unsigned long)lastStateChangeTimestamp);
}
// The accumulated durations have become unreliable. For example, if the timestamp
// sequence was 1000, 2000, 1000, 3000, if we accumulated the positive deltas,
// we would get 4000, which is greater than (last - first). This could lead to
// counts exceeding 100%.
for (int i = 0; i < stateCount; i++) {
states[i].timeInStateSinceUpdate = 0;
}
}
}
currentState = state;
lastStateChangeTimestamp = timestamp;
}
template <class T>
void MultiStateCounter<T>::setValue(state_t state, const T& value) {
states[state].counter = value;
}
template <class T>
const T& MultiStateCounter<T>::updateValue(const T& value, time_t timestamp) {
T* returnValue = &emptyValue;
// If the counter is disabled, we ignore the update, except when the counter got disabled after
// the previous update, in which case we still need to pick up the residual delta.
if (isEnabled || lastUpdateTimestamp < lastStateChangeTimestamp) {
// If the update arrived out of order, just push back the timestamp to
// avoid having the situation where timeInStateSinceUpdate > timeSinceUpdate
if (timestamp < lastStateChangeTimestamp) {
timestamp = lastStateChangeTimestamp;
}
// Confirm the current state for the side-effect of updating the time-in-state
// counter for the current state.
setState(currentState, timestamp);
if (lastUpdateTimestamp >= 0) {
if (timestamp > lastUpdateTimestamp) {
if (delta(lastValue, value, &deltaValue)) {
returnValue = &deltaValue;
time_t timeSinceUpdate = timestamp - lastUpdateTimestamp;
for (int i = 0; i < stateCount; i++) {
time_t timeInState = states[i].timeInStateSinceUpdate;
if (timeInState) {
add(&states[i].counter, deltaValue, timeInState, timeSinceUpdate);
states[i].timeInStateSinceUpdate = 0;
}
}
} else {
std::stringstream str;
str << "updateValue is called with a value " << valueToString(value)
<< ", which is lower than the previous value " << valueToString(lastValue)
<< "\n";
ALOGE("%s", str.str().c_str());
for (int i = 0; i < stateCount; i++) {
states[i].timeInStateSinceUpdate = 0;
}
}
} else if (timestamp < lastUpdateTimestamp) {
if (timestamp < lastUpdateTimestamp - REPORTED_INVALID_TIMESTAMP_DELTA_MS) {
ALOGE("updateValue is called with an earlier timestamp: %lu, previous: %lu\n",
(unsigned long)timestamp, (unsigned long)lastUpdateTimestamp);
}
for (int i = 0; i < stateCount; i++) {
states[i].timeInStateSinceUpdate = 0;
}
}
}
}
lastValue = value;
lastUpdateTimestamp = timestamp;
return *returnValue;
}
template <class T>
void MultiStateCounter<T>::incrementValue(const T& increment, time_t timestamp) {
T newValue = lastValue;
add(&newValue, increment, 1 /* numerator */, 1 /* denominator */);
updateValue(newValue, timestamp);
}
template <class T>
void MultiStateCounter<T>::addValue(const T& value) {
if (!isEnabled) {
return;
}
add(&states[currentState].counter, value, 1 /* numerator */, 1 /* denominator */);
}
template <class T>
void MultiStateCounter<T>::reset() {
lastStateChangeTimestamp = -1;
lastUpdateTimestamp = -1;
for (int i = 0; i < stateCount; i++) {
states[i].timeInStateSinceUpdate = 0;
states[i].counter = emptyValue;
}
}
template <class T>
uint16_t MultiStateCounter<T>::getStateCount() {
return stateCount;
}
template <class T>
const T& MultiStateCounter<T>::getCount(state_t state) {
return states[state].counter;
}
template <class T>
std::string MultiStateCounter<T>::toString() {
std::stringstream str;
str << "[";
for (int i = 0; i < stateCount; i++) {
if (i != 0) {
str << ", ";
}
str << i << ": " << valueToString(states[i].counter);
if (states[i].timeInStateSinceUpdate > 0) {
str << " timeInStateSinceUpdate: " << states[i].timeInStateSinceUpdate;
}
}
str << "]";
if (lastUpdateTimestamp >= 0) {
str << " updated: " << lastUpdateTimestamp;
}
if (lastStateChangeTimestamp >= 0) {
str << " currentState: " << currentState;
if (lastStateChangeTimestamp > lastUpdateTimestamp) {
str << " stateChanged: " << lastStateChangeTimestamp;
}
} else {
str << " currentState: none";
}
if (!isEnabled) {
str << " disabled";
}
return str.str();
}
} // namespace battery
} // namespace android
|