Imported Upstream version 1.0.1
[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(const SimulatorResourceModel::Attribute &attribute);
32         bool hasNext();
33         bool next(SimulatorResourceModel::Attribute &attribute);
34         SimulatorResourceModel::Attribute current();
35         void reset();
36
37     private:
38         std::string m_name;
39         int m_min;
40         int m_max;
41         int m_rangeIndex;
42         int m_allowedValueIndex;
43         bool m_hasRange;
44         bool m_hasAllowedValue;
45         std::vector<SimulatorResourceModel::Attribute::ValueVariant> m_allowedValues;
46 };
47
48 class AttributeCombinationGen
49 {
50     public:
51         AttributeCombinationGen(const std::vector<SimulatorResourceModel::Attribute> &attributes);
52         bool next(SimulatorResourceModel &resModel);
53
54     private:
55         void addAttributeToModel(int index);
56
57         std::mutex m_lock;
58         std::vector<AttributeGenerator> m_attrGenList;
59         int m_index;
60         SimulatorResourceModel m_resModel;
61 };
62
63 #endif
64