Add ResourceBroker Sconscript
[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(PrimitiveResourcePtr 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
31     = std::unique_ptr<std::list<BrokerRequesterInfoPtr>>(new std::list<BrokerRequesterInfoPtr>);
32
33     addBrokerRequesterCB(_cb);
34 }
35
36 ResourcePresence::~ResourcePresence()
37 {
38     requesterList->clear();
39 }
40
41 void ResourcePresence::addBrokerRequesterCB(BrokerCB _cb)
42 {
43     BrokerRequesterInfoPtr newRequester = BrokerRequesterInfoPtr(new BrokerRequesterInfo());
44     newRequester->brockerCB = _cb;
45     requesterList->push_back(newRequester);
46 }
47
48 void ResourcePresence::requestResourceState()
49 {
50     primitiveResource->requestGet(pGetCB);
51 }
52
53 void ResourcePresence::GetCB(const HeaderOptions &hos, const ResponseStatement& rep, int seq)
54 {
55
56 }