Migrate from 2.4 code repo
[platform/core/context/context-service.git] / src / context_trigger / fact.h
1 /*
2  * Copyright (c) 2014 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_CONTEXT_TRIGGER_FACT_H__
18 #define __CONTEXT_CONTEXT_TRIGGER_FACT_H__
19
20 #include <string>
21 #include <json.h>
22
23 namespace ctx {
24
25         class context_fact {
26                 private:
27                         int req_id;
28                         int error;
29                         std::string subject;
30                         ctx::json option;
31                         ctx::json data;
32                         std::string zone_name;
33
34                 public:
35                         context_fact();
36                         context_fact(int id, int err, const char* s, ctx::json& o, ctx::json& d, const char* z);
37                         ~context_fact();
38
39                         void set_req_id(int id);
40                         void set_error(int err);
41                         void set_subject(const char* s);
42                         void set_option(ctx::json& o);
43                         void set_zone_name(const char* z);
44                         void set_data(ctx::json& d);
45
46                         int get_req_id();
47                         int get_error();
48                         const char* get_subject();
49                         const char* get_zone_name();
50                         ctx::json& get_option();
51                         ctx::json& get_data();
52         };
53
54 }       /* namespace ctx */
55
56 #endif  /* End of __CONTEXT_CONTEXT_TRIGGER_FACT_H__ */