1 //******************************************************************
3 // Copyright 2014 Samsung Electronics 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 /// @file GroupManager.cpp
24 #include "GroupManager.h"
31 #define PLAIN_DELIMITER "\""
32 #define ACTION_DELIMITER "*"
33 #define DESC_DELIMITER "|"
34 #define ATTR_DELIMITER "="
40 std::map< std::vector< std::string >, CandidateCallback > candidateRequest;
41 std::map< std::vector< std::string >, CandidateCallback > candidateRequestForTimer;
42 std::map< std::string, std::map< std::string, std::shared_ptr< OCResource > > > rtForResourceList;
43 std::vector< std::string > allFoundResourceTypes;
45 template< typename T >
46 bool IsSubset(std::vector< T > full, std::vector< T > sub)
48 std::sort(full.begin(), full.end());
49 std::sort(sub.begin(), sub.end());
50 return std::includes(full.begin(), full.end(), sub.begin(), sub.end());
52 std::vector< std::string > &str_split(const std::string &s, char delim,
53 std::vector< std::string > &elems)
55 std::stringstream ss(s);
57 while (std::getline(ss, item, delim))
59 elems.push_back(item);
64 std::vector< std::string > str_split(const std::string &s, char delim)
66 std::vector< std::string > elems;
67 str_split(s, delim, elems);
71 void GroupManager::onFoundResource(std::shared_ptr< OCResource > resource, int waitsec)
74 std::string resourceURI;
75 std::string hostAddress;
78 // Do some operations with resource object.
82 std::cout << "DISCOVERED Resource:" << std::endl;
83 // Get the resource URI
84 resourceURI = resource->uri();
85 std::cout << "\tURI of the resource: " << resourceURI << std::endl;
87 // Get the resource host address
88 hostAddress = resource->host();
89 std::cout << "\tHost address of the resource: " << hostAddress << std::endl;
91 // Get the resource types
92 std::cout << "\tList of resource types: " << std::endl;
94 hostAddress.append(resourceURI);
96 for (auto &resourceTypes : resource->getResourceTypes())
98 std::cout << "\t\t" << resourceTypes << std::endl;
100 if (std::find(allFoundResourceTypes.begin(), allFoundResourceTypes.end(),
101 resourceTypes) == allFoundResourceTypes.end())
103 allFoundResourceTypes.push_back(resourceTypes);
106 rtForResourceList[resourceTypes][hostAddress] = resource;
109 // Get the resource interfaces
110 std::cout << "\tList of resource interfaces: " << std::endl;
111 for (auto &resourceInterfaces : resource->getResourceInterfaces())
113 std::cout << "\t\t" << resourceInterfaces << std::endl;
118 findPreparedRequest(candidateRequest);
123 // Resource is invalid
124 std::cout << "Resource is invalid" << std::endl;
128 catch (std::exception& e)
134 GroupManager::GroupManager(void)
142 GroupManager::~GroupManager(void)
144 candidateRequest.clear();
145 candidateRequestForTimer.clear();
146 rtForResourceList.clear();
147 allFoundResourceTypes.clear();
150 void GroupManager::findPreparedRequest(
151 std::map< std::vector< std::string >, CandidateCallback > &request)
153 std::vector< std::shared_ptr< OCResource > > resources;
155 for (auto it = request.begin(); it != request.end();)
158 if (IsSubset(allFoundResourceTypes, it->first))
160 //std::cout << "IS SUBSET !!! \n";
162 for (unsigned int i = 0; i < it->first.size(); ++i)
165 for (auto secondIt = rtForResourceList[it->first.at(i)].begin();
166 secondIt != rtForResourceList[it->first.at(i)].end(); ++secondIt)
168 resources.push_back(secondIt->second);
172 it->second(resources);
174 //TODO : decide policy - callback only once
186 void GroupManager::lazyCallback(int second)
189 findPreparedRequest(candidateRequestForTimer);
193 OCStackResult GroupManager::findCandidateResources(std::vector< std::string > resourceTypes,
194 CandidateCallback callback, int waitsec)
196 if (resourceTypes.size() < 1)
198 return OC_STACK_ERROR;
202 return OC_STACK_ERROR;
205 std::sort(resourceTypes.begin(), resourceTypes.end());
206 resourceTypes.erase(std::unique(resourceTypes.begin(), resourceTypes.end()),
207 resourceTypes.end());
211 candidateRequestForTimer.insert(std::make_pair(resourceTypes, callback));
215 candidateRequest.insert(std::make_pair(resourceTypes, callback));
218 for (unsigned int i = 0; i < resourceTypes.size(); ++i)
220 std::cout << "resourceTypes : " << resourceTypes.at(i) << std::endl;
221 std::string query = "coap://224.0.1.187/oc/core?rt=";
222 query.append(resourceTypes.at(i));
223 OCPlatform::findResource("", query.c_str(),
224 std::function < void(std::shared_ptr < OCResource > resource)
225 > (std::bind(&GroupManager::onFoundResource, this,
226 std::placeholders::_1, waitsec)));
232 std::function< void(int second) >(
233 std::bind(&GroupManager::lazyCallback, this, std::placeholders::_1)),
242 OCStackResult GroupManager::bindResourceToGroup(OCResourceHandle& childHandle, std::shared_ptr< OCResource > resource, OCResourceHandle& collectionHandle)
245 OCStackResult result = OCPlatform::registerResource(childHandle, resource);
247 cout << "\tresource registed!" << endl;
249 if(result == OC_STACK_OK)
251 OCPlatform::bindResource(collectionHandle, childHandle);
255 cout << "\tresource Error!" << endl;
267 std::map< std::string, CollectionPresenceCallback > presenceCallbacks;
269 // Callback to presence
270 void GroupManager::collectionPresenceHandler(OCStackResult result, const unsigned int nonce,
271 const std::string& hostAddress, std::string host, std::string uri)
273 std::cout << "uri : " << uri << std::endl;
274 std::cout << "host : " << host << std::endl;
275 std::cout << "result : " << result << std::endl;
279 std::cout << "Nonce# " << nonce << std::endl;
281 case OC_STACK_PRESENCE_STOPPED:
282 std::cout << "Presence Stopped\n";
284 case OC_STACK_PRESENCE_DO_NOT_HANDLE:
285 std::cout << "Presence do not handle\n";
287 case OC_STACK_PRESENCE_TIMEOUT:
288 std::cout << "Presence TIMEOUT\n";
291 std::cout << "Error\n";
295 if (presenceCallbacks.find(uri) != presenceCallbacks.end())
297 (presenceCallbacks.find(uri)->second)(uri, result);
301 void GroupManager::checkCollectionRepresentation(const OCRepresentation& rep,
302 CollectionPresenceCallback callback)
304 std::cout << "\tResource URI: " << rep.getUri() << std::endl;
307 if(rep.hasAttribute("name"))
309 std::cout << "\tRoom name: " << rep.getValue<std::string>("name") << std::endl;
312 std::vector< OCRepresentation > children = rep.getChildren();
314 if(children.size() == 0 )
316 callback("", OC_STACK_ERROR);
320 for (auto oit = children.begin(); oit != children.end(); ++oit)
322 std::cout << "\t\tChild Resource URI: " << oit->getUri() << std::endl;
323 std::vector< std::string > hostAddressVector = str_split(oit->getUri(), '/');
324 std::string hostAddress = "";
325 for (unsigned int i = 0; i < hostAddressVector.size(); ++i)
329 hostAddress.append(hostAddressVector.at(i));
332 hostAddress.append("/");
337 std::vector< std::string > resourceTypes = oit->getResourceTypes();
338 for (unsigned int i = 0; i < resourceTypes.size(); ++i)
340 std::cout << "\t\t\tresourcetype :" << resourceTypes.at(i) << std::endl;
343 std::string resourceType = "core.";
344 resourceType.append(str_split(oit->getUri(), '/').at(4));
345 std::cout << "\t\tconvertRT : " << resourceType << std::endl;
346 std::cout << "\t\thost : " << hostAddress << std::endl;
347 OCPlatform::OCPresenceHandle presenceHandle;
348 OCStackResult result = OCPlatform::subscribePresence(presenceHandle, hostAddress,
351 void(OCStackResult result, const unsigned int nonce,
352 const std::string& hostAddress) >(
353 std::bind(&GroupManager::collectionPresenceHandler, this,
354 std::placeholders::_1, std::placeholders::_2,
355 std::placeholders::_3, hostAddress, oit->getUri())));
357 if (result == OC_STACK_OK)
359 std::cout << "\t\tOK!" << std::endl;
360 presenceCallbacks.insert(std::make_pair(oit->getUri(), callback));
364 callback("", OC_STACK_ERROR);
370 void GroupManager::onGetForPresence(const HeaderOptions& headerOptions,
371 const OCRepresentation& rep, const int eCode, CollectionPresenceCallback callback)
373 if (eCode == OC_STACK_OK)
375 std::cout << "GET request was successful" << std::endl;
376 std::cout << "Resource URI: " << rep.getUri() << std::endl;
378 checkCollectionRepresentation(rep, callback);
383 std::cout << "onGET Response error: " << eCode << std::endl;
384 callback("", OC_STACK_ERROR);
389 OCStackResult GroupManager::subscribeCollectionPresence(
390 std::shared_ptr< OCResource > collectionResource, CollectionPresenceCallback callback)
392 if(callback == NULL || collectionResource == NULL)
394 return OC_STACK_ERROR;
397 OCStackResult result = OC_STACK_OK;
398 //callback("core.room",OC_STACK_OK);
400 QueryParamsMap queryParam;
402 //parameter 1 = resourceType
403 collectionResource->get("", DEFAULT_INTERFACE, queryParam,
405 void(const HeaderOptions& headerOptions, const OCRepresentation& rep,
407 std::bind(&GroupManager::onGetForPresence, this, std::placeholders::_1,
408 std::placeholders::_2, std::placeholders::_3, callback)));
417 std::string GroupManager::getStringFromActionSet(const ActionSet *newActionSet)
419 std::string message = "";
421 message = newActionSet->actionsetName;
423 for (auto iterAction = newActionSet->listOfAction.begin();
424 iterAction != newActionSet->listOfAction.end(); iterAction++)
426 message.append("uri=");
427 message.append((*iterAction)->target);
430 for (auto iterCapa = (*iterAction)->listOfCapability.begin();
431 iterCapa != (*iterAction)->listOfCapability.end(); iterCapa++)
433 message.append((*iterCapa)->capability);
435 message.append((*iterCapa)->status);
437 if (iterCapa + 1 != (*iterAction)->listOfCapability.end())
441 if (iterAction + 1 != newActionSet->listOfAction.end())
450 ActionSet* GroupManager::getActionSetfromString(std::string desc)
454 char *plainText = NULL;
455 char *plainPtr = NULL;
457 ActionSet *actionset = new ActionSet();
458 plainText = new char[(desc.length() + 1)];
459 strcpy(plainText, desc.c_str());
461 token = strtok_r(plainText, ACTION_DELIMITER, &plainPtr);
465 actionset->actionsetName = std::string(token);
466 token = strtok_r(NULL, ACTION_DELIMITER, &plainPtr);
477 char *descPtr = NULL;
478 char *desc = new char[(strlen(token) + 1)];
482 Action *action = NULL;
484 token = strtok_r(desc, DESC_DELIMITER, &descPtr);
486 // cout << "desc :: " << token << endl;
487 while (token != NULL)
489 char *attrPtr = NULL;
490 char *attr = new char[(strlen(token) + 1)];
494 // cout << "attr :: " << attr << endl;
496 token = strtok_r(attr, ATTR_DELIMITER, &attrPtr);
497 while (token != NULL)
499 if (strcmp(token, "uri") == 0)
501 token = strtok_r(NULL, ATTR_DELIMITER, &attrPtr);
502 action = new Action();
506 action->target = std::string(token);
519 Capability *capa = new Capability();
520 capa->capability = std::string(token);
521 token = strtok_r(NULL, ATTR_DELIMITER, &attrPtr);
522 capa->status = std::string(token);
526 action->listOfCapability.push_back(capa);
539 token = strtok_r(NULL, ATTR_DELIMITER, &attrPtr);
543 token = strtok_r(NULL, DESC_DELIMITER, &descPtr);
546 actionset->listOfAction.push_back(action);
558 token = strtok_r(NULL, ACTION_DELIMITER, &plainPtr);
565 OCStackResult GroupManager::addActionSet(std::shared_ptr< OCResource > resource,
566 const ActionSet* newActionSet, PutCallback cb)
568 // BUILD message of ActionSet which it is included delimiter.
569 if ((resource != NULL) && (newActionSet != NULL))
571 std::string message = getStringFromActionSet(newActionSet);
572 OCRepresentation rep;
574 rep.setValue("ActionSet", message);
576 return resource->put(resource->getResourceTypes().front(), GROUP_INTERFACE, rep,
577 QueryParamsMap(), cb);
581 return OC_STACK_ERROR;
585 OCStackResult GroupManager::executeActionSet(std::shared_ptr< OCResource > resource,
586 std::string actionsetName, PostCallback cb)
588 if (resource != NULL)
590 OCRepresentation rep;
592 rep.setValue("DoAction", actionsetName);
593 return resource->post(resource->getResourceTypes().front(), GROUP_INTERFACE, rep,
594 QueryParamsMap(), cb);
598 return OC_STACK_ERROR;
602 OCStackResult GroupManager::getActionSet(std::shared_ptr< OCResource > resource,
603 std::string actionsetName, PostCallback cb)
605 if (resource != NULL)
607 OCRepresentation rep;
609 rep.setValue("GetActionSet", actionsetName);
611 return resource->post(resource->getResourceTypes().front(), GROUP_INTERFACE, rep,
612 QueryParamsMap(), cb);
616 return OC_STACK_ERROR;
620 OCStackResult GroupManager::deleteActionSet(std::shared_ptr< OCResource > resource,
621 std::string actionsetName, PutCallback cb)
623 if (resource != NULL)
625 OCRepresentation rep;
627 rep.setValue("DelActionSet", actionsetName);
629 return resource->put(resource->getResourceTypes().front(), GROUP_INTERFACE, rep,
630 QueryParamsMap(), cb);
634 return OC_STACK_ERROR;