blob: 7bc7f978d782a9ff01d6f01decb373bf26f7c806 [file] [log] [blame]
Yao Chen44cf27c2017-09-14 22:32:50 -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 METRIC_PRODUCER_H
18#define METRIC_PRODUCER_H
19
Joe Onorato9fc9edf2017-10-15 20:08:52 -070020#include "matchers/matcher_util.h"
21#include "packages/PackageInfoListener.h"
22
Yao Chen44cf27c2017-09-14 22:32:50 -070023#include <log/logprint.h>
Yao Chencaf339d2017-10-06 16:01:10 -070024#include <utils/RefBase.h>
Yao Chen44cf27c2017-09-14 22:32:50 -070025
26namespace android {
27namespace os {
28namespace statsd {
29
30// A MetricProducer is responsible for compute one single metrics, creating stats log report, and
David Chende701692017-10-05 13:16:02 -070031// writing the report to dropbox. MetricProducers should respond to package changes as required in
32// PackageInfoListener, but if none of the metrics are slicing by package name, then the update can
33// be a no-op.
David Chenf12b5c62017-10-13 15:54:03 -070034class MetricProducer : public virtual PackageInfoListener {
Yao Chen44cf27c2017-09-14 22:32:50 -070035public:
36 virtual ~MetricProducer(){};
37
Yao Chencaf339d2017-10-06 16:01:10 -070038 // Consume the parsed stats log entry that already matched the "what" of the metric.
Yao Chen44cf27c2017-09-14 22:32:50 -070039 virtual void onMatchedLogEvent(const LogEventWrapper& event) = 0;
40
Yao Chencaf339d2017-10-06 16:01:10 -070041 virtual void onConditionChanged(const bool condition) = 0;
42
Yao Chen44cf27c2017-09-14 22:32:50 -070043 // This is called when the metric collecting is done, e.g., when there is a new configuration
44 // coming. MetricProducer should do the clean up, and dump existing data to dropbox.
45 virtual void finish() = 0;
46
47 virtual void onDumpReport() = 0;
48};
49
50} // namespace statsd
51} // namespace os
52} // namespace android
53#endif // METRIC_PRODUCER_H