blob: de6f3653f7adac8dc1c3d653545d2b4104399f20 [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 Chen5154a372017-10-30 22:57:06 -070066 const sp<ConditionWizard>& wizard,
Yao Chen93fe3a32017-11-02 13:52:59 -070067 const vector<KeyMatcher>& internalDimension,
68 const uint64_t startTimeNs)
69 : MetricProducer(startTimeNs, conditionIndex, wizard),
Yao Chen729093d2017-10-16 10:33:26 -070070 mMetric(metric),
71 mStartIndex(startIndex),
72 mStopIndex(stopIndex),
Yao Chen5154a372017-10-30 22:57:06 -070073 mStopAllIndex(stopAllIndex),
74 mInternalDimension(internalDimension) {
Yao Chen729093d2017-10-16 10:33:26 -070075 // TODO: The following boiler plate code appears in all MetricProducers, but we can't abstract
76 // them in the base class, because the proto generated CountMetric, and DurationMetric are
77 // not related. Maybe we should add a template in the future??
78 if (metric.has_bucket() && metric.bucket().has_bucket_size_millis()) {
79 mBucketSizeNs = metric.bucket().bucket_size_millis() * 1000000;
80 } else {
81 mBucketSizeNs = LLONG_MAX;
82 }
83
84 // TODO: use UidMap if uid->pkg_name is required
85 mDimension.insert(mDimension.begin(), metric.dimension().begin(), metric.dimension().end());
86
87 if (metric.links().size() > 0) {
88 mConditionLinks.insert(mConditionLinks.begin(), metric.links().begin(),
89 metric.links().end());
90 mConditionSliced = true;
91 }
92
yro2b0f8862017-11-06 14:27:31 -080093 startNewProtoOutputStream(mStartTimeNs);
94
Yangster-macd1815dc2017-11-13 21:43:15 -080095 VLOG("metric %s created. bucket size %lld start_time: %lld", metric.name().c_str(),
Yao Chen729093d2017-10-16 10:33:26 -070096 (long long)mBucketSizeNs, (long long)mStartTimeNs);
97}
98
99DurationMetricProducer::~DurationMetricProducer() {
100 VLOG("~DurationMetric() called");
101}
102
yro2b0f8862017-11-06 14:27:31 -0800103void DurationMetricProducer::startNewProtoOutputStream(long long startTime) {
104 mProto = std::make_unique<ProtoOutputStream>();
Yangster-macd1815dc2017-11-13 21:43:15 -0800105 mProto->write(FIELD_TYPE_STRING | FIELD_ID_NAME, mMetric.name());
yro2b0f8862017-11-06 14:27:31 -0800106 mProto->write(FIELD_TYPE_INT64 | FIELD_ID_START_REPORT_NANOS, startTime);
107 mProtoToken = mProto->start(FIELD_TYPE_MESSAGE | FIELD_ID_DURATION_METRICS);
108}
109
Yao Chen5154a372017-10-30 22:57:06 -0700110unique_ptr<DurationTracker> DurationMetricProducer::createDurationTracker(
yro2b0f8862017-11-06 14:27:31 -0800111 vector<DurationBucket>& bucket) {
Yao Chen5154a372017-10-30 22:57:06 -0700112 switch (mMetric.type()) {
113 case DurationMetric_AggregationType_DURATION_SUM:
114 return make_unique<OringDurationTracker>(mWizard, mConditionTrackerIndex,
115 mCurrentBucketStartTimeNs, mBucketSizeNs,
116 bucket);
117 case DurationMetric_AggregationType_DURATION_MAX_SPARSE:
118 return make_unique<MaxDurationTracker>(mWizard, mConditionTrackerIndex,
119 mCurrentBucketStartTimeNs, mBucketSizeNs,
120 bucket);
121 }
122}
123
Yao Chen729093d2017-10-16 10:33:26 -0700124void DurationMetricProducer::finish() {
125 // TODO: write the StatsLogReport to dropbox using
126 // DropboxWriter.
127}
128
Yao Chen5154a372017-10-30 22:57:06 -0700129void DurationMetricProducer::onSlicedConditionMayChange(const uint64_t eventTime) {
Yangster-macd1815dc2017-11-13 21:43:15 -0800130 VLOG("Metric %s onSlicedConditionMayChange", mMetric.name().c_str());
Yao Chen729093d2017-10-16 10:33:26 -0700131 // Now for each of the on-going event, check if the condition has changed for them.
Yao Chen5154a372017-10-30 22:57:06 -0700132 flushIfNeeded(eventTime);
Yao Chen729093d2017-10-16 10:33:26 -0700133 for (auto& pair : mCurrentSlicedDuration) {
Yao Chen5154a372017-10-30 22:57:06 -0700134 pair.second->onSlicedConditionMayChange(eventTime);
Yao Chen729093d2017-10-16 10:33:26 -0700135 }
136}
137
Yao Chen5154a372017-10-30 22:57:06 -0700138void DurationMetricProducer::onConditionChanged(const bool conditionMet, const uint64_t eventTime) {
Yangster-macd1815dc2017-11-13 21:43:15 -0800139 VLOG("Metric %s onConditionChanged", mMetric.name().c_str());
Yao Chen729093d2017-10-16 10:33:26 -0700140 mCondition = conditionMet;
141 // TODO: need to populate the condition change time from the event which triggers the condition
142 // change, instead of using current time.
Yao Chen5154a372017-10-30 22:57:06 -0700143
144 flushIfNeeded(eventTime);
Yao Chen729093d2017-10-16 10:33:26 -0700145 for (auto& pair : mCurrentSlicedDuration) {
Yao Chen5154a372017-10-30 22:57:06 -0700146 pair.second->onConditionChanged(conditionMet, eventTime);
Yao Chen729093d2017-10-16 10:33:26 -0700147 }
148}
149
150static void addDurationBucketsToReport(StatsLogReport_DurationMetricDataWrapper& wrapper,
151 const vector<KeyValuePair>& key,
152 const vector<DurationBucketInfo>& buckets) {
153 DurationMetricData* data = wrapper.add_data();
154 for (const auto& kv : key) {
155 data->add_dimension()->CopyFrom(kv);
156 }
157 for (const auto& bucket : buckets) {
158 data->add_bucket_info()->CopyFrom(bucket);
Yao Chen5154a372017-10-30 22:57:06 -0700159 VLOG("\t bucket [%lld - %lld] duration(ns): %lld", bucket.start_bucket_nanos(),
Yao Chen729093d2017-10-16 10:33:26 -0700160 bucket.end_bucket_nanos(), bucket.duration_nanos());
161 }
162}
163
yro17adac92017-11-08 23:16:29 -0800164std::unique_ptr<std::vector<uint8_t>> DurationMetricProducer::onDumpReport() {
yro2b0f8862017-11-06 14:27:31 -0800165 long long endTime = time(nullptr) * NS_PER_SEC;
166
Yao Chen729093d2017-10-16 10:33:26 -0700167 // Dump current bucket if it's stale.
168 // If current bucket is still on-going, don't force dump current bucket.
169 // In finish(), We can force dump current bucket.
yro2b0f8862017-11-06 14:27:31 -0800170 flushIfNeeded(endTime);
Yangster-macd1815dc2017-11-13 21:43:15 -0800171 VLOG("metric %s dump report now...", mMetric.name().c_str());
Yao Chen729093d2017-10-16 10:33:26 -0700172
Yao Chen729093d2017-10-16 10:33:26 -0700173 for (const auto& pair : mPastBuckets) {
174 const HashableDimensionKey& hashableKey = pair.first;
yro2b0f8862017-11-06 14:27:31 -0800175 VLOG(" dimension key %s", hashableKey.c_str());
Yao Chen729093d2017-10-16 10:33:26 -0700176 auto it = mDimensionKeyMap.find(hashableKey);
177 if (it == mDimensionKeyMap.end()) {
178 ALOGW("Dimension key %s not found?!?! skip...", hashableKey.c_str());
179 continue;
180 }
yrob0378b02017-11-09 20:36:25 -0800181 long long wrapperToken =
182 mProto->start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_DATA);
yro2b0f8862017-11-06 14:27:31 -0800183
184 // First fill dimension (KeyValuePairs).
185 for (const auto& kv : it->second) {
yrob0378b02017-11-09 20:36:25 -0800186 long long dimensionToken =
187 mProto->start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_DIMENSION);
yro2b0f8862017-11-06 14:27:31 -0800188 mProto->write(FIELD_TYPE_INT32 | FIELD_ID_KEY, kv.key());
189 if (kv.has_value_str()) {
190 mProto->write(FIELD_TYPE_INT32 | FIELD_ID_VALUE_STR, kv.value_str());
191 } else if (kv.has_value_int()) {
192 mProto->write(FIELD_TYPE_INT64 | FIELD_ID_VALUE_INT, kv.value_int());
193 } else if (kv.has_value_bool()) {
194 mProto->write(FIELD_TYPE_BOOL | FIELD_ID_VALUE_BOOL, kv.value_bool());
195 } else if (kv.has_value_float()) {
196 mProto->write(FIELD_TYPE_FLOAT | FIELD_ID_VALUE_FLOAT, kv.value_float());
197 }
198 mProto->end(dimensionToken);
199 }
200
201 // Then fill bucket_info (DurationBucketInfo).
202 for (const auto& bucket : pair.second) {
yrob0378b02017-11-09 20:36:25 -0800203 long long bucketInfoToken =
204 mProto->start(FIELD_TYPE_MESSAGE | FIELD_COUNT_REPEATED | FIELD_ID_BUCKET_INFO);
yro2b0f8862017-11-06 14:27:31 -0800205 mProto->write(FIELD_TYPE_INT64 | FIELD_ID_START_BUCKET_NANOS,
206 (long long)bucket.mBucketStartNs);
207 mProto->write(FIELD_TYPE_INT64 | FIELD_ID_END_BUCKET_NANOS,
208 (long long)bucket.mBucketEndNs);
209 mProto->write(FIELD_TYPE_INT64 | FIELD_ID_DURATION, (long long)bucket.mDuration);
210 mProto->end(bucketInfoToken);
211 VLOG("\t bucket [%lld - %lld] duration: %lld", (long long)bucket.mBucketStartNs,
212 (long long)bucket.mBucketEndNs, (long long)bucket.mDuration);
213 }
214
215 mProto->end(wrapperToken);
Yao Chen729093d2017-10-16 10:33:26 -0700216 }
yro2b0f8862017-11-06 14:27:31 -0800217
218 mProto->end(mProtoToken);
219 mProto->write(FIELD_TYPE_INT64 | FIELD_ID_END_REPORT_NANOS,
220 (long long)mCurrentBucketStartTimeNs);
221
yro17adac92017-11-08 23:16:29 -0800222 std::unique_ptr<std::vector<uint8_t>> buffer = serializeProto();
yro2b0f8862017-11-06 14:27:31 -0800223
224 startNewProtoOutputStream(endTime);
225 mPastBuckets.clear();
226
yro17adac92017-11-08 23:16:29 -0800227 return buffer;
yro2b0f8862017-11-06 14:27:31 -0800228}
Yao Chen729093d2017-10-16 10:33:26 -0700229
Yao Chen5154a372017-10-30 22:57:06 -0700230void DurationMetricProducer::flushIfNeeded(uint64_t eventTime) {
Yao Chen729093d2017-10-16 10:33:26 -0700231 if (mCurrentBucketStartTimeNs + mBucketSizeNs > eventTime) {
232 return;
233 }
234
Yao Chen5154a372017-10-30 22:57:06 -0700235 VLOG("flushing...........");
Yao Chend41c4222017-11-15 19:26:14 -0800236 for (auto it = mCurrentSlicedDuration.begin(); it != mCurrentSlicedDuration.end();) {
Yao Chen5154a372017-10-30 22:57:06 -0700237 if (it->second->flushIfNeeded(eventTime)) {
238 VLOG("erase bucket for key %s", it->first.c_str());
Yao Chend41c4222017-11-15 19:26:14 -0800239 it = mCurrentSlicedDuration.erase(it);
240 } else {
241 ++it;
Yao Chen729093d2017-10-16 10:33:26 -0700242 }
243 }
Yao Chen5154a372017-10-30 22:57:06 -0700244
245 int numBucketsForward = (eventTime - mCurrentBucketStartTimeNs) / mBucketSizeNs;
246 mCurrentBucketStartTimeNs += numBucketsForward * mBucketSizeNs;
247}
248
249void DurationMetricProducer::onMatchedLogEventInternal(
250 const size_t matcherIndex, const HashableDimensionKey& eventKey,
251 const map<string, HashableDimensionKey>& conditionKeys, bool condition,
Chenjie Yub3dda412017-10-24 13:41:59 -0700252 const LogEvent& event, bool scheduledPull) {
Yao Chen5154a372017-10-30 22:57:06 -0700253 flushIfNeeded(event.GetTimestampNs());
254
255 if (matcherIndex == mStopAllIndex) {
256 for (auto& pair : mCurrentSlicedDuration) {
257 pair.second->noteStopAll(event.GetTimestampNs());
258 }
259 return;
260 }
261
262 HashableDimensionKey atomKey = getHashableKey(getDimensionKey(event, mInternalDimension));
263
264 if (mCurrentSlicedDuration.find(eventKey) == mCurrentSlicedDuration.end()) {
265 mCurrentSlicedDuration[eventKey] = createDurationTracker(mPastBuckets[eventKey]);
266 }
267
268 auto it = mCurrentSlicedDuration.find(eventKey);
269
270 if (matcherIndex == mStartIndex) {
271 it->second->noteStart(atomKey, condition, event.GetTimestampNs(), conditionKeys);
Yao Chen5154a372017-10-30 22:57:06 -0700272 } else if (matcherIndex == mStopIndex) {
273 it->second->noteStop(atomKey, event.GetTimestampNs());
274 }
Yao Chen729093d2017-10-16 10:33:26 -0700275}
276
yro69007c82017-10-26 20:42:57 -0700277size_t DurationMetricProducer::byteSize() {
yro2b0f8862017-11-06 14:27:31 -0800278 size_t totalSize = 0;
279 for (const auto& pair : mPastBuckets) {
280 totalSize += pair.second.size() * kBucketSize;
281 }
282 return totalSize;
yro69007c82017-10-26 20:42:57 -0700283}
284
Yao Chen729093d2017-10-16 10:33:26 -0700285} // namespace statsd
286} // namespace os
287} // namespace android