From b957b9d63c88efd3a961759424987b99219adeed Mon Sep 17 00:00:00 2001 From: Mathias Agopian Date: Tue, 13 Jul 2010 22:21:56 -0700 Subject: first step at implementing the native sensor support in this commit: - implemented the C stub - implemented the binder interfaces involved - implemented most of the C++ client side missing: - SensorManager cannot connect to the SensorServer yet (because there is no SensorServer yet) Change-Id: I75010cbeef31c98d6fa62fd5d388dcef87c2636b --- native/android/Android.mk | 4 +- native/android/sensor.cpp | 150 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 153 insertions(+), 1 deletion(-) create mode 100644 native/android/sensor.cpp (limited to 'native') diff --git a/native/android/Android.mk b/native/android/Android.mk index 509a379..2fe0679 100644 --- a/native/android/Android.mk +++ b/native/android/Android.mk @@ -9,13 +9,15 @@ LOCAL_SRC_FILES:= \ input.cpp \ looper.cpp \ native_activity.cpp \ - native_window.cpp + native_window.cpp \ + sensor.cpp LOCAL_SHARED_LIBRARIES := \ libcutils \ libutils \ libbinder \ libui \ + libgui \ libsurfaceflinger_client \ libandroid_runtime diff --git a/native/android/sensor.cpp b/native/android/sensor.cpp new file mode 100644 index 0000000..7a3907e --- /dev/null +++ b/native/android/sensor.cpp @@ -0,0 +1,150 @@ +/* + * Copyright (C) 2009 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. + */ + +#define LOG_TAG "sensor" +#include + +#include +#include + +#include +#include +#include + +#include +#include +#include + +#include + +using android::sp; +using android::Sensor; +using android::SensorManager; +using android::SensorEventQueue; +using android::String8; + +/*****************************************************************************/ + +ASensorManager* ASensorManager_getInstance() +{ + return &SensorManager::getInstance(); +} + +int ASensorManager_getSensorList(ASensorManager* manager, ASensor** list) +{ + Sensor* l; + int c = static_cast(manager)->getSensorList(&l); + if (list) { + *list = l; + } + return c; +} + +ASensor* ASensorManager_getDefaultSensor(ASensorManager* manager, int type) +{ + return static_cast(manager)->getDefaultSensor(type); +} + +ASensorEventQueue* ASensorManager_createEventQueue(ASensorManager* manager, + ALooper* looper, ALooper_callbackFunc* callback, void* data) +{ + sp queue = + static_cast(manager)->createEventQueue(); + if (queue != 0) { + ALooper_addFd(looper, queue->getFd(), POLLIN, callback, data); + queue->looper = looper; + queue->incStrong(manager); + } + return static_cast(queue.get()); +} + +int ASensorManager_destroyEventQueue(ASensorManager* manager, + ASensorEventQueue* inQueue) +{ + sp queue = static_cast(inQueue); + ALooper_removeFd(queue->looper, queue->getFd()); + queue->decStrong(manager); + return 0; +} + +/*****************************************************************************/ + +int ASensorEventQueue_enableSensor(ASensorEventQueue* queue, ASensor* sensor) +{ + return static_cast(queue)->enableSensor( + static_cast(sensor)); +} + +int ASensorEventQueue_disableSensor(ASensorEventQueue* queue, ASensor* sensor) +{ + return static_cast(queue)->disableSensor( + static_cast(sensor)); +} + +int ASensorEventQueue_setEventRate(ASensorEventQueue* queue, ASensor* sensor, + int32_t usec) +{ + return static_cast(queue)->setEventRate( + static_cast(sensor), us2ns(usec)); +} + +int ASensorEventQueue_hasEvents(ASensorEventQueue* queue) +{ + struct pollfd pfd; + pfd.fd = static_cast(queue)->getFd(); + pfd.events = POLLIN; + pfd.revents = 0; + + int nfd = poll(&pfd, 1, 0); + + if (nfd < 0) + return -errno; + + if (pfd.revents != POLLIN) + return -1; + + return (nfd == 0) ? 0 : 1; +} + +ssize_t ASensorEventQueue_getEvents(ASensorEventQueue* queue, + ASensorEvent* events, size_t count) +{ + return static_cast(queue)->read(events, count); +} + + +/*****************************************************************************/ + +const char* ASensor_getName(ASensor* sensor) +{ + return static_cast(sensor)->getName().string(); +} + +const char* ASensor_getVendor(ASensor* sensor) +{ + return static_cast(sensor)->getVendor().string(); +} + +int ASensor_getType(ASensor* sensor) +{ + return static_cast(sensor)->getType(); +} + +float ASensor_getResolution(ASensor* sensor) +{ + return static_cast(sensor)->getResolution(); +} + -- cgit v1.1