blob: 85f44f00aa51cd889627545a39b36f44350b9d08 [file] [log] [blame]
Mathias Agopian3cf61352010-02-09 17:46:37 -08001/*
2**
3** Copyright (C) 2008, The Android Open Source Project
Mathias Agopian3cf61352010-02-09 17:46:37 -08004**
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_NDEBUG 0
19#define LOG_TAG "Camera"
20#include <utils/Log.h>
21#include <utils/threads.h>
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -080022#include <utils/String16.h>
Wu-cheng Li4ca2c7c2011-06-01 17:22:24 +080023#include <binder/IPCThreadState.h>
Mathias Agopian3cf61352010-02-09 17:46:37 -080024#include <binder/IServiceManager.h>
25#include <binder/IMemory.h>
26
27#include <camera/Camera.h>
Wu-cheng Li4ca2c7c2011-06-01 17:22:24 +080028#include <camera/ICameraRecordingProxyListener.h>
Mathias Agopian3cf61352010-02-09 17:46:37 -080029#include <camera/ICameraService.h>
Igor Murashkinc073ba52013-02-26 14:32:34 -080030#include <camera/ICamera.h>
Mathias Agopian3cf61352010-02-09 17:46:37 -080031
Andy McFadden8ba01022012-12-18 09:46:54 -080032#include <gui/IGraphicBufferProducer.h>
Mathias Agopiandf712ea2012-02-25 18:48:35 -080033#include <gui/Surface.h>
Mathias Agopian3cf61352010-02-09 17:46:37 -080034
35namespace android {
36
Igor Murashkinc073ba52013-02-26 14:32:34 -080037Camera::Camera(int cameraId)
38 : CameraBase(cameraId)
Mathias Agopian3cf61352010-02-09 17:46:37 -080039{
Mathias Agopian3cf61352010-02-09 17:46:37 -080040}
41
Ruben Brunk0f61d8f2013-08-08 13:07:18 -070042CameraTraits<Camera>::TCamConnectService CameraTraits<Camera>::fnConnectService =
43 &ICameraService::connect;
44
Mathias Agopian3cf61352010-02-09 17:46:37 -080045// construct a camera client from an existing camera remote
46sp<Camera> Camera::create(const sp<ICamera>& camera)
47{
Steve Block3856b092011-10-20 11:56:00 +010048 ALOGV("create");
Mathias Agopian3cf61352010-02-09 17:46:37 -080049 if (camera == 0) {
Steve Block29357bc2012-01-06 19:20:56 +000050 ALOGE("camera remote is a NULL pointer");
Mathias Agopian3cf61352010-02-09 17:46:37 -080051 return 0;
52 }
53
Igor Murashkinc073ba52013-02-26 14:32:34 -080054 sp<Camera> c = new Camera(-1);
Mathias Agopian3cf61352010-02-09 17:46:37 -080055 if (camera->connect(c) == NO_ERROR) {
56 c->mStatus = NO_ERROR;
57 c->mCamera = camera;
58 camera->asBinder()->linkToDeath(c);
Wu-cheng Li627baac2011-01-04 20:00:55 +080059 return c;
Mathias Agopian3cf61352010-02-09 17:46:37 -080060 }
Wu-cheng Li627baac2011-01-04 20:00:55 +080061 return 0;
Mathias Agopian3cf61352010-02-09 17:46:37 -080062}
63
Mathias Agopian3cf61352010-02-09 17:46:37 -080064Camera::~Camera()
65{
Chih-Chung Changd06618e2010-05-13 15:14:24 +080066 // We don't need to call disconnect() here because if the CameraService
67 // thinks we are the owner of the hardware, it will hold a (strong)
68 // reference to us, and we can't possibly be here. We also don't want to
69 // call disconnect() here if we are in the same process as mediaserver,
70 // because we may be invoked by CameraService::Client::connect() and will
71 // deadlock if we call any method of ICamera here.
Mathias Agopian3cf61352010-02-09 17:46:37 -080072}
73
Eino-Ville Talvalaceb388d2013-02-19 10:40:14 -080074sp<Camera> Camera::connect(int cameraId, const String16& clientPackageName,
75 int clientUid)
Mathias Agopian3cf61352010-02-09 17:46:37 -080076{
Igor Murashkinc073ba52013-02-26 14:32:34 -080077 return CameraBaseT::connect(cameraId, clientPackageName, clientUid);
Mathias Agopian3cf61352010-02-09 17:46:37 -080078}
79
Zhijun Heb10cdad2014-06-16 16:38:35 -070080status_t Camera::connectLegacy(int cameraId, int halVersion,
81 const String16& clientPackageName,
82 int clientUid,
83 sp<Camera>& camera)
84{
85 ALOGV("%s: connect legacy camera device", __FUNCTION__);
86 sp<Camera> c = new Camera(cameraId);
87 sp<ICameraClient> cl = c;
88 status_t status = NO_ERROR;
89 const sp<ICameraService>& cs = CameraBaseT::getCameraService();
90
91 if (cs != 0) {
92 status = cs.get()->connectLegacy(cl, cameraId, halVersion, clientPackageName,
93 clientUid, /*out*/c->mCamera);
94 }
95 if (status == OK && c->mCamera != 0) {
96 c->mCamera->asBinder()->linkToDeath(c);
97 c->mStatus = NO_ERROR;
98 camera = c;
99 } else {
100 ALOGW("An error occurred while connecting to camera: %d", cameraId);
101 c.clear();
102 }
103 return status;
104}
105
Mathias Agopian3cf61352010-02-09 17:46:37 -0800106status_t Camera::reconnect()
107{
Steve Block3856b092011-10-20 11:56:00 +0100108 ALOGV("reconnect");
Mathias Agopian3cf61352010-02-09 17:46:37 -0800109 sp <ICamera> c = mCamera;
110 if (c == 0) return NO_INIT;
111 return c->connect(this);
112}
113
Mathias Agopian3cf61352010-02-09 17:46:37 -0800114status_t Camera::lock()
115{
116 sp <ICamera> c = mCamera;
117 if (c == 0) return NO_INIT;
118 return c->lock();
119}
120
121status_t Camera::unlock()
122{
123 sp <ICamera> c = mCamera;
124 if (c == 0) return NO_INIT;
125 return c->unlock();
126}
127
Andy McFadden8ba01022012-12-18 09:46:54 -0800128// pass the buffered IGraphicBufferProducer to the camera service
Eino-Ville Talvala4b820b02013-08-21 14:39:05 -0700129status_t Camera::setPreviewTarget(const sp<IGraphicBufferProducer>& bufferProducer)
Jamie Gennisbfa33aa2010-12-20 11:51:31 -0800130{
Eino-Ville Talvala4b820b02013-08-21 14:39:05 -0700131 ALOGV("setPreviewTarget(%p)", bufferProducer.get());
Jamie Gennisbfa33aa2010-12-20 11:51:31 -0800132 sp <ICamera> c = mCamera;
133 if (c == 0) return NO_INIT;
Mathias Agopian99617ad2013-03-12 18:42:23 -0700134 ALOGD_IF(bufferProducer == 0, "app passed NULL surface");
Eino-Ville Talvala1ce7c342013-08-21 13:57:21 -0700135 return c->setPreviewTarget(bufferProducer);
Jamie Gennisbfa33aa2010-12-20 11:51:31 -0800136}
137
Mathias Agopian3cf61352010-02-09 17:46:37 -0800138// start preview mode
139status_t Camera::startPreview()
140{
Steve Block3856b092011-10-20 11:56:00 +0100141 ALOGV("startPreview");
Mathias Agopian3cf61352010-02-09 17:46:37 -0800142 sp <ICamera> c = mCamera;
143 if (c == 0) return NO_INIT;
144 return c->startPreview();
145}
146
James Donge2ad6732010-10-18 20:42:51 -0700147status_t Camera::storeMetaDataInBuffers(bool enabled)
148{
Steve Block3856b092011-10-20 11:56:00 +0100149 ALOGV("storeMetaDataInBuffers: %s",
James Donge2ad6732010-10-18 20:42:51 -0700150 enabled? "true": "false");
151 sp <ICamera> c = mCamera;
152 if (c == 0) return NO_INIT;
153 return c->storeMetaDataInBuffers(enabled);
154}
155
Eino-Ville Talvala4b820b02013-08-21 14:39:05 -0700156// start recording mode, must call setPreviewTarget first
Mathias Agopian3cf61352010-02-09 17:46:37 -0800157status_t Camera::startRecording()
158{
Steve Block3856b092011-10-20 11:56:00 +0100159 ALOGV("startRecording");
Mathias Agopian3cf61352010-02-09 17:46:37 -0800160 sp <ICamera> c = mCamera;
161 if (c == 0) return NO_INIT;
162 return c->startRecording();
163}
164
165// stop preview mode
166void Camera::stopPreview()
167{
Steve Block3856b092011-10-20 11:56:00 +0100168 ALOGV("stopPreview");
Mathias Agopian3cf61352010-02-09 17:46:37 -0800169 sp <ICamera> c = mCamera;
170 if (c == 0) return;
171 c->stopPreview();
172}
173
174// stop recording mode
175void Camera::stopRecording()
176{
Steve Block3856b092011-10-20 11:56:00 +0100177 ALOGV("stopRecording");
Wu-cheng Li4ca2c7c2011-06-01 17:22:24 +0800178 {
179 Mutex::Autolock _l(mLock);
180 mRecordingProxyListener.clear();
181 }
Mathias Agopian3cf61352010-02-09 17:46:37 -0800182 sp <ICamera> c = mCamera;
183 if (c == 0) return;
184 c->stopRecording();
185}
186
187// release a recording frame
188void Camera::releaseRecordingFrame(const sp<IMemory>& mem)
189{
Steve Block3856b092011-10-20 11:56:00 +0100190 ALOGV("releaseRecordingFrame");
Mathias Agopian3cf61352010-02-09 17:46:37 -0800191 sp <ICamera> c = mCamera;
192 if (c == 0) return;
193 c->releaseRecordingFrame(mem);
194}
195
196// get preview state
197bool Camera::previewEnabled()
198{
Steve Block3856b092011-10-20 11:56:00 +0100199 ALOGV("previewEnabled");
Mathias Agopian3cf61352010-02-09 17:46:37 -0800200 sp <ICamera> c = mCamera;
201 if (c == 0) return false;
202 return c->previewEnabled();
203}
204
205// get recording state
206bool Camera::recordingEnabled()
207{
Steve Block3856b092011-10-20 11:56:00 +0100208 ALOGV("recordingEnabled");
Mathias Agopian3cf61352010-02-09 17:46:37 -0800209 sp <ICamera> c = mCamera;
210 if (c == 0) return false;
211 return c->recordingEnabled();
212}
213
214status_t Camera::autoFocus()
215{
Steve Block3856b092011-10-20 11:56:00 +0100216 ALOGV("autoFocus");
Mathias Agopian3cf61352010-02-09 17:46:37 -0800217 sp <ICamera> c = mCamera;
218 if (c == 0) return NO_INIT;
219 return c->autoFocus();
220}
221
222status_t Camera::cancelAutoFocus()
223{
Steve Block3856b092011-10-20 11:56:00 +0100224 ALOGV("cancelAutoFocus");
Mathias Agopian3cf61352010-02-09 17:46:37 -0800225 sp <ICamera> c = mCamera;
226 if (c == 0) return NO_INIT;
227 return c->cancelAutoFocus();
228}
229
230// take a picture
James Donge468ac52011-02-17 16:38:06 -0800231status_t Camera::takePicture(int msgType)
Mathias Agopian3cf61352010-02-09 17:46:37 -0800232{
Steve Block3856b092011-10-20 11:56:00 +0100233 ALOGV("takePicture: 0x%x", msgType);
Mathias Agopian3cf61352010-02-09 17:46:37 -0800234 sp <ICamera> c = mCamera;
235 if (c == 0) return NO_INIT;
James Donge468ac52011-02-17 16:38:06 -0800236 return c->takePicture(msgType);
Mathias Agopian3cf61352010-02-09 17:46:37 -0800237}
238
239// set preview/capture parameters - key/value pairs
240status_t Camera::setParameters(const String8& params)
241{
Steve Block3856b092011-10-20 11:56:00 +0100242 ALOGV("setParameters");
Mathias Agopian3cf61352010-02-09 17:46:37 -0800243 sp <ICamera> c = mCamera;
244 if (c == 0) return NO_INIT;
245 return c->setParameters(params);
246}
247
248// get preview/capture parameters - key/value pairs
249String8 Camera::getParameters() const
250{
Steve Block3856b092011-10-20 11:56:00 +0100251 ALOGV("getParameters");
Mathias Agopian3cf61352010-02-09 17:46:37 -0800252 String8 params;
253 sp <ICamera> c = mCamera;
254 if (c != 0) params = mCamera->getParameters();
255 return params;
256}
257
258// send command to camera driver
259status_t Camera::sendCommand(int32_t cmd, int32_t arg1, int32_t arg2)
260{
Steve Block3856b092011-10-20 11:56:00 +0100261 ALOGV("sendCommand");
Mathias Agopian3cf61352010-02-09 17:46:37 -0800262 sp <ICamera> c = mCamera;
263 if (c == 0) return NO_INIT;
264 return c->sendCommand(cmd, arg1, arg2);
265}
266
267void Camera::setListener(const sp<CameraListener>& listener)
268{
269 Mutex::Autolock _l(mLock);
270 mListener = listener;
271}
272
Wu-cheng Li4ca2c7c2011-06-01 17:22:24 +0800273void Camera::setRecordingProxyListener(const sp<ICameraRecordingProxyListener>& listener)
274{
275 Mutex::Autolock _l(mLock);
276 mRecordingProxyListener = listener;
277}
278
Mathias Agopian3cf61352010-02-09 17:46:37 -0800279void Camera::setPreviewCallbackFlags(int flag)
280{
Steve Block3856b092011-10-20 11:56:00 +0100281 ALOGV("setPreviewCallbackFlags");
Mathias Agopian3cf61352010-02-09 17:46:37 -0800282 sp <ICamera> c = mCamera;
283 if (c == 0) return;
284 mCamera->setPreviewCallbackFlag(flag);
285}
286
Eino-Ville Talvala3ee35502013-04-02 15:45:11 -0700287status_t Camera::setPreviewCallbackTarget(
288 const sp<IGraphicBufferProducer>& callbackProducer)
289{
290 sp <ICamera> c = mCamera;
291 if (c == 0) return NO_INIT;
292 return c->setPreviewCallbackTarget(callbackProducer);
293}
294
Mathias Agopian3cf61352010-02-09 17:46:37 -0800295// callback from camera service
296void Camera::notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2)
297{
Igor Murashkinc073ba52013-02-26 14:32:34 -0800298 return CameraBaseT::notifyCallback(msgType, ext1, ext2);
Mathias Agopian3cf61352010-02-09 17:46:37 -0800299}
300
301// callback from camera service when frame or image is ready
Wu-cheng Li57c86182011-07-30 05:00:37 +0800302void Camera::dataCallback(int32_t msgType, const sp<IMemory>& dataPtr,
303 camera_frame_metadata_t *metadata)
Mathias Agopian3cf61352010-02-09 17:46:37 -0800304{
Igor Murashkinfa4cf9d2013-03-04 16:14:23 -0800305 sp<CameraListener> listener;
306 {
307 Mutex::Autolock _l(mLock);
308 listener = mListener;
309 }
310 if (listener != NULL) {
311 listener->postData(msgType, dataPtr, metadata);
312 }
Mathias Agopian3cf61352010-02-09 17:46:37 -0800313}
314
315// callback from camera service when timestamped frame is ready
316void Camera::dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr)
317{
Wu-cheng Li4ca2c7c2011-06-01 17:22:24 +0800318 // If recording proxy listener is registered, forward the frame and return.
319 // The other listener (mListener) is ignored because the receiver needs to
320 // call releaseRecordingFrame.
321 sp<ICameraRecordingProxyListener> proxylistener;
322 {
323 Mutex::Autolock _l(mLock);
324 proxylistener = mRecordingProxyListener;
325 }
326 if (proxylistener != NULL) {
327 proxylistener->dataCallbackTimestamp(timestamp, msgType, dataPtr);
328 return;
329 }
330
Igor Murashkinfa4cf9d2013-03-04 16:14:23 -0800331 sp<CameraListener> listener;
332 {
333 Mutex::Autolock _l(mLock);
334 listener = mListener;
335 }
336
337 if (listener != NULL) {
338 listener->postDataTimestamp(timestamp, msgType, dataPtr);
339 } else {
Steve Block5ff1dd52012-01-05 23:22:43 +0000340 ALOGW("No listener was set. Drop a recording frame.");
James Dongc42478e2010-11-15 10:38:37 -0800341 releaseRecordingFrame(dataPtr);
Mathias Agopian3cf61352010-02-09 17:46:37 -0800342 }
343}
344
Wu-cheng Li4ca2c7c2011-06-01 17:22:24 +0800345sp<ICameraRecordingProxy> Camera::getRecordingProxy() {
Steve Block3856b092011-10-20 11:56:00 +0100346 ALOGV("getProxy");
Wu-cheng Li4ca2c7c2011-06-01 17:22:24 +0800347 return new RecordingProxy(this);
348}
349
350status_t Camera::RecordingProxy::startRecording(const sp<ICameraRecordingProxyListener>& listener)
351{
Steve Block3856b092011-10-20 11:56:00 +0100352 ALOGV("RecordingProxy::startRecording");
Wu-cheng Li4ca2c7c2011-06-01 17:22:24 +0800353 mCamera->setRecordingProxyListener(listener);
354 mCamera->reconnect();
355 return mCamera->startRecording();
356}
357
358void Camera::RecordingProxy::stopRecording()
359{
Steve Block3856b092011-10-20 11:56:00 +0100360 ALOGV("RecordingProxy::stopRecording");
Wu-cheng Li4ca2c7c2011-06-01 17:22:24 +0800361 mCamera->stopRecording();
362}
363
364void Camera::RecordingProxy::releaseRecordingFrame(const sp<IMemory>& mem)
365{
Steve Block3856b092011-10-20 11:56:00 +0100366 ALOGV("RecordingProxy::releaseRecordingFrame");
Wu-cheng Li4ca2c7c2011-06-01 17:22:24 +0800367 mCamera->releaseRecordingFrame(mem);
368}
369
370Camera::RecordingProxy::RecordingProxy(const sp<Camera>& camera)
371{
372 mCamera = camera;
373}
374
Mathias Agopian3cf61352010-02-09 17:46:37 -0800375}; // namespace android