You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

150 lines
4.2 KiB

/*
* Copyright (C) 2021 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.
*/
#pragma once
#include <thread>
#include <aidl/android/hardware/sensors/BnSensors.h>
#include "InputEventReader.h"
namespace aidl {
namespace android {
namespace hardware {
namespace sensors {
static constexpr int32_t kDefaultMaxDelayUs = 10 * 1000 * 1000;
class ISensorsEventCallback {
public:
using Event = ::aidl::android::hardware::sensors::Event;
virtual ~ISensorsEventCallback(){};
virtual void postEvents(const std::vector<Event>& events, bool wakeup) = 0;
};
class Sensor {
public:
using OperationMode = ::aidl::android::hardware::sensors::ISensors::OperationMode;
using Event = ::aidl::android::hardware::sensors::Event;
using EventPayload = ::aidl::android::hardware::sensors::Event::EventPayload;
using SensorInfo = ::aidl::android::hardware::sensors::SensorInfo;
using SensorType = ::aidl::android::hardware::sensors::SensorType;
using MetaDataEventType =
::aidl::android::hardware::sensors::Event::EventPayload::MetaData::MetaDataEventType;
Sensor(ISensorsEventCallback* callback);
virtual ~Sensor();
const SensorInfo& getSensorInfo() const;
void batch(int64_t samplingPeriodNs);
virtual void activate(bool enable);
ndk::ScopedAStatus flush();
void setOperationMode(OperationMode mode);
bool supportsDataInjection() const;
ndk::ScopedAStatus injectEvent(const Event& event);
protected:
void run();
virtual std::vector<Event> readEvents();
virtual void readEventPayload(EventPayload&) = 0;
virtual void driverActivate(bool enable) = 0;
virtual void driverSetDelay(int64_t samplingPeriodNs) = 0;
static void startThread(Sensor* sensor);
bool isWakeUpSensor();
void openDevInput();
int openInput(const char *name);
bool mIsEnabled;
int64_t mSamplingPeriodNs;
int64_t mLastSampleTimeNs;
SensorInfo mSensorInfo;
std::atomic_bool mStopThread;
std::condition_variable mWaitCV;
std::mutex mRunMutex;
std::thread mRunThread;
ISensorsEventCallback* mCallback;
OperationMode mMode;
std::string mSensorName;
InputEventCircularReader mInputReader;
int mInputFd = -1;
};
class OnChangeSensor : public Sensor {
public:
OnChangeSensor(ISensorsEventCallback* callback);
virtual void activate(bool enable) override;
protected:
virtual std::vector<Event> readEvents() override;
protected:
Event mPreviousEvent;
bool mPreviousEventSet;
};
class AmbientTempSensor : public OnChangeSensor {
public:
AmbientTempSensor(int32_t sensorHandle, ISensorsEventCallback* callback);
protected:
virtual void readEventPayload(EventPayload& payload) override;
};
class PressureSensor : public Sensor {
public:
PressureSensor(int32_t sensorHandle, ISensorsEventCallback* callback);
protected:
virtual void readEventPayload(EventPayload& payload) override;
};
class MagnetometerSensor : public Sensor {
public:
MagnetometerSensor(int32_t sensorHandle, ISensorsEventCallback* callback);
protected:
virtual void readEventPayload(EventPayload& payload) override;
};
class RelativeHumiditySensor : public OnChangeSensor {
public:
RelativeHumiditySensor(int32_t sensorHandle, ISensorsEventCallback* callback);
protected:
virtual void readEventPayload(EventPayload& payload) override;
};
class HingeAngleSensor : public OnChangeSensor {
public:
HingeAngleSensor(int32_t sensorHandle, ISensorsEventCallback* callback);
protected:
virtual void readEventPayload(EventPayload& payload) override;
};
} // namespace sensors
} // namespace hardware
} // namespace android
} // namespace aidl