Implementation of APIs for managing resource list and callback
[platform/upstream/iotivity.git] / service / simulator / src / simulator_resource_creator.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 "simulator_resource_creator.h"
22 #include "simulator_logger.h"
23
24 SimulatorResourceServerPtr SimulatorResourceCreator::createLightResoure()
25 {
26     std::shared_ptr<SimulatorResourceServer> lightResource(new SimulatorResourceServer);
27
28     // set power attribute with its properties
29     {
30         lightResource->addAttribute("power", std::string("on"));
31         std::vector<std::string> values {"on", "off"};
32         lightResource->setAllowedValues("power", values);
33         lightResource->setUpdateInterval("power", 2000);
34     }
35
36     // set intensity attributes with its properties
37     {
38         lightResource->addAttribute("intensity", int(1));
39         lightResource->setRange("intensity", 1, 10);
40         lightResource->setUpdateInterval("intensity", 3000);
41     }
42
43     // set other properties
44     lightResource->setName("Light");
45     lightResource->setURI("/oic/light");
46     lightResource->setResourceType("oic.light");
47     lightResource->setInterfaceType(OC::DEFAULT_INTERFACE);
48
49     SIM_LOG(ILogger::INFO, "Created sample light resource");
50     return lightResource;
51 }
52