9f116fb1f319eca332e257810469a07d4e8b7990
[platform/upstream/iotivity.git] / service / easy-setup / mediator / richsdk / src / CloudResource.h
1 //******************************************************************
2 //
3 // Copyright 2016 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 #ifndef CLOUD_RESOURCE_H_
22 #define CLOUD_RESOURCE_H_
23
24 #include <mutex>
25 #include <memory>
26
27 #include "ESRichCommon.h"
28
29 #include "OCApi.h"
30
31 using namespace OC;
32
33 namespace OIC
34 {
35     namespace Service
36     {
37         class OCResource;
38         typedef std::function<void(const HeaderOptions& headerOptions,
39                                    const OCRepresentation& rep,
40                                    const int eCode)> ESCloudResourceCb;
41         /**
42          * This class contains the resource discovery methods.
43          *
44          * @see CloudResource
45          */
46         class CloudResource : public std::enable_shared_from_this<CloudResource>
47         {
48         public:
49             CloudResource(std::shared_ptr< OC::OCResource > resource);
50             ~CloudResource() = default;
51
52             void registerCloudPropProvisioningStatusCallback(
53                     const CloudPropProvStatusCb callback);
54             void provisionProperties(const CloudProp& CloudProp);
55
56         private:
57             static void onCloudProvResponseSafetyCb(const HeaderOptions& headerOptions,
58                                                     const OCRepresentation& rep,
59                                                     const int eCode,
60                                                     ESCloudResourceCb cb,
61                                                     std::weak_ptr<CloudResource> this_ptr);
62             void onCloudProvResponse(const HeaderOptions& headerOptions,
63                                                 const OCRepresentation& rep,
64                                                 const int eCode);
65
66         private:
67             std::shared_ptr< OC::OCResource > m_ocResource;
68             CloudPropProvStatusCb m_cloudPropProvStatusCb;
69         };
70     }
71 }
72 #endif