blob: 5e5149694be868161b66b4958bdf1bcc8bb33168 [file] [log] [blame]
Yao Chen729093d2017-10-16 10:33:26 -07001/*
2 * Copyright (C) 2017 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
Yao Chen3c0b95c2017-12-16 14:34:20 -080017#define DEBUG false
Yao Chen5154a372017-10-30 22:57:06 -070018
Yao Chen729093d2017-10-16 10:33:26 -070019#include "Log.h"
Yao Chen5154a372017-10-30 22:57:06 -070020#include "DurationMetricProducer.h"
Yao Chenb3561512017-11-21 18:07:17 -080021#include "guardrail/StatsdStats.h"
Yao Chen729093d2017-10-16 10:33:26 -070022#include "stats_util.h"
Yangster-mac20877162017-12-22 17:19:39 -080023#include "stats_log_util.h"
Yao Chen729093d2017-10-16 10:33:26 -070024
Yao Chen729093d2017-10-16 10:33:26 -070025#include <limits.h>
26#include <stdlib.h>
27
yrob0378b02017-11-09 20:36:25 -080028using android::util::FIELD_COUNT_REPEATED;
yro2b0f8862017-11-06 14:27:31 -080029using android::util::FIELD_TYPE_BOOL;
30using android::util::FIELD_TYPE_FLOAT;
31using android::util::FIELD_TYPE_INT32;
32using android::util::FIELD_TYPE_INT64;
33using android::util::FIELD_TYPE_MESSAGE;
Yangster-macd1815dc2017-11-13 21:43:15 -080034using android::util::FIELD_TYPE_STRING;
yro2b0f8862017-11-06 14:27:31 -080035using android::util::ProtoOutputStream;
Yao Chen729093d2017-10-16 10:33:26 -070036using std::string;
37using std::unordered_map;
38using std::vector;
39
40namespace android {
41namespace os {
42namespace statsd {
43
yro2b0f8862017-11-06 14:27:31 -080044// for StatsLogReport
Yangster-mac94e197c2018-01-02 16:03:03 -080045const int FIELD_ID_ID = 1;
yro2b0f8862017-11-06 14:27:31 -080046const int FIELD_ID_DURATION_METRICS = 6;
Yangster-mac9def8e32018-04-17 13:55:51 -070047const int FIELD_ID_TIME_BASE = 9;
48const int FIELD_ID_BUCKET_SIZE = 10;
49const int FIELD_ID_DIMENSION_PATH_IN_WHAT = 11;
50const int FIELD_ID_DIMENSION_PATH_IN_CONDITION = 12;
yro2b0f8862017-11-06 14:27:31 -080051// for DurationMetricDataWrapper
52const int FIELD_ID_DATA = 1;
53// for DurationMetricData
Yangster-mac468ff042018-01-17 12:26:34 -080054const int FIELD_ID_DIMENSION_IN_WHAT = 1;
55const int FIELD_ID_DIMENSION_IN_CONDITION = 2;
56const int FIELD_ID_BUCKET_INFO = 3;
Yangster-mac9def8e32018-04-17 13:55:51 -070057const int FIELD_ID_DIMENSION_LEAF_IN_WHAT = 4;
58const int FIELD_ID_DIMENSION_LEAF_IN_CONDITION = 5;
yro2b0f8862017-11-06 14:27:31 -080059// for DurationBucketInfo
yro2b0f8862017-11-06 14:27:31 -080060const int FIELD_ID_DURATION = 3;
Yangster-mac9def8e32018-04-17 13:55:51 -070061const int FIELD_ID_BUCKET_NUM = 4;
62const int FIELD_ID_START_BUCKET_ELAPSED_MILLIS = 5;
63const int FIELD_ID_END_BUCKET_ELAPSED_MILLIS = 6;
yro2b0f8862017-11-06 14:27:31 -080064
Yao Chenb3561512017-11-21 18:07:17 -080065DurationMetricProducer::DurationMetricProducer(const ConfigKey& key, const DurationMetric& metric,
Yao Chen729093d2017-10-16 10:33:26 -070066 const int conditionIndex, const size_t startIndex,
67 const size_t stopIndex, const size_t stopAllIndex,
Yao Chen0ea19902017-11-15 15:44:45 -080068 const bool nesting,
Yao Chen5154a372017-10-30 22:57:06 -070069 const sp<ConditionWizard>& wizard,
Yangster-mac20877162017-12-22 17:19:39 -080070 const FieldMatcher& internalDimensions,
Yangster-macb142cc82018-03-30 15:22:08 -070071 const int64_t startTimeNs)
Yangster-mac94e197c2018-01-02 16:03:03 -080072 : MetricProducer(metric.id(), key, startTimeNs, conditionIndex, wizard),
Yao Chenf09569f2017-12-13 17:00:51 -080073 mAggregationType(metric.aggregation_type()),
Yao Chen729093d2017-10-16 10:33:26 -070074 mStartIndex(startIndex),
75 mStopIndex(stopIndex),
Yao Chen5154a372017-10-30 22:57:06 -070076 mStopAllIndex(stopAllIndex),
Yangster13fb7e42018-03-07 17:30:49 -080077 mNested(nesting),
78 mContainANYPositionInInternalDimensions(false) {
Yao Chen729093d2017-10-16 10:33:26 -070079 // TODO: The following boiler plate code appears in all MetricProducers, but we can't abstract
80 // them in the base class, because the proto generated CountMetric, and DurationMetric are
81 // not related. Maybe we should add a template in the future??
Yangster-macb8144812018-01-04 10:56:23 -080082 if (metric.has_bucket()) {
yro59cc24d2018-02-13 20:17:32 -080083 mBucketSizeNs =
84 TimeUnitToBucketSizeInMillisGuardrailed(key.GetUid(), metric.bucket()) * 1000000;
Yao Chen729093d2017-10-16 10:33:26 -070085 } else {
86 mBucketSizeNs = LLONG_MAX;
87 }
88
Yao Chen8a8d16c2018-02-08 14:50:40 -080089 if (metric.has_dimensions_in_what()) {
90 translateFieldMatcher(metric.dimensions_in_what(), &mDimensionsInWhat);
Yangster13fb7e42018-03-07 17:30:49 -080091 mContainANYPositionInDimensionsInWhat = HasPositionANY(metric.dimensions_in_what());
Yao Chen8a8d16c2018-02-08 14:50:40 -080092 }
93
94 if (internalDimensions.has_field()) {
95 translateFieldMatcher(internalDimensions, &mInternalDimensions);
Yangster13fb7e42018-03-07 17:30:49 -080096 mContainANYPositionInInternalDimensions = HasPositionANY(internalDimensions);
Yao Chen8a8d16c2018-02-08 14:50:40 -080097 }
Yangster-mace06cfd72018-03-10 23:22:59 -080098 if (mContainANYPositionInInternalDimensions) {
99 ALOGE("Position ANY in internal dimension not supported.");
100 }
101 if (mContainANYPositionInDimensionsInWhat) {
102 ALOGE("Position ANY in dimension_in_what not supported.");
103 }
Yao Chen8a8d16c2018-02-08 14:50:40 -0800104
105 if (metric.has_dimensions_in_condition()) {
106 translateFieldMatcher(metric.dimensions_in_condition(), &mDimensionsInCondition);
107 }
Yao Chen729093d2017-10-16 10:33:26 -0700108
Yangster-mac9def8e32018-04-17 13:55:51 -0700109 mSliceByPositionALL = HasPositionALL(metric.dimensions_in_what()) ||
110 HasPositionALL(metric.dimensions_in_condition());
111
Yao Chen729093d2017-10-16 10:33:26 -0700112 if (metric.links().size() > 0) {
Yao Chen8a8d16c2018-02-08 14:50:40 -0800113 for (const auto& link : metric.links()) {
114 Metric2Condition mc;
115 mc.conditionId = link.condition();
116 translateFieldMatcher(link.fields_in_what(), &mc.metricFields);
117 translateFieldMatcher(link.fields_in_condition(), &mc.conditionFields);
118 mMetric2ConditionLinks.push_back(mc);
119 }
Yao Chen729093d2017-10-16 10:33:26 -0700120 }
Yao Chen8a8d16c2018-02-08 14:50:40 -0800121 mConditionSliced = (metric.links().size() > 0) || (mDimensionsInCondition.size() > 0);
Yangster13fb7e42018-03-07 17:30:49 -0800122 mUnSlicedPartCondition = ConditionState::kUnknown;
Yao Chen729093d2017-10-16 10:33:26 -0700123
Yangster13fb7e42018-03-07 17:30:49 -0800124 mUseWhatDimensionAsInternalDimension = equalDimensions(mDimensionsInWhat, mInternalDimensions);
125 if (mWizard != nullptr && mConditionTrackerIndex >= 0) {
126 mSameConditionDimensionsInTracker =
127 mWizard->equalOutputDimensions(mConditionTrackerIndex, mDimensionsInCondition);
128 if (mMetric2ConditionLinks.size() == 1) {
129 mHasLinksToAllConditionDimensionsInTracker =
130 mWizard->equalOutputDimensions(mConditionTrackerIndex,
131 mMetric2ConditionLinks.begin()->conditionFields);
Yangster-mac53928882018-02-25 23:02:56 -0800132 }
Yangster-mac53928882018-02-25 23:02:56 -0800133 }
Yangster-mac94e197c2018-01-02 16:03:03 -0800134 VLOG("metric %lld created. bucket size %lld start_time: %lld", (long long)metric.id(),
Yangster-mac15f6bbc2018-04-08 11:52:26 -0700135 (long long)mBucketSizeNs, (long long)mTimeBaseNs);
Yao Chen729093d2017-10-16 10:33:26 -0700136}
137
138DurationMetricProducer::~DurationMetricProducer() {
139 VLOG("~DurationMetric() called");
140}
141
Yangster-mac932ecec2018-02-01 10:23:52 -0800142sp<AnomalyTracker> DurationMetricProducer::addAnomalyTracker(
143 const Alert &alert, const sp<AlarmMonitor>& anomalyAlarmMonitor) {
Bookatz857aaa52017-12-19 15:29:06 -0800144 std::lock_guard<std::mutex> lock(mMutex);
Bookatz423f7532018-03-08 15:45:14 -0800145 if (mAggregationType == DurationMetric_AggregationType_SUM) {
146 if (alert.trigger_if_sum_gt() > alert.num_buckets() * mBucketSizeNs) {
147 ALOGW("invalid alert for SUM: threshold (%f) > possible recordable value (%d x %lld)",
148 alert.trigger_if_sum_gt(), alert.num_buckets(), (long long)mBucketSizeNs);
149 return nullptr;
150 }
151 }
Yangster-mac932ecec2018-02-01 10:23:52 -0800152 sp<DurationAnomalyTracker> anomalyTracker =
153 new DurationAnomalyTracker(alert, mConfigKey, anomalyAlarmMonitor);
Bookatz857aaa52017-12-19 15:29:06 -0800154 if (anomalyTracker != nullptr) {
155 mAnomalyTrackers.push_back(anomalyTracker);
156 }
157 return anomalyTracker;
Bookatz450099d2017-11-30 17:09:30 -0800158}
159
Yao Chen5154a372017-10-30 22:57:06 -0700160unique_ptr<DurationTracker> DurationMetricProducer::createDurationTracker(
Yangster-mac93694462018-01-22 20:49:31 -0800161 const MetricDimensionKey& eventKey) const {
Yao Chenf09569f2017-12-13 17:00:51 -0800162 switch (mAggregationType) {
Stefan Lafoncfed20b2017-11-18 09:26:53 -0800163 case DurationMetric_AggregationType_SUM:
Yao Chenb3561512017-11-21 18:07:17 -0800164 return make_unique<OringDurationTracker>(
Yangster-mac93694462018-01-22 20:49:31 -0800165 mConfigKey, mMetricId, eventKey, mWizard, mConditionTrackerIndex,
David Chen27785a82018-01-19 17:06:45 -0800166 mDimensionsInCondition, mNested, mCurrentBucketStartTimeNs, mCurrentBucketNum,
Yangster-mac15f6bbc2018-04-08 11:52:26 -0700167 mTimeBaseNs, mBucketSizeNs, mConditionSliced,
Yangster13fb7e42018-03-07 17:30:49 -0800168 mHasLinksToAllConditionDimensionsInTracker, mAnomalyTrackers);
Stefan Lafoncfed20b2017-11-18 09:26:53 -0800169 case DurationMetric_AggregationType_MAX_SPARSE:
Yao Chenb3561512017-11-21 18:07:17 -0800170 return make_unique<MaxDurationTracker>(
Yangster-mac93694462018-01-22 20:49:31 -0800171 mConfigKey, mMetricId, eventKey, mWizard, mConditionTrackerIndex,
David Chen27785a82018-01-19 17:06:45 -0800172 mDimensionsInCondition, mNested, mCurrentBucketStartTimeNs, mCurrentBucketNum,
Yangster-mac15f6bbc2018-04-08 11:52:26 -0700173 mTimeBaseNs, mBucketSizeNs, mConditionSliced,
Yangster13fb7e42018-03-07 17:30:49 -0800174 mHasLinksToAllConditionDimensionsInTracker, mAnomalyTrackers);
175 }
176}
177
178// SlicedConditionChange optimization case 1:
179// 1. If combination condition, logical operation is AND, only one sliced child predicate.
180// 2. No condition in dimension
181// 3. The links covers all dimension fields in the sliced child condition predicate.
Yao Chen427d3722018-03-22 15:21:52 -0700182void DurationMetricProducer::onSlicedConditionMayChangeLocked_opt1(bool condition,
Yangster-macb142cc82018-03-30 15:22:08 -0700183 const int64_t eventTime) {
Yangster13fb7e42018-03-07 17:30:49 -0800184 if (mMetric2ConditionLinks.size() != 1 ||
185 !mHasLinksToAllConditionDimensionsInTracker ||
186 !mDimensionsInCondition.empty()) {
187 return;
188 }
189
190 bool currentUnSlicedPartCondition = true;
191 if (!mWizard->IsSimpleCondition(mConditionTrackerIndex)) {
192 ConditionState unslicedPartState =
193 mWizard->getUnSlicedPartConditionState(mConditionTrackerIndex);
194 // When the unsliced part is still false, return directly.
195 if (mUnSlicedPartCondition == ConditionState::kFalse &&
196 unslicedPartState == ConditionState::kFalse) {
197 return;
198 }
199 mUnSlicedPartCondition = unslicedPartState;
200 currentUnSlicedPartCondition = mUnSlicedPartCondition > 0;
201 }
202
203 auto dimensionsChangedToTrue = mWizard->getChangedToTrueDimensions(mConditionTrackerIndex);
204 auto dimensionsChangedToFalse = mWizard->getChangedToFalseDimensions(mConditionTrackerIndex);
205
206 // The condition change is from the unsliced predicates.
207 // We need to find out the true dimensions from the sliced predicate and flip their condition
208 // state based on the new unsliced condition state.
209 if (dimensionsChangedToTrue == nullptr || dimensionsChangedToFalse == nullptr ||
210 (dimensionsChangedToTrue->empty() && dimensionsChangedToFalse->empty())) {
211 std::set<HashableDimensionKey> trueConditionDimensions;
212 mWizard->getTrueSlicedDimensions(mConditionTrackerIndex, &trueConditionDimensions);
213 for (auto& whatIt : mCurrentSlicedDurationTrackerMap) {
214 HashableDimensionKey linkedConditionDimensionKey;
215 getDimensionForCondition(whatIt.first.getValues(),
216 mMetric2ConditionLinks[0],
217 &linkedConditionDimensionKey);
218 if (trueConditionDimensions.find(linkedConditionDimensionKey) !=
219 trueConditionDimensions.end()) {
220 for (auto& condIt : whatIt.second) {
221 condIt.second->onConditionChanged(
222 currentUnSlicedPartCondition, eventTime);
223 }
224 }
225 }
226 } else {
227 // Handle the condition change from the sliced predicate.
228 if (currentUnSlicedPartCondition) {
229 for (auto& whatIt : mCurrentSlicedDurationTrackerMap) {
230 HashableDimensionKey linkedConditionDimensionKey;
231 getDimensionForCondition(whatIt.first.getValues(),
232 mMetric2ConditionLinks[0],
233 &linkedConditionDimensionKey);
234 if (dimensionsChangedToTrue->find(linkedConditionDimensionKey) !=
235 dimensionsChangedToTrue->end()) {
236 for (auto& condIt : whatIt.second) {
237 condIt.second->onConditionChanged(true, eventTime);
238 }
239 }
240 if (dimensionsChangedToFalse->find(linkedConditionDimensionKey) !=
241 dimensionsChangedToFalse->end()) {
242 for (auto& condIt : whatIt.second) {
243 condIt.second->onConditionChanged(false, eventTime);
244 }
245 }
246 }
247 }
248 }
249}
250
251
252// SlicedConditionChange optimization case 2:
253// 1. If combination condition, logical operation is AND, only one sliced child predicate.
254// 2. Has dimensions_in_condition and it equals to the output dimensions of the sliced predicate.
Yao Chen427d3722018-03-22 15:21:52 -0700255void DurationMetricProducer::onSlicedConditionMayChangeLocked_opt2(bool condition,
Yangster-macb142cc82018-03-30 15:22:08 -0700256 const int64_t eventTime) {
Yangster13fb7e42018-03-07 17:30:49 -0800257 if (mMetric2ConditionLinks.size() > 1 || !mSameConditionDimensionsInTracker) {
258 return;
259 }
260
261 auto dimensionsChangedToTrue = mWizard->getChangedToTrueDimensions(mConditionTrackerIndex);
262 auto dimensionsChangedToFalse = mWizard->getChangedToFalseDimensions(mConditionTrackerIndex);
263
264 bool currentUnSlicedPartCondition = true;
265 if (!mWizard->IsSimpleCondition(mConditionTrackerIndex)) {
266 ConditionState unslicedPartState =
267 mWizard->getUnSlicedPartConditionState(mConditionTrackerIndex);
268 // When the unsliced part is still false, return directly.
269 if (mUnSlicedPartCondition == ConditionState::kFalse &&
270 unslicedPartState == ConditionState::kFalse) {
271 return;
272 }
273 mUnSlicedPartCondition = unslicedPartState;
274 currentUnSlicedPartCondition = mUnSlicedPartCondition > 0;
275 }
276
277 const std::set<HashableDimensionKey>* trueDimensionsToProcess = nullptr;
278 const std::set<HashableDimensionKey>* falseDimensionsToProcess = nullptr;
279
280 std::set<HashableDimensionKey> currentTrueConditionDimensions;
281 if (dimensionsChangedToTrue == nullptr || dimensionsChangedToFalse == nullptr ||
282 (dimensionsChangedToTrue->empty() && dimensionsChangedToFalse->empty())) {
283 mWizard->getTrueSlicedDimensions(mConditionTrackerIndex, &currentTrueConditionDimensions);
284 trueDimensionsToProcess = &currentTrueConditionDimensions;
285 } else if (currentUnSlicedPartCondition) {
286 // Handles the condition change from the sliced predicate. If the unsliced condition state
287 // is not true, not need to do anything.
288 trueDimensionsToProcess = dimensionsChangedToTrue;
289 falseDimensionsToProcess = dimensionsChangedToFalse;
290 }
291
292 if (trueDimensionsToProcess == nullptr && falseDimensionsToProcess == nullptr) {
293 return;
294 }
295
296 for (auto& whatIt : mCurrentSlicedDurationTrackerMap) {
297 if (falseDimensionsToProcess != nullptr) {
298 for (const auto& changedDim : *falseDimensionsToProcess) {
299 auto condIt = whatIt.second.find(changedDim);
300 if (condIt != whatIt.second.end()) {
301 condIt->second->onConditionChanged(false, eventTime);
302 }
303 }
304 }
305 if (trueDimensionsToProcess != nullptr) {
306 HashableDimensionKey linkedConditionDimensionKey;
307 if (!trueDimensionsToProcess->empty() && mMetric2ConditionLinks.size() == 1) {
308 getDimensionForCondition(whatIt.first.getValues(),
309 mMetric2ConditionLinks[0],
310 &linkedConditionDimensionKey);
311 }
312 for (auto& trueDim : *trueDimensionsToProcess) {
313 auto condIt = whatIt.second.find(trueDim);
314 if (condIt != whatIt.second.end()) {
315 condIt->second->onConditionChanged(
316 currentUnSlicedPartCondition, eventTime);
317 } else {
318 if (mMetric2ConditionLinks.size() == 0 ||
319 trueDim.contains(linkedConditionDimensionKey)) {
320 if (!whatIt.second.empty()) {
Yangster-mac306ccc22018-03-24 15:03:40 -0700321 auto newEventKey = MetricDimensionKey(whatIt.first, trueDim);
322 if (hitGuardRailLocked(newEventKey)) {
323 continue;
324 }
Yangster13fb7e42018-03-07 17:30:49 -0800325 unique_ptr<DurationTracker> newTracker =
326 whatIt.second.begin()->second->clone(eventTime);
327 if (newTracker != nullptr) {
Yangster-mac306ccc22018-03-24 15:03:40 -0700328 newTracker->setEventKey(newEventKey);
Yangster13fb7e42018-03-07 17:30:49 -0800329 newTracker->onConditionChanged(true, eventTime);
330 whatIt.second[trueDim] = std::move(newTracker);
331 }
332 }
333 }
334 }
335 }
336 }
Yao Chen5154a372017-10-30 22:57:06 -0700337 }
338}
339
Yao Chen427d3722018-03-22 15:21:52 -0700340void DurationMetricProducer::onSlicedConditionMayChangeLocked(bool overallCondition,
Yangster-macb142cc82018-03-30 15:22:08 -0700341 const int64_t eventTime) {
Yangster-mac94e197c2018-01-02 16:03:03 -0800342 VLOG("Metric %lld onSlicedConditionMayChange", (long long)mMetricId);
Yangsterf2bee6f2017-11-29 12:01:05 -0800343 flushIfNeededLocked(eventTime);
Yangster-mac93694462018-01-22 20:49:31 -0800344
Yangster13fb7e42018-03-07 17:30:49 -0800345 if (!mConditionSliced) {
346 return;
347 }
348
349 bool changeDimTrackable = mWizard->IsChangedDimensionTrackable(mConditionTrackerIndex);
350 if (changeDimTrackable && mHasLinksToAllConditionDimensionsInTracker &&
351 mDimensionsInCondition.empty()) {
Yao Chen427d3722018-03-22 15:21:52 -0700352 onSlicedConditionMayChangeLocked_opt1(overallCondition, eventTime);
Yangster13fb7e42018-03-07 17:30:49 -0800353 return;
354 }
355
356 if (changeDimTrackable && mSameConditionDimensionsInTracker &&
357 mMetric2ConditionLinks.size() <= 1) {
Yao Chen427d3722018-03-22 15:21:52 -0700358 onSlicedConditionMayChangeLocked_opt2(overallCondition, eventTime);
Yangster13fb7e42018-03-07 17:30:49 -0800359 return;
360 }
361
Yao Chen729093d2017-10-16 10:33:26 -0700362 // Now for each of the on-going event, check if the condition has changed for them.
Yangster-mac53928882018-02-25 23:02:56 -0800363 for (auto& whatIt : mCurrentSlicedDurationTrackerMap) {
364 for (auto& pair : whatIt.second) {
Yao Chen427d3722018-03-22 15:21:52 -0700365 pair.second->onSlicedConditionMayChange(overallCondition, eventTime);
Yangster-mac53928882018-02-25 23:02:56 -0800366 }
Yao Chen729093d2017-10-16 10:33:26 -0700367 }
Yangster-mac93694462018-01-22 20:49:31 -0800368
Yangster-mac53928882018-02-25 23:02:56 -0800369 if (mDimensionsInCondition.empty()) {
370 return;
Yangster-mac93694462018-01-22 20:49:31 -0800371 }
Yangster-mac53928882018-02-25 23:02:56 -0800372
373 if (mMetric2ConditionLinks.empty()) {
374 std::unordered_set<HashableDimensionKey> conditionDimensionsKeySet;
375 mWizard->getMetConditionDimension(mConditionTrackerIndex, mDimensionsInCondition,
Yangster13fb7e42018-03-07 17:30:49 -0800376 !mSameConditionDimensionsInTracker,
Yangster-mac53928882018-02-25 23:02:56 -0800377 &conditionDimensionsKeySet);
378 for (const auto& whatIt : mCurrentSlicedDurationTrackerMap) {
379 for (const auto& pair : whatIt.second) {
380 conditionDimensionsKeySet.erase(pair.first);
Yangster-mac93694462018-01-22 20:49:31 -0800381 }
Yangster-mac53928882018-02-25 23:02:56 -0800382 }
383 for (const auto& conditionDimension : conditionDimensionsKeySet) {
384 for (auto& whatIt : mCurrentSlicedDurationTrackerMap) {
385 if (!whatIt.second.empty()) {
Yangster-mac306ccc22018-03-24 15:03:40 -0700386 auto newEventKey = MetricDimensionKey(whatIt.first, conditionDimension);
387 if (hitGuardRailLocked(newEventKey)) {
388 continue;
389 }
Yangster-mac53928882018-02-25 23:02:56 -0800390 unique_ptr<DurationTracker> newTracker =
391 whatIt.second.begin()->second->clone(eventTime);
Yangster13fb7e42018-03-07 17:30:49 -0800392 if (newTracker != nullptr) {
Yangster-mac306ccc22018-03-24 15:03:40 -0700393 newTracker->setEventKey(MetricDimensionKey(newEventKey));
Yao Chen427d3722018-03-22 15:21:52 -0700394 newTracker->onSlicedConditionMayChange(overallCondition, eventTime);
Yangster13fb7e42018-03-07 17:30:49 -0800395 whatIt.second[conditionDimension] = std::move(newTracker);
396 }
Yangster-mac53928882018-02-25 23:02:56 -0800397 }
398 }
399 }
400 } else {
401 for (auto& whatIt : mCurrentSlicedDurationTrackerMap) {
402 ConditionKey conditionKey;
403 for (const auto& link : mMetric2ConditionLinks) {
404 getDimensionForCondition(whatIt.first.getValues(), link,
405 &conditionKey[link.conditionId]);
406 }
407 std::unordered_set<HashableDimensionKey> conditionDimensionsKeys;
408 mWizard->query(mConditionTrackerIndex, conditionKey, mDimensionsInCondition,
Yangster13fb7e42018-03-07 17:30:49 -0800409 !mSameConditionDimensionsInTracker,
410 !mHasLinksToAllConditionDimensionsInTracker,
Yangster-mac53928882018-02-25 23:02:56 -0800411 &conditionDimensionsKeys);
412
413 for (const auto& conditionDimension : conditionDimensionsKeys) {
414 if (!whatIt.second.empty() &&
415 whatIt.second.find(conditionDimension) == whatIt.second.end()) {
Yangster-mac306ccc22018-03-24 15:03:40 -0700416 auto newEventKey = MetricDimensionKey(whatIt.first, conditionDimension);
417 if (hitGuardRailLocked(newEventKey)) {
418 continue;
419 }
Yangster-mac53928882018-02-25 23:02:56 -0800420 auto newTracker = whatIt.second.begin()->second->clone(eventTime);
Yangster13fb7e42018-03-07 17:30:49 -0800421 if (newTracker != nullptr) {
Yangster-mac306ccc22018-03-24 15:03:40 -0700422 newTracker->setEventKey(newEventKey);
Yao Chen427d3722018-03-22 15:21:52 -0700423 newTracker->onSlicedConditionMayChange(overallCondition, eventTime);
Yangster13fb7e42018-03-07 17:30:49 -0800424 whatIt.second[conditionDimension] = std::move(newTracker);
425 }
Yangster-mac53928882018-02-25 23:02:56 -0800426 }
427 }
Yangster-mac93694462018-01-22 20:49:31 -0800428 }
429 }
Yao Chen729093d2017-10-16 10:33:26 -0700430}
431
Yangsterf2bee6f2017-11-29 12:01:05 -0800432void DurationMetricProducer::onConditionChangedLocked(const bool conditionMet,
Yangster-macb142cc82018-03-30 15:22:08 -0700433 const int64_t eventTime) {
Yangster-mac94e197c2018-01-02 16:03:03 -0800434 VLOG("Metric %lld onConditionChanged", (long long)mMetricId);
Yao Chen729093d2017-10-16 10:33:26 -0700435 mCondition = conditionMet;
Yangsterf2bee6f2017-11-29 12:01:05 -0800436 flushIfNeededLocked(eventTime);
Yao Chen729093d2017-10-16 10:33:26 -0700437 // TODO: need to populate the condition change time from the event which triggers the condition
438 // change, instead of using current time.
Yangster-mac53928882018-02-25 23:02:56 -0800439 for (auto& whatIt : mCurrentSlicedDurationTrackerMap) {
440 for (auto& pair : whatIt.second) {
441 pair.second->onConditionChanged(conditionMet, eventTime);
442 }
Yao Chen729093d2017-10-16 10:33:26 -0700443 }
444}
445
Yangster-macb142cc82018-03-30 15:22:08 -0700446void DurationMetricProducer::dropDataLocked(const int64_t dropTimeNs) {
Yao Chen06dba5d2018-01-26 13:38:16 -0800447 flushIfNeededLocked(dropTimeNs);
448 mPastBuckets.clear();
449}
450
Yangster-maca802d732018-04-24 07:50:38 -0700451void DurationMetricProducer::clearPastBucketsLocked(const int64_t dumpTimeNs) {
452 flushIfNeededLocked(dumpTimeNs);
453 mPastBuckets.clear();
454}
455
Yangster-macb142cc82018-03-30 15:22:08 -0700456void DurationMetricProducer::onDumpReportLocked(const int64_t dumpTimeNs,
Yangster-mace68f3a52018-04-04 00:01:43 -0700457 const bool include_current_partial_bucket,
Yangster-mac9def8e32018-04-17 13:55:51 -0700458 std::set<string> *str_set,
Yao Chen288c6002017-12-12 13:43:18 -0800459 ProtoOutputStream* protoOutput) {
Yangster-mace68f3a52018-04-04 00:01:43 -0700460 if (include_current_partial_bucket) {
461 flushLocked(dumpTimeNs);
462 } else {
463 flushIfNeededLocked(dumpTimeNs);
464 }
Yangster-mac635b4b32018-01-23 20:17:35 -0800465 if (mPastBuckets.empty()) {
Yao Chen8a8d16c2018-02-08 14:50:40 -0800466 VLOG(" Duration metric, empty return");
Yangster-mac635b4b32018-01-23 20:17:35 -0800467 return;
468 }
Yao Chen6a8c7992017-11-29 20:02:07 +0000469
Yangster-mac94e197c2018-01-02 16:03:03 -0800470 protoOutput->write(FIELD_TYPE_INT64 | FIELD_ID_ID, (long long)mMetricId);
Yangster-mac9def8e32018-04-17 13:55:51 -0700471 protoOutput->write(FIELD_TYPE_INT64 | FIELD_ID_TIME_BASE, (long long)mTimeBaseNs);
472 protoOutput->write(FIELD_TYPE_INT64 | FIELD_ID_BUCKET_SIZE, (long long)mBucketSizeNs);
473
474 if (!mSliceByPositionALL) {
475 if (!mDimensionsInWhat.empty()) {
476 uint64_t dimenPathToken = protoOutput->start(
477 FIELD_TYPE_MESSAGE | FIELD_ID_DIMENSION_PATH_IN_WHAT);
478 writeDimensionPathToProto(mDimensionsInWhat, protoOutput);
479 protoOutput->end(dimenPathToken);
480 }
481 if (!mDimensionsInCondition.empty()) {
482 uint64_t dimenPathToken = protoOutput->start(
483 FIELD_TYPE_MESSAGE | FIELD_ID_DIMENSION_PATH_IN_CONDITION);
484 writeDimensionPathToProto(mDimensionsInCondition, protoOutput);
485 protoOutput->end(dimenPathToken);
486 }
487 }
488
Yi Jin5ee07872018-03-05 18:18:27 -0800489 uint64_t protoToken = protoOutput->start(FIELD_TYPE_MESSAGE | FIELD_ID_DURATION_METRICS);
Yao Chen288c6002017-12-12 13:43:18 -0800490
Yao Chen8a8d16c2018-02-08 14:50:40 -0800491 VLOG("Duration metric %lld dump report now...", (long long)mMetricId);
Yao Chen6a8c7992017-11-29 20:02:07 +0000492
Yao Chen729093d2017-10-16 10:33:26 -0700493 for (const auto& pair : mPastBuckets) {
Yangster-mac93694462018-01-22 20:49:31 -0800494 const MetricDimensionKey& dimensionKey = pair.first;
Yangster13fb7e42018-03-07 17:30:49 -0800495 VLOG(" dimension key %s", dimensionKey.toString().c_str());
Yao Chen1ff4f432017-11-16 17:01:40 -0800496
Yi Jin5ee07872018-03-05 18:18:27 -0800497 uint64_t wrapperToken =
Yao Chen288c6002017-12-12 13:43:18 -0800498 protoOutput->start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_DATA);
yro2b0f8862017-11-06 14:27:31 -0800499
Yangster-mac20877162017-12-22 17:19:39 -0800500 // First fill dimension.
Yangster-mac9def8e32018-04-17 13:55:51 -0700501 if (mSliceByPositionALL) {
502 uint64_t dimensionToken = protoOutput->start(
503 FIELD_TYPE_MESSAGE | FIELD_ID_DIMENSION_IN_WHAT);
504 writeDimensionToProto(dimensionKey.getDimensionKeyInWhat(), str_set, protoOutput);
505 protoOutput->end(dimensionToken);
yro2b0f8862017-11-06 14:27:31 -0800506
Yangster-mac9def8e32018-04-17 13:55:51 -0700507 if (dimensionKey.hasDimensionKeyInCondition()) {
508 uint64_t dimensionInConditionToken = protoOutput->start(
509 FIELD_TYPE_MESSAGE | FIELD_ID_DIMENSION_IN_CONDITION);
510 writeDimensionToProto(dimensionKey.getDimensionKeyInCondition(),
511 str_set, protoOutput);
512 protoOutput->end(dimensionInConditionToken);
513 }
514 } else {
515 writeDimensionLeafNodesToProto(dimensionKey.getDimensionKeyInWhat(),
516 FIELD_ID_DIMENSION_LEAF_IN_WHAT, str_set, protoOutput);
517 if (dimensionKey.hasDimensionKeyInCondition()) {
518 writeDimensionLeafNodesToProto(dimensionKey.getDimensionKeyInCondition(),
519 FIELD_ID_DIMENSION_LEAF_IN_CONDITION,
520 str_set, protoOutput);
521 }
Yangster-mac93694462018-01-22 20:49:31 -0800522 }
yro2b0f8862017-11-06 14:27:31 -0800523 // Then fill bucket_info (DurationBucketInfo).
524 for (const auto& bucket : pair.second) {
Yi Jin5ee07872018-03-05 18:18:27 -0800525 uint64_t bucketInfoToken = protoOutput->start(
Yao Chen288c6002017-12-12 13:43:18 -0800526 FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_BUCKET_INFO);
Yangster-mac9def8e32018-04-17 13:55:51 -0700527 if (bucket.mBucketEndNs - bucket.mBucketStartNs != mBucketSizeNs) {
528 protoOutput->write(FIELD_TYPE_INT64 | FIELD_ID_START_BUCKET_ELAPSED_MILLIS,
529 (long long)NanoToMillis(bucket.mBucketStartNs));
530 protoOutput->write(FIELD_TYPE_INT64 | FIELD_ID_END_BUCKET_ELAPSED_MILLIS,
531 (long long)NanoToMillis(bucket.mBucketEndNs));
532 } else {
533 protoOutput->write(FIELD_TYPE_INT64 | FIELD_ID_BUCKET_NUM,
534 (long long)(getBucketNumFromEndTimeNs(bucket.mBucketEndNs)));
535 }
Yao Chen288c6002017-12-12 13:43:18 -0800536 protoOutput->write(FIELD_TYPE_INT64 | FIELD_ID_DURATION, (long long)bucket.mDuration);
537 protoOutput->end(bucketInfoToken);
yro2b0f8862017-11-06 14:27:31 -0800538 VLOG("\t bucket [%lld - %lld] duration: %lld", (long long)bucket.mBucketStartNs,
539 (long long)bucket.mBucketEndNs, (long long)bucket.mDuration);
540 }
541
Yao Chen288c6002017-12-12 13:43:18 -0800542 protoOutput->end(wrapperToken);
Yao Chen729093d2017-10-16 10:33:26 -0700543 }
yro2b0f8862017-11-06 14:27:31 -0800544
Yao Chen288c6002017-12-12 13:43:18 -0800545 protoOutput->end(protoToken);
Yao Chenf60e0ba2017-11-29 15:06:41 -0800546 mPastBuckets.clear();
yro2b0f8862017-11-06 14:27:31 -0800547}
Yao Chen729093d2017-10-16 10:33:26 -0700548
Yangster-macb142cc82018-03-30 15:22:08 -0700549void DurationMetricProducer::flushIfNeededLocked(const int64_t& eventTimeNs) {
550 int64_t currentBucketEndTimeNs = getCurrentBucketEndTimeNs();
David Chen27785a82018-01-19 17:06:45 -0800551
552 if (currentBucketEndTimeNs > eventTimeNs) {
Yao Chen729093d2017-10-16 10:33:26 -0700553 return;
554 }
Yao Chen5154a372017-10-30 22:57:06 -0700555 VLOG("flushing...........");
Yangster-mac53928882018-02-25 23:02:56 -0800556 for (auto whatIt = mCurrentSlicedDurationTrackerMap.begin();
557 whatIt != mCurrentSlicedDurationTrackerMap.end();) {
558 for (auto it = whatIt->second.begin(); it != whatIt->second.end();) {
559 if (it->second->flushIfNeeded(eventTimeNs, &mPastBuckets)) {
Yangster13fb7e42018-03-07 17:30:49 -0800560 VLOG("erase bucket for key %s %s",
561 whatIt->first.toString().c_str(), it->first.toString().c_str());
Yangster-mac53928882018-02-25 23:02:56 -0800562 it = whatIt->second.erase(it);
563 } else {
564 ++it;
565 }
566 }
567 if (whatIt->second.empty()) {
568 whatIt = mCurrentSlicedDurationTrackerMap.erase(whatIt);
Yao Chend41c4222017-11-15 19:26:14 -0800569 } else {
Yangster-mac53928882018-02-25 23:02:56 -0800570 whatIt++;
Yao Chen729093d2017-10-16 10:33:26 -0700571 }
572 }
Yao Chen5154a372017-10-30 22:57:06 -0700573
David Chen27785a82018-01-19 17:06:45 -0800574 int numBucketsForward = 1 + (eventTimeNs - currentBucketEndTimeNs) / mBucketSizeNs;
575 mCurrentBucketStartTimeNs = currentBucketEndTimeNs + (numBucketsForward - 1) * mBucketSizeNs;
Yangster-mace2cd6d52017-11-09 20:38:30 -0800576 mCurrentBucketNum += numBucketsForward;
Yao Chen5154a372017-10-30 22:57:06 -0700577}
578
Yangster-macb142cc82018-03-30 15:22:08 -0700579void DurationMetricProducer::flushCurrentBucketLocked(const int64_t& eventTimeNs) {
Yangster-mac53928882018-02-25 23:02:56 -0800580 for (auto whatIt = mCurrentSlicedDurationTrackerMap.begin();
581 whatIt != mCurrentSlicedDurationTrackerMap.end();) {
582 for (auto it = whatIt->second.begin(); it != whatIt->second.end();) {
583 if (it->second->flushCurrentBucket(eventTimeNs, &mPastBuckets)) {
Yangster13fb7e42018-03-07 17:30:49 -0800584 VLOG("erase bucket for key %s %s", whatIt->first.toString().c_str(),
585 it->first.toString().c_str());
Yangster-mac53928882018-02-25 23:02:56 -0800586 it = whatIt->second.erase(it);
587 } else {
588 ++it;
589 }
590 }
591 if (whatIt->second.empty()) {
592 whatIt = mCurrentSlicedDurationTrackerMap.erase(whatIt);
David Chen27785a82018-01-19 17:06:45 -0800593 } else {
Yangster-mac53928882018-02-25 23:02:56 -0800594 whatIt++;
David Chen27785a82018-01-19 17:06:45 -0800595 }
596 }
597}
598
Yao Chen884c8c12018-01-26 10:36:25 -0800599void DurationMetricProducer::dumpStatesLocked(FILE* out, bool verbose) const {
Yangster-mac93694462018-01-22 20:49:31 -0800600 if (mCurrentSlicedDurationTrackerMap.size() == 0) {
Yao Chen884c8c12018-01-26 10:36:25 -0800601 return;
602 }
603
604 fprintf(out, "DurationMetric %lld dimension size %lu\n", (long long)mMetricId,
Yangster-mac93694462018-01-22 20:49:31 -0800605 (unsigned long)mCurrentSlicedDurationTrackerMap.size());
Yao Chen884c8c12018-01-26 10:36:25 -0800606 if (verbose) {
Yangster-mac53928882018-02-25 23:02:56 -0800607 for (const auto& whatIt : mCurrentSlicedDurationTrackerMap) {
608 for (const auto& slice : whatIt.second) {
Yangster13fb7e42018-03-07 17:30:49 -0800609 fprintf(out, "\t(what)%s\t(condition)%s\n", whatIt.first.toString().c_str(),
610 slice.first.toString().c_str());
Yangster-mac53928882018-02-25 23:02:56 -0800611 slice.second->dumpStates(out, verbose);
612 }
Yao Chen884c8c12018-01-26 10:36:25 -0800613 }
614 }
615}
616
Yangster-mac93694462018-01-22 20:49:31 -0800617bool DurationMetricProducer::hitGuardRailLocked(const MetricDimensionKey& newKey) {
Yangster-mac306ccc22018-03-24 15:03:40 -0700618 auto whatIt = mCurrentSlicedDurationTrackerMap.find(newKey.getDimensionKeyInWhat());
619 if (whatIt != mCurrentSlicedDurationTrackerMap.end()) {
620 auto condIt = whatIt->second.find(newKey.getDimensionKeyInCondition());
621 if (condIt != whatIt->second.end()) {
622 return false;
623 }
624 if (whatIt->second.size() > StatsdStats::kDimensionKeySizeSoftLimit - 1) {
625 size_t newTupleCount = whatIt->second.size() + 1;
626 StatsdStats::getInstance().noteMetricDimensionInConditionSize(
627 mConfigKey, mMetricId, newTupleCount);
628 // 2. Don't add more tuples, we are above the allowed threshold. Drop the data.
629 if (newTupleCount > StatsdStats::kDimensionKeySizeHardLimit) {
630 ALOGE("DurationMetric %lld dropping data for condition dimension key %s",
631 (long long)mMetricId, newKey.getDimensionKeyInCondition().toString().c_str());
632 return true;
633 }
634 }
635 } else {
636 // 1. Report the tuple count if the tuple count > soft limit
637 if (mCurrentSlicedDurationTrackerMap.size() > StatsdStats::kDimensionKeySizeSoftLimit - 1) {
638 size_t newTupleCount = mCurrentSlicedDurationTrackerMap.size() + 1;
639 StatsdStats::getInstance().noteMetricDimensionSize(
640 mConfigKey, mMetricId, newTupleCount);
641 // 2. Don't add more tuples, we are above the allowed threshold. Drop the data.
642 if (newTupleCount > StatsdStats::kDimensionKeySizeHardLimit) {
643 ALOGE("DurationMetric %lld dropping data for what dimension key %s",
644 (long long)mMetricId, newKey.getDimensionKeyInWhat().toString().c_str());
645 return true;
646 }
Yao Chenb3561512017-11-21 18:07:17 -0800647 }
648 }
649 return false;
650}
651
Yangster-mac53928882018-02-25 23:02:56 -0800652void DurationMetricProducer::handleStartEvent(const MetricDimensionKey& eventKey,
653 const ConditionKey& conditionKeys,
654 bool condition, const LogEvent& event) {
655 const auto& whatKey = eventKey.getDimensionKeyInWhat();
656 const auto& condKey = eventKey.getDimensionKeyInCondition();
Yao Chen5154a372017-10-30 22:57:06 -0700657
Yangster-mac53928882018-02-25 23:02:56 -0800658 auto whatIt = mCurrentSlicedDurationTrackerMap.find(whatKey);
659 if (whatIt == mCurrentSlicedDurationTrackerMap.end()) {
Yangsterf2bee6f2017-11-29 12:01:05 -0800660 if (hitGuardRailLocked(eventKey)) {
Yao Chenb3561512017-11-21 18:07:17 -0800661 return;
662 }
Yangster-mac53928882018-02-25 23:02:56 -0800663 mCurrentSlicedDurationTrackerMap[whatKey][condKey] = createDurationTracker(eventKey);
664 } else {
665 if (whatIt->second.find(condKey) == whatIt->second.end()) {
666 if (hitGuardRailLocked(eventKey)) {
667 return;
668 }
669 mCurrentSlicedDurationTrackerMap[whatKey][condKey] = createDurationTracker(eventKey);
670 }
Yao Chen6a8c7992017-11-29 20:02:07 +0000671 }
Yao Chen5154a372017-10-30 22:57:06 -0700672
Yangster-mac53928882018-02-25 23:02:56 -0800673 auto it = mCurrentSlicedDurationTrackerMap.find(whatKey)->second.find(condKey);
674 if (mUseWhatDimensionAsInternalDimension) {
675 it->second->noteStart(whatKey, condition,
676 event.GetElapsedTimestampNs(), conditionKeys);
677 return;
678 }
Yao Chen5154a372017-10-30 22:57:06 -0700679
Yangster13fb7e42018-03-07 17:30:49 -0800680 if (mInternalDimensions.empty()) {
Yangster-mac53928882018-02-25 23:02:56 -0800681 it->second->noteStart(DEFAULT_DIMENSION_KEY, condition,
682 event.GetElapsedTimestampNs(), conditionKeys);
Yangster-mac20877162017-12-22 17:19:39 -0800683 } else {
Yangster-mace06cfd72018-03-10 23:22:59 -0800684 HashableDimensionKey dimensionKey = DEFAULT_DIMENSION_KEY;
685 filterValues(mInternalDimensions, event.getValues(), &dimensionKey);
686 it->second->noteStart(
687 dimensionKey, condition, event.GetElapsedTimestampNs(), conditionKeys);
Yao Chen5154a372017-10-30 22:57:06 -0700688 }
Yangster-mac20877162017-12-22 17:19:39 -0800689
Yao Chen729093d2017-10-16 10:33:26 -0700690}
691
Yangster-mac53928882018-02-25 23:02:56 -0800692void DurationMetricProducer::onMatchedLogEventInternalLocked(
693 const size_t matcherIndex, const MetricDimensionKey& eventKey,
694 const ConditionKey& conditionKeys, bool condition,
695 const LogEvent& event) {
696 ALOGW("Not used in duration tracker.");
697}
698
Yangster-mace06cfd72018-03-10 23:22:59 -0800699void DurationMetricProducer::onMatchedLogEventLocked(const size_t matcherIndex,
700 const LogEvent& event) {
Yangster-macb142cc82018-03-30 15:22:08 -0700701 int64_t eventTimeNs = event.GetElapsedTimestampNs();
Yangster-mac15f6bbc2018-04-08 11:52:26 -0700702 if (eventTimeNs < mTimeBaseNs) {
Yangster13fb7e42018-03-07 17:30:49 -0800703 return;
704 }
705
706 flushIfNeededLocked(event.GetElapsedTimestampNs());
707
708 // Handles Stopall events.
709 if (matcherIndex == mStopAllIndex) {
710 for (auto& whatIt : mCurrentSlicedDurationTrackerMap) {
711 for (auto& pair : whatIt.second) {
712 pair.second->noteStopAll(event.GetElapsedTimestampNs());
713 }
714 }
715 return;
716 }
717
718 HashableDimensionKey dimensionInWhat;
719 if (!mDimensionsInWhat.empty()) {
720 filterValues(mDimensionsInWhat, event.getValues(), &dimensionInWhat);
721 } else {
722 dimensionInWhat = DEFAULT_DIMENSION_KEY;
723 }
724
725 // Handles Stop events.
726 if (matcherIndex == mStopIndex) {
727 if (mUseWhatDimensionAsInternalDimension) {
728 auto whatIt = mCurrentSlicedDurationTrackerMap.find(dimensionInWhat);
729 if (whatIt != mCurrentSlicedDurationTrackerMap.end()) {
730 for (const auto& condIt : whatIt->second) {
731 condIt.second->noteStop(dimensionInWhat, event.GetElapsedTimestampNs(), false);
732 }
733 }
734 return;
735 }
736
737 HashableDimensionKey internalDimensionKey = DEFAULT_DIMENSION_KEY;
738 if (!mInternalDimensions.empty()) {
739 filterValues(mInternalDimensions, event.getValues(), &internalDimensionKey);
740 }
741
742 auto whatIt = mCurrentSlicedDurationTrackerMap.find(dimensionInWhat);
743 if (whatIt != mCurrentSlicedDurationTrackerMap.end()) {
744 for (const auto& condIt : whatIt->second) {
745 condIt.second->noteStop(
746 internalDimensionKey, event.GetElapsedTimestampNs(), false);
747 }
748 }
749 return;
750 }
751
752 bool condition;
753 ConditionKey conditionKey;
754 std::unordered_set<HashableDimensionKey> dimensionKeysInCondition;
755 if (mConditionSliced) {
756 for (const auto& link : mMetric2ConditionLinks) {
757 getDimensionForCondition(event.getValues(), link, &conditionKey[link.conditionId]);
758 }
759
760 auto conditionState =
761 mWizard->query(mConditionTrackerIndex, conditionKey, mDimensionsInCondition,
762 !mSameConditionDimensionsInTracker,
763 !mHasLinksToAllConditionDimensionsInTracker,
764 &dimensionKeysInCondition);
765 condition = (conditionState == ConditionState::kTrue);
766 if (mDimensionsInCondition.empty() && condition) {
767 dimensionKeysInCondition.insert(DEFAULT_DIMENSION_KEY);
768 }
769 } else {
770 condition = mCondition;
771 if (condition) {
772 dimensionKeysInCondition.insert(DEFAULT_DIMENSION_KEY);
773 }
774 }
775
776 if (dimensionKeysInCondition.empty()) {
777 handleStartEvent(MetricDimensionKey(dimensionInWhat, DEFAULT_DIMENSION_KEY),
778 conditionKey, condition, event);
779 } else {
780 auto whatIt = mCurrentSlicedDurationTrackerMap.find(dimensionInWhat);
781 // If the what dimension is already there, we should update all the trackers even
782 // the condition is false.
783 if (whatIt != mCurrentSlicedDurationTrackerMap.end()) {
784 for (const auto& condIt : whatIt->second) {
785 const bool cond = dimensionKeysInCondition.find(condIt.first) !=
Yao Chen0aff9032018-07-03 10:51:05 -0700786 dimensionKeysInCondition.end() && condition;
Yangster13fb7e42018-03-07 17:30:49 -0800787 handleStartEvent(MetricDimensionKey(dimensionInWhat, condIt.first),
788 conditionKey, cond, event);
789 dimensionKeysInCondition.erase(condIt.first);
790 }
791 }
792 for (const auto& conditionDimension : dimensionKeysInCondition) {
793 handleStartEvent(MetricDimensionKey(dimensionInWhat, conditionDimension), conditionKey,
794 condition, event);
795 }
796 }
797}
798
Yangsterf2bee6f2017-11-29 12:01:05 -0800799size_t DurationMetricProducer::byteSizeLocked() const {
Yangster7c334a12017-11-22 14:24:24 -0800800 size_t totalSize = 0;
801 for (const auto& pair : mPastBuckets) {
802 totalSize += pair.second.size() * kBucketSize;
803 }
804 return totalSize;
yro69007c82017-10-26 20:42:57 -0700805}
806
Yao Chen729093d2017-10-16 10:33:26 -0700807} // namespace statsd
808} // namespace os
809} // namespace android