Chenjie Yu | b3dda41 | 2017-10-24 13:41:59 -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 | #pragma once |
| 18 | |
Chenjie Yu | 6736c89 | 2017-11-09 10:50:09 -0800 | [diff] [blame] | 19 | #include <gtest/gtest_prod.h> |
Chenjie Yu | b3dda41 | 2017-10-24 13:41:59 -0700 | [diff] [blame] | 20 | #include <utils/threads.h> |
| 21 | #include <list> |
| 22 | #include "../condition/ConditionTracker.h" |
| 23 | #include "../external/PullDataReceiver.h" |
| 24 | #include "../external/StatsPullerManager.h" |
Chenjie Yu | b3dda41 | 2017-10-24 13:41:59 -0700 | [diff] [blame] | 25 | #include "MetricProducer.h" |
Chenjie Yu | b3dda41 | 2017-10-24 13:41:59 -0700 | [diff] [blame] | 26 | #include "frameworks/base/cmds/statsd/src/statsd_config.pb.h" |
| 27 | |
| 28 | namespace android { |
| 29 | namespace os { |
| 30 | namespace statsd { |
| 31 | |
yro | 2b0f886 | 2017-11-06 14:27:31 -0800 | [diff] [blame] | 32 | struct ValueBucket { |
| 33 | int64_t mBucketStartNs; |
| 34 | int64_t mBucketEndNs; |
| 35 | int64_t mValue; |
Yangster-mac | e2cd6d5 | 2017-11-09 20:38:30 -0800 | [diff] [blame] | 36 | uint64_t mBucketNum; |
yro | 2b0f886 | 2017-11-06 14:27:31 -0800 | [diff] [blame] | 37 | }; |
| 38 | |
Chenjie Yu | b3dda41 | 2017-10-24 13:41:59 -0700 | [diff] [blame] | 39 | class ValueMetricProducer : public virtual MetricProducer, public virtual PullDataReceiver { |
| 40 | public: |
| 41 | ValueMetricProducer(const ValueMetric& valueMetric, const int conditionIndex, |
Yao Chen | 93fe3a3 | 2017-11-02 13:52:59 -0700 | [diff] [blame] | 42 | const sp<ConditionWizard>& wizard, const int pullTagId, |
| 43 | const uint64_t startTimeNs); |
Chenjie Yu | b3dda41 | 2017-10-24 13:41:59 -0700 | [diff] [blame] | 44 | |
| 45 | virtual ~ValueMetricProducer(); |
| 46 | |
| 47 | void onConditionChanged(const bool condition, const uint64_t eventTime) override; |
| 48 | |
| 49 | void finish() override; |
Yangster-mac | e2cd6d5 | 2017-11-09 20:38:30 -0800 | [diff] [blame] | 50 | void flushIfNeeded(const uint64_t eventTimeNs) override; |
Chenjie Yu | b3dda41 | 2017-10-24 13:41:59 -0700 | [diff] [blame] | 51 | |
yro | 2b0f886 | 2017-11-06 14:27:31 -0800 | [diff] [blame] | 52 | // TODO: Pass a timestamp as a parameter in onDumpReport. |
yro | 17adac9 | 2017-11-08 23:16:29 -0800 | [diff] [blame] | 53 | std::unique_ptr<std::vector<uint8_t>> onDumpReport() override; |
Chenjie Yu | b3dda41 | 2017-10-24 13:41:59 -0700 | [diff] [blame] | 54 | |
| 55 | void onSlicedConditionMayChange(const uint64_t eventTime); |
| 56 | |
| 57 | void onDataPulled(const std::vector<std::shared_ptr<LogEvent>>& data) override; |
yro | 2b0f886 | 2017-11-06 14:27:31 -0800 | [diff] [blame] | 58 | |
Yangster | 7c334a1 | 2017-11-22 14:24:24 -0800 | [diff] [blame^] | 59 | size_t byteSize() const override; |
Chenjie Yu | b3dda41 | 2017-10-24 13:41:59 -0700 | [diff] [blame] | 60 | |
| 61 | // TODO: Implement this later. |
| 62 | virtual void notifyAppUpgrade(const string& apk, const int uid, const int version) override{}; |
| 63 | // TODO: Implement this later. |
| 64 | virtual void notifyAppRemoved(const string& apk, const int uid) override{}; |
| 65 | |
| 66 | protected: |
| 67 | void onMatchedLogEventInternal(const size_t matcherIndex, const HashableDimensionKey& eventKey, |
| 68 | const std::map<std::string, HashableDimensionKey>& conditionKey, |
| 69 | bool condition, const LogEvent& event, |
| 70 | bool scheduledPull) override; |
| 71 | |
yro | 2b0f886 | 2017-11-06 14:27:31 -0800 | [diff] [blame] | 72 | void startNewProtoOutputStream(long long timestamp) override; |
| 73 | |
Chenjie Yu | b3dda41 | 2017-10-24 13:41:59 -0700 | [diff] [blame] | 74 | private: |
| 75 | const ValueMetric mMetric; |
| 76 | |
Chenjie Yu | 6736c89 | 2017-11-09 10:50:09 -0800 | [diff] [blame] | 77 | std::shared_ptr<StatsPullerManager> mStatsPullerManager; |
| 78 | |
| 79 | // for testing |
| 80 | ValueMetricProducer(const ValueMetric& valueMetric, const int conditionIndex, |
| 81 | const sp<ConditionWizard>& wizard, const int pullTagId, |
| 82 | const uint64_t startTimeNs, |
| 83 | std::shared_ptr<StatsPullerManager> statsPullerManager); |
Chenjie Yu | b3dda41 | 2017-10-24 13:41:59 -0700 | [diff] [blame] | 84 | |
| 85 | Mutex mLock; |
| 86 | |
Chenjie Yu | 5305e1d | 2017-10-31 13:49:36 -0700 | [diff] [blame] | 87 | // tagId for pulled data. -1 if this is not pulled |
| 88 | const int mPullTagId; |
Chenjie Yu | b3dda41 | 2017-10-24 13:41:59 -0700 | [diff] [blame] | 89 | |
| 90 | // internal state of a bucket. |
| 91 | typedef struct { |
| 92 | std::vector<std::pair<long, long>> raw; |
Chenjie Yu | 6736c89 | 2017-11-09 10:50:09 -0800 | [diff] [blame] | 93 | bool tainted; |
Chenjie Yu | b3dda41 | 2017-10-24 13:41:59 -0700 | [diff] [blame] | 94 | } Interval; |
| 95 | |
| 96 | std::unordered_map<HashableDimensionKey, Interval> mCurrentSlicedBucket; |
| 97 | // If condition is true and pulling on schedule, the previous bucket value needs to be carried |
| 98 | // over to the next bucket. |
| 99 | std::unordered_map<HashableDimensionKey, Interval> mNextSlicedBucket; |
| 100 | |
| 101 | // Save the past buckets and we can clear when the StatsLogReport is dumped. |
yro | 2b0f886 | 2017-11-06 14:27:31 -0800 | [diff] [blame] | 102 | // TODO: Add a lock to mPastBuckets. |
| 103 | std::unordered_map<HashableDimensionKey, std::vector<ValueBucket>> mPastBuckets; |
Chenjie Yu | b3dda41 | 2017-10-24 13:41:59 -0700 | [diff] [blame] | 104 | |
| 105 | long get_value(const LogEvent& event); |
| 106 | |
Yangster-mac | e2cd6d5 | 2017-11-09 20:38:30 -0800 | [diff] [blame] | 107 | static const size_t kBucketSize = sizeof(ValueBucket{}); |
Chenjie Yu | 6736c89 | 2017-11-09 10:50:09 -0800 | [diff] [blame] | 108 | |
| 109 | FRIEND_TEST(ValueMetricProducerTest, TestNonDimensionalEvents); |
| 110 | FRIEND_TEST(ValueMetricProducerTest, TestEventsWithNonSlicedCondition); |
| 111 | FRIEND_TEST(ValueMetricProducerTest, TestPushedEventsWithoutCondition); |
Chenjie Yu | b3dda41 | 2017-10-24 13:41:59 -0700 | [diff] [blame] | 112 | }; |
| 113 | |
| 114 | } // namespace statsd |
| 115 | } // namespace os |
| 116 | } // namespace android |