Revert "Change build option - IP only"
[platform/upstream/iotivity.git] / service / simulator / java / eclipse-plugin / ServiceProviderPlugin / src / oic / simulator / serviceprovider / resource / AutomationSettingHelper.java
1 /*
2  * Copyright 2015 Samsung Electronics All Rights Reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package oic.simulator.serviceprovider.resource;
18
19 import java.util.ArrayList;
20 import java.util.Iterator;
21 import java.util.List;
22
23 import oic.simulator.serviceprovider.utils.Constants;
24
25 import org.oic.simulator.serviceprovider.AutomationType;
26
27 /**
28  * This is a helper class for providing the automation settings information to
29  * UI.
30  */
31 public class AutomationSettingHelper {
32     private String       settingID;
33     private String       settingValue;
34     private List<String> allowedValues;
35
36     public String getSettingID() {
37         return settingID;
38     }
39
40     public void setSettingID(String settingID) {
41         this.settingID = settingID;
42     }
43
44     public String getSettingValue() {
45         return settingValue;
46     }
47
48     public void setSettingValue(String settingValue) {
49         this.settingValue = settingValue;
50     }
51
52     public List<String> getAllowedValues() {
53         return allowedValues;
54     }
55
56     public void setAllowedValues(List<String> allowedValues) {
57         this.allowedValues = allowedValues;
58     }
59
60     public void addAllowedValue(String newText) {
61         if (null != allowedValues) {
62             allowedValues.add(newText);
63         }
64     }
65
66     public static List<AutomationSettingHelper> getAutomationSettings(
67             LocalResourceAttribute attribute) {
68         List<AutomationSettingHelper> settingList = null;
69         boolean invalidSetting;
70         if (null != attribute) {
71             settingList = new ArrayList<AutomationSettingHelper>();
72             for (int count = 0; count < Constants.AUTOMATION_SETTINGS_COUNT; count++) {
73                 invalidSetting = false;
74                 AutomationSettingHelper setting = new AutomationSettingHelper();
75                 if (Constants.AUTOMATION_SETTINGS[count]
76                         .equals(Constants.AUTOMATION_TYPE)) {
77                     setting.setSettingID(Constants.AUTOMATION_TYPE);
78                     setting.setSettingValue(attribute.getAutomationType()
79                             .toString());
80                     List<String> valueList = new ArrayList<String>();
81                     valueList.add(AutomationType.NORMAL.toString());
82                     valueList.add(AutomationType.RECURRENT.toString());
83                     setting.setAllowedValues(valueList);
84                 } else if (Constants.AUTOMATION_SETTINGS[count]
85                         .equals(Constants.UPDATE_INTERVAL_IN_MS)) {
86                     setting.setSettingID(Constants.UPDATE_INTERVAL_IN_MS);
87                     setting.setSettingValue(String.valueOf(attribute
88                             .getAutomationUpdateInterval()));
89                     List<String> valueList = new ArrayList<String>();
90                     for (int index = 1; index <= 10; index++) {
91                         valueList.add(String.valueOf(index * 500));
92                     }
93                     setting.setAllowedValues(valueList);
94                 } else {
95                     invalidSetting = true;
96                 }
97                 if (!invalidSetting) {
98                     settingList.add(setting);
99                 }
100             }
101         }
102         return settingList;
103     }
104
105     public static void updateAutomationStatus(
106             List<AutomationSettingHelper> localSettingList, String status) {
107         if (null != localSettingList && null != status) {
108             Iterator<AutomationSettingHelper> settingItr = localSettingList
109                     .iterator();
110             AutomationSettingHelper setting;
111             while (settingItr.hasNext()) {
112                 setting = settingItr.next();
113                 if (null != setting) {
114                     if (setting.getSettingID().equals(Constants.AUTOMATION)) {
115                         setting.setSettingValue(status);
116                         break;
117                     }
118                 }
119             }
120         }
121     }
122 }