/*
* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
*
* Licensed under the Apache License, Version 2.0 (the License);
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an AS IS BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using System;
namespace Tizen.Sensor
{
///
/// HeartRateMonitor Class. Used for registering callbacks for heart rate monitor and getting heart rate data
///
public sealed class HeartRateMonitor : Sensor
{
private const string HRMKey = "http://tizen.org/feature/sensor.heart_rate_monitor";
///
/// Gets the value of the heart rate monitor.
///
/// 3
/// Heart rate
public int HeartRate { get; private set; } = int.MinValue;
///
/// Returns true or false based on whether heart rate monitor is supported by device.
///
/// 3
/// true if supported; otherwise, false.
public static bool IsSupported
{
get
{
Log.Info(Globals.LogTag, "Checking if the HeartRateMonitor is supported");
return CheckIfSupported(SensorType.HeartRateMonitor, HRMKey);
}
}
///
/// Returns the number of heart rate monitors available on the device.
///
/// 3
/// The count of heart rate monitors
public static int Count
{
get
{
Log.Info(Globals.LogTag, "Getting the count of heart rate monitors");
return GetCount();
}
}
///
/// Initializes a new instance of the class.
///
/// 3
/// http://tizen.org/privilege/healthinfo
/// public
/// http://tizen.org/feature/sensor.heart_rate_monitor
/// Thrown when an invalid argument is used
/// Thrown when the sensor is not supported
/// Thrown when the app has no privilege to use the sensor
/// Thrown when the operation is invalid for the current state
///
/// Index. Default value for this is 0. Index refers to a particular heart rate monitor in case of multiple sensors
///
public HeartRateMonitor(uint index = 0) : base(index)
{
Log.Info(Globals.LogTag, "Creating HeartRateMonitor object");
}
internal override SensorType GetSensorType()
{
return SensorType.HeartRateMonitor;
}
///
/// Event Handler for storing the callback functions for event corresponding to change in heart rate monitor data.
///
/// 3
public event EventHandler DataUpdated;
private static int GetCount()
{
IntPtr list;
int count;
int error = Interop.SensorManager.GetSensorList(SensorType.HeartRateMonitor, out list, out count);
if (error != (int)SensorError.None)
{
Log.Error(Globals.LogTag, "Error getting sensor list for heart rate");
count = 0;
}
else
Interop.Libc.Free(list);
return count;
}
private static Interop.SensorListener.SensorEventCallback _callback;
internal override void EventListenStart()
{
_callback = (IntPtr sensorHandle, IntPtr eventPtr, IntPtr data) => {
Interop.SensorEventStruct sensorData = Interop.IntPtrToEventStruct(eventPtr);
TimeSpan = new TimeSpan((Int64)sensorData.timestamp);
HeartRate = (int)sensorData.values[0];
DataUpdated?.Invoke(this, new HeartRateMonitorDataUpdatedEventArgs((int)sensorData.values[0]));
};
int error = Interop.SensorListener.SetEventCallback(ListenerHandle, Interval, _callback, IntPtr.Zero);
if (error != (int)SensorError.None)
{
Log.Error(Globals.LogTag, "Error setting event callback for heart rate monitor");
throw SensorErrorFactory.CheckAndThrowException(error, "Unable to set event callback for heart rate");
}
}
internal override void EventListenStop()
{
int error = Interop.SensorListener.UnsetEventCallback(ListenerHandle);
if (error != (int)SensorError.None)
{
Log.Error(Globals.LogTag, "Error unsetting event callback for heart rate monitor");
throw SensorErrorFactory.CheckAndThrowException(error, "Unable to unset event callback for heart rate");
}
}
}
}