blob: 24b882a326de3ee3b85847180188df39accf0a71 [file] [log] [blame]
/*
* Copyright (C) 2020 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 CHRE_PLATFORM_USF_PLATFORM_SENSOR_MANAGER_BASE_H_
#define CHRE_PLATFORM_USF_PLATFORM_SENSOR_MANAGER_BASE_H_
#include "chre/platform/usf/usf_helper.h"
#include "chre/util/unique_ptr.h"
namespace chre {
class PlatformSensorManagerBase : public UsfHelperCallbackInterface {
public:
void onSensorDataEvent(uint8_t sensorType,
UniquePtr<uint8_t> &&eventData) override;
void onSamplingStatusUpdate(
uint8_t sensorType, const usf::UsfSensorSamplingEvent *update) override;
bool getSensorInfo(uint8_t sensorType, SensorInfo *sensorInfo) override;
void onFlushComplete(usf::UsfErr err, uint32_t requestId,
void *cookie) override;
void onBiasUpdate(
uint8_t sensorType,
UniquePtr<struct chreSensorThreeAxisData> &&eventData) override;
void onHostWakeSuspendEvent(bool awake) override;
/**
* Converts the given UsfSensor into one or more CHRE sensors and adds them
* to the given dynamic vector.
*
* @param usfSensor UsfSensor to be converted to one or more CHRE sensors
* @param chreSensors Dynamic vector that converted sensors must be added to
*/
void addSensorsWithInfo(refcount::reffed_ptr<usf::UsfSensor> &usfSensor,
DynamicVector<Sensor> *chreSensors);
protected:
//! Helper used to communicate with USF.
UsfHelper mHelper;
};
} // namespace chre
#endif // CHRE_PLATFORM_USF_PLATFORM_SENSOR_MANAGER_BASE_H_