f5ea54ad2502499d778aaabda4b78299ff68e688
[platform/core/csapi/sensor.git] / Tizen.Sensor / Tizen.Sensor / Plugins / HeartRateMonitor.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     /// HeartRateMonitor Class. Used for registering callbacks for heart rate monitor and getting heart rate data
15     /// /// </summary>
16     public class HeartRateMonitor : Sensor
17     {
18         private const string HRMKey = "http://tizen.org/feature/sensor.heart_rate_monitor";
19
20         /// <summary>
21         /// Gets the value of the heart rate monitor.
22         /// </summary>
23         public int HeartRate { get; private set; }
24
25         /// <summary>
26         /// Returns true or false based on whether heart rate monitor is supported by device.
27         /// </summary>
28         public static bool IsSupported
29         {
30             get
31             {
32                 Log.Info(Globals.LogTag, "Checking if the HeartRateMonitor is supported");
33                 return CheckIfSupported(SensorType.HeartRateMonitor, HRMKey);
34             }
35         }
36
37         /// <summary>
38         /// Returns the number of heart rate monitors available on the device.
39         /// </summary>
40         public static int Count
41         {
42             get
43             {
44                 Log.Info(Globals.LogTag, "Getting the count of heart rate monitors");
45                 return GetCount();
46             }
47         }
48
49         /// <summary>
50         /// Initializes a new instance of the <see cref="Tizen.Sensor.HeartRateMonitor"/> class.
51         /// </summary>
52         /// <param name='index'>
53         /// Index. Default value for this is 0. Index refers to a particular heart rate monitor in case of multiple sensors
54         /// </param>
55         public HeartRateMonitor(int index = 0) : base(index)
56         {
57             Log.Info(Globals.LogTag, "Creating HeartRateMonitor object");
58         }
59
60         internal override SensorType GetSensorType()
61         {
62             return SensorType.HeartRateMonitor;
63         }
64
65         /// <summary>
66         /// Event Handler for storing the callback functions for event corresponding to change in heart rate monitor data.
67         /// </summary>
68
69         public event EventHandler<HeartRateMonitorDataUpdatedEventArgs> DataUpdated;
70
71         private static int GetCount()
72         {
73             IntPtr list;
74             int count;
75             int error = Interop.SensorManager.GetSensorList(SensorType.HeartRateMonitor, out list, out count);
76             if (error != (int)SensorError.None)
77             {
78                 Log.Error(Globals.LogTag, "Error getting sensor list for heart rate");
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 heart rate monitor");
92                 throw SensorErrorFactory.CheckAndThrowException(error, "Unable to set event callback for heart rate");
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 heart rate monitor");
102                 throw SensorErrorFactory.CheckAndThrowException(error, "Unable to unset event callback for heart rate");
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             HeartRate = (int)sensorData.values[0];
111
112             DataUpdated?.Invoke(this, new HeartRateMonitorDataUpdatedEventArgs((int)sensorData.values[0]));
113         }
114     }
115 }