Imported Upstream version 0.9.2
[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,
45                         OCConnectivityType connectivityType,
46                         FindCallback& callback,
47                         QualityOfService QoS) = 0;
48
49         virtual OCStackResult ListenForDevice(const std::string& serviceUrl,
50                         const std::string& deviceURI,
51                         OCConnectivityType connectivityType,
52                         FindDeviceCallback& callback,
53                         QualityOfService QoS) = 0;
54
55         virtual OCStackResult GetResourceRepresentation(
56                         const OCDevAddr& devAddr,
57                         const std::string& uri,
58                         const QueryParamsMap& queryParams,
59                         const HeaderOptions& headerOptions,
60                         GetCallback& callback, QualityOfService QoS)=0;
61
62         virtual OCStackResult PutResourceRepresentation(
63                         const OCDevAddr& devAddr,
64                         const std::string& uri,
65                         const OCRepresentation& rep, const QueryParamsMap& queryParams,
66                         const HeaderOptions& headerOptions,
67                         PutCallback& callback, QualityOfService QoS) = 0;
68
69         virtual OCStackResult PostResourceRepresentation(
70                         const OCDevAddr& devAddr,
71                         const std::string& uri,
72                         const OCRepresentation& rep, const QueryParamsMap& queryParams,
73                         const HeaderOptions& headerOptions,
74                         PostCallback& callback, QualityOfService QoS) = 0;
75
76         virtual OCStackResult DeleteResource(
77                         const OCDevAddr& devAddr,
78                         const std::string& uri,
79                         const HeaderOptions& headerOptions,
80                         DeleteCallback& callback, QualityOfService QoS) = 0;
81
82         virtual OCStackResult ObserveResource(
83                         ObserveType observeType, OCDoHandle* handle,
84                         const OCDevAddr& devAddr,
85                         const std::string& uri,
86                         const QueryParamsMap& queryParams,
87                         const HeaderOptions& headerOptions, ObserveCallback& callback,
88                         QualityOfService QoS)=0;
89
90         virtual OCStackResult CancelObserveResource(
91                         OCDoHandle handle,
92                         const std::string& host,
93                         const std::string& uri,
94                         const HeaderOptions& headerOptions,
95                         QualityOfService QoS)=0;
96
97         virtual OCStackResult SubscribePresence(OCDoHandle* handle,
98                         const std::string& host,
99                         const std::string& resourceType,
100                         OCConnectivityType connectivityType,
101                         SubscribeCallback& presenceHandler)=0;
102
103         virtual OCStackResult UnsubscribePresence(OCDoHandle handle) =0;
104
105         virtual OCStackResult GetDefaultQos(QualityOfService& qos) = 0;
106
107         virtual ~IClientWrapper(){}
108     };
109 }
110
111 #endif
112