blob: ba185f6661ecc2e0f290cbd3268f01101a1081a4 [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 Chencaf339d2017-10-06 16:01:10 -070055private:
56 LogicalOperation mLogicalOperation;
Yangster-mac93694462018-01-22 20:49:31 -080057
Stefan Lafon12d01fa2017-12-04 20:56:09 -080058 // Store index of the children Predicates.
Yao Chencaf339d2017-10-06 16:01:10 -070059 // We don't store string name of the Children, because we want to get rid of the hash map to
60 // map the name to object. We don't want to store smart pointers to children, because it
61 // increases the risk of circular dependency and memory leak.
62 std::vector<int> mChildren;
63};
64
65} // namespace statsd
66} // namespace os
67} // namespace android
68
69#endif // COMBINATION_CONDITION_TRACKER_H