blob: 894283323c78a8ff7864a1e9bdb165db8e92be45 [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 COMBINATION_CONDITION_TRACKER_H
18#define COMBINATION_CONDITION_TRACKER_H
19
20#include "ConditionTracker.h"
21#include "frameworks/base/cmds/statsd/src/statsd_config.pb.h"
22
23namespace android {
24namespace os {
25namespace statsd {
26
27class CombinationConditionTracker : public virtual ConditionTracker {
28public:
29 CombinationConditionTracker(const std::string& name, const int index);
30
31 ~CombinationConditionTracker();
32
Stefan Lafon12d01fa2017-12-04 20:56:09 -080033 bool init(const std::vector<Predicate>& allConditionConfig,
Yao Chencaf339d2017-10-06 16:01:10 -070034 const std::vector<sp<ConditionTracker>>& allConditionTrackers,
35 const std::unordered_map<std::string, int>& conditionNameIndexMap,
36 std::vector<bool>& stack) override;
37
Yao Chen967b2052017-11-07 16:36:43 -080038 void evaluateCondition(const LogEvent& event,
Yao Chencaf339d2017-10-06 16:01:10 -070039 const std::vector<MatchingState>& eventMatcherValues,
40 const std::vector<sp<ConditionTracker>>& mAllConditions,
41 std::vector<ConditionState>& conditionCache,
Yao Chen967b2052017-11-07 16:36:43 -080042 std::vector<bool>& changedCache) override;
Yao Chen729093d2017-10-16 10:33:26 -070043
Yangster-mac20877162017-12-22 17:19:39 -080044 void isConditionMet(const ConditionKey& conditionParameters,
Yao Chen729093d2017-10-16 10:33:26 -070045 const std::vector<sp<ConditionTracker>>& allConditions,
Yangster7c334a12017-11-22 14:24:24 -080046 std::vector<ConditionState>& conditionCache) const override;
Yao Chen729093d2017-10-16 10:33:26 -070047
Yao Chencaf339d2017-10-06 16:01:10 -070048private:
49 LogicalOperation mLogicalOperation;
Stefan Lafon12d01fa2017-12-04 20:56:09 -080050 // Store index of the children Predicates.
Yao Chencaf339d2017-10-06 16:01:10 -070051 // We don't store string name of the Children, because we want to get rid of the hash map to
52 // map the name to object. We don't want to store smart pointers to children, because it
53 // increases the risk of circular dependency and memory leak.
54 std::vector<int> mChildren;
55};
56
57} // namespace statsd
58} // namespace os
59} // namespace android
60
61#endif // COMBINATION_CONDITION_TRACKER_H