Migrate from 2.4 code repo
[platform/core/context/context-service.git] / src / client_request.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_CLIENT_REQUEST_H__
18 #define __CONTEXT_CLIENT_REQUEST_H__
19
20 #include <gio/gio.h>
21 #include "request.h"
22
23 namespace ctx {
24
25         class client_request : public request_info {
26                 public:
27                         client_request(int type, const char* client, int req_id, const char* subj, const char* desc, const char* cookie, GDBusMethodInvocation *inv);
28                         ~client_request();
29
30                         const char* get_cookie();
31                         const char* get_app_id();
32
33                         bool reply(int error);
34                         bool reply(int error, ctx::json& request_result);
35                         bool reply(int error, ctx::json& request_result, ctx::json& data_read);
36                         bool publish(int error, ctx::json& data);
37
38                 private:
39                         GDBusMethodInvocation *invocation;
40                         std::string raw_cookie;
41                         std::string client_app_id;
42                         std::string exec_path;
43         };
44
45 }       /* namespace ctx */
46
47 #endif  /* End of __CONTEXT_CLIENT_REQUEST_H__ */