blob: 49ba9d863d2096c8f5cf31b06e143f5506b133e4 [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 // TODO: Implement this later.
Dianne Hackborn3accca02013-09-20 09:32:11 -070044 virtual void notifyAppUpgrade(const string& apk, const int uid, const int64_t version)
45 override{};
David Chend6896892017-10-25 11:49:03 -070046 // TODO: Implement this later.
47 virtual void notifyAppRemoved(const string& apk, const int uid) override{};
Yao Chen5110bed2017-10-23 12:50:02 -070048
yro2b0f8862017-11-06 14:27:31 -080049protected:
Yao Chen288c6002017-12-12 13:43:18 -080050 void startNewProtoOutputStreamLocked();
yro2b0f8862017-11-06 14:27:31 -080051
Yao Chen5110bed2017-10-23 12:50:02 -070052private:
Yangsterf2bee6f2017-11-29 12:01:05 -080053 void onMatchedLogEventInternalLocked(
54 const size_t matcherIndex, const HashableDimensionKey& eventKey,
55 const std::map<std::string, HashableDimensionKey>& conditionKey, bool condition,
Chenjie Yua7259ab2017-12-10 08:31:05 -080056 const LogEvent& event) override;
Yangsterf2bee6f2017-11-29 12:01:05 -080057
Yao Chen288c6002017-12-12 13:43:18 -080058 void onDumpReportLocked(const uint64_t dumpTimeNs,
59 android::util::ProtoOutputStream* protoOutput) override;
Yangsterf2bee6f2017-11-29 12:01:05 -080060
61 // Internal interface to handle condition change.
62 void onConditionChangedLocked(const bool conditionMet, const uint64_t eventTime) override;
63
64 // Internal interface to handle sliced condition change.
65 void onSlicedConditionMayChangeLocked(const uint64_t eventTime) override;
66
67 // Internal function to calculate the current used bytes.
68 size_t byteSizeLocked() const override;
69
Yao Chen5110bed2017-10-23 12:50:02 -070070 const EventMetric mMetric;
Yao Chen288c6002017-12-12 13:43:18 -080071
72 // Maps to a EventMetricDataWrapper. Storing atom events in ProtoOutputStream
73 // is more space efficient than storing LogEvent.
74 std::unique_ptr<android::util::ProtoOutputStream> mProto;
Yao Chen5110bed2017-10-23 12:50:02 -070075};
76
77} // namespace statsd
78} // namespace os
79} // namespace android
80#endif // EVENT_METRIC_PRODUCER_H