Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 20 | #include <unordered_map> |
| 21 | #include <vector> |
| 22 | #include "LogMatchingTracker.h" |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 23 | #include "frameworks/base/cmds/statsd/src/statsd_config.pb.h" |
Yangster-mac | 2087716 | 2017-12-22 17:19:39 -0800 | [diff] [blame] | 24 | #include "packages/UidMap.h" |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 25 | |
| 26 | namespace android { |
| 27 | namespace os { |
| 28 | namespace statsd { |
| 29 | |
| 30 | class SimpleLogMatchingTracker : public virtual LogMatchingTracker { |
| 31 | public: |
Yangster-mac | 94e197c | 2018-01-02 16:03:03 -0800 | [diff] [blame] | 32 | SimpleLogMatchingTracker(const int64_t& id, const int index, |
Yangster-mac | 2087716 | 2017-12-22 17:19:39 -0800 | [diff] [blame] | 33 | const SimpleAtomMatcher& matcher, |
| 34 | const UidMap& uidMap); |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 35 | |
| 36 | ~SimpleLogMatchingTracker(); |
| 37 | |
Stefan Lafon | b8c9aa8 | 2017-12-03 14:27:25 -0800 | [diff] [blame] | 38 | bool init(const std::vector<AtomMatcher>& allLogMatchers, |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 39 | const std::vector<sp<LogMatchingTracker>>& allTrackers, |
Yangster-mac | 94e197c | 2018-01-02 16:03:03 -0800 | [diff] [blame] | 40 | const std::unordered_map<int64_t, int>& matcherMap, |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 41 | std::vector<bool>& stack) override; |
| 42 | |
Joe Onorato | c4dfae5 | 2017-10-17 23:38:21 -0700 | [diff] [blame] | 43 | void onLogEvent(const LogEvent& event, |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 44 | const std::vector<sp<LogMatchingTracker>>& allTrackers, |
| 45 | std::vector<MatchingState>& matcherResults) override; |
| 46 | |
| 47 | private: |
Stefan Lafon | b8c9aa8 | 2017-12-03 14:27:25 -0800 | [diff] [blame] | 48 | const SimpleAtomMatcher mMatcher; |
Yangster-mac | 2087716 | 2017-12-22 17:19:39 -0800 | [diff] [blame] | 49 | const UidMap& mUidMap; |
Yao Chen | caf339d | 2017-10-06 16:01:10 -0700 | [diff] [blame] | 50 | }; |
| 51 | |
| 52 | } // namespace statsd |
| 53 | } // namespace os |
| 54 | } // namespace android |
| 55 | #endif // SIMPLE_LOG_MATCHING_TRACKER_H |