blob: 88c63fa5a149b7fb35817055d8525029ca91dc03 [file] [log] [blame]
Yao Chenab273e22017-09-06 12:53: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#ifndef STATS_LOG_PROCESSOR_H
17#define STATS_LOG_PROCESSOR_H
18
Stefan Lafoncdb1a0e2017-09-27 20:24:15 -070019#include "frameworks/base/cmds/statsd/src/statsd_config.pb.h"
Yao Chen44cf27c2017-09-14 22:32:50 -070020#include "DropboxWriter.h"
21#include "LogReader.h"
22#include "metrics/MetricsManager.h"
yro00698da2017-09-15 10:06:40 -070023#include "parse_util.h"
Yao Chenab273e22017-09-06 12:53:50 -070024
Yao Chen44cf27c2017-09-14 22:32:50 -070025#include <log/logprint.h>
26#include <stdio.h>
David Chen0656b7a2017-09-13 15:53:39 -070027#include <unordered_map>
28
Bookatz906a35c2017-09-20 15:26:44 -070029namespace android {
30namespace os {
31namespace statsd {
Yao Chenab273e22017-09-06 12:53:50 -070032
Yao Chenef99c4f2017-09-22 16:26:54 -070033class StatsLogProcessor : public LogListener {
Yao Chenab273e22017-09-06 12:53:50 -070034public:
35 StatsLogProcessor();
36 virtual ~StatsLogProcessor();
37
38 virtual void OnLogEvent(const log_msg& msg);
39
Yao Chen44cf27c2017-09-14 22:32:50 -070040 void UpdateConfig(const int config_source, const StatsdConfig& config);
David Chen0656b7a2017-09-13 15:53:39 -070041
Yao Chenab273e22017-09-06 12:53:50 -070042private:
Yao Chen44cf27c2017-09-14 22:32:50 -070043 // TODO: use EventMetrics to log the events.
Yao Chenab273e22017-09-06 12:53:50 -070044 DropboxWriter m_dropbox_writer;
David Chen0656b7a2017-09-13 15:53:39 -070045
Yao Chen44cf27c2017-09-14 22:32:50 -070046 std::unordered_map<int, std::unique_ptr<MetricsManager>> mMetricsManagers;
47
48 static StatsdConfig buildFakeConfig();
Yao Chenab273e22017-09-06 12:53:50 -070049};
Bookatz906a35c2017-09-20 15:26:44 -070050
Yao Chenef99c4f2017-09-22 16:26:54 -070051} // namespace statsd
52} // namespace os
53} // namespace android
Bookatz906a35c2017-09-20 15:26:44 -070054
Yao Chenef99c4f2017-09-22 16:26:54 -070055#endif // STATS_LOG_PROCESSOR_H