Merge branch 'master' into extended-easysetup
[platform/upstream/iotivity.git] / service / easy-setup / mediator / richsdk / src / EasySetup.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 "EasySetup.h"
22
23 #include "OCPlatform.h"
24 #include "logger.h"
25 #include "ESException.h"
26 #include "RemoteEnrollee.h"
27
28 using namespace OC;
29
30 namespace OIC
31 {
32     namespace Service
33     {
34         #define EASYSETUP_TAG "EASY_SETUP"
35
36         EasySetup * EasySetup::s_instance = nullptr;
37
38         EasySetup::EasySetup()
39         {
40
41         }
42
43         EasySetup* EasySetup::getInstance ()
44         {
45             if (s_instance == nullptr)
46             {
47                 s_instance = new EasySetup ();
48             }
49             return s_instance;
50         }
51
52         std::shared_ptr<RemoteEnrollee> EasySetup::createRemoteEnrollee (std::shared_ptr< OC::OCResource > resource)
53         {
54             if(resource->getResourceTypes().at(0) != OC_RSRVD_ES_RES_TYPE_PROV)
55             {
56                 OIC_LOG_V (DEBUG, EASYSETUP_TAG, "createRemoteEnrollee : invalid reousrce");
57                 return nullptr;
58             }
59             return std::shared_ptr< RemoteEnrollee > (new RemoteEnrollee(resource));
60         }
61     }
62 }
63