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 #include <StringConstants.h>
22 #include "ocpayload.h"
24 #include "oic_string.h"
28 class ListenOCContainer
31 static std::vector<std::string> StringLLToVector(OCStringLL* ll)
33 std::vector<std::string> strs;
36 strs.push_back(ll->value);
43 ListenOCContainer(std::weak_ptr<IClientWrapper> cw,
44 OCDevAddr& devAddr, OCDiscoveryPayload* payload)
45 : m_clientWrapper(cw), m_devAddr(devAddr)
47 OCResourcePayload* res = payload->resources;
48 OCResourceCollectionPayload* colRes = payload->collectionResources;
53 char uuidString[UUID_STRING_SIZE];
54 if(OCConvertUuidToString(res->sid, uuidString) != RAND_UUID_OK)
62 (OCTransportFlags)(OC_FLAG_SECURE | m_devAddr.flags);
67 m_devAddr.port = res->port;
70 m_resources.push_back(std::shared_ptr<OC::OCResource>(
71 new OC::OCResource(m_clientWrapper, m_devAddr,
72 std::string(res->uri),
73 std::string(uuidString),
74 (res->bitmap & OC_OBSERVABLE) == OC_OBSERVABLE,
75 StringLLToVector(res->types),
76 StringLLToVector(res->interfaces)
86 OICStrcpy(colAddr.addr, sizeof(colAddr.addr), colRes->tags->baseURI);
87 if (colRes->tags->bitmap & OC_SECURE)
90 (OCTransportFlags)(OC_FLAG_SECURE | colRes->tags->bitmap);
91 if (colRes->tags->port != 0)
93 colAddr.port = colRes->tags->port;
98 colAddr.port = colRes->tags->port;
101 m_resources.push_back(std::shared_ptr<OC::OCResource>(
102 new OC::OCResource(m_clientWrapper, colAddr,
103 std::string(colRes->setLinks->href),
104 std::string((char*)colRes->tags->di.id),
105 (colRes->tags->bitmap & OC_OBSERVABLE) == OC_OBSERVABLE,
106 StringLLToVector(colRes->setLinks->rt),
107 StringLLToVector(colRes->setLinks->itf)
109 colRes = colRes->next;
114 const std::vector<std::shared_ptr<OCResource>>& Resources() const
119 std::vector<std::shared_ptr<OC::OCResource>> m_resources;
120 std::weak_ptr<IClientWrapper> m_clientWrapper;
121 OCDevAddr& m_devAddr;