Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 1 | /* |
| 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 Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 20 | #include <unordered_map> |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 21 | |
yro | 24809bd | 2017-10-31 23:06:53 -0700 | [diff] [blame] | 22 | #include <android/util/ProtoOutputStream.h> |
Yao Chen | 93fe3a3 | 2017-11-02 13:52:59 -0700 | [diff] [blame] | 23 | #include <gtest/gtest_prod.h> |
Yangster-mac | e2cd6d5 | 2017-11-09 20:38:30 -0800 | [diff] [blame] | 24 | #include "../anomaly/AnomalyTracker.h" |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 25 | #include "../condition/ConditionTracker.h" |
| 26 | #include "../matchers/matcher_util.h" |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 27 | #include "MetricProducer.h" |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 28 | #include "frameworks/base/cmds/statsd/src/statsd_config.pb.h" |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 29 | #include "stats_util.h" |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 30 | |
| 31 | namespace android { |
| 32 | namespace os { |
| 33 | namespace statsd { |
| 34 | |
Yao Chen | 93fe3a3 | 2017-11-02 13:52:59 -0700 | [diff] [blame] | 35 | struct CountBucket { |
| 36 | int64_t mBucketStartNs; |
| 37 | int64_t mBucketEndNs; |
| 38 | int64_t mCount; |
| 39 | }; |
| 40 | |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 41 | class CountMetricProducer : public MetricProducer { |
| 42 | public: |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 43 | // TODO: Pass in the start time from MetricsManager, it should be consistent for all metrics. |
Yao Chen | b356151 | 2017-11-21 18:07:17 -0800 | [diff] [blame] | 44 | CountMetricProducer(const ConfigKey& key, const CountMetric& countMetric, |
| 45 | const int conditionIndex, const sp<ConditionWizard>& wizard, |
Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 46 | const int64_t startTimeNs); |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 47 | |
| 48 | virtual ~CountMetricProducer(); |
| 49 | |
Yao Chen | b704177 | 2017-10-20 16:59:25 -0700 | [diff] [blame] | 50 | protected: |
Yangster | f2bee6f | 2017-11-29 12:01:05 -0800 | [diff] [blame] | 51 | void onMatchedLogEventInternalLocked( |
Yangster-mac | 9369446 | 2018-01-22 20:49:31 -0800 | [diff] [blame] | 52 | const size_t matcherIndex, const MetricDimensionKey& eventKey, |
Yangster-mac | 2087716 | 2017-12-22 17:19:39 -0800 | [diff] [blame] | 53 | const ConditionKey& conditionKey, bool condition, |
Chenjie Yu | a7259ab | 2017-12-10 08:31:05 -0800 | [diff] [blame] | 54 | const LogEvent& event) override; |
yro | 2b0f886 | 2017-11-06 14:27:31 -0800 | [diff] [blame] | 55 | |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 56 | private: |
Yangster-mac | e68f3a5 | 2018-04-04 00:01:43 -0700 | [diff] [blame^] | 57 | |
Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 58 | void onDumpReportLocked(const int64_t dumpTimeNs, |
Yangster-mac | e68f3a5 | 2018-04-04 00:01:43 -0700 | [diff] [blame^] | 59 | const bool include_current_partial_bucket, |
Yao Chen | 288c600 | 2017-12-12 13:43:18 -0800 | [diff] [blame] | 60 | android::util::ProtoOutputStream* protoOutput) override; |
Yangster | f2bee6f | 2017-11-29 12:01:05 -0800 | [diff] [blame] | 61 | |
| 62 | // Internal interface to handle condition change. |
Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 63 | void onConditionChangedLocked(const bool conditionMet, const int64_t eventTime) override; |
Yangster | f2bee6f | 2017-11-29 12:01:05 -0800 | [diff] [blame] | 64 | |
| 65 | // Internal interface to handle sliced condition change. |
Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 66 | void onSlicedConditionMayChangeLocked(bool overallCondition, const int64_t eventTime) override; |
Yangster | f2bee6f | 2017-11-29 12:01:05 -0800 | [diff] [blame] | 67 | |
| 68 | // Internal function to calculate the current used bytes. |
| 69 | size_t byteSizeLocked() const override; |
| 70 | |
Yangster-mac | a78d008 | 2018-03-12 12:02:56 -0700 | [diff] [blame] | 71 | void dumpStatesLocked(FILE* out, bool verbose) const override; |
Yao Chen | 884c8c1 | 2018-01-26 10:36:25 -0800 | [diff] [blame] | 72 | |
Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 73 | void dropDataLocked(const int64_t dropTimeNs) override; |
Yao Chen | 06dba5d | 2018-01-26 13:38:16 -0800 | [diff] [blame] | 74 | |
Yangster | f2bee6f | 2017-11-29 12:01:05 -0800 | [diff] [blame] | 75 | // Util function to flush the old packet. |
Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 76 | void flushIfNeededLocked(const int64_t& newEventTime) override; |
David Chen | 27785a8 | 2018-01-19 17:06:45 -0800 | [diff] [blame] | 77 | |
Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 78 | void flushCurrentBucketLocked(const int64_t& eventTimeNs) override; |
Yangster | f2bee6f | 2017-11-29 12:01:05 -0800 | [diff] [blame] | 79 | |
yro | 2b0f886 | 2017-11-06 14:27:31 -0800 | [diff] [blame] | 80 | // TODO: Add a lock to mPastBuckets. |
Yangster-mac | 9369446 | 2018-01-22 20:49:31 -0800 | [diff] [blame] | 81 | std::unordered_map<MetricDimensionKey, std::vector<CountBucket>> mPastBuckets; |
yro | 24809bd | 2017-10-31 23:06:53 -0700 | [diff] [blame] | 82 | |
David Chen | 27785a8 | 2018-01-19 17:06:45 -0800 | [diff] [blame] | 83 | // The current bucket (may be a partial bucket). |
Yang Lu | 3eba621 | 2017-10-25 19:54:45 -0700 | [diff] [blame] | 84 | std::shared_ptr<DimToValMap> mCurrentSlicedCounter = std::make_shared<DimToValMap>(); |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 85 | |
David Chen | 27785a8 | 2018-01-19 17:06:45 -0800 | [diff] [blame] | 86 | // 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-mac | e2cd6d5 | 2017-11-09 20:38:30 -0800 | [diff] [blame] | 90 | static const size_t kBucketSize = sizeof(CountBucket{}); |
yro | 24809bd | 2017-10-31 23:06:53 -0700 | [diff] [blame] | 91 | |
Yangster-mac | 9369446 | 2018-01-22 20:49:31 -0800 | [diff] [blame] | 92 | bool hitGuardRailLocked(const MetricDimensionKey& newKey); |
Yao Chen | b356151 | 2017-11-21 18:07:17 -0800 | [diff] [blame] | 93 | |
Yao Chen | 93fe3a3 | 2017-11-02 13:52:59 -0700 | [diff] [blame] | 94 | FRIEND_TEST(CountMetricProducerTest, TestNonDimensionalEvents); |
| 95 | FRIEND_TEST(CountMetricProducerTest, TestEventsWithNonSlicedCondition); |
| 96 | FRIEND_TEST(CountMetricProducerTest, TestEventsWithSlicedCondition); |
Bookatz | 1bf9438 | 2018-01-04 11:43:20 -0800 | [diff] [blame] | 97 | FRIEND_TEST(CountMetricProducerTest, TestAnomalyDetectionUnSliced); |
David Chen | 27785a8 | 2018-01-19 17:06:45 -0800 | [diff] [blame] | 98 | FRIEND_TEST(CountMetricProducerTest, TestEventWithAppUpgrade); |
| 99 | FRIEND_TEST(CountMetricProducerTest, TestEventWithAppUpgradeInNextBucket); |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 100 | }; |
| 101 | |
| 102 | } // namespace statsd |
| 103 | } // namespace os |
| 104 | } // namespace android |
| 105 | #endif // COUNT_METRIC_PRODUCER_H |