febf95640917a15084ccf988de2a5c49353f6334
[platform/core/csapi/sensor.git] / Tizen.Sensor / Tizen.Sensor / Plugins / RunningActivityDetector.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     /// RunningActivityDetector Class. Used for registering callbacks for running activity detector and getting the running state
15     /// </summary>
16     public class RunningActivityDetector : ActivityDetector
17     {
18         private static string ActivityDetectorKey = "http://tizen.org/feature/sensor.activity_recognition";
19
20         /// <summary>
21         /// Gets the state of running activity detector
22         /// </summary>
23         public DetectorState Running { get; private set; }
24
25         /// <summary>
26         /// Returns true or false based on whether running activity detector is supported by device.
27         /// </summary>
28         public static bool IsSupported
29         {
30             get
31             {
32                 Log.Info(Globals.LogTag, "Checking if the running activity detector is supported");
33                 return CheckIfSupported(SensorType.RunningActivityDetector, ActivityDetectorKey);
34             }
35         }
36
37         /// <summary>
38         /// Returns the number of running activity detector available on the device.
39         /// </summary>
40         public static int Count
41         {
42             get
43             {
44                 Log.Info(Globals.LogTag, "Getting the count of running activity detectors");
45                 return GetCount();
46             }
47         }
48
49         /// <summary>
50         /// Initializes a new instance of the <see cref="Tizen.Sensor.RunningActivityDetector"/> class.
51         /// </summary>
52         /// <param name='index'>
53         /// Index. Default value for this is 0. Index refers to a particular running activity detector in case of multiple sensors.
54         /// </param>
55         public RunningActivityDetector(int index = 0) : base(index)
56         {
57             SetAttribute((SensorAttribute)ActivityAttribute, (int)ActivityType.Running);
58             Log.Info(Globals.LogTag, "Creating running activity detector object");
59         }
60
61         private static int GetCount()
62         {
63             IntPtr list;
64             int count;
65             int error = Interop.SensorManager.GetSensorList(SensorType.RunningActivityDetector, out list, out count);
66             if (error != (int)SensorError.None)
67             {
68                 Log.Error(Globals.LogTag, "Error getting sensor list for running activity detector");
69                 count = 0;
70             }
71             else
72                 Interop.Libc.Free(list);
73             return count;
74         }
75
76         /// <summary>
77         /// Event Handler for storing the callback functions for event corresponding to change in running activity detector data.
78         /// </summary>
79         public event EventHandler<RunningActivityDetectorDataUpdatedEventArgs> DataUpdated;
80
81         protected override void SensorEventCallback(IntPtr sensorHandle, IntPtr sensorPtr, IntPtr data)
82         {
83             Interop.SensorEventStruct sensorData = Interop.IntPtrToEventStruct(sensorPtr);
84             TimeSpan = new TimeSpan((Int64)sensorData.timestamp);
85             Running = (DetectorState)sensorData.values[0];
86             ActivityAccuracy = (SensorDataAccuracy) sensorData.accuracy;
87
88             DataUpdated?.Invoke(this, new RunningActivityDetectorDataUpdatedEventArgs(sensorData.values[0]));
89         }
90
91         internal override SensorType GetSensorType()
92         {
93             return SensorType.RunningActivityDetector;
94         }
95     }
96 }