2 * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
18 using System.Collections.Generic;
20 using System.Runtime.InteropServices;
21 using Tizen.Network.Connection;
23 namespace Tizen.Network.WiFi
26 /// A class for managing the Wi-Fi network information.
28 /// <since_tizen> 3 </since_tizen>
29 public class WiFiNetwork
31 private Interop.WiFi.SafeWiFiAPHandle _apHandle;
32 private IAddressInformation _ipv4;
33 private IAddressInformation _ipv6;
34 private string _essid;
37 /// The Extended Service Set Identifier (ESSID).
39 /// <since_tizen> 3 </since_tizen>
40 /// <value>ESSID of the Wi-Fi.</value>
45 if (string.IsNullOrEmpty(_essid))
48 int ret = Interop.WiFi.AP.GetEssid(_apHandle, out strPtr);
49 if (ret != (int)WiFiError.None)
51 Log.Error(Globals.LogTag, "Failed to get essid, Error - " + (WiFiError)ret);
56 _essid = Marshal.PtrToStringAnsi(strPtr);
64 /// The Basic Service Set Identifier (BSSID).
66 /// <since_tizen> 3 </since_tizen>
67 /// <value>BSSID of the Wi-Fi.</value>
73 int ret = Interop.WiFi.AP.GetBssid(_apHandle, out strPtr);
74 if (ret != (int)WiFiError.None)
76 Log.Error(Globals.LogTag, "Failed to get bssid, Error - " + (WiFiError)ret);
79 return Marshal.PtrToStringAnsi(strPtr);
84 /// The address information for IPv4.
86 /// <since_tizen> 3 </since_tizen>
87 /// <value>IP address information for IPv4 type.</value>
88 public IAddressInformation IPv4Setting
97 /// The address information for IPv6.
99 /// <since_tizen> 3 </since_tizen>
100 /// <value>IP address information for IPv6 type.</value>
101 public IAddressInformation IPv6Setting
110 /// The proxy address.
112 /// <since_tizen> 3 </since_tizen>
113 /// <value>Represents the proxy address of the Wi-Fi.</value>
114 /// <exception cref="NotSupportedException">Thrown while setting this property when Wi-Fi is not supported.</exception>
115 /// <exception cref="ArgumentException">Thrown while setting this property due to an invalid parameter.</exception>
116 /// <exception cref="InvalidOperationException">Thrown while setting this value due to an invalid operation.</exception>
117 public string ProxyAddress
122 int ret = Interop.WiFi.AP.GetProxyAddress(_apHandle, (int)AddressFamily.IPv4, out strPtr);
123 if (ret != (int)WiFiError.None)
125 Log.Error(Globals.LogTag, "Failed to get proxy address, Error - " + (WiFiError)ret);
128 return Marshal.PtrToStringAnsi(strPtr);
132 int ret = Interop.WiFi.AP.SetProxyAddress(_apHandle, (int)AddressFamily.IPv4, value);
133 if (ret != (int)WiFiError.None)
135 Log.Error(Globals.LogTag, "Failed to set proxy address, Error - " + (WiFiError)ret);
136 WiFiErrorFactory.ThrowWiFiException(ret, _apHandle.DangerousGetHandle());
142 /// The proxy type (IPv6).
144 /// <since_tizen> 3 </since_tizen>
145 /// <value>Represents the proxy type of the Wi-Fi.</value>
146 /// <exception cref="NotSupportedException">Thrown while setting this property when Wi-Fi is not supported.</exception>
147 /// <exception cref="ArgumentException">Thrown while setting this property due to an invalid parameter.</exception>
148 /// <exception cref="InvalidOperationException">Thrown while setting this value due to an invalid operation.</exception>
149 public WiFiProxyType ProxyType
154 int ret = Interop.WiFi.AP.GetProxyType(_apHandle, out type);
155 if (ret != (int)WiFiError.None)
157 Log.Error(Globals.LogTag, "Failed to get proxy type, Error - " + (WiFiError)ret);
159 return (WiFiProxyType)type;
163 int ret = Interop.WiFi.AP.SetProxyType(_apHandle, (int)value);
164 if (ret != (int)WiFiError.None)
166 Log.Error(Globals.LogTag, "Failed to set proxy type, Error - " + (WiFiError)ret);
167 WiFiErrorFactory.ThrowWiFiException(ret, _apHandle.DangerousGetHandle());
173 /// The frequency band (MHz).
175 /// <since_tizen> 3 </since_tizen>
176 /// <value>Represents the frequency band value.</value>
182 int ret = Interop.WiFi.AP.GetFrequency(_apHandle, out freq);
183 if (ret != (int)WiFiError.None)
185 Log.Error(Globals.LogTag, "Failed to get frequency, Error - " + (WiFiError)ret);
192 /// The received signal strength indicator (RSSI).
194 /// <since_tizen> 3 </since_tizen>
195 /// <value>Represents RSSI of Wi-Fi (dbm).</value>
201 int ret = Interop.WiFi.AP.GetRssi(_apHandle, out rssi);
202 if (ret != (int)WiFiError.None)
204 Log.Error(Globals.LogTag, "Failed to get rssi, Error - " + (WiFiError)ret);
211 /// The Received signal strength indication(RSSI).
213 /// <since_tizen> 3 </since_tizen>
214 /// <value>Represents Rssi level of WiFi.</value>
215 /// <feature>http://tizen.org/feature/network.wifi</feature>
216 /// <exception cref="NotSupportedException">Thrown while setting this property when WiFi is not supported.</exception>
217 public WiFiRssiLevel RssiLevel
222 int ret = Interop.WiFi.AP.GetRssiLevel(_apHandle, out rssi);
223 if (ret != (int)WiFiError.None)
225 Log.Error(Globals.LogTag, "Failed to get rssi level, Error - " + (WiFiError)ret);
227 return (WiFiRssiLevel)rssi;
232 /// The max speed (Mbps).
234 /// <since_tizen> 3 </since_tizen>
235 /// <value>Represents the max speed value.</value>
241 int ret = Interop.WiFi.AP.GetMaxSpeed(_apHandle, out maxSpeed);
242 if (ret != (int)WiFiError.None)
244 Log.Error(Globals.LogTag, "Failed to get max speed, Error - " + (WiFiError)ret);
251 /// A property to check whether the access point is a favorite or not.
253 /// <since_tizen> 3 </since_tizen>
254 /// <value>Boolean value to check if the access point is a favorite or not.</value>
255 public bool IsFavorite
260 int ret = Interop.WiFi.AP.IsFavorite(_apHandle, out isFavorite);
261 if (ret != (int)WiFiError.None)
263 Log.Error(Globals.LogTag, "Failed to get favorite, Error - " + (WiFiError)ret);
270 /// A property to check whether the access point is a passpoint or not.
272 /// <since_tizen> 3 </since_tizen>
273 /// <value>Boolean value to check if the access point is a passpoint or not.</value>
274 public bool IsPasspoint
279 Log.Debug(Globals.LogTag, "Handle: " + _apHandle);
280 int ret = Interop.WiFi.AP.IsPasspoint(_apHandle, out isPasspoint);
281 if (ret != (int)WiFiError.None)
283 Log.Error(Globals.LogTag, "Failed to get isPassport, Error - " + (WiFiError)ret);
290 /// The connection state.
292 /// <since_tizen> 3 </since_tizen>
293 /// <value>Represents the connection state of the Wi-Fi.</value>
294 public WiFiConnectionState ConnectionState
299 int ret = Interop.WiFi.AP.GetConnectionState(_apHandle, out state);
300 if (ret != (int)WiFiError.None)
302 Log.Error(Globals.LogTag, "Failed to get connection state, Error - " + (WiFiError)ret);
304 return (WiFiConnectionState)state;
309 /// Gets all IPv6 addresses of the access point.
311 /// <since_tizen> 3 </since_tizen>
312 /// <returns>A list of IPv6 addresses of the access point.</returns>
313 /// <feature>http://tizen.org/feature/network.wifi</feature>
314 /// <exception cref="NotSupportedException">Thrown when the Wi-Fi is not supported.</exception>
315 /// <exception cref="ArgumentException">Thrown when the method failed due to an invalid parameter.</exception>
316 /// <exception cref="InvalidOperationException">Thrown when the method failed due to an invalid operation.</exception>
317 public IEnumerable<System.Net.IPAddress> GetAllIPv6Addresses()
319 Log.Debug(Globals.LogTag, "GetAllIPv6Addresses");
320 List<System.Net.IPAddress> ipList = new List<System.Net.IPAddress>();
321 Interop.WiFi.HandleCallback callback = (IntPtr ipv6Address, IntPtr userData) =>
323 if (ipv6Address != IntPtr.Zero)
325 string ipv6 = Marshal.PtrToStringAnsi(ipv6Address);
326 ipList.Add(System.Net.IPAddress.Parse(ipv6));
332 int ret = Interop.WiFi.AP.GetAllIPv6Addresses(_apHandle, callback, IntPtr.Zero);
333 if (ret != (int)WiFiError.None)
335 Log.Error(Globals.LogTag, "Failed to get all IPv6 addresses, Error - " + (WiFiError)ret);
336 WiFiErrorFactory.ThrowWiFiException(ret, _apHandle.DangerousGetHandle());
342 internal WiFiNetwork(Interop.WiFi.SafeWiFiAPHandle apHandle)
344 _apHandle = apHandle;
345 _ipv4 = new WiFiAddressInformation(apHandle, AddressFamily.IPv4);
346 _ipv6 = new WiFiAddressInformation(apHandle, AddressFamily.IPv6);
349 int ret = Interop.WiFi.AP.GetEssid(_apHandle, out strPtr);
350 if (ret != (int)WiFiError.None)
352 Log.Error(Globals.LogTag, "Failed to get essid, Error - " + (WiFiError)ret);
354 _essid = Marshal.PtrToStringAnsi(strPtr);
356 } //WiFiNetworkInformation