blob: 68518f8a224dae11e9879184ea676f29feeda119 [file] [log] [blame]
Yao Chencaf339d2017-10-06 16:01:10 -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 SIMPLE_LOG_MATCHING_TRACKER_H
18#define SIMPLE_LOG_MATCHING_TRACKER_H
19
20#include <log/log_read.h>
21#include <log/logprint.h>
22#include <set>
23#include <unordered_map>
24#include <vector>
25#include "LogMatchingTracker.h"
Yao Chencaf339d2017-10-06 16:01:10 -070026#include "frameworks/base/cmds/statsd/src/statsd_config.pb.h"
Yangster-mac20877162017-12-22 17:19:39 -080027#include "packages/UidMap.h"
Yao Chencaf339d2017-10-06 16:01:10 -070028
29namespace android {
30namespace os {
31namespace statsd {
32
33class SimpleLogMatchingTracker : public virtual LogMatchingTracker {
34public:
35 SimpleLogMatchingTracker(const std::string& name, const int index,
Yangster-mac20877162017-12-22 17:19:39 -080036 const SimpleAtomMatcher& matcher,
37 const UidMap& uidMap);
Yao Chencaf339d2017-10-06 16:01:10 -070038
39 ~SimpleLogMatchingTracker();
40
Stefan Lafonb8c9aa82017-12-03 14:27:25 -080041 bool init(const std::vector<AtomMatcher>& allLogMatchers,
Yao Chencaf339d2017-10-06 16:01:10 -070042 const std::vector<sp<LogMatchingTracker>>& allTrackers,
43 const std::unordered_map<std::string, int>& matcherMap,
44 std::vector<bool>& stack) override;
45
Joe Onoratoc4dfae52017-10-17 23:38:21 -070046 void onLogEvent(const LogEvent& event,
Yao Chencaf339d2017-10-06 16:01:10 -070047 const std::vector<sp<LogMatchingTracker>>& allTrackers,
48 std::vector<MatchingState>& matcherResults) override;
49
50private:
Stefan Lafonb8c9aa82017-12-03 14:27:25 -080051 const SimpleAtomMatcher mMatcher;
Yangster-mac20877162017-12-22 17:19:39 -080052 const UidMap& mUidMap;
Yao Chencaf339d2017-10-06 16:01:10 -070053};
54
55} // namespace statsd
56} // namespace os
57} // namespace android
58#endif // SIMPLE_LOG_MATCHING_TRACKER_H