blob: dc7a35cef9cf52908ff38766e9ba6b840065141e [file] [log] [blame]
Mathias Agopian589ce852010-07-13 22:21:56 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <stdint.h>
18#include <sys/types.h>
19
20#include <utils/Errors.h>
21#include <utils/RefBase.h>
22#include <utils/Timers.h>
23
24#include <binder/Parcel.h>
25#include <binder/IInterface.h>
26
27#include <gui/ISensorEventConnection.h>
Mathias Agopian5cae0d02011-10-20 18:42:02 -070028#include <gui/BitTube.h>
Mathias Agopian589ce852010-07-13 22:21:56 -070029
30namespace android {
31// ----------------------------------------------------------------------------
32
33enum {
34 GET_SENSOR_CHANNEL = IBinder::FIRST_CALL_TRANSACTION,
35 ENABLE_DISABLE,
Aravind Akella724d91d2013-06-27 12:04:23 -070036 SET_EVENT_RATE,
Aravind Akella56ae4262014-07-10 16:01:10 -070037 FLUSH_SENSOR
Mathias Agopian589ce852010-07-13 22:21:56 -070038};
39
40class BpSensorEventConnection : public BpInterface<ISensorEventConnection>
41{
42public:
43 BpSensorEventConnection(const sp<IBinder>& impl)
44 : BpInterface<ISensorEventConnection>(impl)
45 {
46 }
47
Dan Stozad723bd72014-11-18 10:24:03 -080048 virtual ~BpSensorEventConnection();
49
Mathias Agopian5cae0d02011-10-20 18:42:02 -070050 virtual sp<BitTube> getSensorChannel() const
Mathias Agopian589ce852010-07-13 22:21:56 -070051 {
52 Parcel data, reply;
Mathias Agopiana7352c92010-07-14 23:41:37 -070053 data.writeInterfaceToken(ISensorEventConnection::getInterfaceDescriptor());
Mathias Agopian589ce852010-07-13 22:21:56 -070054 remote()->transact(GET_SENSOR_CHANNEL, data, &reply);
Mathias Agopian5cae0d02011-10-20 18:42:02 -070055 return new BitTube(reply);
Mathias Agopian589ce852010-07-13 22:21:56 -070056 }
57
Aravind Akella724d91d2013-06-27 12:04:23 -070058 virtual status_t enableDisable(int handle, bool enabled, nsecs_t samplingPeriodNs,
59 nsecs_t maxBatchReportLatencyNs, int reservedFlags)
Mathias Agopian589ce852010-07-13 22:21:56 -070060 {
61 Parcel data, reply;
Mathias Agopiana7352c92010-07-14 23:41:37 -070062 data.writeInterfaceToken(ISensorEventConnection::getInterfaceDescriptor());
Mathias Agopian589ce852010-07-13 22:21:56 -070063 data.writeInt32(handle);
64 data.writeInt32(enabled);
Aravind Akella724d91d2013-06-27 12:04:23 -070065 data.writeInt64(samplingPeriodNs);
66 data.writeInt64(maxBatchReportLatencyNs);
67 data.writeInt32(reservedFlags);
Mathias Agopian589ce852010-07-13 22:21:56 -070068 remote()->transact(ENABLE_DISABLE, data, &reply);
69 return reply.readInt32();
70 }
71
72 virtual status_t setEventRate(int handle, nsecs_t ns)
73 {
74 Parcel data, reply;
Mathias Agopiana7352c92010-07-14 23:41:37 -070075 data.writeInterfaceToken(ISensorEventConnection::getInterfaceDescriptor());
Mathias Agopian589ce852010-07-13 22:21:56 -070076 data.writeInt32(handle);
77 data.writeInt64(ns);
78 remote()->transact(SET_EVENT_RATE, data, &reply);
79 return reply.readInt32();
80 }
Aravind Akella724d91d2013-06-27 12:04:23 -070081
Aravind Akella701166d2013-10-08 14:59:26 -070082 virtual status_t flush() {
Aravind Akella724d91d2013-06-27 12:04:23 -070083 Parcel data, reply;
84 data.writeInterfaceToken(ISensorEventConnection::getInterfaceDescriptor());
Aravind Akella724d91d2013-06-27 12:04:23 -070085 remote()->transact(FLUSH_SENSOR, data, &reply);
86 return reply.readInt32();
87 }
Mathias Agopian589ce852010-07-13 22:21:56 -070088};
89
Dan Stozad723bd72014-11-18 10:24:03 -080090// Out-of-line virtual method definition to trigger vtable emission in this
91// translation unit (see clang warning -Wweak-vtables)
92BpSensorEventConnection::~BpSensorEventConnection() {}
93
Mathias Agopian589ce852010-07-13 22:21:56 -070094IMPLEMENT_META_INTERFACE(SensorEventConnection, "android.gui.SensorEventConnection");
95
96// ----------------------------------------------------------------------------
97
98status_t BnSensorEventConnection::onTransact(
99 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
100{
101 switch(code) {
102 case GET_SENSOR_CHANNEL: {
103 CHECK_INTERFACE(ISensorEventConnection, data, reply);
Mathias Agopian5cae0d02011-10-20 18:42:02 -0700104 sp<BitTube> channel(getSensorChannel());
Mathias Agopian589ce852010-07-13 22:21:56 -0700105 channel->writeToParcel(reply);
106 return NO_ERROR;
Dan Stozad723bd72014-11-18 10:24:03 -0800107 }
Mathias Agopian589ce852010-07-13 22:21:56 -0700108 case ENABLE_DISABLE: {
109 CHECK_INTERFACE(ISensorEventConnection, data, reply);
110 int handle = data.readInt32();
111 int enabled = data.readInt32();
Aravind Akella724d91d2013-06-27 12:04:23 -0700112 nsecs_t samplingPeriodNs = data.readInt64();
113 nsecs_t maxBatchReportLatencyNs = data.readInt64();
114 int reservedFlags = data.readInt32();
115 status_t result = enableDisable(handle, enabled, samplingPeriodNs,
116 maxBatchReportLatencyNs, reservedFlags);
Mathias Agopian589ce852010-07-13 22:21:56 -0700117 reply->writeInt32(result);
118 return NO_ERROR;
Dan Stozad723bd72014-11-18 10:24:03 -0800119 }
Mathias Agopian589ce852010-07-13 22:21:56 -0700120 case SET_EVENT_RATE: {
121 CHECK_INTERFACE(ISensorEventConnection, data, reply);
122 int handle = data.readInt32();
Dan Stozad723bd72014-11-18 10:24:03 -0800123 nsecs_t ns = data.readInt64();
Mathias Agopian589ce852010-07-13 22:21:56 -0700124 status_t result = setEventRate(handle, ns);
125 reply->writeInt32(result);
126 return NO_ERROR;
Dan Stozad723bd72014-11-18 10:24:03 -0800127 }
Aravind Akella724d91d2013-06-27 12:04:23 -0700128 case FLUSH_SENSOR: {
129 CHECK_INTERFACE(ISensorEventConnection, data, reply);
Aravind Akella701166d2013-10-08 14:59:26 -0700130 status_t result = flush();
Aravind Akella724d91d2013-06-27 12:04:23 -0700131 reply->writeInt32(result);
132 return NO_ERROR;
Dan Stozad723bd72014-11-18 10:24:03 -0800133 }
Mathias Agopian589ce852010-07-13 22:21:56 -0700134 }
135 return BBinder::onTransact(code, data, reply, flags);
136}
137
138// ----------------------------------------------------------------------------
139}; // namespace android