sensor.h revision 477db44043140dc6f4e7497a760061aefe472df2
1/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17/**
18 * @addtogroup Sensor
19 * @{
20 */
21
22/**
23 * @file sensor.h
24 */
25
26#ifndef ANDROID_SENSOR_H
27#define ANDROID_SENSOR_H
28
29/******************************************************************
30 *
31 * IMPORTANT NOTICE:
32 *
33 *   This file is part of Android's set of stable system headers
34 *   exposed by the Android NDK (Native Development Kit).
35 *
36 *   Third-party source AND binary code relies on the definitions
37 *   here to be FROZEN ON ALL UPCOMING PLATFORM RELEASES.
38 *
39 *   - DO NOT MODIFY ENUMS (EXCEPT IF YOU ADD NEW 32-BIT VALUES)
40 *   - DO NOT MODIFY CONSTANTS OR FUNCTIONAL MACROS
41 *   - DO NOT CHANGE THE SIGNATURE OF FUNCTIONS IN ANY WAY
42 *   - DO NOT CHANGE THE LAYOUT OR SIZE OF STRUCTURES
43 */
44
45/**
46 * Structures and functions to receive and process sensor events in
47 * native code.
48 *
49 */
50
51#include <android/looper.h>
52
53#include <stdbool.h>
54#include <sys/types.h>
55#include <math.h>
56#include <stdint.h>
57
58#ifdef __cplusplus
59extern "C" {
60#endif
61
62typedef struct AHardwareBuffer AHardwareBuffer;
63
64#define ASENSOR_RESOLUTION_INVALID     (nanf(""))
65#define ASENSOR_FIFO_COUNT_INVALID     (-1)
66#define ASENSOR_DELAY_INVALID          INT32_MIN
67
68/**
69 * Sensor types.
70 * (keep in sync with hardware/sensors.h)
71 */
72enum {
73    /**
74     * Invalid sensor type. Returned by {@link ASensor_getType} as error value.
75     */
76    ASENSOR_TYPE_INVALID = -1,
77    /**
78     * {@link ASENSOR_TYPE_ACCELEROMETER}
79     * reporting-mode: continuous
80     *
81     *  All values are in SI units (m/s^2) and measure the acceleration of the
82     *  device minus the force of gravity.
83     */
84    ASENSOR_TYPE_ACCELEROMETER       = 1,
85    /**
86     * {@link ASENSOR_TYPE_MAGNETIC_FIELD}
87     * reporting-mode: continuous
88     *
89     *  All values are in micro-Tesla (uT) and measure the geomagnetic
90     *  field in the X, Y and Z axis.
91     */
92    ASENSOR_TYPE_MAGNETIC_FIELD      = 2,
93    /**
94     * {@link ASENSOR_TYPE_GYROSCOPE}
95     * reporting-mode: continuous
96     *
97     *  All values are in radians/second and measure the rate of rotation
98     *  around the X, Y and Z axis.
99     */
100    ASENSOR_TYPE_GYROSCOPE           = 4,
101    /**
102     * {@link ASENSOR_TYPE_LIGHT}
103     * reporting-mode: on-change
104     *
105     * The light sensor value is returned in SI lux units.
106     */
107    ASENSOR_TYPE_LIGHT               = 5,
108    /**
109     * {@link ASENSOR_TYPE_PROXIMITY}
110     * reporting-mode: on-change
111     *
112     * The proximity sensor which turns the screen off and back on during calls is the
113     * wake-up proximity sensor. Implement wake-up proximity sensor before implementing
114     * a non wake-up proximity sensor. For the wake-up proximity sensor set the flag
115     * SENSOR_FLAG_WAKE_UP.
116     * The value corresponds to the distance to the nearest object in centimeters.
117     */
118    ASENSOR_TYPE_PROXIMITY           = 8,
119    /**
120     * {@link ASENSOR_TYPE_LINEAR_ACCELERATION}
121     * reporting-mode: continuous
122     *
123     *  All values are in SI units (m/s^2) and measure the acceleration of the
124     *  device not including the force of gravity.
125     */
126    ASENSOR_TYPE_LINEAR_ACCELERATION = 10
127};
128
129/**
130 * Sensor accuracy measure.
131 */
132enum {
133    /** no contact */
134    ASENSOR_STATUS_NO_CONTACT       = -1,
135    /** unreliable */
136    ASENSOR_STATUS_UNRELIABLE       = 0,
137    /** low accuracy */
138    ASENSOR_STATUS_ACCURACY_LOW     = 1,
139    /** medium accuracy */
140    ASENSOR_STATUS_ACCURACY_MEDIUM  = 2,
141    /** high accuracy */
142    ASENSOR_STATUS_ACCURACY_HIGH    = 3
143};
144
145/**
146 * Sensor Reporting Modes.
147 */
148enum {
149    /** invalid reporting mode */
150    AREPORTING_MODE_INVALID = -1,
151    /** continuous reporting */
152    AREPORTING_MODE_CONTINUOUS = 0,
153    /** reporting on change */
154    AREPORTING_MODE_ON_CHANGE = 1,
155    /** on shot reporting */
156    AREPORTING_MODE_ONE_SHOT = 2,
157    /** special trigger reporting */
158    AREPORTING_MODE_SPECIAL_TRIGGER = 3
159};
160
161/**
162 * Sensor Direct Report Rates.
163 */
164enum {
165    /** stopped */
166    ASENSOR_DIRECT_RATE_STOP = 0,
167    /** nominal 50Hz */
168    ASENSOR_DIRECT_RATE_NORMAL = 1,
169    /** nominal 200Hz */
170    ASENSOR_DIRECT_RATE_FAST = 2,
171    /** nominal 800Hz */
172    ASENSOR_DIRECT_RATE_VERY_FAST = 3
173};
174
175/**
176 * Sensor Direct Channel Type.
177 */
178enum {
179    /** shared memory created by ASharedMemory_create */
180    ASENSOR_DIRECT_CHANNEL_TYPE_SHARED_MEMORY = 1,
181    /** AHardwareBuffer */
182    ASENSOR_DIRECT_CHANNEL_TYPE_HARDWARE_BUFFER = 2
183};
184
185/*
186 * A few useful constants
187 */
188
189/** Earth's gravity in m/s^2 */
190#define ASENSOR_STANDARD_GRAVITY            (9.80665f)
191/** Maximum magnetic field on Earth's surface in uT */
192#define ASENSOR_MAGNETIC_FIELD_EARTH_MAX    (60.0f)
193/** Minimum magnetic field on Earth's surface in uT*/
194#define ASENSOR_MAGNETIC_FIELD_EARTH_MIN    (30.0f)
195
196/**
197 * A sensor event.
198 */
199
200/* NOTE: Must match hardware/sensors.h */
201typedef struct ASensorVector {
202    union {
203        float v[3];
204        struct {
205            float x;
206            float y;
207            float z;
208        };
209        struct {
210            float azimuth;
211            float pitch;
212            float roll;
213        };
214    };
215    int8_t status;
216    uint8_t reserved[3];
217} ASensorVector;
218
219typedef struct AMetaDataEvent {
220    int32_t what;
221    int32_t sensor;
222} AMetaDataEvent;
223
224typedef struct AUncalibratedEvent {
225    union {
226        float uncalib[3];
227        struct {
228            float x_uncalib;
229            float y_uncalib;
230            float z_uncalib;
231        };
232    };
233    union {
234        float bias[3];
235        struct {
236            float x_bias;
237            float y_bias;
238            float z_bias;
239        };
240    };
241} AUncalibratedEvent;
242
243typedef struct AHeartRateEvent {
244    float bpm;
245    int8_t status;
246} AHeartRateEvent;
247
248typedef struct ADynamicSensorEvent {
249    int32_t  connected;
250    int32_t  handle;
251} ADynamicSensorEvent;
252
253typedef struct {
254    int32_t type;
255    int32_t serial;
256    union {
257        int32_t data_int32[14];
258        float   data_float[14];
259    };
260} AAdditionalInfoEvent;
261
262/* NOTE: Must match hardware/sensors.h */
263typedef struct ASensorEvent {
264    int32_t version; /* sizeof(struct ASensorEvent) */
265    int32_t sensor;
266    int32_t type;
267    int32_t reserved0;
268    int64_t timestamp;
269    union {
270        union {
271            float           data[16];
272            ASensorVector   vector;
273            ASensorVector   acceleration;
274            ASensorVector   magnetic;
275            float           temperature;
276            float           distance;
277            float           light;
278            float           pressure;
279            float           relative_humidity;
280            AUncalibratedEvent uncalibrated_gyro;
281            AUncalibratedEvent uncalibrated_magnetic;
282            AMetaDataEvent meta_data;
283            AHeartRateEvent heart_rate;
284            ADynamicSensorEvent dynamic_sensor_meta;
285            AAdditionalInfoEvent additional_info;
286        };
287        union {
288            uint64_t        data[8];
289            uint64_t        step_counter;
290        } u64;
291    };
292
293    uint32_t flags;
294    int32_t reserved1[3];
295} ASensorEvent;
296
297struct ASensorManager;
298/**
299 * {@link ASensorManager} is an opaque type to manage sensors and
300 * events queues.
301 *
302 * {@link ASensorManager} is a singleton that can be obtained using
303 * ASensorManager_getInstance().
304 *
305 * This file provides a set of functions that uses {@link
306 * ASensorManager} to access and list hardware sensors, and
307 * create and destroy event queues:
308 * - ASensorManager_getSensorList()
309 * - ASensorManager_getDefaultSensor()
310 * - ASensorManager_getDefaultSensorEx()
311 * - ASensorManager_createEventQueue()
312 * - ASensorManager_destroyEventQueue()
313 */
314typedef struct ASensorManager ASensorManager;
315
316
317struct ASensorEventQueue;
318/**
319 * {@link ASensorEventQueue} is an opaque type that provides access to
320 * {@link ASensorEvent} from hardware sensors.
321 *
322 * A new {@link ASensorEventQueue} can be obtained using ASensorManager_createEventQueue().
323 *
324 * This file provides a set of functions to enable and disable
325 * sensors, check and get events, and set event rates on a {@link
326 * ASensorEventQueue}.
327 * - ASensorEventQueue_enableSensor()
328 * - ASensorEventQueue_disableSensor()
329 * - ASensorEventQueue_hasEvents()
330 * - ASensorEventQueue_getEvents()
331 * - ASensorEventQueue_setEventRate()
332 */
333typedef struct ASensorEventQueue ASensorEventQueue;
334
335struct ASensor;
336/**
337 * {@link ASensor} is an opaque type that provides information about
338 * an hardware sensors.
339 *
340 * A {@link ASensor} pointer can be obtained using
341 * ASensorManager_getDefaultSensor(),
342 * ASensorManager_getDefaultSensorEx() or from a {@link ASensorList}.
343 *
344 * This file provides a set of functions to access properties of a
345 * {@link ASensor}:
346 * - ASensor_getName()
347 * - ASensor_getVendor()
348 * - ASensor_getType()
349 * - ASensor_getResolution()
350 * - ASensor_getMinDelay()
351 * - ASensor_getFifoMaxEventCount()
352 * - ASensor_getFifoReservedEventCount()
353 * - ASensor_getStringType()
354 * - ASensor_getReportingMode()
355 * - ASensor_isWakeUpSensor()
356 */
357typedef struct ASensor ASensor;
358/**
359 * {@link ASensorRef} is a type for constant pointers to {@link ASensor}.
360 *
361 * This is used to define entry in {@link ASensorList} arrays.
362 */
363typedef ASensor const* ASensorRef;
364/**
365 * {@link ASensorList} is an array of reference to {@link ASensor}.
366 *
367 * A {@link ASensorList} can be initialized using ASensorManager_getSensorList().
368 */
369typedef ASensorRef const* ASensorList;
370
371/*****************************************************************************/
372
373/**
374 * Get a reference to the sensor manager. ASensorManager is a singleton
375 * per package as different packages may have access to different sensors.
376 *
377 * Deprecated: Use ASensorManager_getInstanceForPackage(const char*) instead.
378 *
379 * Example:
380 *
381 *     ASensorManager* sensorManager = ASensorManager_getInstance();
382 *
383 */
384#if __ANDROID_API__ >= __ANDROID_API_O__
385__attribute__ ((deprecated)) ASensorManager* ASensorManager_getInstance();
386#else
387ASensorManager* ASensorManager_getInstance();
388#endif
389
390#if __ANDROID_API__ >= __ANDROID_API_O__
391/*
392 * Get a reference to the sensor manager. ASensorManager is a singleton
393 * per package as different packages may have access to different sensors.
394 *
395 * Example:
396 *
397 *    ASensorManager* sensorManager = ASensorManager_getInstanceForPackage("foo.bar.baz");
398 *
399 */
400ASensorManager* ASensorManager_getInstanceForPackage(const char* packageName);
401#endif
402
403/**
404 * Returns the list of available sensors.
405 */
406int ASensorManager_getSensorList(ASensorManager* manager, ASensorList* list);
407
408/**
409 * Returns the default sensor for the given type, or NULL if no sensor
410 * of that type exists.
411 */
412ASensor const* ASensorManager_getDefaultSensor(ASensorManager* manager, int type);
413
414#if __ANDROID_API__ >= 21
415/**
416 * Returns the default sensor with the given type and wakeUp properties or NULL if no sensor
417 * of this type and wakeUp properties exists.
418 */
419ASensor const* ASensorManager_getDefaultSensorEx(ASensorManager* manager, int type, bool wakeUp);
420#endif
421
422/**
423 * Creates a new sensor event queue and associate it with a looper.
424 *
425 * "ident" is a identifier for the events that will be returned when
426 * calling ALooper_pollOnce(). The identifier must be >= 0, or
427 * ALOOPER_POLL_CALLBACK if providing a non-NULL callback.
428 */
429ASensorEventQueue* ASensorManager_createEventQueue(ASensorManager* manager,
430        ALooper* looper, int ident, ALooper_callbackFunc callback, void* data);
431
432/**
433 * Destroys the event queue and free all resources associated to it.
434 */
435int ASensorManager_destroyEventQueue(ASensorManager* manager, ASensorEventQueue* queue);
436
437#if __ANDROID_API__ >= __ANDROID_API_O__
438/**
439 * Create direct channel based on shared memory
440 *
441 * Create a direct channel of {@link ASENSOR_DIRECT_CHANNEL_TYPE_SHARED_MEMORY} to be used
442 * for configuring sensor direct report.
443 *
444 * \param manager the {@link ASensorManager} instance obtained from
445 *                {@link ASensorManager_getInstanceForPackage}.
446 * \param fd      file descriptor representing a shared memory created by
447 *                {@link ASharedMemory_create}
448 * \param size    size to be used, must be less or equal to size of shared memory.
449 *
450 * \return a positive integer as a channel id to be used in
451 *         {@link ASensorManager_destroyDirectChannel} and
452 *         {@link ASensorManager_configureDirectReport}, or value less or equal to 0 for failures.
453 */
454int ASensorManager_createSharedMemoryDirectChannel(ASensorManager* manager, int fd, size_t size);
455
456/**
457 * Create direct channel based on AHardwareBuffer
458 *
459 * Create a direct channel of {@link ASENSOR_DIRECT_CHANNEL_TYPE_HARDWARE_BUFFER} type to be used
460 * for configuring sensor direct report.
461 *
462 * \param manager the {@link ASensorManager} instance obtained from
463 *                {@link ASensorManager_getInstanceForPackage}.
464 * \param buffer  {@link AHardwareBuffer} instance created by {@link AHardwareBuffer_allocate}.
465 * \param size    the intended size to be used, must be less or equal to size of buffer.
466 *
467 * \return a positive integer as a channel id to be used in
468 *         {@link ASensorManager_destroyDirectChannel} and
469 *         {@link ASensorManager_configureDirectReport}, or value less or equal to 0 for failures.
470 */
471int ASensorManager_createHardwareBufferDirectChannel(
472        ASensorManager* manager, AHardwareBuffer const * buffer, size_t size);
473
474/**
475 * Destroy a direct channel
476 *
477 * Destroy a direct channel previously created using {@link ASensorManager_createDirectChannel}.
478 * The buffer used for creating direct channel does not get destroyed with
479 * {@link ASensorManager_destroy} and has to be close or released separately.
480 *
481 * \param manager the {@link ASensorManager} instance obtained from
482 *                {@link ASensorManager_getInstanceForPackage}.
483 * \param channelId channel id (a positive integer) returned from
484 *                  {@link ASensorManager_createSharedMemoryDirectChannel} or
485 *                  {@link ASensorManager_createHardwareBufferDirectChannel}.
486 */
487void ASensorManager_destroyDirectChannel(ASensorManager* manager, int channelId);
488
489/**
490 * Configure direct report on channel
491 *
492 * Configure sensor direct report on a direct channel: set rate to value other than
493 * {@link ASENSOR_DIRECT_RATE_STOP} so that sensor event can be directly
494 * written into the shared memory region used for creating the buffer. It returns a positive token
495 * which can be used for identify sensor events from different sensors on success. Calling with rate
496 * {@link ASENSOR_DIRECT_RATE_STOP} will stop direct report of the sensor specified in the channel.
497 *
498 * To stop all active sensor direct report configured to a channel, set sensor to NULL and rate to
499 * {@link ASENSOR_DIRECT_RATE_STOP}.
500 *
501 * In order to successfully configure a direct report, the sensor has to support the specified rate
502 * and the channel type, which can be checked by {@link ASensor_getHighestDirectReportRateLevel} and
503 * {@link ASensor_isDirectChannelTypeSupported}, respectively.
504 *
505 * Example:
506 * \code{.cpp}
507 *      ASensorManager *manager = ...;
508 *      ASensor *sensor = ...;
509 *      int channelId = ...;
510 *
511 *      ASensorManager_configureDirectReport(
512 *              manager, sensor, channel_id, ASENSOR_DIRECT_RATE_FAST);
513 * \endcode
514 *
515 * \param manager   the {@link ASensorManager} instance obtained from
516 *                  {@link ASensorManager_getInstanceForPackage}.
517 * \param sensor    a {@link ASensor} to denote which sensor to be operate. It can be NULL if rate
518 *                  is {@link ASENSOR_DIRECT_RATE_STOP}, denoting stopping of all active sensor
519 *                  direct report.
520 * \param channelId channel id (a positive integer) returned from
521 *                  {@link ASensorManager_createSharedMemoryDirectChannel} or
522 *                  {@link ASensorManager_createHardwareBufferDirectChannel}.
523 *
524 * \return positive token for success or negative error code.
525 */
526int ASensorManager_configureDirectReport(
527        ASensorManager* manager, ASensor const* sensor, int channelId, int rate);
528#endif
529
530/*****************************************************************************/
531
532/**
533 * Enable the selected sensor with a specified sampling period and max batch report latency.
534 * Returns a negative error code on failure.
535 * Note: To disable the selected sensor, use ASensorEventQueue_disableSensor() same as before.
536 */
537int ASensorEventQueue_registerSensor(ASensorEventQueue* queue, ASensor const* sensor,
538        int32_t samplingPeriodUs, int64_t maxBatchReportLatencyUs);
539
540/**
541 * Enable the selected sensor. Returns a negative error code on failure.
542 */
543int ASensorEventQueue_enableSensor(ASensorEventQueue* queue, ASensor const* sensor);
544
545/**
546 * Disable the selected sensor. Returns a negative error code on failure.
547 */
548int ASensorEventQueue_disableSensor(ASensorEventQueue* queue, ASensor const* sensor);
549
550/**
551 * Sets the delivery rate of events in microseconds for the given sensor.
552 * Note that this is a hint only, generally event will arrive at a higher
553 * rate. It is an error to set a rate inferior to the value returned by
554 * ASensor_getMinDelay().
555 * Returns a negative error code on failure.
556 */
557int ASensorEventQueue_setEventRate(ASensorEventQueue* queue, ASensor const* sensor, int32_t usec);
558
559/**
560 * Returns true if there are one or more events available in the
561 * sensor queue.  Returns 1 if the queue has events; 0 if
562 * it does not have events; and a negative value if there is an error.
563 */
564int ASensorEventQueue_hasEvents(ASensorEventQueue* queue);
565
566/**
567 * Returns the next available events from the queue.  Returns a negative
568 * value if no events are available or an error has occurred, otherwise
569 * the number of events returned.
570 *
571 * Examples:
572 *   ASensorEvent event;
573 *   ssize_t numEvent = ASensorEventQueue_getEvents(queue, &event, 1);
574 *
575 *   ASensorEvent eventBuffer[8];
576 *   ssize_t numEvent = ASensorEventQueue_getEvents(queue, eventBuffer, 8);
577 *
578 */
579ssize_t ASensorEventQueue_getEvents(ASensorEventQueue* queue, ASensorEvent* events, size_t count);
580
581
582/*****************************************************************************/
583
584/**
585 * Returns this sensor's name (non localized)
586 */
587const char* ASensor_getName(ASensor const* sensor);
588
589/**
590 * Returns this sensor's vendor's name (non localized)
591 */
592const char* ASensor_getVendor(ASensor const* sensor);
593
594/**
595 * Return this sensor's type
596 */
597int ASensor_getType(ASensor const* sensor);
598
599/**
600 * Returns this sensors's resolution
601 */
602float ASensor_getResolution(ASensor const* sensor);
603
604/**
605 * Returns the minimum delay allowed between events in microseconds.
606 * A value of zero means that this sensor doesn't report events at a
607 * constant rate, but rather only when a new data is available.
608 */
609int ASensor_getMinDelay(ASensor const* sensor);
610
611#if __ANDROID_API__ >= 21
612/**
613 * Returns the maximum size of batches for this sensor. Batches will often be
614 * smaller, as the hardware fifo might be used for other sensors.
615 */
616int ASensor_getFifoMaxEventCount(ASensor const* sensor);
617
618/**
619 * Returns the hardware batch fifo size reserved to this sensor.
620 */
621int ASensor_getFifoReservedEventCount(ASensor const* sensor);
622
623/**
624 * Returns this sensor's string type.
625 */
626const char* ASensor_getStringType(ASensor const* sensor);
627
628/**
629 * Returns the reporting mode for this sensor. One of AREPORTING_MODE_* constants.
630 */
631int ASensor_getReportingMode(ASensor const* sensor);
632
633/**
634 * Returns true if this is a wake up sensor, false otherwise.
635 */
636bool ASensor_isWakeUpSensor(ASensor const* sensor);
637#endif /* __ANDROID_API__ >= 21 */
638
639#if __ANDROID_API__ >= __ANDROID_API_O__
640/**
641 * Test if sensor supports a certain type of direct channel.
642 *
643 * \param sensor  a {@link ASensor} to denote the sensor to be checked.
644 * \param channelType  Channel type constant, either
645 *                     {@ASENSOR_DIRECT_CHANNEL_TYPE_SHARED_MEMORY}
646 *                     or {@link ASENSOR_DIRECT_CHANNEL_TYPE_HARDWARE_BUFFER}.
647 * \returns true if sensor supports the specified direct channel type.
648 */
649bool ASensor_isDirectChannelTypeSupported(ASensor const* sensor, int channelType);
650/**
651 * Get the highest direct rate level that a sensor support.
652 *
653 * \param sensor  a {@link ASensor} to denote the sensor to be checked.
654 *
655 * \return a ASENSOR_DIRECT_RATE_... enum denoting the highest rate level supported by the sensor.
656 *         If return value is {@link ASENSOR_DIRECT_RATE_STOP}, it means the sensor
657 *         does not support direct report.
658 */
659int ASensor_getHighestDirectReportRateLevel(ASensor const* sensor);
660#endif
661
662#ifdef __cplusplus
663};
664#endif
665
666#endif // ANDROID_SENSOR_H
667
668/** @} */
669