普通文本  |  88行  |  2.36 KB

/*
 * Copyright (C) 2016 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.
 */

#include "chre/core/sensor.h"

namespace chre {
namespace {

static const char *kInvalidSensorName = "Invalid Sensor";

}  // namespace

Sensor::Sensor() {}

Sensor::Sensor(PlatformSensor&& platformSensor)
    : mPlatformSensor(std::move(platformSensor)) {}

SensorType Sensor::getSensorType() const {
  return isValid() ? mPlatformSensor->getSensorType() : SensorType::Unknown;
}

bool Sensor::isValid() const {
  return mPlatformSensor.has_value();
}

bool Sensor::setRequest(const SensorRequest& request) {
  bool requestWasSet = false;
  if (isValid() && !request.isEquivalentTo(mSensorRequest)
      && mPlatformSensor->setRequest(request)) {
    mSensorRequest = request;
    requestWasSet = true;

    // Mark last event as invalid when sensor is disabled.
    if (request.getMode() == SensorMode::Off) {
      mLastEventValid = false;
    }
  }

  return requestWasSet;
}

Sensor& Sensor::operator=(Sensor&& other) {
  mSensorRequest = other.mSensorRequest;
  mPlatformSensor = std::move(other.mPlatformSensor);
  return *this;
}

uint64_t Sensor::getMinInterval() const {
  return isValid() ? mPlatformSensor->getMinInterval() :
      CHRE_SENSOR_INTERVAL_DEFAULT;
}

const char *Sensor::getSensorName() const {
  return isValid() ? mPlatformSensor->getSensorName() : kInvalidSensorName;
}

ChreSensorData *Sensor::getLastEvent() const {
  return (isValid() && mLastEventValid) ? mPlatformSensor->getLastEvent() :
      nullptr;
}

void Sensor::setLastEvent(const ChreSensorData *event) {
  if (isValid()) {
    mPlatformSensor->setLastEvent(event);

    // Mark last event as valid only if the sensor is enabled. Event data may
    // arrive after sensor is disabled.
    if (mSensorRequest.getMode() != SensorMode::Off) {
      mLastEventValid = true;
    }
  }
}

}  // namespace chre