22ae25c837592ae822b9b1629999acd3fa85617e
[platform/upstream/iotivity.git] / service / basis / resourceBroker / src / ResourcePresence.cpp
1 //******************************************************************
2 //
3 // Copyright 2015 Samsung Electronics 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 #include "ResourcePresence.h"
22
23 ResourcePresence::ResourcePresence(PrimitiveResource & pResource, BrokerCB _cb)
24 {
25     primitiveResource = pResource;
26
27     pGetCB = std::bind(&ResourcePresence::GetCB, this,
28             std::placeholders::_1, std::placeholders::_2, std::placeholders::_3);
29
30     requesterList = new std::list<BrokerRequesterInfo *>();
31     addBrokerRequesterCB(_cb);
32 }
33
34 ResourcePresence::~ResourcePresence()
35 {
36     requesterList->clear();
37     delete requesterList;
38 }
39
40 void ResourcePresence::addBrokerRequesterCB(BrokerCB _cb)
41 {
42     BrokerRequesterInfo *newRequester = new BrokerRequesterInfo();
43     newRequester->brockerCB = _cb;
44     requesterList->push_back(newRequester);
45 }
46
47 void ResourcePresence::requestResourceState()
48 {
49     primitiveResource.requestGet(pGetCB);
50 }
51
52 void ResourcePresence::GetCB(const HeaderOptions &hos, const ResponseStatement& rep, int seq)
53 {
54
55 }