2010-07-14 05:21:56 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ANDROID_GUI_SENSOR_H
|
|
|
|
#define ANDROID_GUI_SENSOR_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <utils/Errors.h>
|
|
|
|
#include <utils/Flattenable.h>
|
2011-05-18 05:54:42 +00:00
|
|
|
#include <utils/String8.h>
|
|
|
|
#include <utils/Timers.h>
|
2010-07-14 05:21:56 +00:00
|
|
|
|
|
|
|
#include <hardware/sensors.h>
|
|
|
|
|
|
|
|
#include <android/sensor.h>
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Concrete types for the NDK
|
|
|
|
struct ASensor { };
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
namespace android {
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class Parcel;
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2012-08-13 02:37:16 +00:00
|
|
|
class Sensor : public ASensor, public LightFlattenable<Sensor>
|
2010-07-14 05:21:56 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum {
|
|
|
|
TYPE_ACCELEROMETER = ASENSOR_TYPE_ACCELEROMETER,
|
|
|
|
TYPE_MAGNETIC_FIELD = ASENSOR_TYPE_MAGNETIC_FIELD,
|
|
|
|
TYPE_GYROSCOPE = ASENSOR_TYPE_GYROSCOPE,
|
|
|
|
TYPE_LIGHT = ASENSOR_TYPE_LIGHT,
|
|
|
|
TYPE_PROXIMITY = ASENSOR_TYPE_PROXIMITY
|
|
|
|
};
|
|
|
|
|
2010-07-15 06:41:37 +00:00
|
|
|
Sensor();
|
2013-06-27 19:04:23 +00:00
|
|
|
Sensor(struct sensor_t const* hwSensor, int halVersion = 0);
|
2012-08-13 02:37:16 +00:00
|
|
|
~Sensor();
|
2010-07-14 05:21:56 +00:00
|
|
|
|
|
|
|
const String8& getName() const;
|
|
|
|
const String8& getVendor() const;
|
|
|
|
int32_t getHandle() const;
|
|
|
|
int32_t getType() const;
|
|
|
|
float getMinValue() const;
|
|
|
|
float getMaxValue() const;
|
|
|
|
float getResolution() const;
|
|
|
|
float getPowerUsage() const;
|
2010-07-29 23:51:38 +00:00
|
|
|
int32_t getMinDelay() const;
|
2011-05-18 05:54:42 +00:00
|
|
|
nsecs_t getMinDelayNs() const;
|
|
|
|
int32_t getVersion() const;
|
2013-06-27 19:04:23 +00:00
|
|
|
int32_t getFifoReservedEventCount() const;
|
|
|
|
int32_t getFifoMaxEventCount() const;
|
2010-07-14 05:21:56 +00:00
|
|
|
|
2012-08-13 02:37:16 +00:00
|
|
|
// LightFlattenable protocol
|
|
|
|
inline bool isFixedSize() const { return false; }
|
2013-07-30 04:24:40 +00:00
|
|
|
size_t getFlattenedSize() const;
|
|
|
|
status_t flatten(void* buffer, size_t size) const;
|
2012-08-13 02:37:16 +00:00
|
|
|
status_t unflatten(void const* buffer, size_t size);
|
2010-07-14 05:21:56 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
String8 mName;
|
|
|
|
String8 mVendor;
|
|
|
|
int32_t mHandle;
|
|
|
|
int32_t mType;
|
|
|
|
float mMinValue;
|
|
|
|
float mMaxValue;
|
|
|
|
float mResolution;
|
|
|
|
float mPower;
|
2010-07-29 23:51:38 +00:00
|
|
|
int32_t mMinDelay;
|
2011-05-18 05:54:42 +00:00
|
|
|
int32_t mVersion;
|
2013-06-27 19:04:23 +00:00
|
|
|
int32_t mFifoReservedEventCount;
|
|
|
|
int32_t mFifoMaxEventCount;
|
2010-07-14 05:21:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
}; // namespace android
|
|
|
|
|
|
|
|
#endif // ANDROID_GUI_SENSOR_H
|