Store the dbus connection while launching the service
[platform/core/context/context-service.git] / src / agent / legacy / trigger / Trigger.h
1 /*
2  * Copyright (c) 2015 Samsung Electronics Co., Ltd.
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 _CONTEXT_TRIGGER_TRIGGER_H_
18 #define _CONTEXT_TRIGGER_TRIGGER_H_
19
20 #include "../Request.h"
21
22 namespace ctx {
23
24         class client_request;
25         class ContextManager;
26
27 namespace trigger {
28
29         class RuleManager;
30
31         class Trigger {
32                 public:
33                         Trigger();
34                         ~Trigger();
35
36                         bool init(ContextManager* ctxMgr);
37                         void release();
38
39                         bool assignRequest(RequestInfo* request);
40
41                 private:
42                         void __processRequest(RequestInfo* request);
43                         void __processInitialize(ContextManager* mgr);
44
45                         void __addRule(RequestInfo* request);
46                         void __removeRule(RequestInfo* request);
47                         void __enableRule(RequestInfo* request);
48                         void __disableRule(RequestInfo* request);
49                         void __getRuleById(RequestInfo* request);
50                         void __getRuleIds(RequestInfo* request);
51                         void __getTemplate(RequestInfo* request);
52
53                         RuleManager* __ruleMgr;
54         };
55
56 }       /* namespace trigger */
57 }       /* namespace ctx */
58
59 #endif  /* End of _CONTEXT_TRIGGER_TRIGGER_H_ */