Merge "[CA-Integration] fix for presence." into connectivity-abstraction
[platform/upstream/iotivity.git] / resource / include / IClientWrapper.h
1 //******************************************************************
2 //
3 // Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
4 //
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 //
7 // Licensed under the Apache License, Version 2.0 (the "License");
8 // you may not use this file except in compliance with the License.
9 // You may obtain a copy of the License at
10 //
11 //      http://www.apache.org/licenses/LICENSE-2.0
12 //
13 // Unless required by applicable law or agreed to in writing, software
14 // distributed under the License is distributed on an "AS IS" BASIS,
15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 // See the License for the specific language governing permissions and
17 // limitations under the License.
18 //
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21 #ifndef _I_CLIENT_WRAPPER_H_
22 #define _I_CLIENT_WRAPPER_H_
23
24 #include <memory>
25 #include <string>
26
27 #include <OCApi.h>
28
29 namespace OC
30 {
31     class OCPlatform_impl;
32
33     class IClientWrapper : public std::enable_shared_from_this<IClientWrapper>
34     {
35     protected:
36
37     public:
38         typedef std::shared_ptr<IClientWrapper> Ptr;
39
40         IClientWrapper()
41         {}
42
43         virtual OCStackResult ListenForResource(const std::string& serviceUrl,
44                         const std::string& resourceType, FindCallback& callback,
45                         QualityOfService QoS) = 0;
46
47         virtual OCStackResult ListenForDevice(const std::string& serviceUrl,
48                         const std::string& deviceURI, FindDeviceCallback& callback,
49                         QualityOfService QoS) = 0;
50
51         virtual OCStackResult GetResourceRepresentation(const std::string& host,
52                         const std::string& uri, const QueryParamsMap& queryParams,
53                         const HeaderOptions& headerOptions,
54                         GetCallback& callback, QualityOfService QoS)=0;
55
56         virtual OCStackResult PutResourceRepresentation(const std::string& host,
57                         const std::string& uri, const OCRepresentation& rep,
58                         const QueryParamsMap& queryParams, const HeaderOptions& headerOptions,
59                         PutCallback& callback, QualityOfService QoS) = 0;
60
61         virtual OCStackResult PostResourceRepresentation(const std::string& host,
62                         const std::string& uri, const OCRepresentation& rep,
63                         const QueryParamsMap& queryParams, const HeaderOptions& headerOptions,
64                         PostCallback& callback, QualityOfService QoS) = 0;
65
66         virtual OCStackResult DeleteResource(const std::string& host, const std::string& uri,
67                         const HeaderOptions& headerOptions, DeleteCallback& callback,
68                         QualityOfService QoS) = 0;
69
70         virtual OCStackResult ObserveResource(ObserveType observeType, OCDoHandle* handle,
71                         const std::string& host, const std::string& uri,
72                         const QueryParamsMap& queryParams, const HeaderOptions& headerOptions,
73                         ObserveCallback& callback, QualityOfService QoS)=0;
74
75         virtual OCStackResult CancelObserveResource(OCDoHandle handle, const std::string& host,
76             const std::string& uri, const HeaderOptions& headerOptions, QualityOfService QoS)=0;
77
78         virtual OCStackResult SubscribePresence(OCDoHandle* handle, const std::string& host,
79                         const std::string& resourceType, SubscribeCallback& presenceHandler)=0;
80
81         virtual OCStackResult UnsubscribePresence(OCDoHandle handle) =0;
82
83         virtual OCStackResult GetDefaultQos(QualityOfService& qos) = 0;
84
85         virtual ~IClientWrapper(){}
86     };
87 }
88
89 #endif