1 //******************************************************************
3 // Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
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
11 // http://www.apache.org/licenses/LICENSE-2.0
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.
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
21 //******************************************************************
25 // Description: Implementation of the OCPlatform.
29 //*********************************************************************
30 #include <OCPlatform.h>
35 void Configure(const PlatformConfig& config)
37 OCPlatform_impl::Configure(config);
40 OCStackResult setDefaultDeviceEntityHandler(EntityHandler entityHandler)
42 return OCPlatform_impl::Instance().setDefaultDeviceEntityHandler(entityHandler);
45 OCStackResult notifyAllObservers(OCResourceHandle resourceHandle,
48 return OCPlatform_impl::Instance().notifyAllObservers(resourceHandle, QoS);
51 OCStackResult notifyAllObservers(OCResourceHandle resourceHandle)
53 return OCPlatform_impl::Instance().notifyAllObservers(resourceHandle);
56 OCStackResult notifyListOfObservers(OCResourceHandle resourceHandle,
57 ObservationIds& observationIds,
58 const std::shared_ptr<OCResourceResponse> pResponse)
60 return OCPlatform_impl::Instance().notifyListOfObservers(resourceHandle,
61 observationIds, pResponse);
64 OCStackResult notifyListOfObservers(OCResourceHandle resourceHandle,
65 ObservationIds& observationIds,
66 const std::shared_ptr<OCResourceResponse> pResponse,
69 return OCPlatform_impl::Instance().notifyListOfObservers(resourceHandle,
70 observationIds, pResponse, QoS);
74 OCResource::Ptr constructResourceObject(const std::string& host,
75 const std::string& uri, uint8_t connectivityType,
77 const std::vector<std::string>& resourceTypes,
78 const std::vector<std::string>& interfaces)
80 return OCPlatform_impl::Instance().constructResourceObject(host, uri, connectivityType,
82 resourceTypes, interfaces);
85 OCStackResult findResource(const std::string& host,
86 const std::string& resourceName,
87 uint8_t connectivityType,
88 FindCallback resourceHandler)
90 return OCPlatform_impl::Instance().findResource(host, resourceName,
91 connectivityType, resourceHandler);
94 OCStackResult findResource(const std::string& host,
95 const std::string& resourceName,
96 uint8_t connectivityType,
97 FindCallback resourceHandler, QualityOfService QoS)
99 return OCPlatform_impl::Instance().findResource(host, resourceName, connectivityType,
100 resourceHandler, QoS);
103 OCStackResult getDeviceInfo(const std::string& host,
104 const std::string& deviceURI,
105 uint8_t connectivityType,
106 FindDeviceCallback deviceInfoHandler)
108 return OCPlatform_impl::Instance().getDeviceInfo(host, deviceURI,
109 connectivityType, deviceInfoHandler);
112 OCStackResult getDeviceInfo(const std::string& host,
113 const std::string& deviceURI,
114 uint8_t connectivityType,
115 FindDeviceCallback deviceInfoHandler,
116 QualityOfService QoS)
118 return OCPlatform_impl::Instance().getDeviceInfo(host, deviceURI, connectivityType,
119 deviceInfoHandler, QoS);
122 OCResource::Ptr constructResourceObject(const std::string& host,
123 const std::string& uri,
125 const std::vector<std::string>& resourceTypes,
126 const std::vector<std::string>& interfaces)
128 return OCPlatform_impl::Instance().constructResourceObject(host, uri, isObservable,
129 resourceTypes, interfaces);
132 OCStackResult findResource(const std::string& host,
133 const std::string& resourceName,
134 FindCallback resourceHandler)
136 return OCPlatform_impl::Instance().findResource(host, resourceName, resourceHandler);
139 OCStackResult findResource(const std::string& host,
140 const std::string& resourceName,
141 FindCallback resourceHandler, QualityOfService QoS)
143 return OCPlatform_impl::Instance().findResource(host, resourceName,
144 resourceHandler, QoS);
147 OCStackResult getDeviceInfo(const std::string& host,
148 const std::string& deviceURI,
149 FindDeviceCallback deviceInfoHandler)
151 return OCPlatform_impl::Instance().getDeviceInfo(host, deviceURI, deviceInfoHandler);
154 OCStackResult getDeviceInfo(const std::string& host,
155 const std::string& deviceURI,
156 FindDeviceCallback deviceInfoHandler,
157 QualityOfService QoS)
159 return OCPlatform_impl::Instance().getDeviceInfo(host, deviceURI,
160 deviceInfoHandler, QoS);
164 OCStackResult registerResource(OCResourceHandle& resourceHandle,
165 std::string& resourceURI,
166 const std::string& resourceTypeName,
167 const std::string& resourceInterface,
168 EntityHandler entityHandler,
169 uint8_t resourceProperty)
171 return OCPlatform_impl::Instance().registerResource(resourceHandle, resourceURI,
172 resourceTypeName, resourceInterface,
173 entityHandler, resourceProperty);
176 OCStackResult registerResource(OCResourceHandle& resourceHandle,
177 const std::shared_ptr< OCResource > resource)
179 return OCPlatform_impl::Instance().registerResource(resourceHandle, resource);
182 OCStackResult registerDeviceInfo(const OCDeviceInfo deviceInfo)
184 return OCPlatform_impl::Instance().registerDeviceInfo(deviceInfo);
187 OCStackResult unregisterResource(const OCResourceHandle& resourceHandle)
189 return OCPlatform_impl::Instance().unregisterResource(resourceHandle);
192 OCStackResult unbindResource(OCResourceHandle collectionHandle,
193 OCResourceHandle resourceHandle)
195 return OCPlatform_impl::Instance().unbindResource(collectionHandle, resourceHandle);
198 OCStackResult unbindResources(const OCResourceHandle collectionHandle,
199 const std::vector<OCResourceHandle>& resourceHandles
202 return OCPlatform_impl::Instance().unbindResources(collectionHandle, resourceHandles);
205 OCStackResult bindResource(const OCResourceHandle collectionHandle,
206 const OCResourceHandle resourceHandle)
208 return OCPlatform_impl::Instance().bindResource(collectionHandle, resourceHandle);
211 OCStackResult bindResources(const OCResourceHandle collectionHandle,
212 const std::vector<OCResourceHandle>& resourceHandles
215 return OCPlatform_impl::Instance().bindResources(collectionHandle, resourceHandles);
218 OCStackResult bindTypeToResource(const OCResourceHandle& resourceHandle,
219 const std::string& resourceTypeName)
221 return OCPlatform_impl::Instance().bindTypeToResource(resourceHandle,resourceTypeName);
224 OCStackResult bindInterfaceToResource(const OCResourceHandle& resourceHandle,
225 const std::string& resourceInterfaceName)
227 return OCPlatform_impl::Instance().bindInterfaceToResource(resourceHandle,
228 resourceInterfaceName);
231 OCStackResult startPresence(const unsigned int announceDurationSeconds)
233 return OCPlatform_impl::Instance().startPresence(announceDurationSeconds);
236 OCStackResult stopPresence()
238 return OCPlatform_impl::Instance().stopPresence();
242 OCStackResult subscribePresence(OCPresenceHandle& presenceHandle,
243 const std::string& host,
244 uint8_t connectivityType,
245 SubscribeCallback presenceHandler)
247 return OCPlatform_impl::Instance().subscribePresence(presenceHandle, host,
248 connectivityType, presenceHandler);
251 OCStackResult subscribePresence(OCPresenceHandle& presenceHandle,
252 const std::string& host,
253 const std::string& resourceType,
254 uint8_t connectivityType,
255 SubscribeCallback presenceHandler)
257 return OCPlatform_impl::Instance().subscribePresence(presenceHandle, host,
258 resourceType, connectivityType, presenceHandler);
261 OCStackResult subscribePresence(OCPresenceHandle& presenceHandle,
262 const std::string& host,
263 SubscribeCallback presenceHandler)
265 return OCPlatform_impl::Instance().subscribePresence(presenceHandle, host,
269 OCStackResult subscribePresence(OCPresenceHandle& presenceHandle,
270 const std::string& host,
271 const std::string& resourceType,
272 SubscribeCallback presenceHandler)
274 return OCPlatform_impl::Instance().subscribePresence(presenceHandle, host,
275 resourceType, presenceHandler);
278 OCStackResult unsubscribePresence(OCPresenceHandle presenceHandle)
280 return OCPlatform_impl::Instance().unsubscribePresence(presenceHandle);
283 OCStackResult sendResponse(const std::shared_ptr<OCResourceResponse> pResponse)
285 return OCPlatform_impl::Instance().sendResponse(pResponse);
287 } // namespace OCPlatform