blob: b0a97b143400de77c55c94ead0f683fdf1dd326f [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
17#define DEBUG true
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 Chen729093d2017-10-16 10:33:26 -070021#include "stats_util.h"
22
Yao Chen729093d2017-10-16 10:33:26 -070023#include <limits.h>
24#include <stdlib.h>
25
yrob0378b02017-11-09 20:36:25 -080026using android::util::FIELD_COUNT_REPEATED;
yro2b0f8862017-11-06 14:27:31 -080027using android::util::FIELD_TYPE_BOOL;
28using android::util::FIELD_TYPE_FLOAT;
29using android::util::FIELD_TYPE_INT32;
30using android::util::FIELD_TYPE_INT64;
31using android::util::FIELD_TYPE_MESSAGE;
Yangster-macd1815dc2017-11-13 21:43:15 -080032using android::util::FIELD_TYPE_STRING;
yro2b0f8862017-11-06 14:27:31 -080033using android::util::ProtoOutputStream;
Yao Chen729093d2017-10-16 10:33:26 -070034using std::string;
35using std::unordered_map;
36using std::vector;
37
38namespace android {
39namespace os {
40namespace statsd {
41
yro2b0f8862017-11-06 14:27:31 -080042// for StatsLogReport
Yangster-macd1815dc2017-11-13 21:43:15 -080043const int FIELD_ID_NAME = 1;
yro2b0f8862017-11-06 14:27:31 -080044const int FIELD_ID_START_REPORT_NANOS = 2;
45const int FIELD_ID_END_REPORT_NANOS = 3;
46const int FIELD_ID_DURATION_METRICS = 6;
47// for DurationMetricDataWrapper
48const int FIELD_ID_DATA = 1;
49// for DurationMetricData
50const int FIELD_ID_DIMENSION = 1;
51const int FIELD_ID_BUCKET_INFO = 2;
52// for KeyValuePair
53const int FIELD_ID_KEY = 1;
54const int FIELD_ID_VALUE_STR = 2;
55const int FIELD_ID_VALUE_INT = 3;
56const int FIELD_ID_VALUE_BOOL = 4;
57const int FIELD_ID_VALUE_FLOAT = 5;
58// for DurationBucketInfo
59const int FIELD_ID_START_BUCKET_NANOS = 1;
60const int FIELD_ID_END_BUCKET_NANOS = 2;
61const int FIELD_ID_DURATION = 3;
62
Yao Chen729093d2017-10-16 10:33:26 -070063DurationMetricProducer::DurationMetricProducer(const DurationMetric& metric,
64 const int conditionIndex, const size_t startIndex,
65 const size_t stopIndex, const size_t stopAllIndex,
Yao Chen0ea19902017-11-15 15:44:45 -080066 const bool nesting,
Yao Chen5154a372017-10-30 22:57:06 -070067 const sp<ConditionWizard>& wizard,
Yao Chen93fe3a32017-11-02 13:52:59 -070068 const vector<KeyMatcher>& internalDimension,
69 const uint64_t startTimeNs)
70 : MetricProducer(startTimeNs, conditionIndex, wizard),
Yao Chen729093d2017-10-16 10:33:26 -070071 mMetric(metric),
72 mStartIndex(startIndex),
73 mStopIndex(stopIndex),
Yao Chen5154a372017-10-30 22:57:06 -070074 mStopAllIndex(stopAllIndex),
Yao Chen0ea19902017-11-15 15:44:45 -080075 mNested(nesting),
Yao Chen5154a372017-10-30 22:57:06 -070076 mInternalDimension(internalDimension) {
Yao Chen729093d2017-10-16 10:33:26 -070077 // TODO: The following boiler plate code appears in all MetricProducers, but we can't abstract
78 // them in the base class, because the proto generated CountMetric, and DurationMetric are
79 // not related. Maybe we should add a template in the future??
80 if (metric.has_bucket() && metric.bucket().has_bucket_size_millis()) {
81 mBucketSizeNs = metric.bucket().bucket_size_millis() * 1000000;
82 } else {
83 mBucketSizeNs = LLONG_MAX;
84 }
85
86 // TODO: use UidMap if uid->pkg_name is required
87 mDimension.insert(mDimension.begin(), metric.dimension().begin(), metric.dimension().end());
88
89 if (metric.links().size() > 0) {
90 mConditionLinks.insert(mConditionLinks.begin(), metric.links().begin(),
91 metric.links().end());
92 mConditionSliced = true;
93 }
94
yro2b0f8862017-11-06 14:27:31 -080095 startNewProtoOutputStream(mStartTimeNs);
96
Yangster-macd1815dc2017-11-13 21:43:15 -080097 VLOG("metric %s created. bucket size %lld start_time: %lld", metric.name().c_str(),
Yao Chen729093d2017-10-16 10:33:26 -070098 (long long)mBucketSizeNs, (long long)mStartTimeNs);
99}
100
101DurationMetricProducer::~DurationMetricProducer() {
102 VLOG("~DurationMetric() called");
103}
104
yro2b0f8862017-11-06 14:27:31 -0800105void DurationMetricProducer::startNewProtoOutputStream(long long startTime) {
106 mProto = std::make_unique<ProtoOutputStream>();
Yangster-macd1815dc2017-11-13 21:43:15 -0800107 mProto->write(FIELD_TYPE_STRING | FIELD_ID_NAME, mMetric.name());
yro2b0f8862017-11-06 14:27:31 -0800108 mProto->write(FIELD_TYPE_INT64 | FIELD_ID_START_REPORT_NANOS, startTime);
109 mProtoToken = mProto->start(FIELD_TYPE_MESSAGE | FIELD_ID_DURATION_METRICS);
110}
111
Yao Chen5154a372017-10-30 22:57:06 -0700112unique_ptr<DurationTracker> DurationMetricProducer::createDurationTracker(
Yangster-mace2cd6d52017-11-09 20:38:30 -0800113 const HashableDimensionKey& eventKey, vector<DurationBucket>& bucket) {
Stefan Lafoncfed20b2017-11-18 09:26:53 -0800114 switch (mMetric.aggregation_type()) {
115 case DurationMetric_AggregationType_SUM:
Yangster-mace2cd6d52017-11-09 20:38:30 -0800116 return make_unique<OringDurationTracker>(eventKey, mWizard, mConditionTrackerIndex,
117 mNested, mCurrentBucketStartTimeNs,
118 mBucketSizeNs, mAnomalyTrackers, bucket);
Stefan Lafoncfed20b2017-11-18 09:26:53 -0800119 case DurationMetric_AggregationType_MAX_SPARSE:
Yangster-mace2cd6d52017-11-09 20:38:30 -0800120 return make_unique<MaxDurationTracker>(eventKey, mWizard, mConditionTrackerIndex,
121 mNested, mCurrentBucketStartTimeNs,
122 mBucketSizeNs, mAnomalyTrackers, bucket);
Yao Chen5154a372017-10-30 22:57:06 -0700123 }
124}
125
Yao Chen729093d2017-10-16 10:33:26 -0700126void DurationMetricProducer::finish() {
127 // TODO: write the StatsLogReport to dropbox using
128 // DropboxWriter.
129}
130
Yao Chen5154a372017-10-30 22:57:06 -0700131void DurationMetricProducer::onSlicedConditionMayChange(const uint64_t eventTime) {
Yangster-macd1815dc2017-11-13 21:43:15 -0800132 VLOG("Metric %s onSlicedConditionMayChange", mMetric.name().c_str());
Yao Chen729093d2017-10-16 10:33:26 -0700133 // Now for each of the on-going event, check if the condition has changed for them.
134 for (auto& pair : mCurrentSlicedDuration) {
Yao Chen5154a372017-10-30 22:57:06 -0700135 pair.second->onSlicedConditionMayChange(eventTime);
Yao Chen729093d2017-10-16 10:33:26 -0700136 }
137}
138
Yao Chen5154a372017-10-30 22:57:06 -0700139void DurationMetricProducer::onConditionChanged(const bool conditionMet, const uint64_t eventTime) {
Yangster-macd1815dc2017-11-13 21:43:15 -0800140 VLOG("Metric %s onConditionChanged", mMetric.name().c_str());
Yao Chen729093d2017-10-16 10:33:26 -0700141 mCondition = conditionMet;
142 // TODO: need to populate the condition change time from the event which triggers the condition
143 // change, instead of using current time.
144 for (auto& pair : mCurrentSlicedDuration) {
Yao Chen5154a372017-10-30 22:57:06 -0700145 pair.second->onConditionChanged(conditionMet, eventTime);
Yao Chen729093d2017-10-16 10:33:26 -0700146 }
147}
148
yro17adac92017-11-08 23:16:29 -0800149std::unique_ptr<std::vector<uint8_t>> DurationMetricProducer::onDumpReport() {
yro2b0f8862017-11-06 14:27:31 -0800150 long long endTime = time(nullptr) * NS_PER_SEC;
151
Yao Chen729093d2017-10-16 10:33:26 -0700152 // Dump current bucket if it's stale.
153 // If current bucket is still on-going, don't force dump current bucket.
154 // In finish(), We can force dump current bucket.
yro2b0f8862017-11-06 14:27:31 -0800155 flushIfNeeded(endTime);
Yangster-macd1815dc2017-11-13 21:43:15 -0800156 VLOG("metric %s dump report now...", mMetric.name().c_str());
Yao Chen729093d2017-10-16 10:33:26 -0700157
Yao Chen729093d2017-10-16 10:33:26 -0700158 for (const auto& pair : mPastBuckets) {
159 const HashableDimensionKey& hashableKey = pair.first;
yro2b0f8862017-11-06 14:27:31 -0800160 VLOG(" dimension key %s", hashableKey.c_str());
Yao Chen729093d2017-10-16 10:33:26 -0700161 auto it = mDimensionKeyMap.find(hashableKey);
162 if (it == mDimensionKeyMap.end()) {
163 ALOGW("Dimension key %s not found?!?! skip...", hashableKey.c_str());
164 continue;
165 }
yrob0378b02017-11-09 20:36:25 -0800166 long long wrapperToken =
167 mProto->start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_DATA);
yro2b0f8862017-11-06 14:27:31 -0800168
169 // First fill dimension (KeyValuePairs).
170 for (const auto& kv : it->second) {
yrob0378b02017-11-09 20:36:25 -0800171 long long dimensionToken =
172 mProto->start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_DIMENSION);
yro2b0f8862017-11-06 14:27:31 -0800173 mProto->write(FIELD_TYPE_INT32 | FIELD_ID_KEY, kv.key());
174 if (kv.has_value_str()) {
175 mProto->write(FIELD_TYPE_INT32 | FIELD_ID_VALUE_STR, kv.value_str());
176 } else if (kv.has_value_int()) {
177 mProto->write(FIELD_TYPE_INT64 | FIELD_ID_VALUE_INT, kv.value_int());
178 } else if (kv.has_value_bool()) {
179 mProto->write(FIELD_TYPE_BOOL | FIELD_ID_VALUE_BOOL, kv.value_bool());
180 } else if (kv.has_value_float()) {
181 mProto->write(FIELD_TYPE_FLOAT | FIELD_ID_VALUE_FLOAT, kv.value_float());
182 }
183 mProto->end(dimensionToken);
184 }
185
186 // Then fill bucket_info (DurationBucketInfo).
187 for (const auto& bucket : pair.second) {
yrob0378b02017-11-09 20:36:25 -0800188 long long bucketInfoToken =
189 mProto->start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_BUCKET_INFO);
yro2b0f8862017-11-06 14:27:31 -0800190 mProto->write(FIELD_TYPE_INT64 | FIELD_ID_START_BUCKET_NANOS,
191 (long long)bucket.mBucketStartNs);
192 mProto->write(FIELD_TYPE_INT64 | FIELD_ID_END_BUCKET_NANOS,
193 (long long)bucket.mBucketEndNs);
194 mProto->write(FIELD_TYPE_INT64 | FIELD_ID_DURATION, (long long)bucket.mDuration);
195 mProto->end(bucketInfoToken);
196 VLOG("\t bucket [%lld - %lld] duration: %lld", (long long)bucket.mBucketStartNs,
197 (long long)bucket.mBucketEndNs, (long long)bucket.mDuration);
198 }
199
200 mProto->end(wrapperToken);
Yao Chen729093d2017-10-16 10:33:26 -0700201 }
yro2b0f8862017-11-06 14:27:31 -0800202
203 mProto->end(mProtoToken);
204 mProto->write(FIELD_TYPE_INT64 | FIELD_ID_END_REPORT_NANOS,
205 (long long)mCurrentBucketStartTimeNs);
206
yro17adac92017-11-08 23:16:29 -0800207 std::unique_ptr<std::vector<uint8_t>> buffer = serializeProto();
yro2b0f8862017-11-06 14:27:31 -0800208 startNewProtoOutputStream(endTime);
Yao Chen30b6a202017-11-18 14:14:38 -0800209 // TODO: Properly clear the old buckets.
yro17adac92017-11-08 23:16:29 -0800210 return buffer;
yro2b0f8862017-11-06 14:27:31 -0800211}
Yao Chen729093d2017-10-16 10:33:26 -0700212
Yao Chen5154a372017-10-30 22:57:06 -0700213void DurationMetricProducer::flushIfNeeded(uint64_t eventTime) {
Yao Chen729093d2017-10-16 10:33:26 -0700214 if (mCurrentBucketStartTimeNs + mBucketSizeNs > eventTime) {
215 return;
216 }
Yao Chen5154a372017-10-30 22:57:06 -0700217 VLOG("flushing...........");
Yao Chend41c4222017-11-15 19:26:14 -0800218 for (auto it = mCurrentSlicedDuration.begin(); it != mCurrentSlicedDuration.end();) {
Yao Chen5154a372017-10-30 22:57:06 -0700219 if (it->second->flushIfNeeded(eventTime)) {
220 VLOG("erase bucket for key %s", it->first.c_str());
Yao Chend41c4222017-11-15 19:26:14 -0800221 it = mCurrentSlicedDuration.erase(it);
222 } else {
223 ++it;
Yao Chen729093d2017-10-16 10:33:26 -0700224 }
225 }
Yao Chen5154a372017-10-30 22:57:06 -0700226
227 int numBucketsForward = (eventTime - mCurrentBucketStartTimeNs) / mBucketSizeNs;
228 mCurrentBucketStartTimeNs += numBucketsForward * mBucketSizeNs;
Yangster-mace2cd6d52017-11-09 20:38:30 -0800229 mCurrentBucketNum += numBucketsForward;
Yao Chen5154a372017-10-30 22:57:06 -0700230}
231
232void DurationMetricProducer::onMatchedLogEventInternal(
233 const size_t matcherIndex, const HashableDimensionKey& eventKey,
234 const map<string, HashableDimensionKey>& conditionKeys, bool condition,
Chenjie Yub3dda412017-10-24 13:41:59 -0700235 const LogEvent& event, bool scheduledPull) {
Yao Chen5154a372017-10-30 22:57:06 -0700236 flushIfNeeded(event.GetTimestampNs());
237
238 if (matcherIndex == mStopAllIndex) {
239 for (auto& pair : mCurrentSlicedDuration) {
240 pair.second->noteStopAll(event.GetTimestampNs());
241 }
242 return;
243 }
244
245 HashableDimensionKey atomKey = getHashableKey(getDimensionKey(event, mInternalDimension));
246
247 if (mCurrentSlicedDuration.find(eventKey) == mCurrentSlicedDuration.end()) {
Yangster-mace2cd6d52017-11-09 20:38:30 -0800248 mCurrentSlicedDuration[eventKey] = createDurationTracker(eventKey, mPastBuckets[eventKey]);
Yao Chen5154a372017-10-30 22:57:06 -0700249 }
250
251 auto it = mCurrentSlicedDuration.find(eventKey);
252
253 if (matcherIndex == mStartIndex) {
254 it->second->noteStart(atomKey, condition, event.GetTimestampNs(), conditionKeys);
Yao Chen5154a372017-10-30 22:57:06 -0700255 } else if (matcherIndex == mStopIndex) {
Yao Chen0ea19902017-11-15 15:44:45 -0800256 it->second->noteStop(atomKey, event.GetTimestampNs(), false);
Yao Chen5154a372017-10-30 22:57:06 -0700257 }
Yao Chen729093d2017-10-16 10:33:26 -0700258}
259
yro69007c82017-10-26 20:42:57 -0700260size_t DurationMetricProducer::byteSize() {
yro2b0f8862017-11-06 14:27:31 -0800261 size_t totalSize = 0;
262 for (const auto& pair : mPastBuckets) {
263 totalSize += pair.second.size() * kBucketSize;
264 }
265 return totalSize;
yro69007c82017-10-26 20:42:57 -0700266}
267
Yao Chen729093d2017-10-16 10:33:26 -0700268} // namespace statsd
269} // namespace os
270} // namespace android