blob: afb48c4b9cefd7df94b835a5a4838e5e71eacf73 [file] [log] [blame]
Yao Chen5110bed2017-10-23 12:50:02 -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 EVENT_METRIC_PRODUCER_H
18#define EVENT_METRIC_PRODUCER_H
19
20#include <unordered_map>
21
22#include <android/util/ProtoOutputStream.h>
Yao Chen93fe3a32017-11-02 13:52:59 -070023
Yao Chen5110bed2017-10-23 12:50:02 -070024#include "../condition/ConditionTracker.h"
25#include "../matchers/matcher_util.h"
26#include "MetricProducer.h"
Yao Chen5110bed2017-10-23 12:50:02 -070027#include "frameworks/base/cmds/statsd/src/statsd_config.pb.h"
28#include "stats_util.h"
29
30namespace android {
31namespace os {
32namespace statsd {
33
34class EventMetricProducer : public MetricProducer {
35public:
36 // TODO: Pass in the start time from MetricsManager, it should be consistent for all metrics.
Yao Chenb3561512017-11-21 18:07:17 -080037 EventMetricProducer(const ConfigKey& key, const EventMetric& eventMetric,
38 const int conditionIndex, const sp<ConditionWizard>& wizard,
39 const uint64_t startTimeNs);
Yao Chen5110bed2017-10-23 12:50:02 -070040
41 virtual ~EventMetricProducer();
42
Yao Chen5110bed2017-10-23 12:50:02 -070043 void finish() override;
yro69007c82017-10-26 20:42:57 -070044
Yao Chen5110bed2017-10-23 12:50:02 -070045 // TODO: Implement this later.
46 virtual void notifyAppUpgrade(const string& apk, const int uid, const int version) override{};
David Chend6896892017-10-25 11:49:03 -070047 // TODO: Implement this later.
48 virtual void notifyAppRemoved(const string& apk, const int uid) override{};
Yao Chen5110bed2017-10-23 12:50:02 -070049
yro2b0f8862017-11-06 14:27:31 -080050protected:
Yangsterf2bee6f2017-11-29 12:01:05 -080051 void startNewProtoOutputStreamLocked(long long timestamp);
yro2b0f8862017-11-06 14:27:31 -080052
Yao Chen5110bed2017-10-23 12:50:02 -070053private:
Yangsterf2bee6f2017-11-29 12:01:05 -080054 void onMatchedLogEventInternalLocked(
55 const size_t matcherIndex, const HashableDimensionKey& eventKey,
56 const std::map<std::string, HashableDimensionKey>& conditionKey, bool condition,
57 const LogEvent& event, bool scheduledPull) override;
58
59 // TODO: Pass a timestamp as a parameter in onDumpReport.
60 std::unique_ptr<std::vector<uint8_t>> onDumpReportLocked() override;
61
62 // Internal interface to handle condition change.
63 void onConditionChangedLocked(const bool conditionMet, const uint64_t eventTime) override;
64
65 // Internal interface to handle sliced condition change.
66 void onSlicedConditionMayChangeLocked(const uint64_t eventTime) override;
67
68 // Internal function to calculate the current used bytes.
69 size_t byteSizeLocked() const override;
70
Yao Chen5110bed2017-10-23 12:50:02 -070071 const EventMetric mMetric;
Yao Chen5110bed2017-10-23 12:50:02 -070072};
73
74} // namespace statsd
75} // namespace os
76} // namespace android
77#endif // EVENT_METRIC_PRODUCER_H