Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 1 | /* |
| 2 | ** |
| 3 | ** Copyright (C) 2008, The Android Open Source Project |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 4 | ** |
| 5 | ** Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | ** you may not use this file except in compliance with the License. |
| 7 | ** You may obtain a copy of the License at |
| 8 | ** |
| 9 | ** http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | ** |
| 11 | ** Unless required by applicable law or agreed to in writing, software |
| 12 | ** distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | ** See the License for the specific language governing permissions and |
| 15 | ** limitations under the License. |
| 16 | */ |
| 17 | |
| 18 | #define LOG_TAG "CameraService" |
Iliyan Malchev | 8951a97 | 2011-04-14 16:55:59 -0700 | [diff] [blame] | 19 | //#define LOG_NDEBUG 0 |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 20 | |
| 21 | #include <stdio.h> |
| 22 | #include <sys/types.h> |
| 23 | #include <pthread.h> |
| 24 | |
| 25 | #include <binder/IPCThreadState.h> |
| 26 | #include <binder/IServiceManager.h> |
| 27 | #include <binder/MemoryBase.h> |
| 28 | #include <binder/MemoryHeapBase.h> |
| 29 | #include <cutils/atomic.h> |
Nipun Kwatra | b5ca461 | 2010-09-11 19:31:10 -0700 | [diff] [blame] | 30 | #include <cutils/properties.h> |
Mathias Agopian | df712ea | 2012-02-25 18:48:35 -0800 | [diff] [blame] | 31 | #include <gui/Surface.h> |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 32 | #include <hardware/hardware.h> |
| 33 | #include <media/AudioSystem.h> |
| 34 | #include <media/mediaplayer.h> |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 35 | #include <utils/Errors.h> |
| 36 | #include <utils/Log.h> |
| 37 | #include <utils/String16.h> |
| 38 | |
| 39 | #include "CameraService.h" |
Eino-Ville Talvala | 5e08d60 | 2012-05-16 14:59:25 -0700 | [diff] [blame] | 40 | #include "CameraClient.h" |
Eino-Ville Talvala | 61ab9f9 | 2012-05-17 10:30:54 -0700 | [diff] [blame] | 41 | #include "Camera2Client.h" |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 42 | |
| 43 | namespace android { |
| 44 | |
| 45 | // ---------------------------------------------------------------------------- |
| 46 | // Logging support -- this is for debugging only |
| 47 | // Use "adb shell dumpsys media.camera -v 1" to change it. |
Eino-Ville Talvala | 5e08d60 | 2012-05-16 14:59:25 -0700 | [diff] [blame] | 48 | volatile int32_t gLogLevel = 0; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 49 | |
Steve Block | b8a8052 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 50 | #define LOG1(...) ALOGD_IF(gLogLevel >= 1, __VA_ARGS__); |
| 51 | #define LOG2(...) ALOGD_IF(gLogLevel >= 2, __VA_ARGS__); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 52 | |
| 53 | static void setLogLevel(int level) { |
| 54 | android_atomic_write(level, &gLogLevel); |
| 55 | } |
| 56 | |
| 57 | // ---------------------------------------------------------------------------- |
| 58 | |
| 59 | static int getCallingPid() { |
| 60 | return IPCThreadState::self()->getCallingPid(); |
| 61 | } |
| 62 | |
| 63 | static int getCallingUid() { |
| 64 | return IPCThreadState::self()->getCallingUid(); |
| 65 | } |
| 66 | |
| 67 | // ---------------------------------------------------------------------------- |
| 68 | |
| 69 | // This is ugly and only safe if we never re-create the CameraService, but |
| 70 | // should be ok for now. |
| 71 | static CameraService *gCameraService; |
| 72 | |
| 73 | CameraService::CameraService() |
Iliyan Malchev | 8951a97 | 2011-04-14 16:55:59 -0700 | [diff] [blame] | 74 | :mSoundRef(0), mModule(0) |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 75 | { |
Steve Block | df64d15 | 2012-01-04 20:05:49 +0000 | [diff] [blame] | 76 | ALOGI("CameraService started (pid=%d)", getpid()); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 77 | gCameraService = this; |
| 78 | } |
| 79 | |
Iliyan Malchev | 8951a97 | 2011-04-14 16:55:59 -0700 | [diff] [blame] | 80 | void CameraService::onFirstRef() |
| 81 | { |
| 82 | BnCameraService::onFirstRef(); |
| 83 | |
| 84 | if (hw_get_module(CAMERA_HARDWARE_MODULE_ID, |
| 85 | (const hw_module_t **)&mModule) < 0) { |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 86 | ALOGE("Could not load camera HAL module"); |
Iliyan Malchev | 8951a97 | 2011-04-14 16:55:59 -0700 | [diff] [blame] | 87 | mNumberOfCameras = 0; |
| 88 | } |
| 89 | else { |
Alex Ray | c0dd54f | 2013-02-20 13:39:37 -0800 | [diff] [blame^] | 90 | ALOGI("Loaded \"%s\" camera module", mModule->common.name); |
Iliyan Malchev | 8951a97 | 2011-04-14 16:55:59 -0700 | [diff] [blame] | 91 | mNumberOfCameras = mModule->get_number_of_cameras(); |
| 92 | if (mNumberOfCameras > MAX_CAMERAS) { |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 93 | ALOGE("Number of cameras(%d) > MAX_CAMERAS(%d).", |
Iliyan Malchev | 8951a97 | 2011-04-14 16:55:59 -0700 | [diff] [blame] | 94 | mNumberOfCameras, MAX_CAMERAS); |
| 95 | mNumberOfCameras = MAX_CAMERAS; |
| 96 | } |
| 97 | for (int i = 0; i < mNumberOfCameras; i++) { |
| 98 | setCameraFree(i); |
| 99 | } |
| 100 | } |
| 101 | } |
| 102 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 103 | CameraService::~CameraService() { |
| 104 | for (int i = 0; i < mNumberOfCameras; i++) { |
| 105 | if (mBusy[i]) { |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 106 | ALOGE("camera %d is still in use in destructor!", i); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 107 | } |
| 108 | } |
| 109 | |
| 110 | gCameraService = NULL; |
| 111 | } |
| 112 | |
| 113 | int32_t CameraService::getNumberOfCameras() { |
| 114 | return mNumberOfCameras; |
| 115 | } |
| 116 | |
| 117 | status_t CameraService::getCameraInfo(int cameraId, |
| 118 | struct CameraInfo* cameraInfo) { |
Iliyan Malchev | 8951a97 | 2011-04-14 16:55:59 -0700 | [diff] [blame] | 119 | if (!mModule) { |
| 120 | return NO_INIT; |
| 121 | } |
| 122 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 123 | if (cameraId < 0 || cameraId >= mNumberOfCameras) { |
| 124 | return BAD_VALUE; |
| 125 | } |
| 126 | |
Iliyan Malchev | 8951a97 | 2011-04-14 16:55:59 -0700 | [diff] [blame] | 127 | struct camera_info info; |
| 128 | status_t rc = mModule->get_camera_info(cameraId, &info); |
| 129 | cameraInfo->facing = info.facing; |
| 130 | cameraInfo->orientation = info.orientation; |
| 131 | return rc; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | sp<ICamera> CameraService::connect( |
Wu-cheng Li | 08ad5ef | 2012-04-19 12:35:00 +0800 | [diff] [blame] | 135 | const sp<ICameraClient>& cameraClient, int cameraId) { |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 136 | int callingPid = getCallingPid(); |
Tyler Luu | 5861a9a | 2011-10-06 00:00:03 -0500 | [diff] [blame] | 137 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 138 | LOG1("CameraService::connect E (pid %d, id %d)", callingPid, cameraId); |
| 139 | |
Iliyan Malchev | 8951a97 | 2011-04-14 16:55:59 -0700 | [diff] [blame] | 140 | if (!mModule) { |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 141 | ALOGE("Camera HAL module not loaded"); |
Iliyan Malchev | 8951a97 | 2011-04-14 16:55:59 -0700 | [diff] [blame] | 142 | return NULL; |
| 143 | } |
| 144 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 145 | sp<Client> client; |
| 146 | if (cameraId < 0 || cameraId >= mNumberOfCameras) { |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 147 | ALOGE("CameraService::connect X (pid %d) rejected (invalid cameraId %d).", |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 148 | callingPid, cameraId); |
| 149 | return NULL; |
| 150 | } |
| 151 | |
Wu-cheng Li | a335543 | 2011-05-20 14:54:25 +0800 | [diff] [blame] | 152 | char value[PROPERTY_VALUE_MAX]; |
| 153 | property_get("sys.secpolicy.camera.disabled", value, "0"); |
| 154 | if (strcmp(value, "1") == 0) { |
| 155 | // Camera is disabled by DevicePolicyManager. |
Steve Block | df64d15 | 2012-01-04 20:05:49 +0000 | [diff] [blame] | 156 | ALOGI("Camera is disabled. connect X (pid %d) rejected", callingPid); |
Wu-cheng Li | a335543 | 2011-05-20 14:54:25 +0800 | [diff] [blame] | 157 | return NULL; |
| 158 | } |
| 159 | |
Wu-cheng Li | 2fd2440 | 2012-02-23 19:01:00 -0800 | [diff] [blame] | 160 | Mutex::Autolock lock(mServiceLock); |
Wu-cheng Li | 08ad5ef | 2012-04-19 12:35:00 +0800 | [diff] [blame] | 161 | if (mClient[cameraId] != 0) { |
| 162 | client = mClient[cameraId].promote(); |
| 163 | if (client != 0) { |
| 164 | if (cameraClient->asBinder() == client->getCameraClient()->asBinder()) { |
| 165 | LOG1("CameraService::connect X (pid %d) (the same client)", |
| 166 | callingPid); |
| 167 | return client; |
| 168 | } else { |
| 169 | ALOGW("CameraService::connect X (pid %d) rejected (existing client).", |
| 170 | callingPid); |
Wu-cheng Li | 2fd2440 | 2012-02-23 19:01:00 -0800 | [diff] [blame] | 171 | return NULL; |
| 172 | } |
Wu-cheng Li | 2fd2440 | 2012-02-23 19:01:00 -0800 | [diff] [blame] | 173 | } |
Wu-cheng Li | 08ad5ef | 2012-04-19 12:35:00 +0800 | [diff] [blame] | 174 | mClient[cameraId].clear(); |
| 175 | } |
| 176 | |
| 177 | if (mBusy[cameraId]) { |
| 178 | ALOGW("CameraService::connect X (pid %d) rejected" |
| 179 | " (camera %d is still busy).", callingPid, cameraId); |
| 180 | return NULL; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 181 | } |
| 182 | |
Iliyan Malchev | 8951a97 | 2011-04-14 16:55:59 -0700 | [diff] [blame] | 183 | struct camera_info info; |
| 184 | if (mModule->get_camera_info(cameraId, &info) != OK) { |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 185 | ALOGE("Invalid camera id %d", cameraId); |
Wu-cheng Li | b7a6794 | 2010-08-17 15:45:37 -0700 | [diff] [blame] | 186 | return NULL; |
| 187 | } |
Iliyan Malchev | 8951a97 | 2011-04-14 16:55:59 -0700 | [diff] [blame] | 188 | |
Eino-Ville Talvala | 61ab9f9 | 2012-05-17 10:30:54 -0700 | [diff] [blame] | 189 | int deviceVersion; |
| 190 | if (mModule->common.module_api_version == CAMERA_MODULE_API_VERSION_2_0) { |
| 191 | deviceVersion = info.device_version; |
| 192 | } else { |
| 193 | deviceVersion = CAMERA_DEVICE_API_VERSION_1_0; |
| 194 | } |
| 195 | |
| 196 | switch(deviceVersion) { |
Eino-Ville Talvala | f69c70d | 2012-05-20 15:59:14 -0700 | [diff] [blame] | 197 | case CAMERA_DEVICE_API_VERSION_1_0: |
| 198 | client = new CameraClient(this, cameraClient, cameraId, |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 199 | info.facing, callingPid, getpid()); |
Eino-Ville Talvala | 61ab9f9 | 2012-05-17 10:30:54 -0700 | [diff] [blame] | 200 | break; |
Eino-Ville Talvala | f69c70d | 2012-05-20 15:59:14 -0700 | [diff] [blame] | 201 | case CAMERA_DEVICE_API_VERSION_2_0: |
| 202 | client = new Camera2Client(this, cameraClient, cameraId, |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 203 | info.facing, callingPid, getpid()); |
Eino-Ville Talvala | 61ab9f9 | 2012-05-17 10:30:54 -0700 | [diff] [blame] | 204 | break; |
Eino-Ville Talvala | f69c70d | 2012-05-20 15:59:14 -0700 | [diff] [blame] | 205 | default: |
Eino-Ville Talvala | 61ab9f9 | 2012-05-17 10:30:54 -0700 | [diff] [blame] | 206 | ALOGE("Unknown camera device HAL version: %d", deviceVersion); |
Tyler Luu | 5861a9a | 2011-10-06 00:00:03 -0500 | [diff] [blame] | 207 | return NULL; |
| 208 | } |
| 209 | |
Eino-Ville Talvala | f69c70d | 2012-05-20 15:59:14 -0700 | [diff] [blame] | 210 | if (client->initialize(mModule) != OK) { |
| 211 | return NULL; |
| 212 | } |
| 213 | |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 214 | cameraClient->asBinder()->linkToDeath(this); |
| 215 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 216 | mClient[cameraId] = client; |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 217 | LOG1("CameraService::connect X (id %d, this pid is %d)", cameraId, getpid()); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 218 | return client; |
| 219 | } |
| 220 | |
| 221 | void CameraService::removeClient(const sp<ICameraClient>& cameraClient) { |
| 222 | int callingPid = getCallingPid(); |
| 223 | LOG1("CameraService::removeClient E (pid %d)", callingPid); |
| 224 | |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 225 | // Declare this before the lock to make absolutely sure the |
| 226 | // destructor won't be called with the lock held. |
| 227 | Mutex::Autolock lock(mServiceLock); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 228 | |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 229 | int outIndex; |
Igor Murashkin | 294d0ec | 2012-10-05 10:44:57 -0700 | [diff] [blame] | 230 | sp<Client> client = findClientUnsafe(cameraClient->asBinder(), outIndex); |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 231 | |
| 232 | if (client != 0) { |
| 233 | // Found our camera, clear and leave. |
| 234 | LOG1("removeClient: clear camera %d", outIndex); |
| 235 | mClient[outIndex].clear(); |
| 236 | |
| 237 | client->unlinkToDeath(this); |
| 238 | } |
| 239 | |
| 240 | LOG1("CameraService::removeClient X (pid %d)", callingPid); |
| 241 | } |
| 242 | |
| 243 | sp<CameraService::Client> CameraService::findClientUnsafe( |
Igor Murashkin | 294d0ec | 2012-10-05 10:44:57 -0700 | [diff] [blame] | 244 | const wp<IBinder>& cameraClient, int& outIndex) { |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 245 | sp<Client> client; |
| 246 | |
| 247 | for (int i = 0; i < mNumberOfCameras; i++) { |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 248 | |
| 249 | // This happens when we have already disconnected (or this is |
| 250 | // just another unused camera). |
| 251 | if (mClient[i] == 0) continue; |
| 252 | |
| 253 | // Promote mClient. It can fail if we are called from this path: |
| 254 | // Client::~Client() -> disconnect() -> removeClient(). |
| 255 | client = mClient[i].promote(); |
| 256 | |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 257 | // Clean up stale client entry |
| 258 | if (client == NULL) { |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 259 | mClient[i].clear(); |
| 260 | continue; |
| 261 | } |
| 262 | |
Igor Murashkin | 294d0ec | 2012-10-05 10:44:57 -0700 | [diff] [blame] | 263 | if (cameraClient == client->getCameraClient()->asBinder()) { |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 264 | // Found our camera |
| 265 | outIndex = i; |
| 266 | return client; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 267 | } |
| 268 | } |
| 269 | |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 270 | outIndex = -1; |
| 271 | return NULL; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 272 | } |
| 273 | |
Keun young Park | d8973a7 | 2012-03-28 14:13:09 -0700 | [diff] [blame] | 274 | CameraService::Client* CameraService::getClientByIdUnsafe(int cameraId) { |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 275 | if (cameraId < 0 || cameraId >= mNumberOfCameras) return NULL; |
Keun young Park | d8973a7 | 2012-03-28 14:13:09 -0700 | [diff] [blame] | 276 | return mClient[cameraId].unsafe_get(); |
| 277 | } |
| 278 | |
| 279 | Mutex* CameraService::getClientLockById(int cameraId) { |
| 280 | if (cameraId < 0 || cameraId >= mNumberOfCameras) return NULL; |
| 281 | return &mClientLock[cameraId]; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 282 | } |
| 283 | |
Igor Murashkin | 294d0ec | 2012-10-05 10:44:57 -0700 | [diff] [blame] | 284 | sp<CameraService::Client> CameraService::getClientByRemote( |
| 285 | const wp<IBinder>& cameraClient) { |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 286 | |
| 287 | // Declare this before the lock to make absolutely sure the |
| 288 | // destructor won't be called with the lock held. |
| 289 | sp<Client> client; |
| 290 | |
| 291 | Mutex::Autolock lock(mServiceLock); |
| 292 | |
| 293 | int outIndex; |
| 294 | client = findClientUnsafe(cameraClient, outIndex); |
| 295 | |
| 296 | return client; |
| 297 | } |
| 298 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 299 | status_t CameraService::onTransact( |
| 300 | uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) { |
| 301 | // Permission checks |
| 302 | switch (code) { |
| 303 | case BnCameraService::CONNECT: |
| 304 | const int pid = getCallingPid(); |
| 305 | const int self_pid = getpid(); |
| 306 | if (pid != self_pid) { |
| 307 | // we're called from a different process, do the real check |
| 308 | if (!checkCallingPermission( |
| 309 | String16("android.permission.CAMERA"))) { |
| 310 | const int uid = getCallingUid(); |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 311 | ALOGE("Permission Denial: " |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 312 | "can't use the camera pid=%d, uid=%d", pid, uid); |
| 313 | return PERMISSION_DENIED; |
| 314 | } |
| 315 | } |
| 316 | break; |
| 317 | } |
| 318 | |
| 319 | return BnCameraService::onTransact(code, data, reply, flags); |
| 320 | } |
| 321 | |
| 322 | // The reason we need this busy bit is a new CameraService::connect() request |
| 323 | // may come in while the previous Client's destructor has not been run or is |
| 324 | // still running. If the last strong reference of the previous Client is gone |
| 325 | // but the destructor has not been finished, we should not allow the new Client |
| 326 | // to be created because we need to wait for the previous Client to tear down |
| 327 | // the hardware first. |
| 328 | void CameraService::setCameraBusy(int cameraId) { |
| 329 | android_atomic_write(1, &mBusy[cameraId]); |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 330 | |
| 331 | ALOGV("setCameraBusy cameraId=%d", cameraId); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 332 | } |
| 333 | |
| 334 | void CameraService::setCameraFree(int cameraId) { |
| 335 | android_atomic_write(0, &mBusy[cameraId]); |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 336 | |
| 337 | ALOGV("setCameraFree cameraId=%d", cameraId); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 338 | } |
| 339 | |
| 340 | // We share the media players for shutter and recording sound for all clients. |
| 341 | // A reference count is kept to determine when we will actually release the |
| 342 | // media players. |
| 343 | |
Chih-Chung Chang | ff4f55c | 2011-10-17 19:03:12 +0800 | [diff] [blame] | 344 | MediaPlayer* CameraService::newMediaPlayer(const char *file) { |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 345 | MediaPlayer* mp = new MediaPlayer(); |
| 346 | if (mp->setDataSource(file, NULL) == NO_ERROR) { |
Eino-Ville Talvala | 60a78ac | 2012-01-05 15:34:53 -0800 | [diff] [blame] | 347 | mp->setAudioStreamType(AUDIO_STREAM_ENFORCED_AUDIBLE); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 348 | mp->prepare(); |
| 349 | } else { |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 350 | ALOGE("Failed to load CameraService sounds: %s", file); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 351 | return NULL; |
| 352 | } |
| 353 | return mp; |
| 354 | } |
| 355 | |
| 356 | void CameraService::loadSound() { |
| 357 | Mutex::Autolock lock(mSoundLock); |
| 358 | LOG1("CameraService::loadSound ref=%d", mSoundRef); |
| 359 | if (mSoundRef++) return; |
| 360 | |
| 361 | mSoundPlayer[SOUND_SHUTTER] = newMediaPlayer("/system/media/audio/ui/camera_click.ogg"); |
| 362 | mSoundPlayer[SOUND_RECORDING] = newMediaPlayer("/system/media/audio/ui/VideoRecord.ogg"); |
| 363 | } |
| 364 | |
| 365 | void CameraService::releaseSound() { |
| 366 | Mutex::Autolock lock(mSoundLock); |
| 367 | LOG1("CameraService::releaseSound ref=%d", mSoundRef); |
| 368 | if (--mSoundRef) return; |
| 369 | |
| 370 | for (int i = 0; i < NUM_SOUNDS; i++) { |
| 371 | if (mSoundPlayer[i] != 0) { |
| 372 | mSoundPlayer[i]->disconnect(); |
| 373 | mSoundPlayer[i].clear(); |
| 374 | } |
| 375 | } |
| 376 | } |
| 377 | |
| 378 | void CameraService::playSound(sound_kind kind) { |
| 379 | LOG1("playSound(%d)", kind); |
| 380 | Mutex::Autolock lock(mSoundLock); |
| 381 | sp<MediaPlayer> player = mSoundPlayer[kind]; |
| 382 | if (player != 0) { |
Chih-Chung Chang | 8888a75 | 2011-10-20 10:47:26 +0800 | [diff] [blame] | 383 | player->seekTo(0); |
| 384 | player->start(); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 385 | } |
| 386 | } |
| 387 | |
| 388 | // ---------------------------------------------------------------------------- |
| 389 | |
| 390 | CameraService::Client::Client(const sp<CameraService>& cameraService, |
Wu-cheng Li | b7a6794 | 2010-08-17 15:45:37 -0700 | [diff] [blame] | 391 | const sp<ICameraClient>& cameraClient, |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 392 | int cameraId, int cameraFacing, int clientPid, int servicePid) { |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 393 | int callingPid = getCallingPid(); |
Wu-cheng Li | 2fd2440 | 2012-02-23 19:01:00 -0800 | [diff] [blame] | 394 | LOG1("Client::Client E (pid %d, id %d)", callingPid, cameraId); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 395 | |
| 396 | mCameraService = cameraService; |
| 397 | mCameraClient = cameraClient; |
| 398 | mCameraId = cameraId; |
Wu-cheng Li | e09591e | 2010-10-14 20:17:44 +0800 | [diff] [blame] | 399 | mCameraFacing = cameraFacing; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 400 | mClientPid = clientPid; |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 401 | mServicePid = servicePid; |
Keun young Park | d8973a7 | 2012-03-28 14:13:09 -0700 | [diff] [blame] | 402 | mDestructionStarted = false; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 403 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 404 | cameraService->setCameraBusy(cameraId); |
| 405 | cameraService->loadSound(); |
Wu-cheng Li | 2fd2440 | 2012-02-23 19:01:00 -0800 | [diff] [blame] | 406 | LOG1("Client::Client X (pid %d, id %d)", callingPid, cameraId); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 407 | } |
| 408 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 409 | // tear down the client |
| 410 | CameraService::Client::~Client() { |
Eino-Ville Talvala | f69c70d | 2012-05-20 15:59:14 -0700 | [diff] [blame] | 411 | mCameraService->releaseSound(); |
Igor Murashkin | 036bc3e | 2012-10-08 15:09:46 -0700 | [diff] [blame] | 412 | |
| 413 | // unconditionally disconnect. function is idempotent |
| 414 | Client::disconnect(); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 415 | } |
| 416 | |
| 417 | // ---------------------------------------------------------------------------- |
| 418 | |
Keun young Park | d8973a7 | 2012-03-28 14:13:09 -0700 | [diff] [blame] | 419 | Mutex* CameraService::Client::getClientLockFromCookie(void* user) { |
| 420 | return gCameraService->getClientLockById((int) user); |
| 421 | } |
| 422 | |
| 423 | // Provide client pointer for callbacks. Client lock returned from getClientLockFromCookie should |
| 424 | // be acquired for this to be safe |
| 425 | CameraService::Client* CameraService::Client::getClientFromCookie(void* user) { |
| 426 | Client* client = gCameraService->getClientByIdUnsafe((int) user); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 427 | |
| 428 | // This could happen if the Client is in the process of shutting down (the |
| 429 | // last strong reference is gone, but the destructor hasn't finished |
| 430 | // stopping the hardware). |
Keun young Park | d8973a7 | 2012-03-28 14:13:09 -0700 | [diff] [blame] | 431 | if (client == NULL) return NULL; |
| 432 | |
| 433 | // destruction already started, so should not be accessed |
| 434 | if (client->mDestructionStarted) return NULL; |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 435 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 436 | return client; |
| 437 | } |
| 438 | |
Igor Murashkin | 036bc3e | 2012-10-08 15:09:46 -0700 | [diff] [blame] | 439 | // NOTE: function is idempotent |
Eino-Ville Talvala | 5e08d60 | 2012-05-16 14:59:25 -0700 | [diff] [blame] | 440 | void CameraService::Client::disconnect() { |
| 441 | mCameraService->removeClient(mCameraClient); |
| 442 | mCameraService->setCameraFree(mCameraId); |
Wu-cheng Li | e09591e | 2010-10-14 20:17:44 +0800 | [diff] [blame] | 443 | } |
| 444 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 445 | // ---------------------------------------------------------------------------- |
| 446 | |
| 447 | static const int kDumpLockRetries = 50; |
| 448 | static const int kDumpLockSleep = 60000; |
| 449 | |
| 450 | static bool tryLock(Mutex& mutex) |
| 451 | { |
| 452 | bool locked = false; |
| 453 | for (int i = 0; i < kDumpLockRetries; ++i) { |
| 454 | if (mutex.tryLock() == NO_ERROR) { |
| 455 | locked = true; |
| 456 | break; |
| 457 | } |
| 458 | usleep(kDumpLockSleep); |
| 459 | } |
| 460 | return locked; |
| 461 | } |
| 462 | |
| 463 | status_t CameraService::dump(int fd, const Vector<String16>& args) { |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 464 | String8 result; |
| 465 | if (checkCallingPermission(String16("android.permission.DUMP")) == false) { |
Eino-Ville Talvala | 611f619 | 2012-05-31 12:28:23 -0700 | [diff] [blame] | 466 | result.appendFormat("Permission Denial: " |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 467 | "can't dump CameraService from pid=%d, uid=%d\n", |
| 468 | getCallingPid(), |
| 469 | getCallingUid()); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 470 | write(fd, result.string(), result.size()); |
| 471 | } else { |
| 472 | bool locked = tryLock(mServiceLock); |
| 473 | // failed to lock - CameraService is probably deadlocked |
| 474 | if (!locked) { |
Eino-Ville Talvala | 611f619 | 2012-05-31 12:28:23 -0700 | [diff] [blame] | 475 | result.append("CameraService may be deadlocked\n"); |
Eino-Ville Talvala | f592613 | 2012-07-17 13:54:20 -0700 | [diff] [blame] | 476 | write(fd, result.string(), result.size()); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 477 | } |
| 478 | |
| 479 | bool hasClient = false; |
Eino-Ville Talvala | f592613 | 2012-07-17 13:54:20 -0700 | [diff] [blame] | 480 | if (!mModule) { |
| 481 | result = String8::format("No camera module available!\n"); |
| 482 | write(fd, result.string(), result.size()); |
| 483 | return NO_ERROR; |
| 484 | } |
| 485 | |
| 486 | result = String8::format("Camera module HAL API version: 0x%x\n", |
| 487 | mModule->common.hal_api_version); |
| 488 | result.appendFormat("Camera module API version: 0x%x\n", |
| 489 | mModule->common.module_api_version); |
| 490 | result.appendFormat("Camera module name: %s\n", |
| 491 | mModule->common.name); |
| 492 | result.appendFormat("Camera module author: %s\n", |
| 493 | mModule->common.author); |
| 494 | result.appendFormat("Number of camera devices: %d\n\n", mNumberOfCameras); |
| 495 | write(fd, result.string(), result.size()); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 496 | for (int i = 0; i < mNumberOfCameras; i++) { |
Eino-Ville Talvala | f592613 | 2012-07-17 13:54:20 -0700 | [diff] [blame] | 497 | result = String8::format("Camera %d static information:\n", i); |
| 498 | camera_info info; |
| 499 | |
| 500 | status_t rc = mModule->get_camera_info(i, &info); |
| 501 | if (rc != OK) { |
| 502 | result.appendFormat(" Error reading static information!\n"); |
| 503 | write(fd, result.string(), result.size()); |
| 504 | } else { |
| 505 | result.appendFormat(" Facing: %s\n", |
| 506 | info.facing == CAMERA_FACING_BACK ? "BACK" : "FRONT"); |
| 507 | result.appendFormat(" Orientation: %d\n", info.orientation); |
| 508 | int deviceVersion; |
| 509 | if (mModule->common.module_api_version < |
| 510 | CAMERA_MODULE_API_VERSION_2_0) { |
| 511 | deviceVersion = CAMERA_DEVICE_API_VERSION_1_0; |
| 512 | } else { |
| 513 | deviceVersion = info.device_version; |
| 514 | } |
| 515 | result.appendFormat(" Device version: 0x%x\n", deviceVersion); |
| 516 | if (deviceVersion >= CAMERA_DEVICE_API_VERSION_2_0) { |
| 517 | result.appendFormat(" Device static metadata:\n"); |
| 518 | write(fd, result.string(), result.size()); |
Eino-Ville Talvala | 428b77a | 2012-07-30 09:55:30 -0700 | [diff] [blame] | 519 | dump_indented_camera_metadata(info.static_camera_characteristics, |
| 520 | fd, 2, 4); |
Eino-Ville Talvala | f592613 | 2012-07-17 13:54:20 -0700 | [diff] [blame] | 521 | } else { |
| 522 | write(fd, result.string(), result.size()); |
| 523 | } |
| 524 | } |
| 525 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 526 | sp<Client> client = mClient[i].promote(); |
Eino-Ville Talvala | f592613 | 2012-07-17 13:54:20 -0700 | [diff] [blame] | 527 | if (client == 0) { |
| 528 | result = String8::format(" Device is closed, no client instance\n"); |
| 529 | write(fd, result.string(), result.size()); |
| 530 | continue; |
| 531 | } |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 532 | hasClient = true; |
Eino-Ville Talvala | f592613 | 2012-07-17 13:54:20 -0700 | [diff] [blame] | 533 | result = String8::format(" Device is open. Client instance dump:\n"); |
| 534 | write(fd, result.string(), result.size()); |
Eino-Ville Talvala | 5e08d60 | 2012-05-16 14:59:25 -0700 | [diff] [blame] | 535 | client->dump(fd, args); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 536 | } |
| 537 | if (!hasClient) { |
Eino-Ville Talvala | f592613 | 2012-07-17 13:54:20 -0700 | [diff] [blame] | 538 | result = String8::format("\nNo active camera clients yet.\n"); |
| 539 | write(fd, result.string(), result.size()); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 540 | } |
| 541 | |
| 542 | if (locked) mServiceLock.unlock(); |
| 543 | |
| 544 | // change logging level |
| 545 | int n = args.size(); |
| 546 | for (int i = 0; i + 1 < n; i++) { |
Eino-Ville Talvala | 611f619 | 2012-05-31 12:28:23 -0700 | [diff] [blame] | 547 | String16 verboseOption("-v"); |
| 548 | if (args[i] == verboseOption) { |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 549 | String8 levelStr(args[i+1]); |
| 550 | int level = atoi(levelStr.string()); |
Eino-Ville Talvala | f592613 | 2012-07-17 13:54:20 -0700 | [diff] [blame] | 551 | result = String8::format("\nSetting log level to %d.\n", level); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 552 | setLogLevel(level); |
Eino-Ville Talvala | f592613 | 2012-07-17 13:54:20 -0700 | [diff] [blame] | 553 | write(fd, result.string(), result.size()); |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 554 | } |
| 555 | } |
Eino-Ville Talvala | f592613 | 2012-07-17 13:54:20 -0700 | [diff] [blame] | 556 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 557 | } |
| 558 | return NO_ERROR; |
| 559 | } |
| 560 | |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 561 | /*virtual*/void CameraService::binderDied( |
| 562 | const wp<IBinder> &who) { |
| 563 | |
Igor Murashkin | 294d0ec | 2012-10-05 10:44:57 -0700 | [diff] [blame] | 564 | /** |
| 565 | * While tempting to promote the wp<IBinder> into a sp, |
| 566 | * it's actually not supported by the binder driver |
| 567 | */ |
| 568 | |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 569 | ALOGV("java clients' binder died"); |
| 570 | |
Igor Murashkin | 294d0ec | 2012-10-05 10:44:57 -0700 | [diff] [blame] | 571 | sp<Client> cameraClient = getClientByRemote(who); |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 572 | |
Igor Murashkin | 294d0ec | 2012-10-05 10:44:57 -0700 | [diff] [blame] | 573 | if (cameraClient == 0) { |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 574 | ALOGV("java clients' binder death already cleaned up (normal case)"); |
| 575 | return; |
| 576 | } |
| 577 | |
Igor Murashkin | ecf17e8 | 2012-10-02 16:05:11 -0700 | [diff] [blame] | 578 | ALOGW("Disconnecting camera client %p since the binder for it " |
| 579 | "died (this pid %d)", cameraClient.get(), getCallingPid()); |
| 580 | |
| 581 | cameraClient->disconnect(); |
| 582 | |
| 583 | } |
| 584 | |
Mathias Agopian | 65ab471 | 2010-07-14 17:59:35 -0700 | [diff] [blame] | 585 | }; // namespace android |