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 //******************************************************************
23 // OCPlatform_impl.cpp
25 // Description: Implementation of the OCPlatform functionality. It contains
26 // a singleton interface that is used only by the OCPlatform namespace and is the
27 // central entrance to the stack.
31 //*********************************************************************
39 #include "OCPlatform.h"
41 #include "OCException.h"
42 #include "OCUtilities.h"
44 #include "oc_logger.hpp"
49 PlatformConfig& OCPlatform_impl::globalConfig()
51 static PlatformConfig s_config;
55 void OCPlatform_impl::Configure(const PlatformConfig& config)
57 globalConfig() = config;
60 OCPlatform_impl& OCPlatform_impl::Instance()
62 static OCPlatform_impl platform(globalConfig());
66 void OCPlatform_impl::init(const PlatformConfig& config)
70 case ModeType::Server:
71 m_server = m_WrapperInstance->CreateServerWrapper(m_csdkLock, config);
74 case ModeType::Client:
75 m_client = m_WrapperInstance->CreateClientWrapper(m_csdkLock, config);
79 m_server = m_WrapperInstance->CreateServerWrapper(m_csdkLock, config);
80 m_client = m_WrapperInstance->CreateClientWrapper(m_csdkLock, config);
85 OCPlatform_impl::OCPlatform_impl(const PlatformConfig& config)
87 m_WrapperInstance { make_unique<WrapperFactory>() },
88 m_csdkLock { make_shared<std::recursive_mutex>() }
93 OCPlatform_impl::~OCPlatform_impl(void)
97 OCStackResult OCPlatform_impl::setDefaultDeviceEntityHandler(EntityHandler entityHandler)
99 return checked_guard(m_server, &IServerWrapper::setDefaultDeviceEntityHandler,
103 OCStackResult OCPlatform_impl::notifyAllObservers(OCResourceHandle resourceHandle,
104 QualityOfService QoS)
106 return result_guard(OCNotifyAllObservers(resourceHandle,
107 static_cast<OCQualityOfService>(QoS)));
110 OCStackResult OCPlatform_impl::notifyAllObservers(OCResourceHandle resourceHandle)
112 return notifyAllObservers(resourceHandle, m_cfg.QoS);
115 OCStackResult OCPlatform_impl::notifyListOfObservers(OCResourceHandle resourceHandle,
116 ObservationIds& observationIds,
117 const std::shared_ptr<OCResourceResponse> pResponse)
119 return notifyListOfObservers(resourceHandle, observationIds, pResponse, m_cfg.QoS);
122 OCStackResult OCPlatform_impl::notifyListOfObservers(OCResourceHandle resourceHandle,
123 ObservationIds& observationIds,
124 const std::shared_ptr<OCResourceResponse> pResponse,
125 QualityOfService QoS)
129 return result_guard(OC_STACK_ERROR);
132 std::string payload(pResponse->getResourceRepresentation().getJSONRepresentation());
135 OCNotifyListOfObservers(resourceHandle,
136 &observationIds[0], observationIds.size(),
137 reinterpret_cast<unsigned char *>(const_cast<char *>(payload.c_str())),
138 static_cast<OCQualityOfService>(QoS)));
141 OCResource::Ptr OCPlatform_impl::constructResourceObject(const std::string& host,
142 const std::string& uri,
144 const std::vector<std::string>& resourceTypes,
145 const std::vector<std::string>& interfaces)
149 return std::shared_ptr<OCResource>();
152 return std::shared_ptr<OCResource>(new OCResource(m_client,
160 OCStackResult OCPlatform_impl::findResource(const std::string& host,
161 const std::string& resourceName,
162 FindCallback resourceHandler)
164 return findResource(host, resourceName, resourceHandler, m_cfg.QoS);
167 OCStackResult OCPlatform_impl::findResource(const std::string& host,
168 const std::string& resourceName,
169 FindCallback resourceHandler, QualityOfService QoS)
171 return checked_guard(m_client, &IClientWrapper::ListenForResource,
172 host, resourceName, resourceHandler, QoS);
176 OCStackResult OCPlatform_impl::registerResource(OCResourceHandle& resourceHandle,
177 std::string& resourceURI,
178 const std::string& resourceTypeName,
179 const std::string& resourceInterface,
180 EntityHandler entityHandler,
181 uint8_t resourceProperty)
183 return checked_guard(m_server, &IServerWrapper::registerResource,
184 ref(resourceHandle), resourceURI, resourceTypeName,
185 resourceInterface, entityHandler, resourceProperty);
189 OCStackResult OCPlatform_impl::registerResource(OCResourceHandle& resourceHandle,
190 const std::shared_ptr< OCResource > resource)
192 uint8_t resourceProperty = OC_DISCOVERABLE | OC_OBSERVABLE;
194 return checked_guard(m_server, &IServerWrapper::registerResourceWithHost,
195 ref(resourceHandle), resource->host(), resource->uri(), "core.remote", "oc.mi.def",
196 (EntityHandler) nullptr, resourceProperty);
199 OCStackResult OCPlatform_impl::unregisterResource(const OCResourceHandle& resourceHandle) const
201 return checked_guard(m_server, &IServerWrapper::unregisterResource,
205 OCStackResult OCPlatform_impl::unbindResource(OCResourceHandle collectionHandle,
206 OCResourceHandle resourceHandle)
208 return result_guard(OCUnBindResource(ref(collectionHandle), ref(resourceHandle)));
211 OCStackResult OCPlatform_impl::unbindResources(const OCResourceHandle collectionHandle,
212 const std::vector<OCResourceHandle>& resourceHandles)
214 for(const auto& h : resourceHandles)
218 if(OC_STACK_OK != (r = result_guard(OCUnBindResource(collectionHandle, h))))
227 OCStackResult OCPlatform_impl::bindResource(const OCResourceHandle collectionHandle,
228 const OCResourceHandle resourceHandle)
230 return result_guard(OCBindResource(collectionHandle, resourceHandle));
233 OCStackResult OCPlatform_impl::bindResources(const OCResourceHandle collectionHandle,
234 const std::vector<OCResourceHandle>& resourceHandles)
236 for(const auto& h : resourceHandles)
240 if(OC_STACK_OK != (r = result_guard(OCBindResource(collectionHandle, h))))
249 OCStackResult OCPlatform_impl::bindTypeToResource(const OCResourceHandle& resourceHandle,
250 const std::string& resourceTypeName) const
252 return checked_guard(m_server, &IServerWrapper::bindTypeToResource,
253 resourceHandle, resourceTypeName);
256 OCStackResult OCPlatform_impl::bindInterfaceToResource(const OCResourceHandle& resourceHandle,
257 const std::string& resourceInterfaceName) const
259 return checked_guard(m_server, &IServerWrapper::bindInterfaceToResource,
260 resourceHandle, resourceInterfaceName);
263 OCStackResult OCPlatform_impl::startPresence(const unsigned int announceDurationSeconds)
265 return checked_guard(m_server, &IServerWrapper::startPresence,
266 announceDurationSeconds);
269 OCStackResult OCPlatform_impl::stopPresence()
271 return checked_guard(m_server, &IServerWrapper::stopPresence);
274 OCStackResult OCPlatform_impl::subscribePresence(OCPresenceHandle& presenceHandle,
275 const std::string& host,
276 SubscribeCallback presenceHandler)
278 return subscribePresence(presenceHandle, host, "", presenceHandler);
281 OCStackResult OCPlatform_impl::subscribePresence(OCPresenceHandle& presenceHandle,
282 const std::string& host,
283 const std::string& resourceType,
284 SubscribeCallback presenceHandler)
286 return checked_guard(m_client, &IClientWrapper::SubscribePresence,
287 &presenceHandle, host, resourceType, presenceHandler);
290 OCStackResult OCPlatform_impl::unsubscribePresence(OCPresenceHandle presenceHandle)
292 return checked_guard(m_client, &IClientWrapper::UnsubscribePresence,
293 ref(presenceHandle));