blob: cafc882308d4e1d913548956947a99a93456ca4f [file] [log] [blame]
Yao Chen44cf27c2017-09-14 22:32:50 -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#ifndef COUNT_METRIC_PRODUCER_H
18#define COUNT_METRIC_PRODUCER_H
19
Yao Chen44cf27c2017-09-14 22:32:50 -070020#include <unordered_map>
Yao Chencaf339d2017-10-06 16:01:10 -070021
yro24809bd2017-10-31 23:06:53 -070022#include <android/util/ProtoOutputStream.h>
Yao Chen93fe3a32017-11-02 13:52:59 -070023#include <gtest/gtest_prod.h>
Yangster-mace2cd6d52017-11-09 20:38:30 -080024#include "../anomaly/AnomalyTracker.h"
Yao Chencaf339d2017-10-06 16:01:10 -070025#include "../condition/ConditionTracker.h"
26#include "../matchers/matcher_util.h"
Yao Chen44cf27c2017-09-14 22:32:50 -070027#include "MetricProducer.h"
Yao Chen44cf27c2017-09-14 22:32:50 -070028#include "frameworks/base/cmds/statsd/src/statsd_config.pb.h"
Yao Chen729093d2017-10-16 10:33:26 -070029#include "stats_util.h"
Yao Chen44cf27c2017-09-14 22:32:50 -070030
31namespace android {
32namespace os {
33namespace statsd {
34
Yao Chen93fe3a32017-11-02 13:52:59 -070035struct CountBucket {
36 int64_t mBucketStartNs;
37 int64_t mBucketEndNs;
38 int64_t mCount;
39};
40
Yao Chen44cf27c2017-09-14 22:32:50 -070041class CountMetricProducer : public MetricProducer {
42public:
Yao Chen729093d2017-10-16 10:33:26 -070043 // TODO: Pass in the start time from MetricsManager, it should be consistent for all metrics.
Yao Chenb3561512017-11-21 18:07:17 -080044 CountMetricProducer(const ConfigKey& key, const CountMetric& countMetric,
45 const int conditionIndex, const sp<ConditionWizard>& wizard,
Yangster-macb142cc82018-03-30 15:22:08 -070046 const int64_t startTimeNs);
Yao Chen44cf27c2017-09-14 22:32:50 -070047
48 virtual ~CountMetricProducer();
49
Yao Chenb7041772017-10-20 16:59:25 -070050protected:
Yangsterf2bee6f2017-11-29 12:01:05 -080051 void onMatchedLogEventInternalLocked(
Yangster-mac93694462018-01-22 20:49:31 -080052 const size_t matcherIndex, const MetricDimensionKey& eventKey,
Yangster-mac20877162017-12-22 17:19:39 -080053 const ConditionKey& conditionKey, bool condition,
Chenjie Yua7259ab2017-12-10 08:31:05 -080054 const LogEvent& event) override;
yro2b0f8862017-11-06 14:27:31 -080055
Yao Chen44cf27c2017-09-14 22:32:50 -070056private:
Yangster-mace68f3a52018-04-04 00:01:43 -070057
Yangster-macb142cc82018-03-30 15:22:08 -070058 void onDumpReportLocked(const int64_t dumpTimeNs,
Yangster-mace68f3a52018-04-04 00:01:43 -070059 const bool include_current_partial_bucket,
Yao Chen288c6002017-12-12 13:43:18 -080060 android::util::ProtoOutputStream* protoOutput) override;
Yangsterf2bee6f2017-11-29 12:01:05 -080061
62 // Internal interface to handle condition change.
Yangster-macb142cc82018-03-30 15:22:08 -070063 void onConditionChangedLocked(const bool conditionMet, const int64_t eventTime) override;
Yangsterf2bee6f2017-11-29 12:01:05 -080064
65 // Internal interface to handle sliced condition change.
Yangster-macb142cc82018-03-30 15:22:08 -070066 void onSlicedConditionMayChangeLocked(bool overallCondition, const int64_t eventTime) override;
Yangsterf2bee6f2017-11-29 12:01:05 -080067
68 // Internal function to calculate the current used bytes.
69 size_t byteSizeLocked() const override;
70
Yangster-maca78d0082018-03-12 12:02:56 -070071 void dumpStatesLocked(FILE* out, bool verbose) const override;
Yao Chen884c8c12018-01-26 10:36:25 -080072
Yangster-macb142cc82018-03-30 15:22:08 -070073 void dropDataLocked(const int64_t dropTimeNs) override;
Yao Chen06dba5d2018-01-26 13:38:16 -080074
Yangsterf2bee6f2017-11-29 12:01:05 -080075 // Util function to flush the old packet.
Yangster-macb142cc82018-03-30 15:22:08 -070076 void flushIfNeededLocked(const int64_t& newEventTime) override;
David Chen27785a82018-01-19 17:06:45 -080077
Yangster-macb142cc82018-03-30 15:22:08 -070078 void flushCurrentBucketLocked(const int64_t& eventTimeNs) override;
Yangsterf2bee6f2017-11-29 12:01:05 -080079
yro2b0f8862017-11-06 14:27:31 -080080 // TODO: Add a lock to mPastBuckets.
Yangster-mac93694462018-01-22 20:49:31 -080081 std::unordered_map<MetricDimensionKey, std::vector<CountBucket>> mPastBuckets;
yro24809bd2017-10-31 23:06:53 -070082
David Chen27785a82018-01-19 17:06:45 -080083 // The current bucket (may be a partial bucket).
Yang Lu3eba6212017-10-25 19:54:45 -070084 std::shared_ptr<DimToValMap> mCurrentSlicedCounter = std::make_shared<DimToValMap>();
Yao Chen729093d2017-10-16 10:33:26 -070085
David Chen27785a82018-01-19 17:06:45 -080086 // The sum of previous partial buckets in the current full bucket (excluding the current
87 // partial bucket). This is only updated while flushing the current bucket.
88 std::shared_ptr<DimToValMap> mCurrentFullCounters = std::make_shared<DimToValMap>();
89
Yangster-mace2cd6d52017-11-09 20:38:30 -080090 static const size_t kBucketSize = sizeof(CountBucket{});
yro24809bd2017-10-31 23:06:53 -070091
Yangster-mac93694462018-01-22 20:49:31 -080092 bool hitGuardRailLocked(const MetricDimensionKey& newKey);
Yao Chenb3561512017-11-21 18:07:17 -080093
Yao Chen93fe3a32017-11-02 13:52:59 -070094 FRIEND_TEST(CountMetricProducerTest, TestNonDimensionalEvents);
95 FRIEND_TEST(CountMetricProducerTest, TestEventsWithNonSlicedCondition);
96 FRIEND_TEST(CountMetricProducerTest, TestEventsWithSlicedCondition);
Bookatz1bf94382018-01-04 11:43:20 -080097 FRIEND_TEST(CountMetricProducerTest, TestAnomalyDetectionUnSliced);
David Chen27785a82018-01-19 17:06:45 -080098 FRIEND_TEST(CountMetricProducerTest, TestEventWithAppUpgrade);
99 FRIEND_TEST(CountMetricProducerTest, TestEventWithAppUpgradeInNextBucket);
Yao Chen44cf27c2017-09-14 22:32:50 -0700100};
101
102} // namespace statsd
103} // namespace os
104} // namespace android
105#endif // COUNT_METRIC_PRODUCER_H