blob: 1bccafadee8f76bcceecee3cc7e02bf84ac70873 [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(
yro2b0f8862017-11-06 14:27:31 -0800113 vector<DurationBucket>& bucket) {
Stefan Lafoncfed20b2017-11-18 09:26:53 -0800114 switch (mMetric.aggregation_type()) {
115 case DurationMetric_AggregationType_SUM:
Yao Chen0ea19902017-11-15 15:44:45 -0800116 return make_unique<OringDurationTracker>(mWizard, mConditionTrackerIndex, mNested,
Yao Chen5154a372017-10-30 22:57:06 -0700117 mCurrentBucketStartTimeNs, mBucketSizeNs,
118 bucket);
Stefan Lafoncfed20b2017-11-18 09:26:53 -0800119 case DurationMetric_AggregationType_MAX_SPARSE:
Yao Chen0ea19902017-11-15 15:44:45 -0800120 return make_unique<MaxDurationTracker>(mWizard, mConditionTrackerIndex, mNested,
Yao Chen5154a372017-10-30 22:57:06 -0700121 mCurrentBucketStartTimeNs, mBucketSizeNs,
122 bucket);
123 }
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.
Yao Chen5154a372017-10-30 22:57:06 -0700134 flushIfNeeded(eventTime);
Yao Chen729093d2017-10-16 10:33:26 -0700135 for (auto& pair : mCurrentSlicedDuration) {
Yao Chen5154a372017-10-30 22:57:06 -0700136 pair.second->onSlicedConditionMayChange(eventTime);
Yao Chen729093d2017-10-16 10:33:26 -0700137 }
138}
139
Yao Chen5154a372017-10-30 22:57:06 -0700140void DurationMetricProducer::onConditionChanged(const bool conditionMet, const uint64_t eventTime) {
Yangster-macd1815dc2017-11-13 21:43:15 -0800141 VLOG("Metric %s onConditionChanged", mMetric.name().c_str());
Yao Chen729093d2017-10-16 10:33:26 -0700142 mCondition = conditionMet;
143 // TODO: need to populate the condition change time from the event which triggers the condition
144 // change, instead of using current time.
Yao Chen5154a372017-10-30 22:57:06 -0700145
146 flushIfNeeded(eventTime);
Yao Chen729093d2017-10-16 10:33:26 -0700147 for (auto& pair : mCurrentSlicedDuration) {
Yao Chen5154a372017-10-30 22:57:06 -0700148 pair.second->onConditionChanged(conditionMet, eventTime);
Yao Chen729093d2017-10-16 10:33:26 -0700149 }
150}
151
152static void addDurationBucketsToReport(StatsLogReport_DurationMetricDataWrapper& wrapper,
153 const vector<KeyValuePair>& key,
154 const vector<DurationBucketInfo>& buckets) {
155 DurationMetricData* data = wrapper.add_data();
156 for (const auto& kv : key) {
157 data->add_dimension()->CopyFrom(kv);
158 }
159 for (const auto& bucket : buckets) {
160 data->add_bucket_info()->CopyFrom(bucket);
Yao Chen5154a372017-10-30 22:57:06 -0700161 VLOG("\t bucket [%lld - %lld] duration(ns): %lld", bucket.start_bucket_nanos(),
Yao Chen729093d2017-10-16 10:33:26 -0700162 bucket.end_bucket_nanos(), bucket.duration_nanos());
163 }
164}
165
yro17adac92017-11-08 23:16:29 -0800166std::unique_ptr<std::vector<uint8_t>> DurationMetricProducer::onDumpReport() {
yro2b0f8862017-11-06 14:27:31 -0800167 long long endTime = time(nullptr) * NS_PER_SEC;
168
Yao Chen729093d2017-10-16 10:33:26 -0700169 // Dump current bucket if it's stale.
170 // If current bucket is still on-going, don't force dump current bucket.
171 // In finish(), We can force dump current bucket.
yro2b0f8862017-11-06 14:27:31 -0800172 flushIfNeeded(endTime);
Yangster-macd1815dc2017-11-13 21:43:15 -0800173 VLOG("metric %s dump report now...", mMetric.name().c_str());
Yao Chen729093d2017-10-16 10:33:26 -0700174
Yao Chen729093d2017-10-16 10:33:26 -0700175 for (const auto& pair : mPastBuckets) {
176 const HashableDimensionKey& hashableKey = pair.first;
yro2b0f8862017-11-06 14:27:31 -0800177 VLOG(" dimension key %s", hashableKey.c_str());
Yao Chen729093d2017-10-16 10:33:26 -0700178 auto it = mDimensionKeyMap.find(hashableKey);
179 if (it == mDimensionKeyMap.end()) {
180 ALOGW("Dimension key %s not found?!?! skip...", hashableKey.c_str());
181 continue;
182 }
yrob0378b02017-11-09 20:36:25 -0800183 long long wrapperToken =
184 mProto->start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_DATA);
yro2b0f8862017-11-06 14:27:31 -0800185
186 // First fill dimension (KeyValuePairs).
187 for (const auto& kv : it->second) {
yrob0378b02017-11-09 20:36:25 -0800188 long long dimensionToken =
189 mProto->start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_DIMENSION);
yro2b0f8862017-11-06 14:27:31 -0800190 mProto->write(FIELD_TYPE_INT32 | FIELD_ID_KEY, kv.key());
191 if (kv.has_value_str()) {
192 mProto->write(FIELD_TYPE_INT32 | FIELD_ID_VALUE_STR, kv.value_str());
193 } else if (kv.has_value_int()) {
194 mProto->write(FIELD_TYPE_INT64 | FIELD_ID_VALUE_INT, kv.value_int());
195 } else if (kv.has_value_bool()) {
196 mProto->write(FIELD_TYPE_BOOL | FIELD_ID_VALUE_BOOL, kv.value_bool());
197 } else if (kv.has_value_float()) {
198 mProto->write(FIELD_TYPE_FLOAT | FIELD_ID_VALUE_FLOAT, kv.value_float());
199 }
200 mProto->end(dimensionToken);
201 }
202
203 // Then fill bucket_info (DurationBucketInfo).
204 for (const auto& bucket : pair.second) {
yrob0378b02017-11-09 20:36:25 -0800205 long long bucketInfoToken =
206 mProto->start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_BUCKET_INFO);
yro2b0f8862017-11-06 14:27:31 -0800207 mProto->write(FIELD_TYPE_INT64 | FIELD_ID_START_BUCKET_NANOS,
208 (long long)bucket.mBucketStartNs);
209 mProto->write(FIELD_TYPE_INT64 | FIELD_ID_END_BUCKET_NANOS,
210 (long long)bucket.mBucketEndNs);
211 mProto->write(FIELD_TYPE_INT64 | FIELD_ID_DURATION, (long long)bucket.mDuration);
212 mProto->end(bucketInfoToken);
213 VLOG("\t bucket [%lld - %lld] duration: %lld", (long long)bucket.mBucketStartNs,
214 (long long)bucket.mBucketEndNs, (long long)bucket.mDuration);
215 }
216
217 mProto->end(wrapperToken);
Yao Chen729093d2017-10-16 10:33:26 -0700218 }
yro2b0f8862017-11-06 14:27:31 -0800219
220 mProto->end(mProtoToken);
221 mProto->write(FIELD_TYPE_INT64 | FIELD_ID_END_REPORT_NANOS,
222 (long long)mCurrentBucketStartTimeNs);
223
yro17adac92017-11-08 23:16:29 -0800224 std::unique_ptr<std::vector<uint8_t>> buffer = serializeProto();
yro2b0f8862017-11-06 14:27:31 -0800225
226 startNewProtoOutputStream(endTime);
227 mPastBuckets.clear();
228
yro17adac92017-11-08 23:16:29 -0800229 return buffer;
yro2b0f8862017-11-06 14:27:31 -0800230}
Yao Chen729093d2017-10-16 10:33:26 -0700231
Yao Chen5154a372017-10-30 22:57:06 -0700232void DurationMetricProducer::flushIfNeeded(uint64_t eventTime) {
Yao Chen729093d2017-10-16 10:33:26 -0700233 if (mCurrentBucketStartTimeNs + mBucketSizeNs > eventTime) {
234 return;
235 }
236
Yao Chen5154a372017-10-30 22:57:06 -0700237 VLOG("flushing...........");
Yao Chend41c4222017-11-15 19:26:14 -0800238 for (auto it = mCurrentSlicedDuration.begin(); it != mCurrentSlicedDuration.end();) {
Yao Chen5154a372017-10-30 22:57:06 -0700239 if (it->second->flushIfNeeded(eventTime)) {
240 VLOG("erase bucket for key %s", it->first.c_str());
Yao Chend41c4222017-11-15 19:26:14 -0800241 it = mCurrentSlicedDuration.erase(it);
242 } else {
243 ++it;
Yao Chen729093d2017-10-16 10:33:26 -0700244 }
245 }
Yao Chen5154a372017-10-30 22:57:06 -0700246
247 int numBucketsForward = (eventTime - mCurrentBucketStartTimeNs) / mBucketSizeNs;
248 mCurrentBucketStartTimeNs += numBucketsForward * mBucketSizeNs;
249}
250
251void DurationMetricProducer::onMatchedLogEventInternal(
252 const size_t matcherIndex, const HashableDimensionKey& eventKey,
253 const map<string, HashableDimensionKey>& conditionKeys, bool condition,
Chenjie Yub3dda412017-10-24 13:41:59 -0700254 const LogEvent& event, bool scheduledPull) {
Yao Chen5154a372017-10-30 22:57:06 -0700255 flushIfNeeded(event.GetTimestampNs());
256
257 if (matcherIndex == mStopAllIndex) {
258 for (auto& pair : mCurrentSlicedDuration) {
259 pair.second->noteStopAll(event.GetTimestampNs());
260 }
261 return;
262 }
263
264 HashableDimensionKey atomKey = getHashableKey(getDimensionKey(event, mInternalDimension));
265
266 if (mCurrentSlicedDuration.find(eventKey) == mCurrentSlicedDuration.end()) {
267 mCurrentSlicedDuration[eventKey] = createDurationTracker(mPastBuckets[eventKey]);
268 }
269
270 auto it = mCurrentSlicedDuration.find(eventKey);
271
272 if (matcherIndex == mStartIndex) {
273 it->second->noteStart(atomKey, condition, event.GetTimestampNs(), conditionKeys);
Yao Chen5154a372017-10-30 22:57:06 -0700274 } else if (matcherIndex == mStopIndex) {
Yao Chen0ea19902017-11-15 15:44:45 -0800275 it->second->noteStop(atomKey, event.GetTimestampNs(), false);
Yao Chen5154a372017-10-30 22:57:06 -0700276 }
Yao Chen729093d2017-10-16 10:33:26 -0700277}
278
yro69007c82017-10-26 20:42:57 -0700279size_t DurationMetricProducer::byteSize() {
yro2b0f8862017-11-06 14:27:31 -0800280 size_t totalSize = 0;
281 for (const auto& pair : mPastBuckets) {
282 totalSize += pair.second.size() * kBucketSize;
283 }
284 return totalSize;
yro69007c82017-10-26 20:42:57 -0700285}
286
Yao Chen729093d2017-10-16 10:33:26 -0700287} // namespace statsd
288} // namespace os
289} // namespace android