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; |
Yangster-mac | e2cd6d5 | 2017-11-09 20:38:30 -0800 | [diff] [blame] | 39 | uint64_t mBucketNum; |
Yao Chen | 93fe3a3 | 2017-11-02 13:52:59 -0700 | [diff] [blame] | 40 | }; |
| 41 | |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 42 | class CountMetricProducer : public MetricProducer { |
| 43 | public: |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 44 | // TODO: Pass in the start time from MetricsManager, it should be consistent for all metrics. |
| 45 | CountMetricProducer(const CountMetric& countMetric, const int conditionIndex, |
Yao Chen | 93fe3a3 | 2017-11-02 13:52:59 -0700 | [diff] [blame] | 46 | const sp<ConditionWizard>& wizard, const uint64_t startTimeNs); |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 47 | |
| 48 | virtual ~CountMetricProducer(); |
| 49 | |
Yao Chen | 5154a379 | 2017-10-30 22:57:06 -0700 | [diff] [blame] | 50 | void onConditionChanged(const bool conditionMet, const uint64_t eventTime) override; |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 51 | |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 52 | void finish() override; |
| 53 | |
Yangster-mac | e2cd6d5 | 2017-11-09 20:38:30 -0800 | [diff] [blame] | 54 | void flushIfNeeded(const uint64_t newEventTime) override; |
| 55 | |
yro | 2b0f886 | 2017-11-06 14:27:31 -0800 | [diff] [blame] | 56 | // TODO: Pass a timestamp as a parameter in onDumpReport. |
yro | 17adac9 | 2017-11-08 23:16:29 -0800 | [diff] [blame] | 57 | std::unique_ptr<std::vector<uint8_t>> onDumpReport() override; |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 58 | |
Yao Chen | 5154a379 | 2017-10-30 22:57:06 -0700 | [diff] [blame] | 59 | void onSlicedConditionMayChange(const uint64_t eventTime) override; |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 60 | |
Yangster | 7c334a1 | 2017-11-22 14:24:24 -0800 | [diff] [blame^] | 61 | size_t byteSize() const override; |
yro | 69007c8 | 2017-10-26 20:42:57 -0700 | [diff] [blame] | 62 | |
David Chen | de70169 | 2017-10-05 13:16:02 -0700 | [diff] [blame] | 63 | // TODO: Implement this later. |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 64 | virtual void notifyAppUpgrade(const string& apk, const int uid, const int version) override{}; |
David Chen | d689689 | 2017-10-25 11:49:03 -0700 | [diff] [blame] | 65 | // TODO: Implement this later. |
| 66 | virtual void notifyAppRemoved(const string& apk, const int uid) override{}; |
David Chen | de70169 | 2017-10-05 13:16:02 -0700 | [diff] [blame] | 67 | |
Yao Chen | b704177 | 2017-10-20 16:59:25 -0700 | [diff] [blame] | 68 | protected: |
| 69 | void onMatchedLogEventInternal(const size_t matcherIndex, const HashableDimensionKey& eventKey, |
| 70 | const std::map<std::string, HashableDimensionKey>& conditionKey, |
Chenjie Yu | b3dda41 | 2017-10-24 13:41:59 -0700 | [diff] [blame] | 71 | bool condition, const LogEvent& event, |
| 72 | bool scheduledPull) override; |
Yao Chen | b704177 | 2017-10-20 16:59:25 -0700 | [diff] [blame] | 73 | |
yro | 2b0f886 | 2017-11-06 14:27:31 -0800 | [diff] [blame] | 74 | void startNewProtoOutputStream(long long timestamp) override; |
| 75 | |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 76 | private: |
| 77 | const CountMetric mMetric; |
| 78 | |
yro | 2b0f886 | 2017-11-06 14:27:31 -0800 | [diff] [blame] | 79 | // TODO: Add a lock to mPastBuckets. |
Yao Chen | 93fe3a3 | 2017-11-02 13:52:59 -0700 | [diff] [blame] | 80 | std::unordered_map<HashableDimensionKey, std::vector<CountBucket>> mPastBuckets; |
yro | 24809bd | 2017-10-31 23:06:53 -0700 | [diff] [blame] | 81 | |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 82 | // The current bucket. |
Yang Lu | 3eba621 | 2017-10-25 19:54:45 -0700 | [diff] [blame] | 83 | std::shared_ptr<DimToValMap> mCurrentSlicedCounter = std::make_shared<DimToValMap>(); |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 84 | |
Yangster-mac | e2cd6d5 | 2017-11-09 20:38:30 -0800 | [diff] [blame] | 85 | static const size_t kBucketSize = sizeof(CountBucket{}); |
yro | 24809bd | 2017-10-31 23:06:53 -0700 | [diff] [blame] | 86 | |
Yao Chen | 93fe3a3 | 2017-11-02 13:52:59 -0700 | [diff] [blame] | 87 | FRIEND_TEST(CountMetricProducerTest, TestNonDimensionalEvents); |
| 88 | FRIEND_TEST(CountMetricProducerTest, TestEventsWithNonSlicedCondition); |
| 89 | FRIEND_TEST(CountMetricProducerTest, TestEventsWithSlicedCondition); |
Yangster-mac | e2cd6d5 | 2017-11-09 20:38:30 -0800 | [diff] [blame] | 90 | FRIEND_TEST(CountMetricProducerTest, TestAnomalyDetection); |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 91 | }; |
| 92 | |
| 93 | } // namespace statsd |
| 94 | } // namespace os |
| 95 | } // namespace android |
| 96 | #endif // COUNT_METRIC_PRODUCER_H |