d611b0cee5068b88e81eb2fef0bf00376a6cf2e4
[platform/core/csapi/sensor.git] / Tizen.Sensor / Tizen.Sensor / Plugins / HumiditySensor.cs
1 // Copyright 2016 by Samsung Electronics, Inc.,
2 //
3 // This software is the confidential and proprietary information
4 // of Samsung Electronics, Inc. ("Confidential Information"). You
5 // shall not disclose such Confidential Information and shall use
6 // it only in accordance with the terms of the license agreement
7 // you entered into with Samsung.
8
9 using System;
10
11 namespace Tizen.Sensor
12 {
13     /// <summary>
14     /// HumiditySensor Class. Used for registering callbacks for humidity sensor and getting humidity data
15     /// /// </summary>
16     public class HumiditySensor : Sensor
17     {
18         private const string HumiditySensorKey = "http://tizen.org/feature/sensor.humidity";
19
20         /// <summary>
21         /// Gets the value of the humidity sensor.
22         /// </summary>
23         public float Humidity { get; private set; }
24
25         /// <summary>
26         /// Returns true or false based on whether humidity sensor is supported by device.
27         /// </summary>
28         public static bool IsSupported
29         {
30             get
31             {
32                 Log.Info(Globals.LogTag, "Checking if the HumiditySensor is supported");
33                 return CheckIfSupported(SensorType.HumiditySensor, HumiditySensorKey);
34             }
35         }
36
37         /// <summary>
38         /// Returns the number of humidity sensors available on the device.
39         /// </summary>
40         public static int Count
41         {
42             get
43             {
44                 Log.Info(Globals.LogTag, "Getting the count of humidity sensors");
45                 return GetCount();
46             }
47         }
48
49         /// <summary>
50         /// Initializes a new instance of the <see cref="Tizen.Sensor.HumiditySensor"/> class.
51         /// </summary>
52         /// <param name='index'>
53         /// Index. Default value for this is 0. Index refers to a particular humidity sensor in case of multiple sensors
54         /// </param>
55         public HumiditySensor(int index = 0) : base(index)
56         {
57             Log.Info(Globals.LogTag, "Creating HumiditySensor object");
58         }
59
60         internal override SensorType GetSensorType()
61         {
62             return SensorType.HumiditySensor;
63         }
64
65         /// <summary>
66         /// Event Handler for storing the callback functions for event corresponding to change in humidity sensor data.
67         /// </summary>
68
69         public event EventHandler<HumiditySensorDataUpdatedEventArgs> DataUpdated;
70
71         private static int GetCount()
72         {
73             IntPtr list;
74             int count;
75             int error = Interop.SensorManager.GetSensorList(SensorType.HumiditySensor, out list, out count);
76             if (error != (int)SensorError.None)
77             {
78                 Log.Error(Globals.LogTag, "Error getting sensor list for humidity");
79                 count = 0;
80             }
81             else
82                 Interop.Libc.Free(list);
83             return count;
84         }
85
86         protected override void EventListenStart()
87         {
88             int error = Interop.SensorListener.SetEventCallback(ListenerHandle, Interval, SensorEventCallback, IntPtr.Zero);
89             if (error != (int)SensorError.None)
90             {
91                 Log.Error(Globals.LogTag, "Error setting event callback for humidity sensor");
92                 throw SensorErrorFactory.CheckAndThrowException(error, "Unable to set event callback for humidity");
93             }
94         }
95
96         protected override void EventListenStop()
97         {
98             int error = Interop.SensorListener.UnsetEventCallback(ListenerHandle);
99             if (error != (int)SensorError.None)
100             {
101                 Log.Error(Globals.LogTag, "Error unsetting event callback for humidity sensor");
102                 throw SensorErrorFactory.CheckAndThrowException(error, "Unable to unset event callback for humidity");
103             }
104         }
105
106         private void SensorEventCallback(IntPtr sensorHandle, IntPtr sensorPtr, IntPtr data)
107         {
108             Interop.SensorEventStruct sensorData = Interop.IntPtrToEventStruct(sensorPtr);
109             TimeSpan = new TimeSpan((Int64)sensorData.timestamp);
110             Humidity = sensorData.values[0];
111
112             DataUpdated?.Invoke(this, new HumiditySensorDataUpdatedEventArgs(sensorData.values[0]));
113         }
114     }
115 }