aboutsummaryrefslogtreecommitdiff
path: root/platform/linux/platform_sensor.cc
blob: ebf48444ac6e210674695bc99df242b23ff72771 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
 * 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/platform/platform_sensor.h"

namespace chre {

uint8_t PlatformSensor::getSensorType() const {
  return mSensorInfo->sensorType;
}

uint64_t PlatformSensor::getMinInterval() const {
  return mSensorInfo->minInterval;
}

bool PlatformSensor::reportsBiasEvents() const {
  return mSensorInfo->reportsBiasEvents == 1;
}

bool PlatformSensor::supportsPassiveMode() const {
  return mSensorInfo->supportsPassiveMode == 1;
}

const char *PlatformSensor::getSensorName() const {
  return mSensorInfo->sensorName;
}

PlatformSensor::PlatformSensor(PlatformSensor &&other) {
  *this = std::move(other);
}

PlatformSensor &PlatformSensor::operator=(PlatformSensor &&other) {
  // Note: if this implementation is ever changed to depend on "this" containing
  // initialized values, the move constructor implementation must be updated.
  mSensorHandle = other.mSensorHandle;
  mSensorInfo = other.mSensorInfo;
  other.mSensorInfo = nullptr;

  return *this;
}

}  // namespace chre