Merge branch 'master' into extended-easysetup
[platform/upstream/iotivity.git] / service / easy-setup / mediator / richsdk / android / EasySetupCore / src / main / java / org / iotivity / service / easysetup / mediator / EnrolleeConf.java
1 /**
2  * ***************************************************************
3  *
4  * Copyright 2016 Samsung Electronics All Rights Reserved.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * ****************************************************************
19  */
20
21 package org.iotivity.service.easysetup.mediator;
22
23 import android.util.Log;
24
25 import org.iotivity.base.OcException;
26 import org.iotivity.base.OcRepresentation;
27 import org.iotivity.service.easysetup.mediator.ESConstants;
28 import org.iotivity.service.easysetup.mediator.enums.WIFI_FREQ;
29 import org.iotivity.service.easysetup.mediator.enums.WIFI_MODE;
30
31 import java.util.ArrayList;
32 import java.util.Arrays;
33 import java.util.List;
34
35 /**
36  * This class stores Enrollee's configuration including WiFi and Device configuration
37  * including supported WiFi frequency and device name
38  */
39 public class EnrolleeConf
40 {
41     private static final String TAG = EnrolleeConf.class.getName();
42     private OcRepresentation mProvRep = null, mWiFiRep = null, mDevConfRep = null, mCloudRep = null;
43     /**
44      * Constructor
45      *
46      * @param rep received properties in a form of OcRepresentation
47      *
48      */
49     public EnrolleeConf(OcRepresentation rep)
50     {
51         mProvRep = rep;
52
53         List<OcRepresentation> children = rep.getChildren();
54
55         for (OcRepresentation child : children) {
56             List<String> rts = child.getResourceTypes();
57
58             if(child.getUri().indexOf(ESConstants.OC_RSRVD_ES_URI_WIFI) != -1)
59             {
60                 mWiFiRep = child;
61             }
62             else if(child.getUri().indexOf(ESConstants.OC_RSRVD_ES_URI_DEVCONF) != -1)
63             {
64                 mDevConfRep = child;
65             }
66             else if(child.getUri().indexOf(ESConstants.OC_RSRVD_ES_URI_CLOUDSERVER) != -1)
67             {
68                 mCloudRep = child;
69             }
70         }
71     }
72
73     /**
74      * Get Device Name property in DevConf resource
75      *
76      * @return deviceName
77      */
78     public String getDeviceName()
79     {
80         try
81         {
82             if(mDevConfRep != null && mDevConfRep.hasAttribute(ESConstants.OC_RSRVD_ES_DEVNAME)) {
83                 return (String) mDevConfRep.getValue(ESConstants.OC_RSRVD_ES_DEVNAME);
84             }
85         } catch (OcException e) {
86                 Log.e(TAG, "getWiFiModes is failed.");
87         }
88         return new String("");
89     }
90
91     /**
92      * Get Supported WiFi Modes property in WiFi resource
93      *
94      * @return a list of WiFi modes
95      */
96     public ArrayList<WIFI_MODE> getWiFiModes()
97     {
98         ArrayList<WIFI_MODE> modes = new ArrayList<WIFI_MODE>();
99         try {
100             if (mWiFiRep != null && mWiFiRep.hasAttribute(ESConstants.OC_RSRVD_ES_SUPPORTEDWIFIMODE)) {
101                 int modes_int[] = mWiFiRep.getValue(ESConstants.OC_RSRVD_ES_SUPPORTEDWIFIMODE);
102                 for (int i = 0 ; i < modes_int.length ; ++i) {
103                     modes.add(WIFI_MODE.fromInt(modes_int[i]));
104                 }
105             }
106         } catch (OcException e) {
107             Log.e(TAG, "getWiFiModes is failed.");
108         }
109         return modes;
110     }
111
112     /**
113      * Get Supported WiFi frequency property in WiFi resource
114      *
115      * @return WiFi frequency
116      */
117     public WIFI_FREQ getWiFiFreq()
118     {
119         try{
120             if(mWiFiRep != null && mWiFiRep.hasAttribute(ESConstants.OC_RSRVD_ES_SUPPORTEDWIFIFREQ))
121                 return WIFI_FREQ.fromInt(
122                         (int)mWiFiRep.getValue(ESConstants.OC_RSRVD_ES_SUPPORTEDWIFIFREQ));
123         } catch (OcException e) {
124             Log.e(TAG, "getWiFiFreq is failed.");
125         }
126         return WIFI_FREQ.WIFI_FREQ_NONE;
127     }
128
129     /**
130      * To check if Enrollee can access to cloud. To decide its preference, we check if a cloudserver
131      * resource is registered on Enrollee.
132      *
133      * @return boolean
134      */
135     public boolean isCloudAccessible()
136     {
137         if(mCloudRep != null && mCloudRep.getUri().indexOf(ESConstants.OC_RSRVD_ES_URI_CLOUDSERVER) != -1)
138             return true;
139
140         return false;
141     }
142 }
143
144