3f66372cccd907bf32d808e66eb86671c6f1c2b0
[platform/upstream/iotivity.git] / service / simulator / src / client-controller / attribute_generator.h
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 #ifndef ATTRIBUTE_GENERATOR_H_
22 #define ATTRIBUTE_GENERATOR_H_
23
24 #include <map>
25 #include <vector>
26 #include "simulator_resource_model.h"
27
28 class AttributeGenerator
29 {
30     public:
31         AttributeGenerator(SimulatorResourceModel::Attribute &attribute);
32         bool hasNext();
33         bool next(SimulatorResourceModel::Attribute &attribute);
34         bool previous(SimulatorResourceModel::Attribute &attribute);
35         void reset();
36
37     private:
38         std::string m_name;
39         SimulatorResourceModel::Attribute::ValueType m_type;
40         int m_min;
41         int m_max;
42         int m_rangeIndex;
43         int m_nextAllowedValueIndex;
44         int m_prevAllowedValueIndex;
45         bool m_hasRange;
46         bool m_hasAllowedValue;
47         std::vector<SimulatorResourceModel::Attribute::ValueVariant> m_allowedValues;
48 };
49
50 #endif
51