csapi-sensor: change index type from int to unit in constructor
[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         /// <exception cref="ArgumentException">Thrown when an invalid argument is used</exception>
53         /// <exception cref="NotSupportedException">Thrown when the sensor is not supported</exception>
54         /// <exception cref="InvalidOperationException">Thrown when the operation is invalid for the current state</exception>
55         /// <param name='index'>
56         /// Index. Default value for this is 0. Index refers to a particular running activity detector in case of multiple sensors.
57         /// </param>
58         public RunningActivityDetector(uint index = 0) : base(index)
59         {
60             SetAttribute((SensorAttribute)ActivityAttribute, (int)ActivityType.Running);
61             Log.Info(Globals.LogTag, "Creating running activity detector object");
62         }
63
64         private static int GetCount()
65         {
66             IntPtr list;
67             int count;
68             int error = Interop.SensorManager.GetSensorList(SensorType.RunningActivityDetector, out list, out count);
69             if (error != (int)SensorError.None)
70             {
71                 Log.Error(Globals.LogTag, "Error getting sensor list for running activity detector");
72                 count = 0;
73             }
74             else
75                 Interop.Libc.Free(list);
76             return count;
77         }
78
79         /// <summary>
80         /// Event Handler for storing the callback functions for event corresponding to change in running activity detector data.
81         /// </summary>
82         public event EventHandler<RunningActivityDetectorDataUpdatedEventArgs> DataUpdated;
83
84         protected override void SensorEventCallback(IntPtr sensorHandle, IntPtr sensorPtr, IntPtr data)
85         {
86             Interop.SensorEventStruct sensorData = Interop.IntPtrToEventStruct(sensorPtr);
87             TimeSpan = new TimeSpan((Int64)sensorData.timestamp);
88             Running = (DetectorState)sensorData.values[0];
89             ActivityAccuracy = (SensorDataAccuracy) sensorData.accuracy;
90
91             DataUpdated?.Invoke(this, new RunningActivityDetectorDataUpdatedEventArgs(sensorData.values[0]));
92         }
93
94         internal override SensorType GetSensorType()
95         {
96             return SensorType.RunningActivityDetector;
97         }
98     }
99 }