Imported Upstream version 0.9.1
[platform/upstream/iotivity.git] / service / soft-sensor-manager / SSMCore / src / QueryProcessor / ModelData.cpp
1 /******************************************************************
2 *
3 * Copyright 2014 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 #include "ModelData.h"
21
22 CModelData::CModelData()
23 {
24     m_dataId = 0;
25 }
26
27 CModelData::~CModelData()
28 {
29
30 }
31
32 void CModelData::setDataId(int dataId)
33 {
34     m_dataId = dataId;
35 }
36
37 void CModelData::addModelData(std::string propertyName, std::string propertyValue)
38 {
39     m_properties[propertyName] = propertyValue;
40 }
41
42 int CModelData::getDataId()
43 {
44     return m_dataId;
45 }
46
47 int CModelData::getPropertyCount()
48 {
49     return m_properties.size();
50 }
51
52 std::string CModelData::getPropertyName(int propertyIndex)
53 {
54     std::map<std::string, std::string>::iterator idxProperty = m_properties.begin();
55     for (int i = 0; i < propertyIndex; i++)
56     {
57         idxProperty++;
58     }
59     return idxProperty->first;
60 }
61
62 std::string CModelData::getPropertyValue(int propertyIndex)
63 {
64     std::map<std::string, std::string>::iterator idxProperty = m_properties.begin();
65     for (int i = 0; i < propertyIndex; i++)
66     {
67         idxProperty++;
68     }
69     return idxProperty->second;
70 }
71
72 std::string CModelData::getPropertyValueByName(std::string propertyName)
73 {
74     return m_properties[propertyName];
75 }