Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
Mark Salyzyn | 92dc3fc | 2014-03-12 13:12:44 -0700 | [diff] [blame] | 17 | #include <inttypes.h> |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 18 | #include <math.h> |
Mark Salyzyn | 92dc3fc | 2014-03-12 13:12:44 -0700 | [diff] [blame] | 19 | #include <stdint.h> |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 20 | #include <sys/types.h> |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 21 | #include <sys/socket.h> |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 22 | |
Mathias Agopian | 3301542 | 2011-05-27 18:18:13 -0700 | [diff] [blame] | 23 | #include <cutils/properties.h> |
| 24 | |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 25 | #include <utils/SortedVector.h> |
| 26 | #include <utils/KeyedVector.h> |
| 27 | #include <utils/threads.h> |
| 28 | #include <utils/Atomic.h> |
| 29 | #include <utils/Errors.h> |
| 30 | #include <utils/RefBase.h> |
Mathias Agopian | 451beee | 2010-07-19 15:03:55 -0700 | [diff] [blame] | 31 | #include <utils/Singleton.h> |
Mathias Agopian | c4a930d | 2010-07-22 22:19:43 -0700 | [diff] [blame] | 32 | #include <utils/String16.h> |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 33 | |
| 34 | #include <binder/BinderService.h> |
Mathias Agopian | 451beee | 2010-07-19 15:03:55 -0700 | [diff] [blame] | 35 | #include <binder/IServiceManager.h> |
Mathias Agopian | 1cb1346 | 2011-06-27 16:05:52 -0700 | [diff] [blame] | 36 | #include <binder/PermissionCache.h> |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 37 | |
| 38 | #include <gui/ISensorServer.h> |
| 39 | #include <gui/ISensorEventConnection.h> |
Mathias Agopian | 907103b | 2012-04-02 18:38:02 -0700 | [diff] [blame] | 40 | #include <gui/SensorEventQueue.h> |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 41 | |
| 42 | #include <hardware/sensors.h> |
Jaikumar Ganesh | 4342fdf | 2013-04-08 16:43:12 -0700 | [diff] [blame] | 43 | #include <hardware_legacy/power.h> |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 44 | |
Mathias Agopian | 787ac1b | 2012-09-18 18:49:18 -0700 | [diff] [blame] | 45 | #include "BatteryService.h" |
Mathias Agopian | 984826c | 2011-05-17 22:54:42 -0700 | [diff] [blame] | 46 | #include "CorrectedGyroSensor.h" |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 47 | #include "GravitySensor.h" |
| 48 | #include "LinearAccelerationSensor.h" |
Mathias Agopian | 984826c | 2011-05-17 22:54:42 -0700 | [diff] [blame] | 49 | #include "OrientationSensor.h" |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 50 | #include "RotationVectorSensor.h" |
Mathias Agopian | 984826c | 2011-05-17 22:54:42 -0700 | [diff] [blame] | 51 | #include "SensorFusion.h" |
| 52 | #include "SensorService.h" |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 53 | |
| 54 | namespace android { |
| 55 | // --------------------------------------------------------------------------- |
| 56 | |
Mathias Agopian | 3301542 | 2011-05-27 18:18:13 -0700 | [diff] [blame] | 57 | /* |
| 58 | * Notes: |
| 59 | * |
| 60 | * - what about a gyro-corrected magnetic-field sensor? |
Mathias Agopian | 3301542 | 2011-05-27 18:18:13 -0700 | [diff] [blame] | 61 | * - run mag sensor from time to time to force calibration |
| 62 | * - gravity sensor length is wrong (=> drift in linear-acc sensor) |
| 63 | * |
| 64 | */ |
| 65 | |
Jaikumar Ganesh | 4342fdf | 2013-04-08 16:43:12 -0700 | [diff] [blame] | 66 | const char* SensorService::WAKE_LOCK_NAME = "SensorService"; |
| 67 | |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 68 | SensorService::SensorService() |
Aravind Akella | 8a96955 | 2014-09-28 17:52:41 -0700 | [diff] [blame] | 69 | : mInitCheck(NO_INIT), mSocketBufferSize(SOCKET_BUFFER_SIZE_NON_BATCHED), |
| 70 | mWakeLockAcquired(false) |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 71 | { |
| 72 | } |
| 73 | |
| 74 | void SensorService::onFirstRef() |
| 75 | { |
Steve Block | a551237 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 76 | ALOGD("nuSensorService starting..."); |
Mathias Agopian | 50df295 | 2010-07-19 19:09:10 -0700 | [diff] [blame] | 77 | |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 78 | SensorDevice& dev(SensorDevice::getInstance()); |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 79 | |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 80 | if (dev.initCheck() == NO_ERROR) { |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 81 | sensor_t const* list; |
Mathias Agopian | 7b2b32f | 2011-07-14 16:39:46 -0700 | [diff] [blame] | 82 | ssize_t count = dev.getSensorList(&list); |
| 83 | if (count > 0) { |
| 84 | ssize_t orientationIndex = -1; |
| 85 | bool hasGyro = false; |
| 86 | uint32_t virtualSensorsNeeds = |
| 87 | (1<<SENSOR_TYPE_GRAVITY) | |
| 88 | (1<<SENSOR_TYPE_LINEAR_ACCELERATION) | |
| 89 | (1<<SENSOR_TYPE_ROTATION_VECTOR); |
| 90 | |
| 91 | mLastEventSeen.setCapacity(count); |
| 92 | for (ssize_t i=0 ; i<count ; i++) { |
| 93 | registerSensor( new HardwareSensor(list[i]) ); |
| 94 | switch (list[i].type) { |
| 95 | case SENSOR_TYPE_ORIENTATION: |
| 96 | orientationIndex = i; |
| 97 | break; |
| 98 | case SENSOR_TYPE_GYROSCOPE: |
Mathias Agopian | 0319306 | 2013-05-10 19:32:39 -0700 | [diff] [blame] | 99 | case SENSOR_TYPE_GYROSCOPE_UNCALIBRATED: |
Mathias Agopian | 7b2b32f | 2011-07-14 16:39:46 -0700 | [diff] [blame] | 100 | hasGyro = true; |
| 101 | break; |
| 102 | case SENSOR_TYPE_GRAVITY: |
| 103 | case SENSOR_TYPE_LINEAR_ACCELERATION: |
| 104 | case SENSOR_TYPE_ROTATION_VECTOR: |
| 105 | virtualSensorsNeeds &= ~(1<<list[i].type); |
| 106 | break; |
| 107 | } |
Mathias Agopian | 50df295 | 2010-07-19 19:09:10 -0700 | [diff] [blame] | 108 | } |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 109 | |
Mathias Agopian | 7b2b32f | 2011-07-14 16:39:46 -0700 | [diff] [blame] | 110 | // it's safe to instantiate the SensorFusion object here |
| 111 | // (it wants to be instantiated after h/w sensors have been |
| 112 | // registered) |
| 113 | const SensorFusion& fusion(SensorFusion::getInstance()); |
Mathias Agopian | 984826c | 2011-05-17 22:54:42 -0700 | [diff] [blame] | 114 | |
Mathias Agopian | 7b2b32f | 2011-07-14 16:39:46 -0700 | [diff] [blame] | 115 | // build the sensor list returned to users |
| 116 | mUserSensorList = mSensorList; |
Mathias Agopian | 3326486 | 2012-06-28 19:46:54 -0700 | [diff] [blame] | 117 | |
| 118 | if (hasGyro) { |
Mathias Agopian | 0319306 | 2013-05-10 19:32:39 -0700 | [diff] [blame] | 119 | Sensor aSensor; |
| 120 | |
| 121 | // Add Android virtual sensors if they're not already |
| 122 | // available in the HAL |
| 123 | |
| 124 | aSensor = registerVirtualSensor( new RotationVectorSensor() ); |
| 125 | if (virtualSensorsNeeds & (1<<SENSOR_TYPE_ROTATION_VECTOR)) { |
| 126 | mUserSensorList.add(aSensor); |
| 127 | } |
| 128 | |
| 129 | aSensor = registerVirtualSensor( new GravitySensor(list, count) ); |
| 130 | if (virtualSensorsNeeds & (1<<SENSOR_TYPE_GRAVITY)) { |
| 131 | mUserSensorList.add(aSensor); |
| 132 | } |
| 133 | |
| 134 | aSensor = registerVirtualSensor( new LinearAccelerationSensor(list, count) ); |
| 135 | if (virtualSensorsNeeds & (1<<SENSOR_TYPE_LINEAR_ACCELERATION)) { |
| 136 | mUserSensorList.add(aSensor); |
| 137 | } |
| 138 | |
| 139 | aSensor = registerVirtualSensor( new OrientationSensor() ); |
| 140 | if (virtualSensorsNeeds & (1<<SENSOR_TYPE_ROTATION_VECTOR)) { |
| 141 | // if we are doing our own rotation-vector, also add |
| 142 | // the orientation sensor and remove the HAL provided one. |
| 143 | mUserSensorList.replaceAt(aSensor, orientationIndex); |
| 144 | } |
| 145 | |
Mathias Agopian | 3326486 | 2012-06-28 19:46:54 -0700 | [diff] [blame] | 146 | // virtual debugging sensors are not added to mUserSensorList |
Mathias Agopian | 0319306 | 2013-05-10 19:32:39 -0700 | [diff] [blame] | 147 | registerVirtualSensor( new CorrectedGyroSensor(list, count) ); |
Mathias Agopian | 3326486 | 2012-06-28 19:46:54 -0700 | [diff] [blame] | 148 | registerVirtualSensor( new GyroDriftSensor() ); |
| 149 | } |
| 150 | |
Mathias Agopian | 3326486 | 2012-06-28 19:46:54 -0700 | [diff] [blame] | 151 | // debugging sensor list |
Mathias Agopian | 0319306 | 2013-05-10 19:32:39 -0700 | [diff] [blame] | 152 | mUserSensorListDebug = mSensorList; |
Mathias Agopian | 3326486 | 2012-06-28 19:46:54 -0700 | [diff] [blame] | 153 | |
Aravind Akella | 5466c3d | 2014-08-22 16:11:10 -0700 | [diff] [blame] | 154 | // Check if the device really supports batching by looking at the FIFO event |
| 155 | // counts for each sensor. |
| 156 | bool batchingSupported = false; |
| 157 | for (int i = 0; i < mSensorList.size(); ++i) { |
| 158 | if (mSensorList[i].getFifoMaxEventCount() > 0) { |
| 159 | batchingSupported = true; |
| 160 | break; |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | if (batchingSupported) { |
| 165 | // Increase socket buffer size to a max of 100 KB for batching capabilities. |
| 166 | mSocketBufferSize = MAX_SOCKET_BUFFER_SIZE_BATCHED; |
| 167 | } else { |
| 168 | mSocketBufferSize = SOCKET_BUFFER_SIZE_NON_BATCHED; |
| 169 | } |
| 170 | |
| 171 | // Compare the socketBufferSize value against the system limits and limit |
| 172 | // it to maxSystemSocketBufferSize if necessary. |
Aravind Akella | 4c8b951 | 2013-09-05 17:03:38 -0700 | [diff] [blame] | 173 | FILE *fp = fopen("/proc/sys/net/core/wmem_max", "r"); |
| 174 | char line[128]; |
| 175 | if (fp != NULL && fgets(line, sizeof(line), fp) != NULL) { |
| 176 | line[sizeof(line) - 1] = '\0'; |
Aravind Akella | 5466c3d | 2014-08-22 16:11:10 -0700 | [diff] [blame] | 177 | size_t maxSystemSocketBufferSize; |
| 178 | sscanf(line, "%zu", &maxSystemSocketBufferSize); |
| 179 | if (mSocketBufferSize > maxSystemSocketBufferSize) { |
| 180 | mSocketBufferSize = maxSystemSocketBufferSize; |
Aravind Akella | 4c8b951 | 2013-09-05 17:03:38 -0700 | [diff] [blame] | 181 | } |
| 182 | } |
Aravind Akella | 4c8b951 | 2013-09-05 17:03:38 -0700 | [diff] [blame] | 183 | if (fp) { |
| 184 | fclose(fp); |
| 185 | } |
| 186 | |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 187 | mWakeLockAcquired = false; |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 188 | mLooper = new Looper(false); |
Aravind Akella | 8493b79 | 2014-09-08 15:45:47 -0700 | [diff] [blame] | 189 | const size_t minBufferSize = SensorEventQueue::MAX_RECEIVE_BUFFER_EVENT_COUNT; |
| 190 | mSensorEventBuffer = new sensors_event_t[minBufferSize]; |
| 191 | mSensorEventScratch = new sensors_event_t[minBufferSize]; |
| 192 | mMapFlushEventsToConnections = new SensorEventConnection const * [minBufferSize]; |
Aravind Akella | 7830ef3 | 2014-10-07 14:13:12 -0700 | [diff] [blame] | 193 | |
Mathias Agopian | 7b2b32f | 2011-07-14 16:39:46 -0700 | [diff] [blame] | 194 | mInitCheck = NO_ERROR; |
Aravind Akella | 7830ef3 | 2014-10-07 14:13:12 -0700 | [diff] [blame] | 195 | run("SensorService", PRIORITY_URGENT_DISPLAY); |
Mathias Agopian | 7b2b32f | 2011-07-14 16:39:46 -0700 | [diff] [blame] | 196 | } |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 197 | } |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 198 | } |
| 199 | |
Mathias Agopian | 0319306 | 2013-05-10 19:32:39 -0700 | [diff] [blame] | 200 | Sensor SensorService::registerSensor(SensorInterface* s) |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 201 | { |
| 202 | sensors_event_t event; |
| 203 | memset(&event, 0, sizeof(event)); |
| 204 | |
| 205 | const Sensor sensor(s->getSensor()); |
| 206 | // add to the sensor list (returned to clients) |
| 207 | mSensorList.add(sensor); |
| 208 | // add to our handle->SensorInterface mapping |
| 209 | mSensorMap.add(sensor.getHandle(), s); |
| 210 | // create an entry in the mLastEventSeen array |
| 211 | mLastEventSeen.add(sensor.getHandle(), event); |
Mathias Agopian | 0319306 | 2013-05-10 19:32:39 -0700 | [diff] [blame] | 212 | |
| 213 | return sensor; |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 214 | } |
| 215 | |
Mathias Agopian | 0319306 | 2013-05-10 19:32:39 -0700 | [diff] [blame] | 216 | Sensor SensorService::registerVirtualSensor(SensorInterface* s) |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 217 | { |
Mathias Agopian | 0319306 | 2013-05-10 19:32:39 -0700 | [diff] [blame] | 218 | Sensor sensor = registerSensor(s); |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 219 | mVirtualSensorList.add( s ); |
Mathias Agopian | 0319306 | 2013-05-10 19:32:39 -0700 | [diff] [blame] | 220 | return sensor; |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 221 | } |
| 222 | |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 223 | SensorService::~SensorService() |
| 224 | { |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 225 | for (size_t i=0 ; i<mSensorMap.size() ; i++) |
| 226 | delete mSensorMap.valueAt(i); |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 227 | } |
| 228 | |
Mathias Agopian | 1cb1346 | 2011-06-27 16:05:52 -0700 | [diff] [blame] | 229 | static const String16 sDump("android.permission.DUMP"); |
| 230 | |
Mark Salyzyn | 92dc3fc | 2014-03-12 13:12:44 -0700 | [diff] [blame] | 231 | status_t SensorService::dump(int fd, const Vector<String16>& /*args*/) |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 232 | { |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 233 | String8 result; |
Mathias Agopian | 1cb1346 | 2011-06-27 16:05:52 -0700 | [diff] [blame] | 234 | if (!PermissionCache::checkCallingPermission(sDump)) { |
Mathias Agopian | ba02cd2 | 2013-07-03 16:20:57 -0700 | [diff] [blame] | 235 | result.appendFormat("Permission Denial: " |
Aravind Akella | 7001804 | 2014-04-07 22:52:37 +0000 | [diff] [blame] | 236 | "can't dump SensorService from pid=%d, uid=%d\n", |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 237 | IPCThreadState::self()->getCallingPid(), |
| 238 | IPCThreadState::self()->getCallingUid()); |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 239 | } else { |
| 240 | Mutex::Autolock _l(mLock); |
Mathias Agopian | ba02cd2 | 2013-07-03 16:20:57 -0700 | [diff] [blame] | 241 | result.append("Sensor List:\n"); |
Mathias Agopian | 3560fb2 | 2010-07-22 21:24:39 -0700 | [diff] [blame] | 242 | for (size_t i=0 ; i<mSensorList.size() ; i++) { |
| 243 | const Sensor& s(mSensorList[i]); |
| 244 | const sensors_event_t& e(mLastEventSeen.valueFor(s.getHandle())); |
Mathias Agopian | ba02cd2 | 2013-07-03 16:20:57 -0700 | [diff] [blame] | 245 | result.appendFormat( |
Aravind Akella | 0b6acb2 | 2014-10-18 16:37:13 -0700 | [diff] [blame] | 246 | "%-15s| %-10s| version=%d |%-20s| 0x%08x | \"%s\" | type=%d |", |
Mathias Agopian | 3560fb2 | 2010-07-22 21:24:39 -0700 | [diff] [blame] | 247 | s.getName().string(), |
| 248 | s.getVendor().string(), |
Aravind Akella | 0b6acb2 | 2014-10-18 16:37:13 -0700 | [diff] [blame] | 249 | s.getVersion(), |
Aravind Akella | 7001804 | 2014-04-07 22:52:37 +0000 | [diff] [blame] | 250 | s.getStringType().string(), |
| 251 | s.getHandle(), |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 252 | s.getRequiredPermission().string(), |
| 253 | s.getType()); |
Mathias Agopian | 3560fb2 | 2010-07-22 21:24:39 -0700 | [diff] [blame] | 254 | |
Aravind Akella | 0e025c5 | 2014-06-03 19:19:57 -0700 | [diff] [blame] | 255 | const int reportingMode = s.getReportingMode(); |
| 256 | if (reportingMode == AREPORTING_MODE_CONTINUOUS) { |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 257 | result.append(" continuous | "); |
Aravind Akella | 0e025c5 | 2014-06-03 19:19:57 -0700 | [diff] [blame] | 258 | } else if (reportingMode == AREPORTING_MODE_ON_CHANGE) { |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 259 | result.append(" on-change | "); |
Aravind Akella | 0e025c5 | 2014-06-03 19:19:57 -0700 | [diff] [blame] | 260 | } else if (reportingMode == AREPORTING_MODE_ONE_SHOT) { |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 261 | result.append(" one-shot | "); |
Mathias Agopian | ba02cd2 | 2013-07-03 16:20:57 -0700 | [diff] [blame] | 262 | } else { |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 263 | result.append(" special-trigger | "); |
| 264 | } |
| 265 | |
| 266 | if (s.getMaxDelay() > 0) { |
| 267 | result.appendFormat("minRate=%.2fHz | ", 1e6f / s.getMaxDelay()); |
| 268 | } else { |
| 269 | result.appendFormat("maxDelay=%dus |", s.getMaxDelay()); |
Mathias Agopian | ba02cd2 | 2013-07-03 16:20:57 -0700 | [diff] [blame] | 270 | } |
Aravind Akella | 0e025c5 | 2014-06-03 19:19:57 -0700 | [diff] [blame] | 271 | |
| 272 | if (s.getMinDelay() > 0) { |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 273 | result.appendFormat("maxRate=%.2fHz | ", 1e6f / s.getMinDelay()); |
Aravind Akella | 0e025c5 | 2014-06-03 19:19:57 -0700 | [diff] [blame] | 274 | } else { |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 275 | result.appendFormat("minDelay=%dus |", s.getMinDelay()); |
Aravind Akella | 0e025c5 | 2014-06-03 19:19:57 -0700 | [diff] [blame] | 276 | } |
| 277 | |
Aravind Akella | 724d91d | 2013-06-27 12:04:23 -0700 | [diff] [blame] | 278 | if (s.getFifoMaxEventCount() > 0) { |
Aravind Akella | 7001804 | 2014-04-07 22:52:37 +0000 | [diff] [blame] | 279 | result.appendFormat("FifoMax=%d events | ", |
| 280 | s.getFifoMaxEventCount()); |
Aravind Akella | 724d91d | 2013-06-27 12:04:23 -0700 | [diff] [blame] | 281 | } else { |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 282 | result.append("no batching | "); |
| 283 | } |
| 284 | |
| 285 | if (s.isWakeUpSensor()) { |
| 286 | result.appendFormat("wakeUp | "); |
| 287 | } else { |
| 288 | result.appendFormat("non-wakeUp | "); |
Aravind Akella | 724d91d | 2013-06-27 12:04:23 -0700 | [diff] [blame] | 289 | } |
Mathias Agopian | ba02cd2 | 2013-07-03 16:20:57 -0700 | [diff] [blame] | 290 | |
| 291 | switch (s.getType()) { |
| 292 | case SENSOR_TYPE_ROTATION_VECTOR: |
| 293 | case SENSOR_TYPE_GEOMAGNETIC_ROTATION_VECTOR: |
| 294 | result.appendFormat( |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 295 | "last=<%5.1f,%5.1f,%5.1f,%5.1f,%5.1f, %" PRId64 ">\n", |
| 296 | e.data[0], e.data[1], e.data[2], e.data[3], e.data[4], e.timestamp); |
Mathias Agopian | ba02cd2 | 2013-07-03 16:20:57 -0700 | [diff] [blame] | 297 | break; |
| 298 | case SENSOR_TYPE_MAGNETIC_FIELD_UNCALIBRATED: |
| 299 | case SENSOR_TYPE_GYROSCOPE_UNCALIBRATED: |
| 300 | result.appendFormat( |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 301 | "last=<%5.1f,%5.1f,%5.1f,%5.1f,%5.1f,%5.1f, %" PRId64 ">\n", |
| 302 | e.data[0], e.data[1], e.data[2], e.data[3], e.data[4], e.data[5], |
| 303 | e.timestamp); |
Mathias Agopian | ba02cd2 | 2013-07-03 16:20:57 -0700 | [diff] [blame] | 304 | break; |
| 305 | case SENSOR_TYPE_GAME_ROTATION_VECTOR: |
| 306 | result.appendFormat( |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 307 | "last=<%5.1f,%5.1f,%5.1f,%5.1f, %" PRId64 ">\n", |
| 308 | e.data[0], e.data[1], e.data[2], e.data[3], e.timestamp); |
Mathias Agopian | ba02cd2 | 2013-07-03 16:20:57 -0700 | [diff] [blame] | 309 | break; |
| 310 | case SENSOR_TYPE_SIGNIFICANT_MOTION: |
| 311 | case SENSOR_TYPE_STEP_DETECTOR: |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 312 | result.appendFormat( "last=<%f %" PRId64 ">\n", e.data[0], e.timestamp); |
Mathias Agopian | ba02cd2 | 2013-07-03 16:20:57 -0700 | [diff] [blame] | 313 | break; |
| 314 | case SENSOR_TYPE_STEP_COUNTER: |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 315 | result.appendFormat( "last=<%" PRIu64 ", %" PRId64 ">\n", e.u64.step_counter, |
| 316 | e.timestamp); |
Mathias Agopian | ba02cd2 | 2013-07-03 16:20:57 -0700 | [diff] [blame] | 317 | break; |
| 318 | default: |
| 319 | // default to 3 values |
| 320 | result.appendFormat( |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 321 | "last=<%5.1f,%5.1f,%5.1f, %" PRId64 ">\n", |
| 322 | e.data[0], e.data[1], e.data[2], e.timestamp); |
Mathias Agopian | ba02cd2 | 2013-07-03 16:20:57 -0700 | [diff] [blame] | 323 | break; |
| 324 | } |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 325 | result.append("\n"); |
Mathias Agopian | ba02cd2 | 2013-07-03 16:20:57 -0700 | [diff] [blame] | 326 | } |
| 327 | SensorFusion::getInstance().dump(result); |
| 328 | SensorDevice::getInstance().dump(result); |
| 329 | |
Mathias Agopian | ba02cd2 | 2013-07-03 16:20:57 -0700 | [diff] [blame] | 330 | result.append("Active sensors:\n"); |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 331 | for (size_t i=0 ; i<mActiveSensors.size() ; i++) { |
Mathias Agopian | 5d27072 | 2010-07-19 15:20:39 -0700 | [diff] [blame] | 332 | int handle = mActiveSensors.keyAt(i); |
Mark Salyzyn | 92dc3fc | 2014-03-12 13:12:44 -0700 | [diff] [blame] | 333 | result.appendFormat("%s (handle=0x%08x, connections=%zu)\n", |
Mathias Agopian | 5d27072 | 2010-07-19 15:20:39 -0700 | [diff] [blame] | 334 | getSensorName(handle).string(), |
| 335 | handle, |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 336 | mActiveSensors.valueAt(i)->getNumConnections()); |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 337 | } |
Aravind Akella | 4c8b951 | 2013-09-05 17:03:38 -0700 | [diff] [blame] | 338 | |
Aravind Akella | 5466c3d | 2014-08-22 16:11:10 -0700 | [diff] [blame] | 339 | result.appendFormat("Socket Buffer size = %d events\n", |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 340 | mSocketBufferSize/sizeof(sensors_event_t)); |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 341 | result.appendFormat("WakeLock Status: %s \n", mWakeLockAcquired ? "acquired" : "not held"); |
Mark Salyzyn | 92dc3fc | 2014-03-12 13:12:44 -0700 | [diff] [blame] | 342 | result.appendFormat("%zd active connections\n", mActiveConnections.size()); |
Aravind Akella | 4c8b951 | 2013-09-05 17:03:38 -0700 | [diff] [blame] | 343 | |
| 344 | for (size_t i=0 ; i < mActiveConnections.size() ; i++) { |
| 345 | sp<SensorEventConnection> connection(mActiveConnections[i].promote()); |
| 346 | if (connection != 0) { |
Mark Salyzyn | 92dc3fc | 2014-03-12 13:12:44 -0700 | [diff] [blame] | 347 | result.appendFormat("Connection Number: %zu \n", i); |
Aravind Akella | 4c8b951 | 2013-09-05 17:03:38 -0700 | [diff] [blame] | 348 | connection->dump(result); |
| 349 | } |
| 350 | } |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 351 | } |
| 352 | write(fd, result.string(), result.size()); |
| 353 | return NO_ERROR; |
| 354 | } |
| 355 | |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 356 | void SensorService::cleanupAutoDisabledSensorLocked(const sp<SensorEventConnection>& connection, |
Jaikumar Ganesh | 4342fdf | 2013-04-08 16:43:12 -0700 | [diff] [blame] | 357 | sensors_event_t const* buffer, const int count) { |
| 358 | for (int i=0 ; i<count ; i++) { |
| 359 | int handle = buffer[i].sensor; |
Aravind Akella | 8493b79 | 2014-09-08 15:45:47 -0700 | [diff] [blame] | 360 | if (buffer[i].type == SENSOR_TYPE_META_DATA) { |
| 361 | handle = buffer[i].meta_data.sensor; |
| 362 | } |
Aravind Akella | 0e025c5 | 2014-06-03 19:19:57 -0700 | [diff] [blame] | 363 | if (connection->hasSensor(handle)) { |
| 364 | SensorInterface* sensor = mSensorMap.valueFor(handle); |
| 365 | // If this buffer has an event from a one_shot sensor and this connection is registered |
| 366 | // for this particular one_shot sensor, try cleaning up the connection. |
| 367 | if (sensor != NULL && |
| 368 | sensor->getSensor().getReportingMode() == AREPORTING_MODE_ONE_SHOT) { |
| 369 | sensor->autoDisable(connection.get(), handle); |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 370 | cleanupWithoutDisableLocked(connection, handle); |
Jaikumar Ganesh | 4342fdf | 2013-04-08 16:43:12 -0700 | [diff] [blame] | 371 | } |
| 372 | } |
| 373 | } |
| 374 | } |
| 375 | |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 376 | bool SensorService::threadLoop() |
| 377 | { |
Steve Block | a551237 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 378 | ALOGD("nuSensorService thread starting..."); |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 379 | |
Mathias Agopian | 90ed3e8 | 2013-09-09 23:36:25 -0700 | [diff] [blame] | 380 | // each virtual sensor could generate an event per "real" event, that's why we need |
| 381 | // to size numEventMax much smaller than MAX_RECEIVE_BUFFER_EVENT_COUNT. |
| 382 | // in practice, this is too aggressive, but guaranteed to be enough. |
| 383 | const size_t minBufferSize = SensorEventQueue::MAX_RECEIVE_BUFFER_EVENT_COUNT; |
| 384 | const size_t numEventMax = minBufferSize / (1 + mVirtualSensorList.size()); |
| 385 | |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 386 | SensorDevice& device(SensorDevice::getInstance()); |
| 387 | const size_t vcount = mVirtualSensorList.size(); |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 388 | |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 389 | SensorEventAckReceiver sender(this); |
| 390 | sender.run("SensorEventAckReceiver", PRIORITY_URGENT_DISPLAY); |
Jaikumar Ganesh | 4342fdf | 2013-04-08 16:43:12 -0700 | [diff] [blame] | 391 | const int halVersion = device.getHalDeviceVersion(); |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 392 | do { |
Aravind Akella | 8493b79 | 2014-09-08 15:45:47 -0700 | [diff] [blame] | 393 | ssize_t count = device.poll(mSensorEventBuffer, numEventMax); |
| 394 | if (count < 0) { |
Steve Block | f5a1230 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 395 | ALOGE("sensor poll failed (%s)", strerror(-count)); |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 396 | break; |
| 397 | } |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 398 | |
| 399 | // Reset sensors_event_t.flags to zero for all events in the buffer. |
| 400 | for (int i = 0; i < count; i++) { |
Aravind Akella | 8493b79 | 2014-09-08 15:45:47 -0700 | [diff] [blame] | 401 | mSensorEventBuffer[i].flags = 0; |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 402 | } |
Aravind Akella | e148bc2 | 2014-09-24 22:12:58 -0700 | [diff] [blame] | 403 | |
| 404 | // Make a copy of the connection vector as some connections may be removed during the |
| 405 | // course of this loop (especially when one-shot sensor events are present in the |
| 406 | // sensor_event buffer). Promote all connections to StrongPointers before the lock is |
| 407 | // acquired. If the destructor of the sp gets called when the lock is acquired, it may |
| 408 | // result in a deadlock as ~SensorEventConnection() needs to acquire mLock again for |
| 409 | // cleanup. So copy all the strongPointers to a vector before the lock is acquired. |
| 410 | SortedVector< sp<SensorEventConnection> > activeConnections; |
| 411 | { |
| 412 | Mutex::Autolock _l(mLock); |
| 413 | for (size_t i=0 ; i < mActiveConnections.size(); ++i) { |
| 414 | sp<SensorEventConnection> connection(mActiveConnections[i].promote()); |
| 415 | if (connection != 0) { |
| 416 | activeConnections.add(connection); |
| 417 | } |
| 418 | } |
| 419 | } |
| 420 | |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 421 | Mutex::Autolock _l(mLock); |
| 422 | // Poll has returned. Hold a wakelock if one of the events is from a wake up sensor. The |
| 423 | // rest of this loop is under a critical section protected by mLock. Acquiring a wakeLock, |
| 424 | // sending events to clients (incrementing SensorEventConnection::mWakeLockRefCount) should |
| 425 | // not be interleaved with decrementing SensorEventConnection::mWakeLockRefCount and |
| 426 | // releasing the wakelock. |
| 427 | bool bufferHasWakeUpEvent = false; |
Jaikumar Ganesh | 4342fdf | 2013-04-08 16:43:12 -0700 | [diff] [blame] | 428 | for (int i = 0; i < count; i++) { |
Aravind Akella | 8493b79 | 2014-09-08 15:45:47 -0700 | [diff] [blame] | 429 | if (isWakeUpSensorEvent(mSensorEventBuffer[i])) { |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 430 | bufferHasWakeUpEvent = true; |
| 431 | break; |
Jaikumar Ganesh | 4342fdf | 2013-04-08 16:43:12 -0700 | [diff] [blame] | 432 | } |
| 433 | } |
| 434 | |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 435 | if (bufferHasWakeUpEvent && !mWakeLockAcquired) { |
| 436 | acquire_wake_lock(PARTIAL_WAKE_LOCK, WAKE_LOCK_NAME); |
| 437 | mWakeLockAcquired = true; |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 438 | } |
Aravind Akella | 8493b79 | 2014-09-08 15:45:47 -0700 | [diff] [blame] | 439 | recordLastValueLocked(mSensorEventBuffer, count); |
Mathias Agopian | 94e8f68 | 2010-11-10 17:50:28 -0800 | [diff] [blame] | 440 | |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 441 | // handle virtual sensors |
| 442 | if (count && vcount) { |
Aravind Akella | 8493b79 | 2014-09-08 15:45:47 -0700 | [diff] [blame] | 443 | sensors_event_t const * const event = mSensorEventBuffer; |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 444 | const size_t activeVirtualSensorCount = mActiveVirtualSensors.size(); |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 445 | if (activeVirtualSensorCount) { |
| 446 | size_t k = 0; |
Mathias Agopian | 984826c | 2011-05-17 22:54:42 -0700 | [diff] [blame] | 447 | SensorFusion& fusion(SensorFusion::getInstance()); |
| 448 | if (fusion.isEnabled()) { |
| 449 | for (size_t i=0 ; i<size_t(count) ; i++) { |
| 450 | fusion.process(event[i]); |
| 451 | } |
| 452 | } |
Mathias Agopian | d1920ff | 2012-05-29 19:46:14 -0700 | [diff] [blame] | 453 | for (size_t i=0 ; i<size_t(count) && k<minBufferSize ; i++) { |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 454 | for (size_t j=0 ; j<activeVirtualSensorCount ; j++) { |
Mathias Agopian | d1920ff | 2012-05-29 19:46:14 -0700 | [diff] [blame] | 455 | if (count + k >= minBufferSize) { |
| 456 | ALOGE("buffer too small to hold all events: " |
Mark Salyzyn | db45861 | 2014-06-10 14:50:02 -0700 | [diff] [blame] | 457 | "count=%zd, k=%zu, size=%zu", |
Mathias Agopian | d1920ff | 2012-05-29 19:46:14 -0700 | [diff] [blame] | 458 | count, k, minBufferSize); |
| 459 | break; |
| 460 | } |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 461 | sensors_event_t out; |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 462 | SensorInterface* si = mActiveVirtualSensors.valueAt(j); |
Mathias Agopian | d1920ff | 2012-05-29 19:46:14 -0700 | [diff] [blame] | 463 | if (si->process(&out, event[i])) { |
Aravind Akella | 8493b79 | 2014-09-08 15:45:47 -0700 | [diff] [blame] | 464 | mSensorEventBuffer[count + k] = out; |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 465 | k++; |
| 466 | } |
| 467 | } |
| 468 | } |
| 469 | if (k) { |
| 470 | // record the last synthesized values |
Aravind Akella | 8493b79 | 2014-09-08 15:45:47 -0700 | [diff] [blame] | 471 | recordLastValueLocked(&mSensorEventBuffer[count], k); |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 472 | count += k; |
| 473 | // sort the buffer by time-stamps |
Aravind Akella | 8493b79 | 2014-09-08 15:45:47 -0700 | [diff] [blame] | 474 | sortEventBuffer(mSensorEventBuffer, count); |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 475 | } |
| 476 | } |
| 477 | } |
| 478 | |
Jaikumar Ganesh | 4342fdf | 2013-04-08 16:43:12 -0700 | [diff] [blame] | 479 | // handle backward compatibility for RotationVector sensor |
| 480 | if (halVersion < SENSORS_DEVICE_API_VERSION_1_0) { |
| 481 | for (int i = 0; i < count; i++) { |
Aravind Akella | 8493b79 | 2014-09-08 15:45:47 -0700 | [diff] [blame] | 482 | if (mSensorEventBuffer[i].type == SENSOR_TYPE_ROTATION_VECTOR) { |
Jaikumar Ganesh | 4342fdf | 2013-04-08 16:43:12 -0700 | [diff] [blame] | 483 | // All the 4 components of the quaternion should be available |
| 484 | // No heading accuracy. Set it to -1 |
Aravind Akella | 8493b79 | 2014-09-08 15:45:47 -0700 | [diff] [blame] | 485 | mSensorEventBuffer[i].data[4] = -1; |
| 486 | } |
| 487 | } |
| 488 | } |
| 489 | |
| 490 | // Map flush_complete_events in the buffer to SensorEventConnections which called |
| 491 | // flush on the hardware sensor. mapFlushEventsToConnections[i] will be the |
| 492 | // SensorEventConnection mapped to the corresponding flush_complete_event in |
| 493 | // mSensorEventBuffer[i] if such a mapping exists (NULL otherwise). |
| 494 | for (int i = 0; i < count; ++i) { |
| 495 | mMapFlushEventsToConnections[i] = NULL; |
| 496 | if (mSensorEventBuffer[i].type == SENSOR_TYPE_META_DATA) { |
| 497 | const int sensor_handle = mSensorEventBuffer[i].meta_data.sensor; |
| 498 | SensorRecord* rec = mActiveSensors.valueFor(sensor_handle); |
| 499 | if (rec != NULL) { |
| 500 | mMapFlushEventsToConnections[i] = rec->getFirstPendingFlushConnection(); |
| 501 | rec->removeFirstPendingFlushConnection(); |
Jaikumar Ganesh | 4342fdf | 2013-04-08 16:43:12 -0700 | [diff] [blame] | 502 | } |
| 503 | } |
| 504 | } |
| 505 | |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 506 | // Send our events to clients. Check the state of wake lock for each client and release the |
| 507 | // lock if none of the clients need it. |
| 508 | bool needsWakeLock = false; |
Aravind Akella | 8493b79 | 2014-09-08 15:45:47 -0700 | [diff] [blame] | 509 | size_t numConnections = activeConnections.size(); |
| 510 | for (size_t i=0 ; i < numConnections; ++i) { |
Aravind Akella | e148bc2 | 2014-09-24 22:12:58 -0700 | [diff] [blame] | 511 | if (activeConnections[i] != 0) { |
| 512 | activeConnections[i]->sendEvents(mSensorEventBuffer, count, mSensorEventScratch, |
Aravind Akella | 8493b79 | 2014-09-08 15:45:47 -0700 | [diff] [blame] | 513 | mMapFlushEventsToConnections); |
Aravind Akella | e148bc2 | 2014-09-24 22:12:58 -0700 | [diff] [blame] | 514 | needsWakeLock |= activeConnections[i]->needsWakeLock(); |
Aravind Akella | 8493b79 | 2014-09-08 15:45:47 -0700 | [diff] [blame] | 515 | // If the connection has one-shot sensors, it may be cleaned up after first trigger. |
| 516 | // Early check for one-shot sensors. |
Aravind Akella | e148bc2 | 2014-09-24 22:12:58 -0700 | [diff] [blame] | 517 | if (activeConnections[i]->hasOneShotSensors()) { |
| 518 | cleanupAutoDisabledSensorLocked(activeConnections[i], mSensorEventBuffer, |
| 519 | count); |
Aravind Akella | 8493b79 | 2014-09-08 15:45:47 -0700 | [diff] [blame] | 520 | } |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 521 | } |
| 522 | } |
Jaikumar Ganesh | 4342fdf | 2013-04-08 16:43:12 -0700 | [diff] [blame] | 523 | |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 524 | if (mWakeLockAcquired && !needsWakeLock) { |
| 525 | release_wake_lock(WAKE_LOCK_NAME); |
| 526 | mWakeLockAcquired = false; |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 527 | } |
Aravind Akella | 8493b79 | 2014-09-08 15:45:47 -0700 | [diff] [blame] | 528 | } while (!Thread::exitPending()); |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 529 | |
Steve Block | 3c20fbe | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 530 | ALOGW("Exiting SensorService::threadLoop => aborting..."); |
Mathias Agopian | 1a62301 | 2011-11-09 17:50:15 -0800 | [diff] [blame] | 531 | abort(); |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 532 | return false; |
| 533 | } |
| 534 | |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 535 | sp<Looper> SensorService::getLooper() const { |
| 536 | return mLooper; |
| 537 | } |
| 538 | |
| 539 | bool SensorService::SensorEventAckReceiver::threadLoop() { |
| 540 | ALOGD("new thread SensorEventAckReceiver"); |
| 541 | do { |
| 542 | sp<Looper> looper = mService->getLooper(); |
| 543 | looper->pollOnce(-1); |
| 544 | } while(!Thread::exitPending()); |
| 545 | return false; |
| 546 | } |
| 547 | |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 548 | void SensorService::recordLastValueLocked( |
Aravind Akella | 4b84704 | 2014-03-03 19:02:46 -0800 | [diff] [blame] | 549 | const sensors_event_t* buffer, size_t count) { |
Aravind Akella | 4b84704 | 2014-03-03 19:02:46 -0800 | [diff] [blame] | 550 | const sensors_event_t* last = NULL; |
| 551 | for (size_t i = 0; i < count; i++) { |
| 552 | const sensors_event_t* event = &buffer[i]; |
| 553 | if (event->type != SENSOR_TYPE_META_DATA) { |
| 554 | if (last && event->sensor != last->sensor) { |
| 555 | mLastEventSeen.editValueFor(last->sensor) = *last; |
| 556 | } |
| 557 | last = event; |
Mathias Agopian | 94e8f68 | 2010-11-10 17:50:28 -0800 | [diff] [blame] | 558 | } |
| 559 | } |
Aravind Akella | 4b84704 | 2014-03-03 19:02:46 -0800 | [diff] [blame] | 560 | if (last) { |
| 561 | mLastEventSeen.editValueFor(last->sensor) = *last; |
| 562 | } |
Mathias Agopian | 94e8f68 | 2010-11-10 17:50:28 -0800 | [diff] [blame] | 563 | } |
| 564 | |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 565 | void SensorService::sortEventBuffer(sensors_event_t* buffer, size_t count) |
| 566 | { |
| 567 | struct compar { |
| 568 | static int cmp(void const* lhs, void const* rhs) { |
| 569 | sensors_event_t const* l = static_cast<sensors_event_t const*>(lhs); |
| 570 | sensors_event_t const* r = static_cast<sensors_event_t const*>(rhs); |
Mathias Agopian | a5c106a | 2012-04-19 18:18:24 -0700 | [diff] [blame] | 571 | return l->timestamp - r->timestamp; |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 572 | } |
| 573 | }; |
| 574 | qsort(buffer, count, sizeof(sensors_event_t), compar::cmp); |
| 575 | } |
| 576 | |
Mathias Agopian | 5d27072 | 2010-07-19 15:20:39 -0700 | [diff] [blame] | 577 | String8 SensorService::getSensorName(int handle) const { |
Mathias Agopian | 010e422 | 2011-06-08 20:06:50 -0700 | [diff] [blame] | 578 | size_t count = mUserSensorList.size(); |
Mathias Agopian | 5d27072 | 2010-07-19 15:20:39 -0700 | [diff] [blame] | 579 | for (size_t i=0 ; i<count ; i++) { |
Mathias Agopian | 010e422 | 2011-06-08 20:06:50 -0700 | [diff] [blame] | 580 | const Sensor& sensor(mUserSensorList[i]); |
Mathias Agopian | 5d27072 | 2010-07-19 15:20:39 -0700 | [diff] [blame] | 581 | if (sensor.getHandle() == handle) { |
| 582 | return sensor.getName(); |
| 583 | } |
| 584 | } |
| 585 | String8 result("unknown"); |
| 586 | return result; |
| 587 | } |
| 588 | |
Aravind Akella | b4099e7 | 2013-10-15 15:43:10 -0700 | [diff] [blame] | 589 | bool SensorService::isVirtualSensor(int handle) const { |
| 590 | SensorInterface* sensor = mSensorMap.valueFor(handle); |
| 591 | return sensor->isVirtual(); |
| 592 | } |
| 593 | |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 594 | bool SensorService::isWakeUpSensorEvent(const sensors_event_t& event) const { |
Sean Wan | 7869e22 | 2014-07-14 17:07:33 -0700 | [diff] [blame] | 595 | int handle = event.sensor; |
| 596 | if (event.type == SENSOR_TYPE_META_DATA) { |
| 597 | handle = event.meta_data.sensor; |
| 598 | } |
| 599 | SensorInterface* sensor = mSensorMap.valueFor(handle); |
| 600 | return sensor != NULL && sensor->getSensor().isWakeUpSensor(); |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 601 | } |
| 602 | |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 603 | |
| 604 | SensorService::SensorRecord * SensorService::getSensorRecord(int handle) { |
| 605 | return mActiveSensors.valueFor(handle); |
| 606 | } |
| 607 | |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 608 | Vector<Sensor> SensorService::getSensorList() |
| 609 | { |
Mathias Agopian | 3326486 | 2012-06-28 19:46:54 -0700 | [diff] [blame] | 610 | char value[PROPERTY_VALUE_MAX]; |
| 611 | property_get("debug.sensors", value, "0"); |
Aravind Akella | 7001804 | 2014-04-07 22:52:37 +0000 | [diff] [blame] | 612 | const Vector<Sensor>& initialSensorList = (atoi(value)) ? |
| 613 | mUserSensorListDebug : mUserSensorList; |
| 614 | Vector<Sensor> accessibleSensorList; |
| 615 | for (size_t i = 0; i < initialSensorList.size(); i++) { |
| 616 | Sensor sensor = initialSensorList[i]; |
| 617 | if (canAccessSensor(sensor)) { |
| 618 | accessibleSensorList.add(sensor); |
| 619 | } else { |
Bernhard Rosenkränzer | 5f61993 | 2014-11-17 21:06:20 +0100 | [diff] [blame^] | 620 | ALOGI("Skipped sensor %s because it requires permission %s", |
| 621 | sensor.getName().string(), |
| 622 | sensor.getRequiredPermission().string()); |
Aravind Akella | 7001804 | 2014-04-07 22:52:37 +0000 | [diff] [blame] | 623 | } |
Mathias Agopian | 3326486 | 2012-06-28 19:46:54 -0700 | [diff] [blame] | 624 | } |
Aravind Akella | 7001804 | 2014-04-07 22:52:37 +0000 | [diff] [blame] | 625 | return accessibleSensorList; |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 626 | } |
| 627 | |
| 628 | sp<ISensorEventConnection> SensorService::createSensorEventConnection() |
| 629 | { |
Mathias Agopian | 5307d17 | 2012-09-18 17:02:43 -0700 | [diff] [blame] | 630 | uid_t uid = IPCThreadState::self()->getCallingUid(); |
| 631 | sp<SensorEventConnection> result(new SensorEventConnection(this, uid)); |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 632 | return result; |
| 633 | } |
| 634 | |
Mathias Agopian | db5b4bc | 2011-02-03 14:52:47 -0800 | [diff] [blame] | 635 | void SensorService::cleanupConnection(SensorEventConnection* c) |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 636 | { |
| 637 | Mutex::Autolock _l(mLock); |
Mathias Agopian | db5b4bc | 2011-02-03 14:52:47 -0800 | [diff] [blame] | 638 | const wp<SensorEventConnection> connection(c); |
Mathias Agopian | 7c1c531 | 2010-07-21 15:59:50 -0700 | [diff] [blame] | 639 | size_t size = mActiveSensors.size(); |
Mark Salyzyn | db45861 | 2014-06-10 14:50:02 -0700 | [diff] [blame] | 640 | ALOGD_IF(DEBUG_CONNECTIONS, "%zu active sensors", size); |
Mathias Agopian | 7c1c531 | 2010-07-21 15:59:50 -0700 | [diff] [blame] | 641 | for (size_t i=0 ; i<size ; ) { |
Mathias Agopian | db5b4bc | 2011-02-03 14:52:47 -0800 | [diff] [blame] | 642 | int handle = mActiveSensors.keyAt(i); |
| 643 | if (c->hasSensor(handle)) { |
Mark Salyzyn | db45861 | 2014-06-10 14:50:02 -0700 | [diff] [blame] | 644 | ALOGD_IF(DEBUG_CONNECTIONS, "%zu: disabling handle=0x%08x", i, handle); |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 645 | SensorInterface* sensor = mSensorMap.valueFor( handle ); |
Steve Block | f5a1230 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 646 | ALOGE_IF(!sensor, "mSensorMap[handle=0x%08x] is null!", handle); |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 647 | if (sensor) { |
Mathias Agopian | db5b4bc | 2011-02-03 14:52:47 -0800 | [diff] [blame] | 648 | sensor->activate(c, false); |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 649 | } |
Aravind Akella | 8a96955 | 2014-09-28 17:52:41 -0700 | [diff] [blame] | 650 | c->removeSensor(handle); |
Mathias Agopian | db5b4bc | 2011-02-03 14:52:47 -0800 | [diff] [blame] | 651 | } |
| 652 | SensorRecord* rec = mActiveSensors.valueAt(i); |
Mark Salyzyn | db45861 | 2014-06-10 14:50:02 -0700 | [diff] [blame] | 653 | ALOGE_IF(!rec, "mActiveSensors[%zu] is null (handle=0x%08x)!", i, handle); |
Steve Block | a551237 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 654 | ALOGD_IF(DEBUG_CONNECTIONS, |
Mark Salyzyn | db45861 | 2014-06-10 14:50:02 -0700 | [diff] [blame] | 655 | "removing connection %p for sensor[%zu].handle=0x%08x", |
Mathias Agopian | a1b7db9 | 2011-05-27 16:23:58 -0700 | [diff] [blame] | 656 | c, i, handle); |
| 657 | |
Mathias Agopian | db5b4bc | 2011-02-03 14:52:47 -0800 | [diff] [blame] | 658 | if (rec && rec->removeConnection(connection)) { |
Steve Block | a551237 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 659 | ALOGD_IF(DEBUG_CONNECTIONS, "... and it was the last connection"); |
Mathias Agopian | 7c1c531 | 2010-07-21 15:59:50 -0700 | [diff] [blame] | 660 | mActiveSensors.removeItemsAt(i, 1); |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 661 | mActiveVirtualSensors.removeItem(handle); |
Mathias Agopian | 7c1c531 | 2010-07-21 15:59:50 -0700 | [diff] [blame] | 662 | delete rec; |
| 663 | size--; |
| 664 | } else { |
| 665 | i++; |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 666 | } |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 667 | } |
Aravind Akella | 8a96955 | 2014-09-28 17:52:41 -0700 | [diff] [blame] | 668 | c->updateLooperRegistration(mLooper); |
Mathias Agopian | 7c1c531 | 2010-07-21 15:59:50 -0700 | [diff] [blame] | 669 | mActiveConnections.remove(connection); |
Mathias Agopian | 787ac1b | 2012-09-18 18:49:18 -0700 | [diff] [blame] | 670 | BatteryService::cleanup(c->getUid()); |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 671 | if (c->needsWakeLock()) { |
| 672 | checkWakeLockStateLocked(); |
| 673 | } |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 674 | } |
| 675 | |
Aravind Akella | 7001804 | 2014-04-07 22:52:37 +0000 | [diff] [blame] | 676 | Sensor SensorService::getSensorFromHandle(int handle) const { |
| 677 | return mSensorMap.valueFor(handle)->getSensor(); |
| 678 | } |
| 679 | |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 680 | status_t SensorService::enable(const sp<SensorEventConnection>& connection, |
Aravind Akella | 724d91d | 2013-06-27 12:04:23 -0700 | [diff] [blame] | 681 | int handle, nsecs_t samplingPeriodNs, nsecs_t maxBatchReportLatencyNs, int reservedFlags) |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 682 | { |
Mathias Agopian | 50df295 | 2010-07-19 19:09:10 -0700 | [diff] [blame] | 683 | if (mInitCheck != NO_ERROR) |
| 684 | return mInitCheck; |
| 685 | |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 686 | SensorInterface* sensor = mSensorMap.valueFor(handle); |
Mathias Agopian | ac9a96d | 2013-07-12 02:01:16 -0700 | [diff] [blame] | 687 | if (sensor == NULL) { |
| 688 | return BAD_VALUE; |
| 689 | } |
Aravind Akella | 7001804 | 2014-04-07 22:52:37 +0000 | [diff] [blame] | 690 | |
| 691 | if (!verifyCanAccessSensor(sensor->getSensor(), "Tried enabling")) { |
| 692 | return BAD_VALUE; |
| 693 | } |
| 694 | |
Mathias Agopian | ac9a96d | 2013-07-12 02:01:16 -0700 | [diff] [blame] | 695 | Mutex::Autolock _l(mLock); |
Jaikumar Ganesh | 4342fdf | 2013-04-08 16:43:12 -0700 | [diff] [blame] | 696 | SensorRecord* rec = mActiveSensors.valueFor(handle); |
| 697 | if (rec == 0) { |
| 698 | rec = new SensorRecord(connection); |
| 699 | mActiveSensors.add(handle, rec); |
| 700 | if (sensor->isVirtual()) { |
| 701 | mActiveVirtualSensors.add(handle, sensor); |
| 702 | } |
| 703 | } else { |
| 704 | if (rec->addConnection(connection)) { |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 705 | // this sensor is already activated, but we are adding a connection that uses it. |
| 706 | // Immediately send down the last known value of the requested sensor if it's not a |
Jaikumar Ganesh | 4342fdf | 2013-04-08 16:43:12 -0700 | [diff] [blame] | 707 | // "continuous" sensor. |
Aravind Akella | 0e025c5 | 2014-06-03 19:19:57 -0700 | [diff] [blame] | 708 | if (sensor->getSensor().getReportingMode() == AREPORTING_MODE_ON_CHANGE) { |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 709 | // NOTE: The wake_up flag of this event may get set to |
| 710 | // WAKE_UP_SENSOR_EVENT_NEEDS_ACK if this is a wake_up event. |
Jaikumar Ganesh | 4342fdf | 2013-04-08 16:43:12 -0700 | [diff] [blame] | 711 | sensors_event_t& event(mLastEventSeen.editValueFor(handle)); |
| 712 | if (event.version == sizeof(sensors_event_t)) { |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 713 | if (isWakeUpSensorEvent(event) && !mWakeLockAcquired) { |
| 714 | acquire_wake_lock(PARTIAL_WAKE_LOCK, WAKE_LOCK_NAME); |
| 715 | mWakeLockAcquired = true; |
| 716 | ALOGD_IF(DEBUG_CONNECTIONS, "acquired wakelock for on_change sensor %s", |
| 717 | WAKE_LOCK_NAME); |
| 718 | } |
| 719 | connection->sendEvents(&event, 1, NULL); |
| 720 | if (!connection->needsWakeLock() && mWakeLockAcquired) { |
| 721 | checkWakeLockStateLocked(); |
| 722 | } |
Jaikumar Ganesh | 4342fdf | 2013-04-08 16:43:12 -0700 | [diff] [blame] | 723 | } |
| 724 | } |
| 725 | } |
| 726 | } |
| 727 | |
| 728 | if (connection->addSensor(handle)) { |
| 729 | BatteryService::enableSensor(connection->getUid(), handle); |
| 730 | // the sensor was added (which means it wasn't already there) |
| 731 | // so, see if this connection becomes active |
| 732 | if (mActiveConnections.indexOf(connection) < 0) { |
| 733 | mActiveConnections.add(connection); |
| 734 | } |
| 735 | } else { |
| 736 | ALOGW("sensor %08x already enabled in connection %p (ignoring)", |
| 737 | handle, connection.get()); |
| 738 | } |
| 739 | |
Aravind Akella | 724d91d | 2013-06-27 12:04:23 -0700 | [diff] [blame] | 740 | nsecs_t minDelayNs = sensor->getSensor().getMinDelayNs(); |
| 741 | if (samplingPeriodNs < minDelayNs) { |
| 742 | samplingPeriodNs = minDelayNs; |
| 743 | } |
| 744 | |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 745 | ALOGD_IF(DEBUG_CONNECTIONS, "Calling batch handle==%d flags=%d" |
| 746 | "rate=%" PRId64 " timeout== %" PRId64"", |
Aravind Akella | 724d91d | 2013-06-27 12:04:23 -0700 | [diff] [blame] | 747 | handle, reservedFlags, samplingPeriodNs, maxBatchReportLatencyNs); |
| 748 | |
| 749 | status_t err = sensor->batch(connection.get(), handle, reservedFlags, samplingPeriodNs, |
| 750 | maxBatchReportLatencyNs); |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 751 | |
Aravind Akella | 5466c3d | 2014-08-22 16:11:10 -0700 | [diff] [blame] | 752 | // Call flush() before calling activate() on the sensor. Wait for a first flush complete |
| 753 | // event before sending events on this connection. Ignore one-shot sensors which don't |
| 754 | // support flush(). Also if this sensor isn't already active, don't call flush(). |
| 755 | if (err == NO_ERROR && sensor->getSensor().getReportingMode() != AREPORTING_MODE_ONE_SHOT && |
| 756 | rec->getNumConnections() > 1) { |
| 757 | connection->setFirstFlushPending(handle, true); |
Aravind Akella | 4c8b951 | 2013-09-05 17:03:38 -0700 | [diff] [blame] | 758 | status_t err_flush = sensor->flush(connection.get(), handle); |
Aravind Akella | 5466c3d | 2014-08-22 16:11:10 -0700 | [diff] [blame] | 759 | // Flush may return error if the underlying h/w sensor uses an older HAL. |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 760 | if (err_flush == NO_ERROR) { |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 761 | rec->addPendingFlushConnection(connection.get()); |
Aravind Akella | 5466c3d | 2014-08-22 16:11:10 -0700 | [diff] [blame] | 762 | } else { |
| 763 | connection->setFirstFlushPending(handle, false); |
Aravind Akella | 4c8b951 | 2013-09-05 17:03:38 -0700 | [diff] [blame] | 764 | } |
| 765 | } |
Aravind Akella | 724d91d | 2013-06-27 12:04:23 -0700 | [diff] [blame] | 766 | |
| 767 | if (err == NO_ERROR) { |
| 768 | ALOGD_IF(DEBUG_CONNECTIONS, "Calling activate on %d", handle); |
| 769 | err = sensor->activate(connection.get(), true); |
| 770 | } |
| 771 | |
Aravind Akella | 8a96955 | 2014-09-28 17:52:41 -0700 | [diff] [blame] | 772 | if (err == NO_ERROR) { |
| 773 | connection->updateLooperRegistration(mLooper); |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 774 | } |
| 775 | |
Jaikumar Ganesh | 4342fdf | 2013-04-08 16:43:12 -0700 | [diff] [blame] | 776 | if (err != NO_ERROR) { |
Aravind Akella | 724d91d | 2013-06-27 12:04:23 -0700 | [diff] [blame] | 777 | // batch/activate has failed, reset our state. |
Mathias Agopian | ac9a96d | 2013-07-12 02:01:16 -0700 | [diff] [blame] | 778 | cleanupWithoutDisableLocked(connection, handle); |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 779 | } |
| 780 | return err; |
| 781 | } |
| 782 | |
| 783 | status_t SensorService::disable(const sp<SensorEventConnection>& connection, |
| 784 | int handle) |
| 785 | { |
Mathias Agopian | 50df295 | 2010-07-19 19:09:10 -0700 | [diff] [blame] | 786 | if (mInitCheck != NO_ERROR) |
| 787 | return mInitCheck; |
| 788 | |
Mathias Agopian | ac9a96d | 2013-07-12 02:01:16 -0700 | [diff] [blame] | 789 | Mutex::Autolock _l(mLock); |
| 790 | status_t err = cleanupWithoutDisableLocked(connection, handle); |
Jaikumar Ganesh | 4342fdf | 2013-04-08 16:43:12 -0700 | [diff] [blame] | 791 | if (err == NO_ERROR) { |
| 792 | SensorInterface* sensor = mSensorMap.valueFor(handle); |
| 793 | err = sensor ? sensor->activate(connection.get(), false) : status_t(BAD_VALUE); |
| 794 | } |
| 795 | return err; |
| 796 | } |
| 797 | |
Mathias Agopian | ac9a96d | 2013-07-12 02:01:16 -0700 | [diff] [blame] | 798 | status_t SensorService::cleanupWithoutDisable( |
| 799 | const sp<SensorEventConnection>& connection, int handle) { |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 800 | Mutex::Autolock _l(mLock); |
Mathias Agopian | ac9a96d | 2013-07-12 02:01:16 -0700 | [diff] [blame] | 801 | return cleanupWithoutDisableLocked(connection, handle); |
| 802 | } |
| 803 | |
| 804 | status_t SensorService::cleanupWithoutDisableLocked( |
| 805 | const sp<SensorEventConnection>& connection, int handle) { |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 806 | SensorRecord* rec = mActiveSensors.valueFor(handle); |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 807 | if (rec) { |
| 808 | // see if this connection becomes inactive |
Mathias Agopian | 787ac1b | 2012-09-18 18:49:18 -0700 | [diff] [blame] | 809 | if (connection->removeSensor(handle)) { |
| 810 | BatteryService::disableSensor(connection->getUid(), handle); |
| 811 | } |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 812 | if (connection->hasAnySensor() == false) { |
Aravind Akella | 8a96955 | 2014-09-28 17:52:41 -0700 | [diff] [blame] | 813 | connection->updateLooperRegistration(mLooper); |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 814 | mActiveConnections.remove(connection); |
| 815 | } |
| 816 | // see if this sensor becomes inactive |
| 817 | if (rec->removeConnection(connection)) { |
| 818 | mActiveSensors.removeItem(handle); |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 819 | mActiveVirtualSensors.removeItem(handle); |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 820 | delete rec; |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 821 | } |
Jaikumar Ganesh | 4342fdf | 2013-04-08 16:43:12 -0700 | [diff] [blame] | 822 | return NO_ERROR; |
Mathias Agopian | 7c1c531 | 2010-07-21 15:59:50 -0700 | [diff] [blame] | 823 | } |
Jaikumar Ganesh | 4342fdf | 2013-04-08 16:43:12 -0700 | [diff] [blame] | 824 | return BAD_VALUE; |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 825 | } |
| 826 | |
Mathias Agopian | 7c1c531 | 2010-07-21 15:59:50 -0700 | [diff] [blame] | 827 | status_t SensorService::setEventRate(const sp<SensorEventConnection>& connection, |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 828 | int handle, nsecs_t ns) |
| 829 | { |
Mathias Agopian | 50df295 | 2010-07-19 19:09:10 -0700 | [diff] [blame] | 830 | if (mInitCheck != NO_ERROR) |
| 831 | return mInitCheck; |
| 832 | |
Mathias Agopian | ae09d65 | 2011-11-01 17:37:49 -0700 | [diff] [blame] | 833 | SensorInterface* sensor = mSensorMap.valueFor(handle); |
| 834 | if (!sensor) |
| 835 | return BAD_VALUE; |
| 836 | |
Aravind Akella | 7001804 | 2014-04-07 22:52:37 +0000 | [diff] [blame] | 837 | if (!verifyCanAccessSensor(sensor->getSensor(), "Tried configuring")) { |
| 838 | return BAD_VALUE; |
| 839 | } |
| 840 | |
Mathias Agopian | 1cd7000 | 2010-07-21 15:59:50 -0700 | [diff] [blame] | 841 | if (ns < 0) |
| 842 | return BAD_VALUE; |
| 843 | |
Mathias Agopian | 62569ec | 2011-11-07 21:21:47 -0800 | [diff] [blame] | 844 | nsecs_t minDelayNs = sensor->getSensor().getMinDelayNs(); |
| 845 | if (ns < minDelayNs) { |
| 846 | ns = minDelayNs; |
Mathias Agopian | ae09d65 | 2011-11-01 17:37:49 -0700 | [diff] [blame] | 847 | } |
| 848 | |
Mathias Agopian | f001c92 | 2010-11-11 17:58:51 -0800 | [diff] [blame] | 849 | return sensor->setDelay(connection.get(), handle, ns); |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 850 | } |
| 851 | |
Aravind Akella | 9e3adfc | 2014-09-03 15:48:05 -0700 | [diff] [blame] | 852 | status_t SensorService::flushSensor(const sp<SensorEventConnection>& connection) { |
Aravind Akella | 7001804 | 2014-04-07 22:52:37 +0000 | [diff] [blame] | 853 | if (mInitCheck != NO_ERROR) return mInitCheck; |
Aravind Akella | 9e3adfc | 2014-09-03 15:48:05 -0700 | [diff] [blame] | 854 | SensorDevice& dev(SensorDevice::getInstance()); |
| 855 | const int halVersion = dev.getHalDeviceVersion(); |
| 856 | status_t err(NO_ERROR); |
| 857 | Mutex::Autolock _l(mLock); |
| 858 | // Loop through all sensors for this connection and call flush on each of them. |
| 859 | for (size_t i = 0; i < connection->mSensorInfo.size(); ++i) { |
| 860 | const int handle = connection->mSensorInfo.keyAt(i); |
| 861 | SensorInterface* sensor = mSensorMap.valueFor(handle); |
| 862 | if (sensor->getSensor().getReportingMode() == AREPORTING_MODE_ONE_SHOT) { |
| 863 | ALOGE("flush called on a one-shot sensor"); |
| 864 | err = INVALID_OPERATION; |
| 865 | continue; |
| 866 | } |
Aravind Akella | 8493b79 | 2014-09-08 15:45:47 -0700 | [diff] [blame] | 867 | if (halVersion <= SENSORS_DEVICE_API_VERSION_1_0 || isVirtualSensor(handle)) { |
Aravind Akella | 9e3adfc | 2014-09-03 15:48:05 -0700 | [diff] [blame] | 868 | // For older devices just increment pending flush count which will send a trivial |
| 869 | // flush complete event. |
Aravind Akella | 8a96955 | 2014-09-28 17:52:41 -0700 | [diff] [blame] | 870 | connection->incrementPendingFlushCount(handle); |
Aravind Akella | 9e3adfc | 2014-09-03 15:48:05 -0700 | [diff] [blame] | 871 | } else { |
| 872 | status_t err_flush = sensor->flush(connection.get(), handle); |
| 873 | if (err_flush == NO_ERROR) { |
| 874 | SensorRecord* rec = mActiveSensors.valueFor(handle); |
| 875 | if (rec != NULL) rec->addPendingFlushConnection(connection); |
| 876 | } |
| 877 | err = (err_flush != NO_ERROR) ? err_flush : err; |
| 878 | } |
Aravind Akella | 7001804 | 2014-04-07 22:52:37 +0000 | [diff] [blame] | 879 | } |
Aravind Akella | 9e3adfc | 2014-09-03 15:48:05 -0700 | [diff] [blame] | 880 | return err; |
Aravind Akella | 724d91d | 2013-06-27 12:04:23 -0700 | [diff] [blame] | 881 | } |
Aravind Akella | 7001804 | 2014-04-07 22:52:37 +0000 | [diff] [blame] | 882 | |
Aravind Akella | 7001804 | 2014-04-07 22:52:37 +0000 | [diff] [blame] | 883 | bool SensorService::canAccessSensor(const Sensor& sensor) { |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 884 | return (sensor.getRequiredPermission().isEmpty()) || |
| 885 | PermissionCache::checkCallingPermission(String16(sensor.getRequiredPermission())); |
Aravind Akella | 7001804 | 2014-04-07 22:52:37 +0000 | [diff] [blame] | 886 | } |
| 887 | |
| 888 | bool SensorService::verifyCanAccessSensor(const Sensor& sensor, const char* operation) { |
| 889 | if (canAccessSensor(sensor)) { |
| 890 | return true; |
| 891 | } else { |
| 892 | String8 errorMessage; |
| 893 | errorMessage.appendFormat( |
| 894 | "%s a sensor (%s) without holding its required permission: %s", |
| 895 | operation, |
| 896 | sensor.getName().string(), |
| 897 | sensor.getRequiredPermission().string()); |
| 898 | return false; |
| 899 | } |
| 900 | } |
| 901 | |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 902 | void SensorService::checkWakeLockState() { |
| 903 | Mutex::Autolock _l(mLock); |
| 904 | checkWakeLockStateLocked(); |
| 905 | } |
| 906 | |
| 907 | void SensorService::checkWakeLockStateLocked() { |
| 908 | if (!mWakeLockAcquired) { |
| 909 | return; |
| 910 | } |
| 911 | bool releaseLock = true; |
| 912 | for (size_t i=0 ; i<mActiveConnections.size() ; i++) { |
| 913 | sp<SensorEventConnection> connection(mActiveConnections[i].promote()); |
| 914 | if (connection != 0) { |
| 915 | if (connection->needsWakeLock()) { |
| 916 | releaseLock = false; |
| 917 | break; |
| 918 | } |
| 919 | } |
| 920 | } |
| 921 | if (releaseLock) { |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 922 | release_wake_lock(WAKE_LOCK_NAME); |
| 923 | mWakeLockAcquired = false; |
| 924 | } |
| 925 | } |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 926 | |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 927 | // --------------------------------------------------------------------------- |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 928 | SensorService::SensorRecord::SensorRecord( |
| 929 | const sp<SensorEventConnection>& connection) |
| 930 | { |
| 931 | mConnections.add(connection); |
| 932 | } |
| 933 | |
Mathias Agopian | 7c1c531 | 2010-07-21 15:59:50 -0700 | [diff] [blame] | 934 | bool SensorService::SensorRecord::addConnection( |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 935 | const sp<SensorEventConnection>& connection) |
| 936 | { |
| 937 | if (mConnections.indexOf(connection) < 0) { |
| 938 | mConnections.add(connection); |
Mathias Agopian | 7c1c531 | 2010-07-21 15:59:50 -0700 | [diff] [blame] | 939 | return true; |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 940 | } |
Mathias Agopian | 7c1c531 | 2010-07-21 15:59:50 -0700 | [diff] [blame] | 941 | return false; |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 942 | } |
| 943 | |
| 944 | bool SensorService::SensorRecord::removeConnection( |
| 945 | const wp<SensorEventConnection>& connection) |
| 946 | { |
| 947 | ssize_t index = mConnections.indexOf(connection); |
| 948 | if (index >= 0) { |
| 949 | mConnections.removeItemsAt(index, 1); |
| 950 | } |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 951 | // Remove this connections from the queue of flush() calls made on this sensor. |
| 952 | for (Vector< wp<SensorEventConnection> >::iterator it = |
| 953 | mPendingFlushConnections.begin(); it != mPendingFlushConnections.end();) { |
Aravind Akella | 8a96955 | 2014-09-28 17:52:41 -0700 | [diff] [blame] | 954 | |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 955 | if (it->unsafe_get() == connection.unsafe_get()) { |
| 956 | it = mPendingFlushConnections.erase(it); |
| 957 | } else { |
| 958 | ++it; |
| 959 | } |
| 960 | } |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 961 | return mConnections.size() ? false : true; |
| 962 | } |
| 963 | |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 964 | void SensorService::SensorRecord::addPendingFlushConnection( |
| 965 | const sp<SensorEventConnection>& connection) { |
| 966 | mPendingFlushConnections.add(connection); |
| 967 | } |
| 968 | |
| 969 | void SensorService::SensorRecord::removeFirstPendingFlushConnection() { |
| 970 | if (mPendingFlushConnections.size() > 0) { |
| 971 | mPendingFlushConnections.removeAt(0); |
| 972 | } |
| 973 | } |
| 974 | |
| 975 | SensorService::SensorEventConnection * |
| 976 | SensorService::SensorRecord::getFirstPendingFlushConnection() { |
| 977 | if (mPendingFlushConnections.size() > 0) { |
| 978 | return mPendingFlushConnections[0].unsafe_get(); |
| 979 | } |
| 980 | return NULL; |
| 981 | } |
| 982 | |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 983 | // --------------------------------------------------------------------------- |
| 984 | |
| 985 | SensorService::SensorEventConnection::SensorEventConnection( |
Mathias Agopian | 5307d17 | 2012-09-18 17:02:43 -0700 | [diff] [blame] | 986 | const sp<SensorService>& service, uid_t uid) |
Aravind Akella | 8a96955 | 2014-09-28 17:52:41 -0700 | [diff] [blame] | 987 | : mService(service), mUid(uid), mWakeLockRefCount(0), mHasLooperCallbacks(false), |
| 988 | mDead(false), mEventCache(NULL), mCacheSize(0), mMaxCacheSize(0) { |
Aravind Akella | 5466c3d | 2014-08-22 16:11:10 -0700 | [diff] [blame] | 989 | mChannel = new BitTube(mService->mSocketBufferSize); |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 990 | #if DEBUG_CONNECTIONS |
| 991 | mEventsReceived = mEventsSentFromCache = mEventsSent = 0; |
Aravind Akella | e74baf6 | 2014-08-21 12:28:35 -0700 | [diff] [blame] | 992 | mTotalAcksNeeded = mTotalAcksReceived = 0; |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 993 | #endif |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 994 | } |
| 995 | |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 996 | SensorService::SensorEventConnection::~SensorEventConnection() { |
Steve Block | a551237 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 997 | ALOGD_IF(DEBUG_CONNECTIONS, "~SensorEventConnection(%p)", this); |
Aravind Akella | e148bc2 | 2014-09-24 22:12:58 -0700 | [diff] [blame] | 998 | mService->cleanupConnection(this); |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 999 | if (mEventCache != NULL) { |
| 1000 | delete mEventCache; |
| 1001 | } |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 1002 | } |
| 1003 | |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1004 | void SensorService::SensorEventConnection::onFirstRef() { |
| 1005 | LooperCallback::onFirstRef(); |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 1006 | } |
| 1007 | |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 1008 | bool SensorService::SensorEventConnection::needsWakeLock() { |
| 1009 | Mutex::Autolock _l(mConnectionLock); |
Aravind Akella | 8a96955 | 2014-09-28 17:52:41 -0700 | [diff] [blame] | 1010 | return !mDead && mWakeLockRefCount > 0; |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 1011 | } |
| 1012 | |
Aravind Akella | 4c8b951 | 2013-09-05 17:03:38 -0700 | [diff] [blame] | 1013 | void SensorService::SensorEventConnection::dump(String8& result) { |
| 1014 | Mutex::Autolock _l(mConnectionLock); |
Aravind Akella | 0ec2066 | 2014-09-14 17:29:48 -0700 | [diff] [blame] | 1015 | result.appendFormat("\t WakeLockRefCount %d | uid %d | cache size %d | max cache size %d\n", |
| 1016 | mWakeLockRefCount, mUid, mCacheSize, mMaxCacheSize); |
Aravind Akella | 4c8b951 | 2013-09-05 17:03:38 -0700 | [diff] [blame] | 1017 | for (size_t i = 0; i < mSensorInfo.size(); ++i) { |
| 1018 | const FlushInfo& flushInfo = mSensorInfo.valueAt(i); |
Aravind Akella | 0ec2066 | 2014-09-14 17:29:48 -0700 | [diff] [blame] | 1019 | result.appendFormat("\t %s 0x%08x | status: %s | pending flush events %d \n", |
Aravind Akella | 4c8b951 | 2013-09-05 17:03:38 -0700 | [diff] [blame] | 1020 | mService->getSensorName(mSensorInfo.keyAt(i)).string(), |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1021 | mSensorInfo.keyAt(i), |
Aravind Akella | 4c8b951 | 2013-09-05 17:03:38 -0700 | [diff] [blame] | 1022 | flushInfo.mFirstFlushPending ? "First flush pending" : |
| 1023 | "active", |
Aravind Akella | 0ec2066 | 2014-09-14 17:29:48 -0700 | [diff] [blame] | 1024 | flushInfo.mPendingFlushEventsToSend); |
Aravind Akella | 4c8b951 | 2013-09-05 17:03:38 -0700 | [diff] [blame] | 1025 | } |
Aravind Akella | 0ec2066 | 2014-09-14 17:29:48 -0700 | [diff] [blame] | 1026 | #if DEBUG_CONNECTIONS |
| 1027 | result.appendFormat("\t events recvd: %d | sent %d | cache %d | dropped %d |" |
| 1028 | " total_acks_needed %d | total_acks_recvd %d\n", |
| 1029 | mEventsReceived, |
| 1030 | mEventsSent, |
| 1031 | mEventsSentFromCache, |
| 1032 | mEventsReceived - (mEventsSentFromCache + mEventsSent + mCacheSize), |
| 1033 | mTotalAcksNeeded, |
| 1034 | mTotalAcksReceived); |
| 1035 | #endif |
Aravind Akella | 4c8b951 | 2013-09-05 17:03:38 -0700 | [diff] [blame] | 1036 | } |
| 1037 | |
Mathias Agopian | 7c1c531 | 2010-07-21 15:59:50 -0700 | [diff] [blame] | 1038 | bool SensorService::SensorEventConnection::addSensor(int32_t handle) { |
Mathias Agopian | 71d7a5c | 2010-11-14 20:55:25 -0800 | [diff] [blame] | 1039 | Mutex::Autolock _l(mConnectionLock); |
Aravind Akella | 7001804 | 2014-04-07 22:52:37 +0000 | [diff] [blame] | 1040 | if (!verifyCanAccessSensor(mService->getSensorFromHandle(handle), "Tried adding")) { |
| 1041 | return false; |
| 1042 | } |
Aravind Akella | 4c8b951 | 2013-09-05 17:03:38 -0700 | [diff] [blame] | 1043 | if (mSensorInfo.indexOfKey(handle) < 0) { |
| 1044 | mSensorInfo.add(handle, FlushInfo()); |
Mathias Agopian | 7c1c531 | 2010-07-21 15:59:50 -0700 | [diff] [blame] | 1045 | return true; |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 1046 | } |
Mathias Agopian | 7c1c531 | 2010-07-21 15:59:50 -0700 | [diff] [blame] | 1047 | return false; |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 1048 | } |
| 1049 | |
Mathias Agopian | 7c1c531 | 2010-07-21 15:59:50 -0700 | [diff] [blame] | 1050 | bool SensorService::SensorEventConnection::removeSensor(int32_t handle) { |
Mathias Agopian | 71d7a5c | 2010-11-14 20:55:25 -0800 | [diff] [blame] | 1051 | Mutex::Autolock _l(mConnectionLock); |
Aravind Akella | 4c8b951 | 2013-09-05 17:03:38 -0700 | [diff] [blame] | 1052 | if (mSensorInfo.removeItem(handle) >= 0) { |
Mathias Agopian | 7c1c531 | 2010-07-21 15:59:50 -0700 | [diff] [blame] | 1053 | return true; |
| 1054 | } |
| 1055 | return false; |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 1056 | } |
| 1057 | |
| 1058 | bool SensorService::SensorEventConnection::hasSensor(int32_t handle) const { |
Mathias Agopian | 71d7a5c | 2010-11-14 20:55:25 -0800 | [diff] [blame] | 1059 | Mutex::Autolock _l(mConnectionLock); |
Aravind Akella | 4c8b951 | 2013-09-05 17:03:38 -0700 | [diff] [blame] | 1060 | return mSensorInfo.indexOfKey(handle) >= 0; |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 1061 | } |
| 1062 | |
| 1063 | bool SensorService::SensorEventConnection::hasAnySensor() const { |
Mathias Agopian | 71d7a5c | 2010-11-14 20:55:25 -0800 | [diff] [blame] | 1064 | Mutex::Autolock _l(mConnectionLock); |
Mathias Agopian | 7c1c531 | 2010-07-21 15:59:50 -0700 | [diff] [blame] | 1065 | return mSensorInfo.size() ? true : false; |
| 1066 | } |
| 1067 | |
Aravind Akella | 8493b79 | 2014-09-08 15:45:47 -0700 | [diff] [blame] | 1068 | bool SensorService::SensorEventConnection::hasOneShotSensors() const { |
| 1069 | Mutex::Autolock _l(mConnectionLock); |
| 1070 | for (size_t i = 0; i < mSensorInfo.size(); ++i) { |
| 1071 | const int handle = mSensorInfo.keyAt(i); |
| 1072 | if (mService->getSensorFromHandle(handle).getReportingMode() == AREPORTING_MODE_ONE_SHOT) { |
| 1073 | return true; |
| 1074 | } |
| 1075 | } |
| 1076 | return false; |
| 1077 | } |
| 1078 | |
Aravind Akella | 4c8b951 | 2013-09-05 17:03:38 -0700 | [diff] [blame] | 1079 | void SensorService::SensorEventConnection::setFirstFlushPending(int32_t handle, |
| 1080 | bool value) { |
| 1081 | Mutex::Autolock _l(mConnectionLock); |
| 1082 | ssize_t index = mSensorInfo.indexOfKey(handle); |
| 1083 | if (index >= 0) { |
| 1084 | FlushInfo& flushInfo = mSensorInfo.editValueAt(index); |
| 1085 | flushInfo.mFirstFlushPending = value; |
| 1086 | } |
| 1087 | } |
| 1088 | |
Aravind Akella | 8a96955 | 2014-09-28 17:52:41 -0700 | [diff] [blame] | 1089 | void SensorService::SensorEventConnection::updateLooperRegistration(const sp<Looper>& looper) { |
| 1090 | Mutex::Autolock _l(mConnectionLock); |
| 1091 | updateLooperRegistrationLocked(looper); |
| 1092 | } |
| 1093 | |
| 1094 | void SensorService::SensorEventConnection::updateLooperRegistrationLocked( |
| 1095 | const sp<Looper>& looper) { |
| 1096 | bool isConnectionActive = mSensorInfo.size() > 0; |
| 1097 | // If all sensors are unregistered OR Looper has encountered an error, we |
| 1098 | // can remove the Fd from the Looper if it has been previously added. |
| 1099 | if (!isConnectionActive || mDead) { |
| 1100 | if (mHasLooperCallbacks) { |
| 1101 | ALOGD_IF(DEBUG_CONNECTIONS, "%p removeFd fd=%d", this, mChannel->getSendFd()); |
| 1102 | looper->removeFd(mChannel->getSendFd()); |
| 1103 | mHasLooperCallbacks = false; |
| 1104 | } |
| 1105 | return; |
| 1106 | } |
| 1107 | |
| 1108 | int looper_flags = 0; |
| 1109 | if (mCacheSize > 0) looper_flags |= ALOOPER_EVENT_OUTPUT; |
| 1110 | for (size_t i = 0; i < mSensorInfo.size(); ++i) { |
| 1111 | const int handle = mSensorInfo.keyAt(i); |
| 1112 | if (mService->getSensorFromHandle(handle).isWakeUpSensor()) { |
| 1113 | looper_flags |= ALOOPER_EVENT_INPUT; |
| 1114 | break; |
| 1115 | } |
| 1116 | } |
| 1117 | // If flags is still set to zero, we don't need to add this fd to the Looper, if |
| 1118 | // the fd has already been added, remove it. This is likely to happen when ALL the |
| 1119 | // events stored in the cache have been sent to the corresponding app. |
| 1120 | if (looper_flags == 0) { |
| 1121 | if (mHasLooperCallbacks) { |
| 1122 | ALOGD_IF(DEBUG_CONNECTIONS, "removeFd fd=%d", mChannel->getSendFd()); |
| 1123 | looper->removeFd(mChannel->getSendFd()); |
| 1124 | mHasLooperCallbacks = false; |
| 1125 | } |
| 1126 | return; |
| 1127 | } |
| 1128 | // Add the file descriptor to the Looper for receiving acknowledegments if the app has |
| 1129 | // registered for wake-up sensors OR for sending events in the cache. |
| 1130 | int ret = looper->addFd(mChannel->getSendFd(), 0, looper_flags, this, NULL); |
| 1131 | if (ret == 1) { |
| 1132 | ALOGD_IF(DEBUG_CONNECTIONS, "%p addFd fd=%d", this, mChannel->getSendFd()); |
| 1133 | mHasLooperCallbacks = true; |
| 1134 | } else { |
| 1135 | ALOGE("Looper::addFd failed ret=%d fd=%d", ret, mChannel->getSendFd()); |
| 1136 | } |
| 1137 | } |
| 1138 | |
| 1139 | void SensorService::SensorEventConnection::incrementPendingFlushCount(int32_t handle) { |
| 1140 | Mutex::Autolock _l(mConnectionLock); |
| 1141 | ssize_t index = mSensorInfo.indexOfKey(handle); |
| 1142 | if (index >= 0) { |
| 1143 | FlushInfo& flushInfo = mSensorInfo.editValueAt(index); |
| 1144 | flushInfo.mPendingFlushEventsToSend++; |
| 1145 | } |
| 1146 | } |
| 1147 | |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 1148 | status_t SensorService::SensorEventConnection::sendEvents( |
Aravind Akella | 0ec2066 | 2014-09-14 17:29:48 -0700 | [diff] [blame] | 1149 | sensors_event_t const* buffer, size_t numEvents, |
Aravind Akella | 8493b79 | 2014-09-08 15:45:47 -0700 | [diff] [blame] | 1150 | sensors_event_t* scratch, |
| 1151 | SensorEventConnection const * const * mapFlushEventsToConnections) { |
Mathias Agopian | cf51001 | 2010-07-22 16:18:10 -0700 | [diff] [blame] | 1152 | // filter out events not for this connection |
Mathias Agopian | 3560fb2 | 2010-07-22 21:24:39 -0700 | [diff] [blame] | 1153 | size_t count = 0; |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 1154 | Mutex::Autolock _l(mConnectionLock); |
Mathias Agopian | 3560fb2 | 2010-07-22 21:24:39 -0700 | [diff] [blame] | 1155 | if (scratch) { |
| 1156 | size_t i=0; |
| 1157 | while (i<numEvents) { |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1158 | int32_t sensor_handle = buffer[i].sensor; |
Aravind Akella | 724d91d | 2013-06-27 12:04:23 -0700 | [diff] [blame] | 1159 | if (buffer[i].type == SENSOR_TYPE_META_DATA) { |
| 1160 | ALOGD_IF(DEBUG_CONNECTIONS, "flush complete event sensor==%d ", |
Aravind Akella | 9e3adfc | 2014-09-03 15:48:05 -0700 | [diff] [blame] | 1161 | buffer[i].meta_data.sensor); |
Aravind Akella | 8a96955 | 2014-09-28 17:52:41 -0700 | [diff] [blame] | 1162 | // Setting sensor_handle to the correct sensor to ensure the sensor events per |
| 1163 | // connection are filtered correctly. buffer[i].sensor is zero for meta_data |
| 1164 | // events. |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1165 | sensor_handle = buffer[i].meta_data.sensor; |
Aravind Akella | 724d91d | 2013-06-27 12:04:23 -0700 | [diff] [blame] | 1166 | } |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1167 | ssize_t index = mSensorInfo.indexOfKey(sensor_handle); |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1168 | // Check if this connection has registered for this sensor. If not continue to the |
| 1169 | // next sensor_event. |
| 1170 | if (index < 0) { |
| 1171 | ++i; |
| 1172 | continue; |
Aravind Akella | 4c8b951 | 2013-09-05 17:03:38 -0700 | [diff] [blame] | 1173 | } |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1174 | |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1175 | FlushInfo& flushInfo = mSensorInfo.editValueAt(index); |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1176 | // Check if there is a pending flush_complete event for this sensor on this connection. |
Aravind Akella | 8493b79 | 2014-09-08 15:45:47 -0700 | [diff] [blame] | 1177 | if (buffer[i].type == SENSOR_TYPE_META_DATA && flushInfo.mFirstFlushPending == true && |
| 1178 | this == mapFlushEventsToConnections[i]) { |
| 1179 | flushInfo.mFirstFlushPending = false; |
| 1180 | ALOGD_IF(DEBUG_CONNECTIONS, "First flush event for sensor==%d ", |
| 1181 | buffer[i].meta_data.sensor); |
| 1182 | ++i; |
| 1183 | continue; |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1184 | } |
| 1185 | |
| 1186 | // If there is a pending flush complete event for this sensor on this connection, |
| 1187 | // ignore the event and proceed to the next. |
| 1188 | if (flushInfo.mFirstFlushPending) { |
| 1189 | ++i; |
| 1190 | continue; |
| 1191 | } |
| 1192 | |
| 1193 | do { |
Aravind Akella | 8493b79 | 2014-09-08 15:45:47 -0700 | [diff] [blame] | 1194 | // Keep copying events into the scratch buffer as long as they are regular |
| 1195 | // sensor_events are from the same sensor_handle OR they are flush_complete_events |
| 1196 | // from the same sensor_handle AND the current connection is mapped to the |
| 1197 | // corresponding flush_complete_event. |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1198 | if (buffer[i].type == SENSOR_TYPE_META_DATA) { |
Aravind Akella | 8493b79 | 2014-09-08 15:45:47 -0700 | [diff] [blame] | 1199 | if (this == mapFlushEventsToConnections[i]) { |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1200 | scratch[count++] = buffer[i]; |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1201 | } |
| 1202 | ++i; |
| 1203 | } else { |
| 1204 | // Regular sensor event, just copy it to the scratch buffer. |
Aravind Akella | 4c8b951 | 2013-09-05 17:03:38 -0700 | [diff] [blame] | 1205 | scratch[count++] = buffer[i++]; |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1206 | } |
Aravind Akella | 8493b79 | 2014-09-08 15:45:47 -0700 | [diff] [blame] | 1207 | } while ((i<numEvents) && ((buffer[i].sensor == sensor_handle && |
| 1208 | buffer[i].type != SENSOR_TYPE_META_DATA) || |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1209 | (buffer[i].type == SENSOR_TYPE_META_DATA && |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1210 | buffer[i].meta_data.sensor == sensor_handle))); |
Mathias Agopian | cf51001 | 2010-07-22 16:18:10 -0700 | [diff] [blame] | 1211 | } |
Mathias Agopian | 3560fb2 | 2010-07-22 21:24:39 -0700 | [diff] [blame] | 1212 | } else { |
| 1213 | scratch = const_cast<sensors_event_t *>(buffer); |
| 1214 | count = numEvents; |
Mathias Agopian | cf51001 | 2010-07-22 16:18:10 -0700 | [diff] [blame] | 1215 | } |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 1216 | |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1217 | sendPendingFlushEventsLocked(); |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1218 | // Early return if there are no events for this connection. |
| 1219 | if (count == 0) { |
| 1220 | return status_t(NO_ERROR); |
| 1221 | } |
| 1222 | |
| 1223 | #if DEBUG_CONNECTIONS |
| 1224 | mEventsReceived += count; |
| 1225 | #endif |
| 1226 | if (mCacheSize != 0) { |
| 1227 | // There are some events in the cache which need to be sent first. Copy this buffer to |
| 1228 | // the end of cache. |
| 1229 | if (mCacheSize + count <= mMaxCacheSize) { |
| 1230 | memcpy(&mEventCache[mCacheSize], scratch, count * sizeof(sensors_event_t)); |
| 1231 | mCacheSize += count; |
| 1232 | } else { |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1233 | // Check if any new sensors have registered on this connection which may have increased |
| 1234 | // the max cache size that is desired. |
| 1235 | if (mCacheSize + count < computeMaxCacheSizeLocked()) { |
| 1236 | reAllocateCacheLocked(scratch, count); |
| 1237 | return status_t(NO_ERROR); |
| 1238 | } |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1239 | // Some events need to be dropped. |
| 1240 | int remaningCacheSize = mMaxCacheSize - mCacheSize; |
| 1241 | if (remaningCacheSize != 0) { |
| 1242 | memcpy(&mEventCache[mCacheSize], scratch, |
| 1243 | remaningCacheSize * sizeof(sensors_event_t)); |
| 1244 | } |
| 1245 | int numEventsDropped = count - remaningCacheSize; |
| 1246 | countFlushCompleteEventsLocked(mEventCache, numEventsDropped); |
| 1247 | // Drop the first "numEventsDropped" in the cache. |
| 1248 | memmove(mEventCache, &mEventCache[numEventsDropped], |
| 1249 | (mCacheSize - numEventsDropped) * sizeof(sensors_event_t)); |
| 1250 | |
| 1251 | // Copy the remainingEvents in scratch buffer to the end of cache. |
| 1252 | memcpy(&mEventCache[mCacheSize - numEventsDropped], scratch + remaningCacheSize, |
| 1253 | numEventsDropped * sizeof(sensors_event_t)); |
| 1254 | } |
| 1255 | return status_t(NO_ERROR); |
| 1256 | } |
| 1257 | |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1258 | int index_wake_up_event = findWakeUpSensorEventLocked(scratch, count); |
| 1259 | if (index_wake_up_event >= 0) { |
| 1260 | scratch[index_wake_up_event].flags |= WAKE_UP_SENSOR_EVENT_NEEDS_ACK; |
| 1261 | ++mWakeLockRefCount; |
Aravind Akella | e74baf6 | 2014-08-21 12:28:35 -0700 | [diff] [blame] | 1262 | #if DEBUG_CONNECTIONS |
| 1263 | ++mTotalAcksNeeded; |
| 1264 | #endif |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1265 | } |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1266 | |
| 1267 | // NOTE: ASensorEvent and sensors_event_t are the same type. |
| 1268 | ssize_t size = SensorEventQueue::write(mChannel, |
| 1269 | reinterpret_cast<ASensorEvent const*>(scratch), count); |
| 1270 | if (size < 0) { |
| 1271 | // Write error, copy events to local cache. |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1272 | if (index_wake_up_event >= 0) { |
| 1273 | // If there was a wake_up sensor_event, reset the flag. |
| 1274 | scratch[index_wake_up_event].flags &= ~WAKE_UP_SENSOR_EVENT_NEEDS_ACK; |
Aravind Akella | 0ec2066 | 2014-09-14 17:29:48 -0700 | [diff] [blame] | 1275 | if (mWakeLockRefCount > 0) { |
| 1276 | --mWakeLockRefCount; |
| 1277 | } |
Aravind Akella | e74baf6 | 2014-08-21 12:28:35 -0700 | [diff] [blame] | 1278 | #if DEBUG_CONNECTIONS |
| 1279 | --mTotalAcksNeeded; |
| 1280 | #endif |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1281 | } |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1282 | if (mEventCache == NULL) { |
| 1283 | mMaxCacheSize = computeMaxCacheSizeLocked(); |
| 1284 | mEventCache = new sensors_event_t[mMaxCacheSize]; |
| 1285 | mCacheSize = 0; |
| 1286 | } |
| 1287 | memcpy(&mEventCache[mCacheSize], scratch, count * sizeof(sensors_event_t)); |
| 1288 | mCacheSize += count; |
| 1289 | |
| 1290 | // Add this file descriptor to the looper to get a callback when this fd is available for |
| 1291 | // writing. |
Aravind Akella | 8a96955 | 2014-09-28 17:52:41 -0700 | [diff] [blame] | 1292 | updateLooperRegistrationLocked(mService->getLooper()); |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1293 | return size; |
| 1294 | } |
| 1295 | |
| 1296 | #if DEBUG_CONNECTIONS |
| 1297 | if (size > 0) { |
| 1298 | mEventsSent += count; |
| 1299 | } |
| 1300 | #endif |
| 1301 | |
| 1302 | return size < 0 ? status_t(size) : status_t(NO_ERROR); |
| 1303 | } |
| 1304 | |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1305 | void SensorService::SensorEventConnection::reAllocateCacheLocked(sensors_event_t const* scratch, |
| 1306 | int count) { |
| 1307 | sensors_event_t *eventCache_new; |
| 1308 | const int new_cache_size = computeMaxCacheSizeLocked(); |
| 1309 | // Allocate new cache, copy over events from the old cache & scratch, free up memory. |
| 1310 | eventCache_new = new sensors_event_t[new_cache_size]; |
| 1311 | memcpy(eventCache_new, mEventCache, mCacheSize * sizeof(sensors_event_t)); |
| 1312 | memcpy(&eventCache_new[mCacheSize], scratch, count * sizeof(sensors_event_t)); |
| 1313 | |
| 1314 | ALOGD_IF(DEBUG_CONNECTIONS, "reAllocateCacheLocked maxCacheSize=%d %d", mMaxCacheSize, |
| 1315 | new_cache_size); |
| 1316 | |
| 1317 | delete mEventCache; |
| 1318 | mEventCache = eventCache_new; |
| 1319 | mCacheSize += count; |
| 1320 | mMaxCacheSize = new_cache_size; |
| 1321 | } |
| 1322 | |
| 1323 | void SensorService::SensorEventConnection::sendPendingFlushEventsLocked() { |
| 1324 | ASensorEvent flushCompleteEvent; |
Aravind Akella | 0ec2066 | 2014-09-14 17:29:48 -0700 | [diff] [blame] | 1325 | memset(&flushCompleteEvent, 0, sizeof(flushCompleteEvent)); |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1326 | flushCompleteEvent.type = SENSOR_TYPE_META_DATA; |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1327 | // Loop through all the sensors for this connection and check if there are any pending |
| 1328 | // flush complete events to be sent. |
| 1329 | for (size_t i = 0; i < mSensorInfo.size(); ++i) { |
| 1330 | FlushInfo& flushInfo = mSensorInfo.editValueAt(i); |
| 1331 | while (flushInfo.mPendingFlushEventsToSend > 0) { |
Aravind Akella | 0ec2066 | 2014-09-14 17:29:48 -0700 | [diff] [blame] | 1332 | const int sensor_handle = mSensorInfo.keyAt(i); |
| 1333 | flushCompleteEvent.meta_data.sensor = sensor_handle; |
| 1334 | if (mService->getSensorFromHandle(sensor_handle).isWakeUpSensor()) { |
| 1335 | flushCompleteEvent.flags |= WAKE_UP_SENSOR_EVENT_NEEDS_ACK; |
| 1336 | } |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1337 | ssize_t size = SensorEventQueue::write(mChannel, &flushCompleteEvent, 1); |
| 1338 | if (size < 0) { |
| 1339 | return; |
| 1340 | } |
| 1341 | ALOGD_IF(DEBUG_CONNECTIONS, "sent dropped flush complete event==%d ", |
| 1342 | flushCompleteEvent.meta_data.sensor); |
| 1343 | flushInfo.mPendingFlushEventsToSend--; |
| 1344 | } |
| 1345 | } |
| 1346 | } |
| 1347 | |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1348 | void SensorService::SensorEventConnection::writeToSocketFromCacheLocked() { |
Aravind Akella | 5466c3d | 2014-08-22 16:11:10 -0700 | [diff] [blame] | 1349 | // At a time write at most half the size of the receiver buffer in SensorEventQueue OR |
| 1350 | // half the size of the socket buffer allocated in BitTube whichever is smaller. |
| 1351 | const int maxWriteSize = helpers::min(SensorEventQueue::MAX_RECEIVE_BUFFER_EVENT_COUNT/2, |
| 1352 | int(mService->mSocketBufferSize/(sizeof(sensors_event_t)*2))); |
| 1353 | // Send pending flush complete events (if any) |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1354 | sendPendingFlushEventsLocked(); |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1355 | for (int numEventsSent = 0; numEventsSent < mCacheSize;) { |
Aravind Akella | 5466c3d | 2014-08-22 16:11:10 -0700 | [diff] [blame] | 1356 | const int numEventsToWrite = helpers::min(mCacheSize - numEventsSent, maxWriteSize); |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1357 | int index_wake_up_event = |
| 1358 | findWakeUpSensorEventLocked(mEventCache + numEventsSent, numEventsToWrite); |
| 1359 | if (index_wake_up_event >= 0) { |
| 1360 | mEventCache[index_wake_up_event + numEventsSent].flags |= |
| 1361 | WAKE_UP_SENSOR_EVENT_NEEDS_ACK; |
| 1362 | ++mWakeLockRefCount; |
Aravind Akella | e74baf6 | 2014-08-21 12:28:35 -0700 | [diff] [blame] | 1363 | #if DEBUG_CONNECTIONS |
| 1364 | ++mTotalAcksNeeded; |
| 1365 | #endif |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1366 | } |
Aravind Akella | 4c8b951 | 2013-09-05 17:03:38 -0700 | [diff] [blame] | 1367 | |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1368 | ssize_t size = SensorEventQueue::write(mChannel, |
| 1369 | reinterpret_cast<ASensorEvent const*>(mEventCache + numEventsSent), |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1370 | numEventsToWrite); |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1371 | if (size < 0) { |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1372 | if (index_wake_up_event >= 0) { |
| 1373 | // If there was a wake_up sensor_event, reset the flag. |
| 1374 | mEventCache[index_wake_up_event + numEventsSent].flags &= |
| 1375 | ~WAKE_UP_SENSOR_EVENT_NEEDS_ACK; |
Aravind Akella | 0ec2066 | 2014-09-14 17:29:48 -0700 | [diff] [blame] | 1376 | if (mWakeLockRefCount > 0) { |
| 1377 | --mWakeLockRefCount; |
| 1378 | } |
Aravind Akella | e74baf6 | 2014-08-21 12:28:35 -0700 | [diff] [blame] | 1379 | #if DEBUG_CONNECTIONS |
| 1380 | --mTotalAcksNeeded; |
| 1381 | #endif |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1382 | } |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1383 | memmove(mEventCache, &mEventCache[numEventsSent], |
| 1384 | (mCacheSize - numEventsSent) * sizeof(sensors_event_t)); |
| 1385 | ALOGD_IF(DEBUG_CONNECTIONS, "wrote %d events from cache size==%d ", |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1386 | numEventsSent, mCacheSize); |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1387 | mCacheSize -= numEventsSent; |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1388 | return; |
| 1389 | } |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1390 | numEventsSent += numEventsToWrite; |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1391 | #if DEBUG_CONNECTIONS |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1392 | mEventsSentFromCache += numEventsToWrite; |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1393 | #endif |
Aravind Akella | b4099e7 | 2013-10-15 15:43:10 -0700 | [diff] [blame] | 1394 | } |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1395 | ALOGD_IF(DEBUG_CONNECTIONS, "wrote all events from cache size=%d ", mCacheSize); |
| 1396 | // All events from the cache have been sent. Reset cache size to zero. |
| 1397 | mCacheSize = 0; |
Aravind Akella | 8a96955 | 2014-09-28 17:52:41 -0700 | [diff] [blame] | 1398 | // There are no more events in the cache. We don't need to poll for write on the fd. |
| 1399 | // Update Looper registration. |
| 1400 | updateLooperRegistrationLocked(mService->getLooper()); |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 1401 | } |
| 1402 | |
Aravind Akella | c551eac | 2013-10-14 17:04:42 -0700 | [diff] [blame] | 1403 | void SensorService::SensorEventConnection::countFlushCompleteEventsLocked( |
Aravind Akella | 0ec2066 | 2014-09-14 17:29:48 -0700 | [diff] [blame] | 1404 | sensors_event_t const* scratch, const int numEventsDropped) { |
Aravind Akella | 4c8b951 | 2013-09-05 17:03:38 -0700 | [diff] [blame] | 1405 | ALOGD_IF(DEBUG_CONNECTIONS, "dropping %d events ", numEventsDropped); |
Aravind Akella | 4c8b951 | 2013-09-05 17:03:38 -0700 | [diff] [blame] | 1406 | // Count flushComplete events in the events that are about to the dropped. These will be sent |
| 1407 | // separately before the next batch of events. |
| 1408 | for (int j = 0; j < numEventsDropped; ++j) { |
| 1409 | if (scratch[j].type == SENSOR_TYPE_META_DATA) { |
| 1410 | FlushInfo& flushInfo = mSensorInfo.editValueFor(scratch[j].meta_data.sensor); |
| 1411 | flushInfo.mPendingFlushEventsToSend++; |
| 1412 | ALOGD_IF(DEBUG_CONNECTIONS, "increment pendingFlushCount %d", |
| 1413 | flushInfo.mPendingFlushEventsToSend); |
| 1414 | } |
| 1415 | } |
| 1416 | return; |
| 1417 | } |
| 1418 | |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1419 | int SensorService::SensorEventConnection::findWakeUpSensorEventLocked( |
| 1420 | sensors_event_t const* scratch, const int count) { |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 1421 | for (int i = 0; i < count; ++i) { |
| 1422 | if (mService->isWakeUpSensorEvent(scratch[i])) { |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1423 | return i; |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 1424 | } |
| 1425 | } |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1426 | return -1; |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 1427 | } |
| 1428 | |
Mathias Agopian | b398927 | 2011-10-20 18:42:02 -0700 | [diff] [blame] | 1429 | sp<BitTube> SensorService::SensorEventConnection::getSensorChannel() const |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 1430 | { |
| 1431 | return mChannel; |
| 1432 | } |
| 1433 | |
| 1434 | status_t SensorService::SensorEventConnection::enableDisable( |
Aravind Akella | 724d91d | 2013-06-27 12:04:23 -0700 | [diff] [blame] | 1435 | int handle, bool enabled, nsecs_t samplingPeriodNs, nsecs_t maxBatchReportLatencyNs, |
| 1436 | int reservedFlags) |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 1437 | { |
| 1438 | status_t err; |
| 1439 | if (enabled) { |
Aravind Akella | 724d91d | 2013-06-27 12:04:23 -0700 | [diff] [blame] | 1440 | err = mService->enable(this, handle, samplingPeriodNs, maxBatchReportLatencyNs, |
| 1441 | reservedFlags); |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1442 | |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 1443 | } else { |
| 1444 | err = mService->disable(this, handle); |
| 1445 | } |
| 1446 | return err; |
| 1447 | } |
| 1448 | |
| 1449 | status_t SensorService::SensorEventConnection::setEventRate( |
Aravind Akella | 724d91d | 2013-06-27 12:04:23 -0700 | [diff] [blame] | 1450 | int handle, nsecs_t samplingPeriodNs) |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 1451 | { |
Aravind Akella | 724d91d | 2013-06-27 12:04:23 -0700 | [diff] [blame] | 1452 | return mService->setEventRate(this, handle, samplingPeriodNs); |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 1453 | } |
| 1454 | |
Aravind Akella | 701166d | 2013-10-08 14:59:26 -0700 | [diff] [blame] | 1455 | status_t SensorService::SensorEventConnection::flush() { |
Aravind Akella | 9e3adfc | 2014-09-03 15:48:05 -0700 | [diff] [blame] | 1456 | return mService->flushSensor(this); |
Aravind Akella | 724d91d | 2013-06-27 12:04:23 -0700 | [diff] [blame] | 1457 | } |
Aravind Akella | 4c8b951 | 2013-09-05 17:03:38 -0700 | [diff] [blame] | 1458 | |
Aravind Akella | 8a96955 | 2014-09-28 17:52:41 -0700 | [diff] [blame] | 1459 | int SensorService::SensorEventConnection::handleEvent(int fd, int events, void* /*data*/) { |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1460 | if (events & ALOOPER_EVENT_HANGUP || events & ALOOPER_EVENT_ERROR) { |
Aravind Akella | 8a96955 | 2014-09-28 17:52:41 -0700 | [diff] [blame] | 1461 | { |
| 1462 | // If the Looper encounters some error, set the flag mDead, reset mWakeLockRefCount, |
| 1463 | // and remove the fd from Looper. Call checkWakeLockState to know if SensorService |
| 1464 | // can release the wake-lock. |
| 1465 | ALOGD_IF(DEBUG_CONNECTIONS, "%p Looper error %d", this, fd); |
| 1466 | Mutex::Autolock _l(mConnectionLock); |
| 1467 | mDead = true; |
| 1468 | mWakeLockRefCount = 0; |
| 1469 | updateLooperRegistrationLocked(mService->getLooper()); |
| 1470 | } |
| 1471 | mService->checkWakeLockState(); |
| 1472 | return 1; |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1473 | } |
| 1474 | |
| 1475 | if (events & ALOOPER_EVENT_INPUT) { |
Aravind Akella | 8a96955 | 2014-09-28 17:52:41 -0700 | [diff] [blame] | 1476 | uint32_t numAcks = 0; |
| 1477 | ssize_t ret = ::recv(fd, &numAcks, sizeof(numAcks), MSG_DONTWAIT); |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1478 | { |
| 1479 | Mutex::Autolock _l(mConnectionLock); |
Aravind Akella | 8a96955 | 2014-09-28 17:52:41 -0700 | [diff] [blame] | 1480 | // Sanity check to ensure there are no read errors in recv, numAcks is always |
| 1481 | // within the range and not zero. If any of the above don't hold reset mWakeLockRefCount |
| 1482 | // to zero. |
| 1483 | if (ret != sizeof(numAcks) || numAcks > mWakeLockRefCount || numAcks == 0) { |
| 1484 | ALOGE("Looper read error ret=%d numAcks=%d", ret, numAcks); |
| 1485 | mWakeLockRefCount = 0; |
| 1486 | } else { |
| 1487 | mWakeLockRefCount -= numAcks; |
Aravind Akella | 0ec2066 | 2014-09-14 17:29:48 -0700 | [diff] [blame] | 1488 | } |
Aravind Akella | e74baf6 | 2014-08-21 12:28:35 -0700 | [diff] [blame] | 1489 | #if DEBUG_CONNECTIONS |
Aravind Akella | 8a96955 | 2014-09-28 17:52:41 -0700 | [diff] [blame] | 1490 | mTotalAcksReceived += numAcks; |
Aravind Akella | e74baf6 | 2014-08-21 12:28:35 -0700 | [diff] [blame] | 1491 | #endif |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1492 | } |
| 1493 | // Check if wakelock can be released by sensorservice. mConnectionLock needs to be released |
| 1494 | // here as checkWakeLockState() will need it. |
| 1495 | if (mWakeLockRefCount == 0) { |
| 1496 | mService->checkWakeLockState(); |
| 1497 | } |
| 1498 | // continue getting callbacks. |
| 1499 | return 1; |
| 1500 | } |
| 1501 | |
| 1502 | if (events & ALOOPER_EVENT_OUTPUT) { |
| 1503 | // send sensor data that is stored in mEventCache. |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 1504 | Mutex::Autolock _l(mConnectionLock); |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1505 | writeToSocketFromCacheLocked(); |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 1506 | } |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1507 | return 1; |
| 1508 | } |
| 1509 | |
| 1510 | int SensorService::SensorEventConnection::computeMaxCacheSizeLocked() const { |
| 1511 | int fifoWakeUpSensors = 0; |
| 1512 | int fifoNonWakeUpSensors = 0; |
| 1513 | for (size_t i = 0; i < mSensorInfo.size(); ++i) { |
| 1514 | const Sensor& sensor = mService->getSensorFromHandle(mSensorInfo.keyAt(i)); |
| 1515 | if (sensor.getFifoReservedEventCount() == sensor.getFifoMaxEventCount()) { |
| 1516 | // Each sensor has a reserved fifo. Sum up the fifo sizes for all wake up sensors and |
| 1517 | // non wake_up sensors. |
| 1518 | if (sensor.isWakeUpSensor()) { |
| 1519 | fifoWakeUpSensors += sensor.getFifoReservedEventCount(); |
| 1520 | } else { |
| 1521 | fifoNonWakeUpSensors += sensor.getFifoReservedEventCount(); |
| 1522 | } |
| 1523 | } else { |
| 1524 | // Shared fifo. Compute the max of the fifo sizes for wake_up and non_wake up sensors. |
| 1525 | if (sensor.isWakeUpSensor()) { |
| 1526 | fifoWakeUpSensors = fifoWakeUpSensors > sensor.getFifoMaxEventCount() ? |
| 1527 | fifoWakeUpSensors : sensor.getFifoMaxEventCount(); |
| 1528 | |
| 1529 | } else { |
| 1530 | fifoNonWakeUpSensors = fifoNonWakeUpSensors > sensor.getFifoMaxEventCount() ? |
| 1531 | fifoNonWakeUpSensors : sensor.getFifoMaxEventCount(); |
| 1532 | |
| 1533 | } |
| 1534 | } |
| 1535 | } |
| 1536 | if (fifoWakeUpSensors + fifoNonWakeUpSensors == 0) { |
| 1537 | // It is extremely unlikely that there is a write failure in non batch mode. Return a cache |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1538 | // size that is equal to that of the batch mode. |
Aravind Akella | e74baf6 | 2014-08-21 12:28:35 -0700 | [diff] [blame] | 1539 | // ALOGW("Write failure in non-batch mode"); |
Aravind Akella | 6c2664a | 2014-08-13 12:24:50 -0700 | [diff] [blame] | 1540 | return MAX_SOCKET_BUFFER_SIZE_BATCHED/sizeof(sensors_event_t); |
Aravind Akella | 56ae426 | 2014-07-10 16:01:10 -0700 | [diff] [blame] | 1541 | } |
| 1542 | return fifoWakeUpSensors + fifoNonWakeUpSensors; |
Aravind Akella | 9a844cf | 2014-02-11 18:58:52 -0800 | [diff] [blame] | 1543 | } |
| 1544 | |
Mathias Agopian | fc32881 | 2010-07-14 23:41:37 -0700 | [diff] [blame] | 1545 | // --------------------------------------------------------------------------- |
| 1546 | }; // namespace android |
| 1547 | |