blob: b94a9572113e48d2f60867ae6443168405bcf5c7 [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
Joe Onorato9fc9edf2017-10-15 20:08:52 -070017#include "Log.h"
Yao Chencaf339d2017-10-06 16:01:10 -070018
Joe Onorato9fc9edf2017-10-15 20:08:52 -070019#include "CombinationLogMatchingTracker.h"
20#include "matchers/matcher_util.h"
21
22namespace android {
23namespace os {
24namespace statsd {
25
Yao Chencaf339d2017-10-06 16:01:10 -070026using std::set;
Yao Chencaf339d2017-10-06 16:01:10 -070027using std::unordered_map;
28using std::vector;
29
Yangster-mac94e197c2018-01-02 16:03:03 -080030CombinationLogMatchingTracker::CombinationLogMatchingTracker(const int64_t& id, const int index)
31 : LogMatchingTracker(id, index) {
Yao Chencaf339d2017-10-06 16:01:10 -070032}
33
34CombinationLogMatchingTracker::~CombinationLogMatchingTracker() {
35}
36
Stefan Lafonb8c9aa82017-12-03 14:27:25 -080037bool CombinationLogMatchingTracker::init(const vector<AtomMatcher>& allLogMatchers,
Yao Chencaf339d2017-10-06 16:01:10 -070038 const vector<sp<LogMatchingTracker>>& allTrackers,
Yangster-mac94e197c2018-01-02 16:03:03 -080039 const unordered_map<int64_t, int>& matcherMap,
Yao Chencaf339d2017-10-06 16:01:10 -070040 vector<bool>& stack) {
41 if (mInitialized) {
42 return true;
43 }
44
45 // mark this node as visited in the recursion stack.
46 stack[mIndex] = true;
47
Stefan Lafonb8c9aa82017-12-03 14:27:25 -080048 AtomMatcher_Combination matcher = allLogMatchers[mIndex].combination();
Yao Chencaf339d2017-10-06 16:01:10 -070049
50 // LogicalOperation is missing in the config
51 if (!matcher.has_operation()) {
52 return false;
53 }
54
55 mLogicalOperation = matcher.operation();
56
57 if (mLogicalOperation == LogicalOperation::NOT && matcher.matcher_size() != 1) {
58 return false;
59 }
60
Yangster-mac94e197c2018-01-02 16:03:03 -080061 for (const auto& child : matcher.matcher()) {
Yao Chencaf339d2017-10-06 16:01:10 -070062 auto pair = matcherMap.find(child);
63 if (pair == matcherMap.end()) {
Yangster-mac94e197c2018-01-02 16:03:03 -080064 ALOGW("Matcher %lld not found in the config", (long long)child);
Yao Chencaf339d2017-10-06 16:01:10 -070065 return false;
66 }
67
68 int childIndex = pair->second;
69
70 // if the child is a visited node in the recursion -> circle detected.
71 if (stack[childIndex]) {
72 ALOGE("Circle detected in matcher config");
73 return false;
74 }
75
76 if (!allTrackers[childIndex]->init(allLogMatchers, allTrackers, matcherMap, stack)) {
Yangster-mac94e197c2018-01-02 16:03:03 -080077 ALOGW("child matcher init failed %lld", (long long)child);
Yao Chencaf339d2017-10-06 16:01:10 -070078 return false;
79 }
80
81 mChildren.push_back(childIndex);
82
Yangster-mac20877162017-12-22 17:19:39 -080083 const set<int>& childTagIds = allTrackers[childIndex]->getAtomIds();
84 mAtomIds.insert(childTagIds.begin(), childTagIds.end());
Yao Chencaf339d2017-10-06 16:01:10 -070085 }
86
87 mInitialized = true;
88 // unmark this node in the recursion stack.
89 stack[mIndex] = false;
90 return true;
91}
92
Joe Onoratoc4dfae52017-10-17 23:38:21 -070093void CombinationLogMatchingTracker::onLogEvent(const LogEvent& event,
Yao Chencaf339d2017-10-06 16:01:10 -070094 const vector<sp<LogMatchingTracker>>& allTrackers,
95 vector<MatchingState>& matcherResults) {
96 // this event has been processed.
97 if (matcherResults[mIndex] != MatchingState::kNotComputed) {
98 return;
99 }
100
Yangster-mac20877162017-12-22 17:19:39 -0800101 if (mAtomIds.find(event.GetTagId()) == mAtomIds.end()) {
Yao Chencaf339d2017-10-06 16:01:10 -0700102 matcherResults[mIndex] = MatchingState::kNotMatched;
103 return;
104 }
105
106 // evaluate children matchers if they haven't been evaluated.
107 for (const int childIndex : mChildren) {
108 if (matcherResults[childIndex] == MatchingState::kNotComputed) {
109 const sp<LogMatchingTracker>& child = allTrackers[childIndex];
110 child->onLogEvent(event, allTrackers, matcherResults);
111 }
112 }
113
114 bool matched = combinationMatch(mChildren, mLogicalOperation, matcherResults);
115 matcherResults[mIndex] = matched ? MatchingState::kMatched : MatchingState::kNotMatched;
116}
117
118} // namespace statsd
119} // namespace os
120} // namespace android