blob: 7b8dc6bfd938b6696f71206d20f1495c2949cd05 [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:
Yangster-mac94e197c2018-01-02 16:03:03 -080029 CombinationConditionTracker(const int64_t& id, const int index);
Yao Chencaf339d2017-10-06 16:01:10 -070030
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,
Yangster-mac94e197c2018-01-02 16:03:03 -080035 const std::unordered_map<int64_t, int>& conditionIdIndexMap,
Yao Chencaf339d2017-10-06 16:01:10 -070036 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
Yao Chen8a8d16c2018-02-08 14:50:40 -080044 void isConditionMet(const ConditionKey& conditionParameters,
45 const std::vector<sp<ConditionTracker>>& allConditions,
46 const vector<Matcher>& dimensionFields,
47 std::vector<ConditionState>& conditionCache,
48 std::unordered_set<HashableDimensionKey>& dimensionsKeySet) const override;
Yao Chen729093d2017-10-16 10:33:26 -070049
Yangster-mac93694462018-01-22 20:49:31 -080050 ConditionState getMetConditionDimension(
51 const std::vector<sp<ConditionTracker>>& allConditions,
Yao Chen8a8d16c2018-02-08 14:50:40 -080052 const vector<Matcher>& dimensionFields,
53 std::unordered_set<HashableDimensionKey>& dimensionsKeySet) const override;
54
Yao Chen580ea3212018-02-26 14:21:54 -080055 // Only one child predicate can have dimension.
56 const std::set<HashableDimensionKey>* getChangedToTrueDimensions(
57 const std::vector<sp<ConditionTracker>>& allConditions) const override {
58 for (const auto& child : mChildren) {
59 auto result = allConditions[child]->getChangedToTrueDimensions(allConditions);
60 if (result != nullptr) {
61 return result;
62 }
63 }
64 return nullptr;
65 }
66 // Only one child predicate can have dimension.
67 const std::set<HashableDimensionKey>* getChangedToFalseDimensions(
68 const std::vector<sp<ConditionTracker>>& allConditions) const override {
69 for (const auto& child : mChildren) {
70 auto result = allConditions[child]->getChangedToFalseDimensions(allConditions);
71 if (result != nullptr) {
72 return result;
73 }
74 }
75 return nullptr;
76 }
77
Yao Chencaf339d2017-10-06 16:01:10 -070078private:
79 LogicalOperation mLogicalOperation;
Yangster-mac93694462018-01-22 20:49:31 -080080
Stefan Lafon12d01fa2017-12-04 20:56:09 -080081 // Store index of the children Predicates.
Yao Chencaf339d2017-10-06 16:01:10 -070082 // We don't store string name of the Children, because we want to get rid of the hash map to
83 // map the name to object. We don't want to store smart pointers to children, because it
84 // increases the risk of circular dependency and memory leak.
85 std::vector<int> mChildren;
86};
87
88} // namespace statsd
89} // namespace os
90} // namespace android
91
92#endif // COMBINATION_CONDITION_TRACKER_H