1 /*
2  * Copyright (c) 2021 Huawei Device Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #ifndef OHOS_HIVIEWDFX_SYS_EVENT_QUERY_RULE_H
17 #define OHOS_HIVIEWDFX_SYS_EVENT_QUERY_RULE_H
18 
19 #include <cstdint>
20 #include <iosfwd>
21 #include <string>
22 #include <vector>
23 
24 #include "parcel.h"
25 #include "rule_type.h"
26 
27 namespace OHOS {
28 namespace HiviewDFX {
29 class SysEventQueryRule : public Parcelable {
30 public:
SysEventQueryRule()31     SysEventQueryRule() {};
32     SysEventQueryRule(const std::string& domain, const std::vector<std::string>& events,
33         uint32_t ruleType = RuleType::WHOLE_WORD, uint32_t eventType = 0, const std::string& cond = "")
34         : domain(domain), eventList(events), ruleType(ruleType), eventType(eventType), condition(cond) {};
~SysEventQueryRule()35     ~SysEventQueryRule() {}
36 
37     bool Marshalling(Parcel& parcel) const override;
38     static SysEventQueryRule* Unmarshalling(Parcel& parcel);
39 
40     std::string domain;
41     std::vector<std::string> eventList;
42     uint32_t ruleType = RuleType::WHOLE_WORD;
43     uint32_t eventType = 0;
44     std::string condition;
45 };
46 } // namespace HiviewDFX
47 } // namespace OHOS
48 
49 #endif // OHOS_HIVIEWDFX_SYS_EVENT_QUERY_RULE_H
50