blob: 24c76f26dcaad690956bc7102ab85259df3f87a8 [file] [log] [blame]
Chenjie Yub3dda412017-10-24 13:41:59 -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#pragma once
18
Chenjie Yu6736c892017-11-09 10:50:09 -080019#include <gtest/gtest_prod.h>
Chenjie Yub3dda412017-10-24 13:41:59 -070020#include <utils/threads.h>
21#include <list>
22#include "../condition/ConditionTracker.h"
23#include "../external/PullDataReceiver.h"
24#include "../external/StatsPullerManager.h"
Chenjie Yub3dda412017-10-24 13:41:59 -070025#include "MetricProducer.h"
Chenjie Yub3dda412017-10-24 13:41:59 -070026#include "frameworks/base/cmds/statsd/src/statsd_config.pb.h"
27
28namespace android {
29namespace os {
30namespace statsd {
31
yro2b0f8862017-11-06 14:27:31 -080032struct ValueBucket {
33 int64_t mBucketStartNs;
34 int64_t mBucketEndNs;
35 int64_t mValue;
Yangster-mace2cd6d52017-11-09 20:38:30 -080036 uint64_t mBucketNum;
yro2b0f8862017-11-06 14:27:31 -080037};
38
Chenjie Yub3dda412017-10-24 13:41:59 -070039class ValueMetricProducer : public virtual MetricProducer, public virtual PullDataReceiver {
40public:
41 ValueMetricProducer(const ValueMetric& valueMetric, const int conditionIndex,
Yao Chen93fe3a32017-11-02 13:52:59 -070042 const sp<ConditionWizard>& wizard, const int pullTagId,
43 const uint64_t startTimeNs);
Chenjie Yub3dda412017-10-24 13:41:59 -070044
45 virtual ~ValueMetricProducer();
46
47 void onConditionChanged(const bool condition, const uint64_t eventTime) override;
48
49 void finish() override;
Yangster-mace2cd6d52017-11-09 20:38:30 -080050 void flushIfNeeded(const uint64_t eventTimeNs) override;
Chenjie Yub3dda412017-10-24 13:41:59 -070051
yro2b0f8862017-11-06 14:27:31 -080052 // TODO: Pass a timestamp as a parameter in onDumpReport.
yro17adac92017-11-08 23:16:29 -080053 std::unique_ptr<std::vector<uint8_t>> onDumpReport() override;
Chenjie Yub3dda412017-10-24 13:41:59 -070054
55 void onSlicedConditionMayChange(const uint64_t eventTime);
56
57 void onDataPulled(const std::vector<std::shared_ptr<LogEvent>>& data) override;
yro2b0f8862017-11-06 14:27:31 -080058
Yangster7c334a12017-11-22 14:24:24 -080059 size_t byteSize() const override;
Chenjie Yub3dda412017-10-24 13:41:59 -070060
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
66protected:
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
yro2b0f8862017-11-06 14:27:31 -080072 void startNewProtoOutputStream(long long timestamp) override;
73
Chenjie Yub3dda412017-10-24 13:41:59 -070074private:
75 const ValueMetric mMetric;
76
Chenjie Yu6736c892017-11-09 10:50:09 -080077 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 Yub3dda412017-10-24 13:41:59 -070084
85 Mutex mLock;
86
Chenjie Yu5305e1d2017-10-31 13:49:36 -070087 // tagId for pulled data. -1 if this is not pulled
88 const int mPullTagId;
Chenjie Yub3dda412017-10-24 13:41:59 -070089
90 // internal state of a bucket.
91 typedef struct {
92 std::vector<std::pair<long, long>> raw;
Chenjie Yu6736c892017-11-09 10:50:09 -080093 bool tainted;
Chenjie Yub3dda412017-10-24 13:41:59 -070094 } 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.
yro2b0f8862017-11-06 14:27:31 -0800102 // TODO: Add a lock to mPastBuckets.
103 std::unordered_map<HashableDimensionKey, std::vector<ValueBucket>> mPastBuckets;
Chenjie Yub3dda412017-10-24 13:41:59 -0700104
105 long get_value(const LogEvent& event);
106
Yangster-mace2cd6d52017-11-09 20:38:30 -0800107 static const size_t kBucketSize = sizeof(ValueBucket{});
Chenjie Yu6736c892017-11-09 10:50:09 -0800108
109 FRIEND_TEST(ValueMetricProducerTest, TestNonDimensionalEvents);
110 FRIEND_TEST(ValueMetricProducerTest, TestEventsWithNonSlicedCondition);
111 FRIEND_TEST(ValueMetricProducerTest, TestPushedEventsWithoutCondition);
Chenjie Yub3dda412017-10-24 13:41:59 -0700112};
113
114} // namespace statsd
115} // namespace os
116} // namespace android