blob: dbec34e0f0196ae059640e1cd81994af678c269a [file] [log] [blame]
Igor Murashkine7ee7632013-06-11 18:10:18 -07001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define LOG_TAG "CameraDeviceClient"
18#define ATRACE_TAG ATRACE_TAG_CAMERA
Jianing Weicb0652e2014-03-12 18:29:36 -070019//#define LOG_NDEBUG 0
Igor Murashkine7ee7632013-06-11 18:10:18 -070020
Eino-Ville Talvala7b82efe2013-07-25 17:12:35 -070021#include <cutils/properties.h>
Igor Murashkine7ee7632013-06-11 18:10:18 -070022#include <utils/Log.h>
23#include <utils/Trace.h>
Igor Murashkine7ee7632013-06-11 18:10:18 -070024#include <gui/Surface.h>
Eino-Ville Talvala7b82efe2013-07-25 17:12:35 -070025#include <camera/camera2/CaptureRequest.h>
Ruben Brunk5698d442014-06-18 10:39:40 -070026#include <camera/CameraUtils.h>
Eino-Ville Talvala7b82efe2013-07-25 17:12:35 -070027
28#include "common/CameraDeviceBase.h"
29#include "api2/CameraDeviceClient.h"
30
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -080031// Convenience methods for constructing binder::Status objects for error returns
Eino-Ville Talvala7b82efe2013-07-25 17:12:35 -070032
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -080033#define STATUS_ERROR(errorCode, errorString) \
34 binder::Status::fromServiceSpecificError(errorCode, \
Eino-Ville Talvala02bf0322016-02-18 12:41:10 -080035 String8::format("%s:%d: %s", __FUNCTION__, __LINE__, errorString))
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -080036
37#define STATUS_ERROR_FMT(errorCode, errorString, ...) \
38 binder::Status::fromServiceSpecificError(errorCode, \
Eino-Ville Talvala02bf0322016-02-18 12:41:10 -080039 String8::format("%s:%d: " errorString, __FUNCTION__, __LINE__, \
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -080040 __VA_ARGS__))
Igor Murashkine7ee7632013-06-11 18:10:18 -070041
42namespace android {
43using namespace camera2;
44
45CameraDeviceClientBase::CameraDeviceClientBase(
46 const sp<CameraService>& cameraService,
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -080047 const sp<hardware::camera2::ICameraDeviceCallbacks>& remoteCallback,
Igor Murashkine7ee7632013-06-11 18:10:18 -070048 const String16& clientPackageName,
49 int cameraId,
50 int cameraFacing,
51 int clientPid,
52 uid_t clientUid,
53 int servicePid) :
Eino-Ville Talvalae992e752014-11-07 16:17:48 -080054 BasicClient(cameraService,
Marco Nelissenf8880202014-11-14 07:58:25 -080055 IInterface::asBinder(remoteCallback),
Eino-Ville Talvalae992e752014-11-07 16:17:48 -080056 clientPackageName,
57 cameraId,
58 cameraFacing,
59 clientPid,
60 clientUid,
61 servicePid),
Igor Murashkine7ee7632013-06-11 18:10:18 -070062 mRemoteCallback(remoteCallback) {
63}
Igor Murashkine7ee7632013-06-11 18:10:18 -070064
65// Interface used by CameraService
66
67CameraDeviceClient::CameraDeviceClient(const sp<CameraService>& cameraService,
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -080068 const sp<hardware::camera2::ICameraDeviceCallbacks>& remoteCallback,
69 const String16& clientPackageName,
70 int cameraId,
71 int cameraFacing,
72 int clientPid,
73 uid_t clientUid,
74 int servicePid) :
Igor Murashkine7ee7632013-06-11 18:10:18 -070075 Camera2ClientBase(cameraService, remoteCallback, clientPackageName,
76 cameraId, cameraFacing, clientPid, clientUid, servicePid),
Chien-Yu Chen618ff8a2015-03-13 11:27:17 -070077 mInputStream(),
Chien-Yu Chene8c535e2016-04-14 12:18:26 -070078 mStreamingRequestId(REQUEST_ID_NONE),
Igor Murashkine7ee7632013-06-11 18:10:18 -070079 mRequestIdCounter(0) {
80
81 ATRACE_CALL();
82 ALOGI("CameraDeviceClient %d: Opened", cameraId);
83}
84
Yin-Chia Yehe074a932015-01-30 10:29:02 -080085status_t CameraDeviceClient::initialize(CameraModule *module)
Igor Murashkine7ee7632013-06-11 18:10:18 -070086{
87 ATRACE_CALL();
88 status_t res;
89
90 res = Camera2ClientBase::initialize(module);
91 if (res != OK) {
92 return res;
93 }
94
95 String8 threadName;
Eino-Ville Talvala7b82efe2013-07-25 17:12:35 -070096 mFrameProcessor = new FrameProcessorBase(mDevice);
Igor Murashkine7ee7632013-06-11 18:10:18 -070097 threadName = String8::format("CDU-%d-FrameProc", mCameraId);
98 mFrameProcessor->run(threadName.string());
99
100 mFrameProcessor->registerListener(FRAME_PROCESSOR_LISTENER_MIN_ID,
101 FRAME_PROCESSOR_LISTENER_MAX_ID,
Eino-Ville Talvala184dfe42013-11-07 15:13:16 -0800102 /*listener*/this,
Zhijun He25a0aef2014-06-25 11:40:02 -0700103 /*sendPartials*/true);
Igor Murashkine7ee7632013-06-11 18:10:18 -0700104
105 return OK;
106}
107
108CameraDeviceClient::~CameraDeviceClient() {
109}
110
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800111binder::Status CameraDeviceClient::submitRequest(
112 const hardware::camera2::CaptureRequest& request,
113 bool streaming,
114 /*out*/
115 hardware::camera2::utils::SubmitInfo *submitInfo) {
116 std::vector<hardware::camera2::CaptureRequest> requestList = { request };
117 return submitRequestList(requestList, streaming, submitInfo);
Igor Murashkine7ee7632013-06-11 18:10:18 -0700118}
119
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800120binder::Status CameraDeviceClient::submitRequestList(
121 const std::vector<hardware::camera2::CaptureRequest>& requests,
122 bool streaming,
123 /*out*/
124 hardware::camera2::utils::SubmitInfo *submitInfo) {
Jianing Wei90e59c92014-03-12 18:29:36 -0700125 ATRACE_CALL();
Mark Salyzyn50468412014-06-18 16:33:43 -0700126 ALOGV("%s-start of function. Request list size %zu", __FUNCTION__, requests.size());
Jianing Wei90e59c92014-03-12 18:29:36 -0700127
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800128 binder::Status res = binder::Status::ok();
129 status_t err;
130 if ( !(res = checkPidStatus(__FUNCTION__) ).isOk()) {
131 return res;
132 }
Jianing Wei90e59c92014-03-12 18:29:36 -0700133
134 Mutex::Autolock icl(mBinderSerializationLock);
135
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800136 if (!mDevice.get()) {
137 return STATUS_ERROR(CameraService::ERROR_DISCONNECTED, "Camera device no longer alive");
138 }
Jianing Wei90e59c92014-03-12 18:29:36 -0700139
140 if (requests.empty()) {
141 ALOGE("%s: Camera %d: Sent null request. Rejecting request.",
142 __FUNCTION__, mCameraId);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800143 return STATUS_ERROR(CameraService::ERROR_ILLEGAL_ARGUMENT, "Empty request list");
Jianing Wei90e59c92014-03-12 18:29:36 -0700144 }
145
146 List<const CameraMetadata> metadataRequestList;
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800147 submitInfo->mRequestId = mRequestIdCounter;
Jianing Wei90e59c92014-03-12 18:29:36 -0700148 uint32_t loopCounter = 0;
149
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800150 for (auto&& request: requests) {
151 if (request.mIsReprocess) {
Chien-Yu Chened0412e2015-04-27 15:04:22 -0700152 if (!mInputStream.configured) {
153 ALOGE("%s: Camera %d: no input stream is configured.", __FUNCTION__, mCameraId);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800154 return STATUS_ERROR_FMT(CameraService::ERROR_ILLEGAL_ARGUMENT,
155 "No input configured for camera %d but request is for reprocessing",
156 mCameraId);
Chien-Yu Chened0412e2015-04-27 15:04:22 -0700157 } else if (streaming) {
158 ALOGE("%s: Camera %d: streaming reprocess requests not supported.", __FUNCTION__,
159 mCameraId);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800160 return STATUS_ERROR(CameraService::ERROR_ILLEGAL_ARGUMENT,
161 "Repeating reprocess requests not supported");
Chien-Yu Chen618ff8a2015-03-13 11:27:17 -0700162 }
Jianing Wei90e59c92014-03-12 18:29:36 -0700163 }
164
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800165 CameraMetadata metadata(request.mMetadata);
Jianing Wei90e59c92014-03-12 18:29:36 -0700166 if (metadata.isEmpty()) {
167 ALOGE("%s: Camera %d: Sent empty metadata packet. Rejecting request.",
168 __FUNCTION__, mCameraId);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800169 return STATUS_ERROR(CameraService::ERROR_ILLEGAL_ARGUMENT,
170 "Request settings are empty");
171 } else if (request.mSurfaceList.isEmpty()) {
Jianing Wei90e59c92014-03-12 18:29:36 -0700172 ALOGE("%s: Camera %d: Requests must have at least one surface target. "
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800173 "Rejecting request.", __FUNCTION__, mCameraId);
174 return STATUS_ERROR(CameraService::ERROR_ILLEGAL_ARGUMENT,
175 "Request has no output targets");
Jianing Wei90e59c92014-03-12 18:29:36 -0700176 }
177
178 if (!enforceRequestPermissions(metadata)) {
179 // Callee logs
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800180 return STATUS_ERROR(CameraService::ERROR_PERMISSION_DENIED,
181 "Caller does not have permission to change restricted controls");
Jianing Wei90e59c92014-03-12 18:29:36 -0700182 }
183
184 /**
185 * Write in the output stream IDs which we calculate from
186 * the capture request's list of surface targets
187 */
188 Vector<int32_t> outputStreamIds;
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800189 outputStreamIds.setCapacity(request.mSurfaceList.size());
190 for (sp<Surface> surface : request.mSurfaceList) {
Jianing Wei90e59c92014-03-12 18:29:36 -0700191 if (surface == 0) continue;
192
193 sp<IGraphicBufferProducer> gbp = surface->getIGraphicBufferProducer();
Marco Nelissenf8880202014-11-14 07:58:25 -0800194 int idx = mStreamMap.indexOfKey(IInterface::asBinder(gbp));
Jianing Wei90e59c92014-03-12 18:29:36 -0700195
196 // Trying to submit request with surface that wasn't created
197 if (idx == NAME_NOT_FOUND) {
198 ALOGE("%s: Camera %d: Tried to submit a request with a surface that"
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800199 " we have not called createStream on",
200 __FUNCTION__, mCameraId);
201 return STATUS_ERROR(CameraService::ERROR_ILLEGAL_ARGUMENT,
202 "Request targets Surface that is not part of current capture session");
Jianing Wei90e59c92014-03-12 18:29:36 -0700203 }
204
205 int streamId = mStreamMap.valueAt(idx);
206 outputStreamIds.push_back(streamId);
207 ALOGV("%s: Camera %d: Appending output stream %d to request",
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800208 __FUNCTION__, mCameraId, streamId);
Jianing Wei90e59c92014-03-12 18:29:36 -0700209 }
210
211 metadata.update(ANDROID_REQUEST_OUTPUT_STREAMS, &outputStreamIds[0],
212 outputStreamIds.size());
213
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800214 if (request.mIsReprocess) {
Chien-Yu Chen618ff8a2015-03-13 11:27:17 -0700215 metadata.update(ANDROID_REQUEST_INPUT_STREAMS, &mInputStream.id, 1);
216 }
217
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800218 metadata.update(ANDROID_REQUEST_ID, &(submitInfo->mRequestId), /*size*/1);
Jianing Wei90e59c92014-03-12 18:29:36 -0700219 loopCounter++; // loopCounter starts from 1
Mark Salyzyn50468412014-06-18 16:33:43 -0700220 ALOGV("%s: Camera %d: Creating request with ID %d (%d of %zu)",
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800221 __FUNCTION__, mCameraId, submitInfo->mRequestId, loopCounter, requests.size());
Jianing Wei90e59c92014-03-12 18:29:36 -0700222
223 metadataRequestList.push_back(metadata);
224 }
225 mRequestIdCounter++;
226
227 if (streaming) {
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800228 err = mDevice->setStreamingRequestList(metadataRequestList, &(submitInfo->mLastFrameNumber));
229 if (err != OK) {
230 String8 msg = String8::format(
231 "Camera %d: Got error %s (%d) after trying to set streaming request",
232 mCameraId, strerror(-err), err);
233 ALOGE("%s: %s", __FUNCTION__, msg.string());
234 res = STATUS_ERROR(CameraService::ERROR_INVALID_OPERATION,
235 msg.string());
Jianing Wei90e59c92014-03-12 18:29:36 -0700236 } else {
Shuzhen Wangc9ca6782016-04-26 13:40:31 -0700237 Mutex::Autolock idLock(mStreamingRequestIdLock);
Chien-Yu Chene8c535e2016-04-14 12:18:26 -0700238 mStreamingRequestId = submitInfo->mRequestId;
Jianing Wei90e59c92014-03-12 18:29:36 -0700239 }
240 } else {
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800241 err = mDevice->captureList(metadataRequestList, &(submitInfo->mLastFrameNumber));
242 if (err != OK) {
243 String8 msg = String8::format(
244 "Camera %d: Got error %s (%d) after trying to submit capture request",
245 mCameraId, strerror(-err), err);
246 ALOGE("%s: %s", __FUNCTION__, msg.string());
247 res = STATUS_ERROR(CameraService::ERROR_INVALID_OPERATION,
248 msg.string());
Jianing Wei90e59c92014-03-12 18:29:36 -0700249 }
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800250 ALOGV("%s: requestId = %d ", __FUNCTION__, submitInfo->mRequestId);
Jianing Wei90e59c92014-03-12 18:29:36 -0700251 }
252
253 ALOGV("%s: Camera %d: End of function", __FUNCTION__, mCameraId);
Jianing Wei90e59c92014-03-12 18:29:36 -0700254 return res;
255}
256
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800257binder::Status CameraDeviceClient::cancelRequest(
258 int requestId,
259 /*out*/
260 int64_t* lastFrameNumber) {
Igor Murashkine7ee7632013-06-11 18:10:18 -0700261 ATRACE_CALL();
262 ALOGV("%s, requestId = %d", __FUNCTION__, requestId);
263
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800264 status_t err;
265 binder::Status res;
Igor Murashkine7ee7632013-06-11 18:10:18 -0700266
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800267 if (!(res = checkPidStatus(__FUNCTION__)).isOk()) return res;
Igor Murashkine7ee7632013-06-11 18:10:18 -0700268
269 Mutex::Autolock icl(mBinderSerializationLock);
270
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800271 if (!mDevice.get()) {
272 return STATUS_ERROR(CameraService::ERROR_DISCONNECTED, "Camera device no longer alive");
273 }
Igor Murashkine7ee7632013-06-11 18:10:18 -0700274
Shuzhen Wangc9ca6782016-04-26 13:40:31 -0700275 Mutex::Autolock idLock(mStreamingRequestIdLock);
Chien-Yu Chene8c535e2016-04-14 12:18:26 -0700276 if (mStreamingRequestId != requestId) {
277 String8 msg = String8::format("Camera %d: Canceling request ID %d doesn't match "
278 "current request ID %d", mCameraId, requestId, mStreamingRequestId);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800279 ALOGE("%s: %s", __FUNCTION__, msg.string());
280 return STATUS_ERROR(CameraService::ERROR_ILLEGAL_ARGUMENT, msg.string());
Igor Murashkine7ee7632013-06-11 18:10:18 -0700281 }
282
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800283 err = mDevice->clearStreamingRequest(lastFrameNumber);
Igor Murashkine7ee7632013-06-11 18:10:18 -0700284
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800285 if (err == OK) {
Igor Murashkine7ee7632013-06-11 18:10:18 -0700286 ALOGV("%s: Camera %d: Successfully cleared streaming request",
287 __FUNCTION__, mCameraId);
Chien-Yu Chene8c535e2016-04-14 12:18:26 -0700288 mStreamingRequestId = REQUEST_ID_NONE;
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800289 } else {
290 res = STATUS_ERROR_FMT(CameraService::ERROR_INVALID_OPERATION,
291 "Camera %d: Error clearing streaming request: %s (%d)",
292 mCameraId, strerror(-err), err);
Igor Murashkine7ee7632013-06-11 18:10:18 -0700293 }
294
295 return res;
296}
297
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800298binder::Status CameraDeviceClient::beginConfigure() {
Ruben Brunkb2119af2014-05-09 19:57:56 -0700299 // TODO: Implement this.
Zhijun He1fa89992015-06-01 15:44:31 -0700300 ALOGV("%s: Not implemented yet.", __FUNCTION__);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800301 return binder::Status::ok();
Ruben Brunkb2119af2014-05-09 19:57:56 -0700302}
303
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800304binder::Status CameraDeviceClient::endConfigure(bool isConstrainedHighSpeed) {
Chien-Yu Chen618ff8a2015-03-13 11:27:17 -0700305 ALOGV("%s: ending configure (%d input stream, %zu output streams)",
306 __FUNCTION__, mInputStream.configured ? 1 : 0, mStreamMap.size());
Igor Murashkine2d167e2014-08-19 16:19:59 -0700307
Zhijun He0effd522016-03-04 10:22:27 -0800308 binder::Status res;
309 if (!(res = checkPidStatus(__FUNCTION__)).isOk()) return res;
310
311 Mutex::Autolock icl(mBinderSerializationLock);
312
313 if (!mDevice.get()) {
314 return STATUS_ERROR(CameraService::ERROR_DISCONNECTED, "Camera device no longer alive");
315 }
316
Zhijun He1fa89992015-06-01 15:44:31 -0700317 // Sanitize the high speed session against necessary capability bit.
318 if (isConstrainedHighSpeed) {
319 CameraMetadata staticInfo = mDevice->info();
320 camera_metadata_entry_t entry = staticInfo.find(ANDROID_REQUEST_AVAILABLE_CAPABILITIES);
321 bool isConstrainedHighSpeedSupported = false;
322 for(size_t i = 0; i < entry.count; ++i) {
323 uint8_t capability = entry.data.u8[i];
324 if (capability == ANDROID_REQUEST_AVAILABLE_CAPABILITIES_CONSTRAINED_HIGH_SPEED_VIDEO) {
325 isConstrainedHighSpeedSupported = true;
326 break;
327 }
328 }
329 if (!isConstrainedHighSpeedSupported) {
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800330 String8 msg = String8::format(
331 "Camera %d: Try to create a constrained high speed configuration on a device"
332 " that doesn't support it.", mCameraId);
333 ALOGE("%s: %s", __FUNCTION__, msg.string());
334 return STATUS_ERROR(CameraService::ERROR_ILLEGAL_ARGUMENT,
335 msg.string());
Zhijun He1fa89992015-06-01 15:44:31 -0700336 }
337 }
338
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800339 status_t err = mDevice->configureStreams(isConstrainedHighSpeed);
Eino-Ville Talvalaace80582016-03-18 13:27:35 -0700340 if (err == BAD_VALUE) {
341 res = STATUS_ERROR_FMT(CameraService::ERROR_ILLEGAL_ARGUMENT,
342 "Camera %d: Unsupported set of inputs/outputs provided",
343 mCameraId);
344 } else if (err != OK) {
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800345 res = STATUS_ERROR_FMT(CameraService::ERROR_INVALID_OPERATION,
346 "Camera %d: Error configuring streams: %s (%d)",
347 mCameraId, strerror(-err), err);
348 }
349
350 return res;
Ruben Brunkb2119af2014-05-09 19:57:56 -0700351}
352
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800353binder::Status CameraDeviceClient::deleteStream(int streamId) {
Igor Murashkine7ee7632013-06-11 18:10:18 -0700354 ATRACE_CALL();
355 ALOGV("%s (streamId = 0x%x)", __FUNCTION__, streamId);
356
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800357 binder::Status res;
358 if (!(res = checkPidStatus(__FUNCTION__)).isOk()) return res;
Igor Murashkine7ee7632013-06-11 18:10:18 -0700359
360 Mutex::Autolock icl(mBinderSerializationLock);
361
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800362 if (!mDevice.get()) {
363 return STATUS_ERROR(CameraService::ERROR_DISCONNECTED, "Camera device no longer alive");
364 }
Igor Murashkine7ee7632013-06-11 18:10:18 -0700365
Chien-Yu Chen618ff8a2015-03-13 11:27:17 -0700366 bool isInput = false;
Igor Murashkine7ee7632013-06-11 18:10:18 -0700367 ssize_t index = NAME_NOT_FOUND;
Igor Murashkine7ee7632013-06-11 18:10:18 -0700368
Chien-Yu Chen618ff8a2015-03-13 11:27:17 -0700369 if (mInputStream.configured && mInputStream.id == streamId) {
370 isInput = true;
371 } else {
372 // Guard against trying to delete non-created streams
373 for (size_t i = 0; i < mStreamMap.size(); ++i) {
374 if (streamId == mStreamMap.valueAt(i)) {
375 index = i;
376 break;
377 }
378 }
379
380 if (index == NAME_NOT_FOUND) {
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800381 String8 msg = String8::format("Camera %d: Invalid stream ID (%d) specified, no such "
382 "stream created yet", mCameraId, streamId);
383 ALOGW("%s: %s", __FUNCTION__, msg.string());
384 return STATUS_ERROR(CameraService::ERROR_ILLEGAL_ARGUMENT, msg.string());
Chien-Yu Chen618ff8a2015-03-13 11:27:17 -0700385 }
Igor Murashkine7ee7632013-06-11 18:10:18 -0700386 }
387
388 // Also returns BAD_VALUE if stream ID was not valid
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800389 status_t err = mDevice->deleteStream(streamId);
Igor Murashkine7ee7632013-06-11 18:10:18 -0700390
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800391 if (err != OK) {
392 String8 msg = String8::format("Camera %d: Unexpected error %s (%d) when deleting stream %d",
393 mCameraId, strerror(-err), err, streamId);
394 ALOGE("%s: %s", __FUNCTION__, msg.string());
395 res = STATUS_ERROR(CameraService::ERROR_INVALID_OPERATION, msg.string());
396 } else {
Chien-Yu Chen618ff8a2015-03-13 11:27:17 -0700397 if (isInput) {
398 mInputStream.configured = false;
399 } else {
400 mStreamMap.removeItemsAt(index);
401 }
Igor Murashkine7ee7632013-06-11 18:10:18 -0700402 }
403
404 return res;
405}
406
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800407binder::Status CameraDeviceClient::createStream(
408 const hardware::camera2::params::OutputConfiguration &outputConfiguration,
409 /*out*/
410 int32_t* newStreamId) {
Igor Murashkine7ee7632013-06-11 18:10:18 -0700411 ATRACE_CALL();
Igor Murashkine7ee7632013-06-11 18:10:18 -0700412
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800413 binder::Status res;
414 if (!(res = checkPidStatus(__FUNCTION__)).isOk()) return res;
Igor Murashkine7ee7632013-06-11 18:10:18 -0700415
416 Mutex::Autolock icl(mBinderSerializationLock);
417
Yin-Chia Yehb97babb2015-03-12 13:42:44 -0700418 sp<IGraphicBufferProducer> bufferProducer = outputConfiguration.getGraphicBufferProducer();
Yin-Chia Yeh89f14da2014-06-10 16:05:44 -0700419 if (bufferProducer == NULL) {
420 ALOGE("%s: bufferProducer must not be null", __FUNCTION__);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800421 return STATUS_ERROR(CameraService::ERROR_ILLEGAL_ARGUMENT, "Target Surface is invalid");
Yin-Chia Yeh89f14da2014-06-10 16:05:44 -0700422 }
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800423 if (!mDevice.get()) {
424 return STATUS_ERROR(CameraService::ERROR_DISCONNECTED, "Camera device no longer alive");
425 }
Igor Murashkine7ee7632013-06-11 18:10:18 -0700426
427 // Don't create multiple streams for the same target surface
428 {
Marco Nelissenf8880202014-11-14 07:58:25 -0800429 ssize_t index = mStreamMap.indexOfKey(IInterface::asBinder(bufferProducer));
Igor Murashkine7ee7632013-06-11 18:10:18 -0700430 if (index != NAME_NOT_FOUND) {
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800431 String8 msg = String8::format("Camera %d: Surface already has a stream created for it "
432 "(ID %zd)", mCameraId, index);
433 ALOGW("%s: %s", __FUNCTION__, msg.string());
434 return STATUS_ERROR(CameraService::ERROR_ALREADY_EXISTS, msg.string());
Igor Murashkine7ee7632013-06-11 18:10:18 -0700435 }
436 }
437
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800438 status_t err;
439
Eino-Ville Talvala1da3b602013-09-26 15:28:55 -0700440 // HACK b/10949105
441 // Query consumer usage bits to set async operation mode for
442 // GLConsumer using controlledByApp parameter.
443 bool useAsync = false;
444 int32_t consumerUsage;
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800445 if ((err = bufferProducer->query(NATIVE_WINDOW_CONSUMER_USAGE_BITS,
Eino-Ville Talvala1da3b602013-09-26 15:28:55 -0700446 &consumerUsage)) != OK) {
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800447 String8 msg = String8::format("Camera %d: Failed to query Surface consumer usage: %s (%d)",
448 mCameraId, strerror(-err), err);
449 ALOGE("%s: %s", __FUNCTION__, msg.string());
450 return STATUS_ERROR(CameraService::ERROR_INVALID_OPERATION, msg.string());
Eino-Ville Talvala1da3b602013-09-26 15:28:55 -0700451 }
452 if (consumerUsage & GraphicBuffer::USAGE_HW_TEXTURE) {
453 ALOGW("%s: Camera %d: Forcing asynchronous mode for stream",
454 __FUNCTION__, mCameraId);
455 useAsync = true;
456 }
457
Ruben Brunkbba75572014-11-20 17:29:50 -0800458 int32_t disallowedFlags = GraphicBuffer::USAGE_HW_VIDEO_ENCODER |
459 GRALLOC_USAGE_RENDERSCRIPT;
460 int32_t allowedFlags = GraphicBuffer::USAGE_SW_READ_MASK |
461 GraphicBuffer::USAGE_HW_TEXTURE |
462 GraphicBuffer::USAGE_HW_COMPOSER;
463 bool flexibleConsumer = (consumerUsage & disallowedFlags) == 0 &&
464 (consumerUsage & allowedFlags) != 0;
465
Marco Nelissenf8880202014-11-14 07:58:25 -0800466 sp<IBinder> binder = IInterface::asBinder(bufferProducer);
Eino-Ville Talvala727d1722015-06-09 13:44:19 -0700467 sp<Surface> surface = new Surface(bufferProducer, useAsync);
468 ANativeWindow *anw = surface.get();
Igor Murashkine7ee7632013-06-11 18:10:18 -0700469
Eino-Ville Talvala3d82c0d2015-02-23 15:19:19 -0800470 int width, height, format;
471 android_dataspace dataSpace;
Igor Murashkine7ee7632013-06-11 18:10:18 -0700472
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800473 if ((err = anw->query(anw, NATIVE_WINDOW_WIDTH, &width)) != OK) {
474 String8 msg = String8::format("Camera %d: Failed to query Surface width: %s (%d)",
475 mCameraId, strerror(-err), err);
476 ALOGE("%s: %s", __FUNCTION__, msg.string());
477 return STATUS_ERROR(CameraService::ERROR_INVALID_OPERATION, msg.string());
Igor Murashkine7ee7632013-06-11 18:10:18 -0700478 }
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800479 if ((err = anw->query(anw, NATIVE_WINDOW_HEIGHT, &height)) != OK) {
480 String8 msg = String8::format("Camera %d: Failed to query Surface height: %s (%d)",
481 mCameraId, strerror(-err), err);
482 ALOGE("%s: %s", __FUNCTION__, msg.string());
483 return STATUS_ERROR(CameraService::ERROR_INVALID_OPERATION, msg.string());
Igor Murashkine7ee7632013-06-11 18:10:18 -0700484 }
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800485 if ((err = anw->query(anw, NATIVE_WINDOW_FORMAT, &format)) != OK) {
486 String8 msg = String8::format("Camera %d: Failed to query Surface format: %s (%d)",
487 mCameraId, strerror(-err), err);
488 ALOGE("%s: %s", __FUNCTION__, msg.string());
489 return STATUS_ERROR(CameraService::ERROR_INVALID_OPERATION, msg.string());
Igor Murashkine7ee7632013-06-11 18:10:18 -0700490 }
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800491 if ((err = anw->query(anw, NATIVE_WINDOW_DEFAULT_DATASPACE,
Eino-Ville Talvala3d82c0d2015-02-23 15:19:19 -0800492 reinterpret_cast<int*>(&dataSpace))) != OK) {
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800493 String8 msg = String8::format("Camera %d: Failed to query Surface dataspace: %s (%d)",
494 mCameraId, strerror(-err), err);
495 ALOGE("%s: %s", __FUNCTION__, msg.string());
496 return STATUS_ERROR(CameraService::ERROR_INVALID_OPERATION, msg.string());
Eino-Ville Talvala3d82c0d2015-02-23 15:19:19 -0800497 }
Igor Murashkine7ee7632013-06-11 18:10:18 -0700498
499 // FIXME: remove this override since the default format should be
500 // IMPLEMENTATION_DEFINED. b/9487482
Igor Murashkin15811012013-07-29 12:25:59 -0700501 if (format >= HAL_PIXEL_FORMAT_RGBA_8888 &&
502 format <= HAL_PIXEL_FORMAT_BGRA_8888) {
Ruben Brunkbba75572014-11-20 17:29:50 -0800503 ALOGW("%s: Camera %d: Overriding format %#x to IMPLEMENTATION_DEFINED",
Igor Murashkine7ee7632013-06-11 18:10:18 -0700504 __FUNCTION__, mCameraId, format);
505 format = HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED;
506 }
507
Ruben Brunkbba75572014-11-20 17:29:50 -0800508 // Round dimensions to the nearest dimensions available for this format
509 if (flexibleConsumer && !CameraDeviceClient::roundBufferDimensionNearest(width, height,
Eino-Ville Talvala3d82c0d2015-02-23 15:19:19 -0800510 format, dataSpace, mDevice->info(), /*out*/&width, /*out*/&height)) {
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800511 String8 msg = String8::format("Camera %d: No supported stream configurations with "
512 "format %#x defined, failed to create output stream", mCameraId, format);
513 ALOGE("%s: %s", __FUNCTION__, msg.string());
514 return STATUS_ERROR(CameraService::ERROR_ILLEGAL_ARGUMENT, msg.string());
Ruben Brunkbba75572014-11-20 17:29:50 -0800515 }
Igor Murashkine7ee7632013-06-11 18:10:18 -0700516
Zhijun He125684a2015-12-26 15:07:30 -0800517 int streamId = camera3::CAMERA3_STREAM_ID_INVALID;
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800518 err = mDevice->createStream(surface, width, height, format, dataSpace,
519 static_cast<camera3_stream_rotation_t>(outputConfiguration.getRotation()),
520 &streamId, outputConfiguration.getSurfaceSetID());
Igor Murashkine7ee7632013-06-11 18:10:18 -0700521
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800522 if (err != OK) {
523 res = STATUS_ERROR_FMT(CameraService::ERROR_INVALID_OPERATION,
524 "Camera %d: Error creating output stream (%d x %d, fmt %x, dataSpace %x): %s (%d)",
525 mCameraId, width, height, format, dataSpace, strerror(-err), err);
526 } else {
Eino-Ville Talvalae992e752014-11-07 16:17:48 -0800527 mStreamMap.add(binder, streamId);
Igor Murashkine7ee7632013-06-11 18:10:18 -0700528
529 ALOGV("%s: Camera %d: Successfully created a new stream ID %d",
530 __FUNCTION__, mCameraId, streamId);
Igor Murashkinf8b2a6f2013-09-17 17:03:28 -0700531
532 /**
533 * Set the stream transform flags to automatically
534 * rotate the camera stream for preview use cases.
535 */
536 int32_t transform = 0;
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800537 err = getRotationTransformLocked(&transform);
Igor Murashkinf8b2a6f2013-09-17 17:03:28 -0700538
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800539 if (err != OK) {
Igor Murashkinf8b2a6f2013-09-17 17:03:28 -0700540 // Error logged by getRotationTransformLocked.
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800541 return STATUS_ERROR(CameraService::ERROR_INVALID_OPERATION,
542 "Unable to calculate rotation transform for new stream");
Igor Murashkinf8b2a6f2013-09-17 17:03:28 -0700543 }
544
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800545 err = mDevice->setStreamTransform(streamId, transform);
546 if (err != OK) {
547 String8 msg = String8::format("Failed to set stream transform (stream id %d)",
548 streamId);
549 ALOGE("%s: %s", __FUNCTION__, msg.string());
550 return STATUS_ERROR(CameraService::ERROR_INVALID_OPERATION, msg.string());
Igor Murashkinf8b2a6f2013-09-17 17:03:28 -0700551 }
552
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800553 *newStreamId = streamId;
Igor Murashkine7ee7632013-06-11 18:10:18 -0700554 }
555
556 return res;
557}
558
Ruben Brunkbba75572014-11-20 17:29:50 -0800559
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800560binder::Status CameraDeviceClient::createInputStream(
561 int width, int height, int format,
562 /*out*/
563 int32_t* newStreamId) {
Chien-Yu Chen618ff8a2015-03-13 11:27:17 -0700564
565 ATRACE_CALL();
566 ALOGV("%s (w = %d, h = %d, f = 0x%x)", __FUNCTION__, width, height, format);
567
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800568 binder::Status res;
569 if (!(res = checkPidStatus(__FUNCTION__)).isOk()) return res;
Chien-Yu Chen618ff8a2015-03-13 11:27:17 -0700570
571 Mutex::Autolock icl(mBinderSerializationLock);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800572
573 if (!mDevice.get()) {
574 return STATUS_ERROR(CameraService::ERROR_DISCONNECTED, "Camera device no longer alive");
575 }
Chien-Yu Chen618ff8a2015-03-13 11:27:17 -0700576
577 if (mInputStream.configured) {
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800578 String8 msg = String8::format("Camera %d: Already has an input stream "
579 "configured (ID %zd)", mCameraId, mInputStream.id);
580 ALOGE("%s: %s", __FUNCTION__, msg.string() );
581 return STATUS_ERROR(CameraService::ERROR_ALREADY_EXISTS, msg.string());
Chien-Yu Chen618ff8a2015-03-13 11:27:17 -0700582 }
583
584 int streamId = -1;
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800585 status_t err = mDevice->createInputStream(width, height, format, &streamId);
586 if (err == OK) {
Chien-Yu Chen618ff8a2015-03-13 11:27:17 -0700587 mInputStream.configured = true;
588 mInputStream.width = width;
589 mInputStream.height = height;
590 mInputStream.format = format;
591 mInputStream.id = streamId;
592
593 ALOGV("%s: Camera %d: Successfully created a new input stream ID %d",
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800594 __FUNCTION__, mCameraId, streamId);
Chien-Yu Chen618ff8a2015-03-13 11:27:17 -0700595
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800596 *newStreamId = streamId;
597 } else {
598 res = STATUS_ERROR_FMT(CameraService::ERROR_INVALID_OPERATION,
599 "Camera %d: Error creating new input stream: %s (%d)", mCameraId,
600 strerror(-err), err);
Chien-Yu Chen618ff8a2015-03-13 11:27:17 -0700601 }
602
603 return res;
604}
605
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800606binder::Status CameraDeviceClient::getInputSurface(/*out*/ view::Surface *inputSurface) {
Chien-Yu Chen618ff8a2015-03-13 11:27:17 -0700607
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800608 binder::Status res;
609 if (!(res = checkPidStatus(__FUNCTION__)).isOk()) return res;
610
611 if (inputSurface == NULL) {
612 return STATUS_ERROR(CameraService::ERROR_ILLEGAL_ARGUMENT, "Null input surface");
Chien-Yu Chen618ff8a2015-03-13 11:27:17 -0700613 }
614
615 Mutex::Autolock icl(mBinderSerializationLock);
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800616 if (!mDevice.get()) {
617 return STATUS_ERROR(CameraService::ERROR_DISCONNECTED, "Camera device no longer alive");
618 }
619 sp<IGraphicBufferProducer> producer;
620 status_t err = mDevice->getInputBufferProducer(&producer);
621 if (err != OK) {
622 res = STATUS_ERROR_FMT(CameraService::ERROR_INVALID_OPERATION,
623 "Camera %d: Error getting input Surface: %s (%d)",
624 mCameraId, strerror(-err), err);
625 } else {
626 inputSurface->name = String16("CameraInput");
627 inputSurface->graphicBufferProducer = producer;
628 }
629 return res;
Chien-Yu Chen618ff8a2015-03-13 11:27:17 -0700630}
631
Ruben Brunkbba75572014-11-20 17:29:50 -0800632bool CameraDeviceClient::roundBufferDimensionNearest(int32_t width, int32_t height,
Eino-Ville Talvala3d82c0d2015-02-23 15:19:19 -0800633 int32_t format, android_dataspace dataSpace, const CameraMetadata& info,
Ruben Brunkbba75572014-11-20 17:29:50 -0800634 /*out*/int32_t* outWidth, /*out*/int32_t* outHeight) {
635
636 camera_metadata_ro_entry streamConfigs =
Eino-Ville Talvala3d82c0d2015-02-23 15:19:19 -0800637 (dataSpace == HAL_DATASPACE_DEPTH) ?
638 info.find(ANDROID_DEPTH_AVAILABLE_DEPTH_STREAM_CONFIGURATIONS) :
Ruben Brunkbba75572014-11-20 17:29:50 -0800639 info.find(ANDROID_SCALER_AVAILABLE_STREAM_CONFIGURATIONS);
640
641 int32_t bestWidth = -1;
642 int32_t bestHeight = -1;
643
644 // Iterate through listed stream configurations and find the one with the smallest euclidean
645 // distance from the given dimensions for the given format.
646 for (size_t i = 0; i < streamConfigs.count; i += 4) {
647 int32_t fmt = streamConfigs.data.i32[i];
648 int32_t w = streamConfigs.data.i32[i + 1];
649 int32_t h = streamConfigs.data.i32[i + 2];
650
651 // Ignore input/output type for now
652 if (fmt == format) {
653 if (w == width && h == height) {
654 bestWidth = width;
655 bestHeight = height;
656 break;
657 } else if (w <= ROUNDING_WIDTH_CAP && (bestWidth == -1 ||
658 CameraDeviceClient::euclidDistSquare(w, h, width, height) <
659 CameraDeviceClient::euclidDistSquare(bestWidth, bestHeight, width, height))) {
660 bestWidth = w;
661 bestHeight = h;
662 }
663 }
664 }
665
666 if (bestWidth == -1) {
667 // Return false if no configurations for this format were listed
668 return false;
669 }
670
671 // Set the outputs to the closet width/height
672 if (outWidth != NULL) {
673 *outWidth = bestWidth;
674 }
675 if (outHeight != NULL) {
676 *outHeight = bestHeight;
677 }
678
679 // Return true if at least one configuration for this format was listed
680 return true;
681}
682
683int64_t CameraDeviceClient::euclidDistSquare(int32_t x0, int32_t y0, int32_t x1, int32_t y1) {
684 int64_t d0 = x0 - x1;
685 int64_t d1 = y0 - y1;
686 return d0 * d0 + d1 * d1;
687}
688
Igor Murashkine7ee7632013-06-11 18:10:18 -0700689// Create a request object from a template.
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800690binder::Status CameraDeviceClient::createDefaultRequest(int templateId,
691 /*out*/
692 hardware::camera2::impl::CameraMetadataNative* request)
Igor Murashkine7ee7632013-06-11 18:10:18 -0700693{
694 ATRACE_CALL();
695 ALOGV("%s (templateId = 0x%x)", __FUNCTION__, templateId);
696
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800697 binder::Status res;
698 if (!(res = checkPidStatus(__FUNCTION__)).isOk()) return res;
Igor Murashkine7ee7632013-06-11 18:10:18 -0700699
700 Mutex::Autolock icl(mBinderSerializationLock);
701
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800702 if (!mDevice.get()) {
703 return STATUS_ERROR(CameraService::ERROR_DISCONNECTED, "Camera device no longer alive");
704 }
Igor Murashkine7ee7632013-06-11 18:10:18 -0700705
706 CameraMetadata metadata;
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800707 status_t err;
708 if ( (err = mDevice->createDefaultRequest(templateId, &metadata) ) == OK &&
Igor Murashkine7ee7632013-06-11 18:10:18 -0700709 request != NULL) {
710
711 request->swap(metadata);
Chien-Yu Chen9cd14022016-03-09 12:21:01 -0800712 } else if (err == BAD_VALUE) {
713 res = STATUS_ERROR_FMT(CameraService::ERROR_ILLEGAL_ARGUMENT,
714 "Camera %d: Template ID %d is invalid or not supported: %s (%d)",
715 mCameraId, templateId, strerror(-err), err);
716
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800717 } else {
718 res = STATUS_ERROR_FMT(CameraService::ERROR_INVALID_OPERATION,
719 "Camera %d: Error creating default request for template %d: %s (%d)",
720 mCameraId, templateId, strerror(-err), err);
Igor Murashkine7ee7632013-06-11 18:10:18 -0700721 }
Igor Murashkine7ee7632013-06-11 18:10:18 -0700722 return res;
723}
724
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800725binder::Status CameraDeviceClient::getCameraInfo(
726 /*out*/
727 hardware::camera2::impl::CameraMetadataNative* info)
Igor Murashkine7ee7632013-06-11 18:10:18 -0700728{
729 ATRACE_CALL();
730 ALOGV("%s", __FUNCTION__);
731
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800732 binder::Status res;
Igor Murashkine7ee7632013-06-11 18:10:18 -0700733
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800734 if (!(res = checkPidStatus(__FUNCTION__)).isOk()) return res;
Igor Murashkine7ee7632013-06-11 18:10:18 -0700735
736 Mutex::Autolock icl(mBinderSerializationLock);
737
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800738 if (!mDevice.get()) {
739 return STATUS_ERROR(CameraService::ERROR_DISCONNECTED, "Camera device no longer alive");
740 }
Igor Murashkine7ee7632013-06-11 18:10:18 -0700741
Igor Murashkin099b4572013-07-12 17:52:16 -0700742 if (info != NULL) {
743 *info = mDevice->info(); // static camera metadata
744 // TODO: merge with device-specific camera metadata
745 }
Igor Murashkine7ee7632013-06-11 18:10:18 -0700746
747 return res;
748}
749
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800750binder::Status CameraDeviceClient::waitUntilIdle()
Zhijun He2ab500c2013-07-23 08:02:53 -0700751{
752 ATRACE_CALL();
753 ALOGV("%s", __FUNCTION__);
754
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800755 binder::Status res;
756 if (!(res = checkPidStatus(__FUNCTION__)).isOk()) return res;
Zhijun He2ab500c2013-07-23 08:02:53 -0700757
758 Mutex::Autolock icl(mBinderSerializationLock);
759
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800760 if (!mDevice.get()) {
761 return STATUS_ERROR(CameraService::ERROR_DISCONNECTED, "Camera device no longer alive");
762 }
Zhijun He2ab500c2013-07-23 08:02:53 -0700763
764 // FIXME: Also need check repeating burst.
Shuzhen Wangc9ca6782016-04-26 13:40:31 -0700765 Mutex::Autolock idLock(mStreamingRequestIdLock);
Chien-Yu Chene8c535e2016-04-14 12:18:26 -0700766 if (mStreamingRequestId != REQUEST_ID_NONE) {
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800767 String8 msg = String8::format(
768 "Camera %d: Try to waitUntilIdle when there are active streaming requests",
769 mCameraId);
770 ALOGE("%s: %s", __FUNCTION__, msg.string());
771 return STATUS_ERROR(CameraService::ERROR_INVALID_OPERATION, msg.string());
Zhijun He2ab500c2013-07-23 08:02:53 -0700772 }
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800773 status_t err = mDevice->waitUntilDrained();
774 if (err != OK) {
775 res = STATUS_ERROR_FMT(CameraService::ERROR_INVALID_OPERATION,
776 "Camera %d: Error waiting to drain: %s (%d)",
777 mCameraId, strerror(-err), err);
778 }
Zhijun He2ab500c2013-07-23 08:02:53 -0700779 ALOGV("%s Done", __FUNCTION__);
Zhijun He2ab500c2013-07-23 08:02:53 -0700780 return res;
781}
782
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800783binder::Status CameraDeviceClient::flush(
784 /*out*/
785 int64_t* lastFrameNumber) {
Eino-Ville Talvalaabaa51d2013-08-14 11:37:00 -0700786 ATRACE_CALL();
787 ALOGV("%s", __FUNCTION__);
788
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800789 binder::Status res;
790 if (!(res = checkPidStatus(__FUNCTION__)).isOk()) return res;
Eino-Ville Talvalaabaa51d2013-08-14 11:37:00 -0700791
792 Mutex::Autolock icl(mBinderSerializationLock);
793
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800794 if (!mDevice.get()) {
795 return STATUS_ERROR(CameraService::ERROR_DISCONNECTED, "Camera device no longer alive");
796 }
Eino-Ville Talvalaabaa51d2013-08-14 11:37:00 -0700797
Shuzhen Wangc9ca6782016-04-26 13:40:31 -0700798 Mutex::Autolock idLock(mStreamingRequestIdLock);
Chien-Yu Chene8c535e2016-04-14 12:18:26 -0700799 mStreamingRequestId = REQUEST_ID_NONE;
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800800 status_t err = mDevice->flush(lastFrameNumber);
801 if (err != OK) {
802 res = STATUS_ERROR_FMT(CameraService::ERROR_INVALID_OPERATION,
803 "Camera %d: Error flushing device: %s (%d)", mCameraId, strerror(-err), err);
804 }
805 return res;
Eino-Ville Talvalaabaa51d2013-08-14 11:37:00 -0700806}
807
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800808binder::Status CameraDeviceClient::prepare(int streamId) {
Eino-Ville Talvala4d44cad2015-04-11 13:15:45 -0700809 ATRACE_CALL();
810 ALOGV("%s", __FUNCTION__);
811
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800812 binder::Status res;
813 if (!(res = checkPidStatus(__FUNCTION__)).isOk()) return res;
Eino-Ville Talvala4d44cad2015-04-11 13:15:45 -0700814
815 Mutex::Autolock icl(mBinderSerializationLock);
816
817 // Guard against trying to prepare non-created streams
818 ssize_t index = NAME_NOT_FOUND;
819 for (size_t i = 0; i < mStreamMap.size(); ++i) {
820 if (streamId == mStreamMap.valueAt(i)) {
821 index = i;
822 break;
823 }
824 }
825
826 if (index == NAME_NOT_FOUND) {
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800827 String8 msg = String8::format("Camera %d: Invalid stream ID (%d) specified, no stream "
828 "with that ID exists", mCameraId, streamId);
829 ALOGW("%s: %s", __FUNCTION__, msg.string());
830 return STATUS_ERROR(CameraService::ERROR_ILLEGAL_ARGUMENT, msg.string());
Eino-Ville Talvala4d44cad2015-04-11 13:15:45 -0700831 }
832
Eino-Ville Talvala261394e2015-05-13 14:28:38 -0700833 // Also returns BAD_VALUE if stream ID was not valid, or stream already
834 // has been used
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800835 status_t err = mDevice->prepare(streamId);
836 if (err == BAD_VALUE) {
837 res = STATUS_ERROR_FMT(CameraService::ERROR_ILLEGAL_ARGUMENT,
838 "Camera %d: Stream %d has already been used, and cannot be prepared",
839 mCameraId, streamId);
840 } else if (err != OK) {
841 res = STATUS_ERROR_FMT(CameraService::ERROR_INVALID_OPERATION,
842 "Camera %d: Error preparing stream %d: %s (%d)", mCameraId, streamId,
843 strerror(-err), err);
844 }
Eino-Ville Talvala4d44cad2015-04-11 13:15:45 -0700845 return res;
846}
847
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800848binder::Status CameraDeviceClient::prepare2(int maxCount, int streamId) {
Ruben Brunkc78ac262015-08-13 17:58:46 -0700849 ATRACE_CALL();
850 ALOGV("%s", __FUNCTION__);
851
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800852 binder::Status res;
853 if (!(res = checkPidStatus(__FUNCTION__)).isOk()) return res;
Ruben Brunkc78ac262015-08-13 17:58:46 -0700854
855 Mutex::Autolock icl(mBinderSerializationLock);
856
857 // Guard against trying to prepare non-created streams
858 ssize_t index = NAME_NOT_FOUND;
859 for (size_t i = 0; i < mStreamMap.size(); ++i) {
860 if (streamId == mStreamMap.valueAt(i)) {
861 index = i;
862 break;
863 }
864 }
865
866 if (index == NAME_NOT_FOUND) {
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800867 String8 msg = String8::format("Camera %d: Invalid stream ID (%d) specified, no stream "
868 "with that ID exists", mCameraId, streamId);
869 ALOGW("%s: %s", __FUNCTION__, msg.string());
870 return STATUS_ERROR(CameraService::ERROR_ILLEGAL_ARGUMENT, msg.string());
Ruben Brunkc78ac262015-08-13 17:58:46 -0700871 }
872
873 if (maxCount <= 0) {
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800874 String8 msg = String8::format("Camera %d: maxCount (%d) must be greater than 0",
875 mCameraId, maxCount);
876 ALOGE("%s: %s", __FUNCTION__, msg.string());
877 return STATUS_ERROR(CameraService::ERROR_ILLEGAL_ARGUMENT, msg.string());
Ruben Brunkc78ac262015-08-13 17:58:46 -0700878 }
879
880 // Also returns BAD_VALUE if stream ID was not valid, or stream already
881 // has been used
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800882 status_t err = mDevice->prepare(maxCount, streamId);
883 if (err == BAD_VALUE) {
884 res = STATUS_ERROR_FMT(CameraService::ERROR_ILLEGAL_ARGUMENT,
885 "Camera %d: Stream %d has already been used, and cannot be prepared",
886 mCameraId, streamId);
887 } else if (err != OK) {
888 res = STATUS_ERROR_FMT(CameraService::ERROR_INVALID_OPERATION,
889 "Camera %d: Error preparing stream %d: %s (%d)", mCameraId, streamId,
890 strerror(-err), err);
891 }
Ruben Brunkc78ac262015-08-13 17:58:46 -0700892
893 return res;
894}
895
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800896binder::Status CameraDeviceClient::tearDown(int streamId) {
Eino-Ville Talvalab25e3c82015-07-15 16:04:27 -0700897 ATRACE_CALL();
898 ALOGV("%s", __FUNCTION__);
899
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800900 binder::Status res;
901 if (!(res = checkPidStatus(__FUNCTION__)).isOk()) return res;
Eino-Ville Talvalab25e3c82015-07-15 16:04:27 -0700902
903 Mutex::Autolock icl(mBinderSerializationLock);
904
905 // Guard against trying to prepare non-created streams
906 ssize_t index = NAME_NOT_FOUND;
907 for (size_t i = 0; i < mStreamMap.size(); ++i) {
908 if (streamId == mStreamMap.valueAt(i)) {
909 index = i;
910 break;
911 }
912 }
913
914 if (index == NAME_NOT_FOUND) {
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800915 String8 msg = String8::format("Camera %d: Invalid stream ID (%d) specified, no stream "
916 "with that ID exists", mCameraId, streamId);
917 ALOGW("%s: %s", __FUNCTION__, msg.string());
918 return STATUS_ERROR(CameraService::ERROR_ILLEGAL_ARGUMENT, msg.string());
Eino-Ville Talvalab25e3c82015-07-15 16:04:27 -0700919 }
920
921 // Also returns BAD_VALUE if stream ID was not valid or if the stream is in
922 // use
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800923 status_t err = mDevice->tearDown(streamId);
924 if (err == BAD_VALUE) {
925 res = STATUS_ERROR_FMT(CameraService::ERROR_ILLEGAL_ARGUMENT,
926 "Camera %d: Stream %d is still in use, cannot be torn down",
927 mCameraId, streamId);
928 } else if (err != OK) {
929 res = STATUS_ERROR_FMT(CameraService::ERROR_INVALID_OPERATION,
930 "Camera %d: Error tearing down stream %d: %s (%d)", mCameraId, streamId,
931 strerror(-err), err);
932 }
Eino-Ville Talvalab25e3c82015-07-15 16:04:27 -0700933
934 return res;
935}
936
Igor Murashkine7ee7632013-06-11 18:10:18 -0700937status_t CameraDeviceClient::dump(int fd, const Vector<String16>& args) {
Eino-Ville Talvalac4003962016-01-13 10:07:04 -0800938 return BasicClient::dump(fd, args);
939}
940
941status_t CameraDeviceClient::dumpClient(int fd, const Vector<String16>& args) {
Igor Murashkine7ee7632013-06-11 18:10:18 -0700942 String8 result;
Eino-Ville Talvala67489d22014-09-18 15:52:02 -0700943 result.appendFormat("CameraDeviceClient[%d] (%p) dump:\n",
Igor Murashkine7ee7632013-06-11 18:10:18 -0700944 mCameraId,
Eino-Ville Talvalae992e752014-11-07 16:17:48 -0800945 (getRemoteCallback() != NULL ?
Marco Nelissenf8880202014-11-14 07:58:25 -0800946 IInterface::asBinder(getRemoteCallback()).get() : NULL) );
Ruben Brunkcc776712015-02-17 20:18:47 -0800947 result.appendFormat(" Current client UID %u\n", mClientUid);
Igor Murashkine7ee7632013-06-11 18:10:18 -0700948
Eino-Ville Talvala67489d22014-09-18 15:52:02 -0700949 result.append(" State:\n");
950 result.appendFormat(" Request ID counter: %d\n", mRequestIdCounter);
Chien-Yu Chen618ff8a2015-03-13 11:27:17 -0700951 if (mInputStream.configured) {
952 result.appendFormat(" Current input stream ID: %d\n",
953 mInputStream.id);
954 } else {
955 result.append(" No input stream configured.\n");
956 }
Eino-Ville Talvala67489d22014-09-18 15:52:02 -0700957 if (!mStreamMap.isEmpty()) {
Chien-Yu Chen618ff8a2015-03-13 11:27:17 -0700958 result.append(" Current output stream IDs:\n");
Eino-Ville Talvala67489d22014-09-18 15:52:02 -0700959 for (size_t i = 0; i < mStreamMap.size(); i++) {
960 result.appendFormat(" Stream %d\n", mStreamMap.valueAt(i));
961 }
962 } else {
Chien-Yu Chen618ff8a2015-03-13 11:27:17 -0700963 result.append(" No output streams configured.\n");
Eino-Ville Talvala67489d22014-09-18 15:52:02 -0700964 }
965 write(fd, result.string(), result.size());
Igor Murashkine7ee7632013-06-11 18:10:18 -0700966 // TODO: print dynamic/request section from most recent requests
967 mFrameProcessor->dump(fd, args);
968
969 return dumpDevice(fd, args);
970}
971
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800972void CameraDeviceClient::notifyError(int32_t errorCode,
Jianing Weicb0652e2014-03-12 18:29:36 -0700973 const CaptureResultExtras& resultExtras) {
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -0700974 // Thread safe. Don't bother locking.
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800975 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = getRemoteCallback();
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -0700976
977 if (remoteCb != 0) {
Jianing Weicb0652e2014-03-12 18:29:36 -0700978 remoteCb->onDeviceError(errorCode, resultExtras);
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -0700979 }
980}
981
Chien-Yu Chene8c535e2016-04-14 12:18:26 -0700982void CameraDeviceClient::notifyRepeatingRequestError(long lastFrameNumber) {
983 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = getRemoteCallback();
984
985 if (remoteCb != 0) {
986 remoteCb->onRepeatingRequestError(lastFrameNumber);
987 }
988
Shuzhen Wangc9ca6782016-04-26 13:40:31 -0700989 Mutex::Autolock idLock(mStreamingRequestIdLock);
Chien-Yu Chene8c535e2016-04-14 12:18:26 -0700990 mStreamingRequestId = REQUEST_ID_NONE;
991}
992
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -0700993void CameraDeviceClient::notifyIdle() {
994 // Thread safe. Don't bother locking.
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800995 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = getRemoteCallback();
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -0700996
997 if (remoteCb != 0) {
998 remoteCb->onDeviceIdle();
999 }
Eino-Ville Talvala412fe562015-08-20 17:08:32 -07001000 Camera2ClientBase::notifyIdle();
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -07001001}
1002
Jianing Weicb0652e2014-03-12 18:29:36 -07001003void CameraDeviceClient::notifyShutter(const CaptureResultExtras& resultExtras,
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -07001004 nsecs_t timestamp) {
1005 // Thread safe. Don't bother locking.
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001006 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = getRemoteCallback();
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -07001007 if (remoteCb != 0) {
Jianing Weicb0652e2014-03-12 18:29:36 -07001008 remoteCb->onCaptureStarted(resultExtras, timestamp);
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -07001009 }
Eino-Ville Talvala412fe562015-08-20 17:08:32 -07001010 Camera2ClientBase::notifyShutter(resultExtras, timestamp);
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -07001011}
1012
Eino-Ville Talvala4d44cad2015-04-11 13:15:45 -07001013void CameraDeviceClient::notifyPrepared(int streamId) {
1014 // Thread safe. Don't bother locking.
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001015 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = getRemoteCallback();
Eino-Ville Talvala4d44cad2015-04-11 13:15:45 -07001016 if (remoteCb != 0) {
1017 remoteCb->onPrepared(streamId);
1018 }
1019}
1020
Igor Murashkine7ee7632013-06-11 18:10:18 -07001021void CameraDeviceClient::detachDevice() {
1022 if (mDevice == 0) return;
1023
1024 ALOGV("Camera %d: Stopping processors", mCameraId);
1025
1026 mFrameProcessor->removeListener(FRAME_PROCESSOR_LISTENER_MIN_ID,
1027 FRAME_PROCESSOR_LISTENER_MAX_ID,
1028 /*listener*/this);
1029 mFrameProcessor->requestExit();
1030 ALOGV("Camera %d: Waiting for threads", mCameraId);
1031 mFrameProcessor->join();
1032 ALOGV("Camera %d: Disconnecting device", mCameraId);
1033
1034 // WORKAROUND: HAL refuses to disconnect while there's streams in flight
1035 {
1036 mDevice->clearStreamingRequest();
1037
1038 status_t code;
1039 if ((code = mDevice->waitUntilDrained()) != OK) {
1040 ALOGE("%s: waitUntilDrained failed with code 0x%x", __FUNCTION__,
1041 code);
1042 }
1043 }
1044
1045 Camera2ClientBase::detachDevice();
1046}
1047
1048/** Device-related methods */
Jianing Weicb0652e2014-03-12 18:29:36 -07001049void CameraDeviceClient::onResultAvailable(const CaptureResult& result) {
Igor Murashkine7ee7632013-06-11 18:10:18 -07001050 ATRACE_CALL();
1051 ALOGV("%s", __FUNCTION__);
1052
Igor Murashkin4fb55c12013-08-29 17:43:01 -07001053 // Thread-safe. No lock necessary.
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001054 sp<hardware::camera2::ICameraDeviceCallbacks> remoteCb = mRemoteCallback;
Igor Murashkin4fb55c12013-08-29 17:43:01 -07001055 if (remoteCb != NULL) {
Jianing Weicb0652e2014-03-12 18:29:36 -07001056 remoteCb->onResultReceived(result.mMetadata, result.mResultExtras);
Igor Murashkine7ee7632013-06-11 18:10:18 -07001057 }
Igor Murashkine7ee7632013-06-11 18:10:18 -07001058}
1059
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001060binder::Status CameraDeviceClient::checkPidStatus(const char* checkLocation) {
Eino-Ville Talvala6192b892016-04-04 12:31:18 -07001061 if (mDisconnected) {
1062 return STATUS_ERROR(CameraService::ERROR_DISCONNECTED,
1063 "The camera device has been disconnected");
1064 }
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -08001065 status_t res = checkPid(checkLocation);
1066 return (res == OK) ? binder::Status::ok() :
1067 STATUS_ERROR(CameraService::ERROR_PERMISSION_DENIED,
1068 "Attempt to use camera from a different process than original client");
1069}
1070
Igor Murashkine7ee7632013-06-11 18:10:18 -07001071// TODO: move to Camera2ClientBase
1072bool CameraDeviceClient::enforceRequestPermissions(CameraMetadata& metadata) {
1073
1074 const int pid = IPCThreadState::self()->getCallingPid();
1075 const int selfPid = getpid();
1076 camera_metadata_entry_t entry;
1077
1078 /**
1079 * Mixin default important security values
1080 * - android.led.transmit = defaulted ON
1081 */
1082 CameraMetadata staticInfo = mDevice->info();
1083 entry = staticInfo.find(ANDROID_LED_AVAILABLE_LEDS);
1084 for(size_t i = 0; i < entry.count; ++i) {
1085 uint8_t led = entry.data.u8[i];
1086
1087 switch(led) {
1088 case ANDROID_LED_AVAILABLE_LEDS_TRANSMIT: {
1089 uint8_t transmitDefault = ANDROID_LED_TRANSMIT_ON;
1090 if (!metadata.exists(ANDROID_LED_TRANSMIT)) {
1091 metadata.update(ANDROID_LED_TRANSMIT,
1092 &transmitDefault, 1);
1093 }
1094 break;
1095 }
1096 }
1097 }
1098
1099 // We can do anything!
1100 if (pid == selfPid) {
1101 return true;
1102 }
1103
1104 /**
1105 * Permission check special fields in the request
1106 * - android.led.transmit = android.permission.CAMERA_DISABLE_TRANSMIT
1107 */
1108 entry = metadata.find(ANDROID_LED_TRANSMIT);
1109 if (entry.count > 0 && entry.data.u8[0] != ANDROID_LED_TRANSMIT_ON) {
1110 String16 permissionString =
1111 String16("android.permission.CAMERA_DISABLE_TRANSMIT_LED");
1112 if (!checkCallingPermission(permissionString)) {
1113 const int uid = IPCThreadState::self()->getCallingUid();
1114 ALOGE("Permission Denial: "
1115 "can't disable transmit LED pid=%d, uid=%d", pid, uid);
1116 return false;
1117 }
1118 }
1119
1120 return true;
1121}
1122
Igor Murashkinf8b2a6f2013-09-17 17:03:28 -07001123status_t CameraDeviceClient::getRotationTransformLocked(int32_t* transform) {
1124 ALOGV("%s: begin", __FUNCTION__);
1125
Igor Murashkinf8b2a6f2013-09-17 17:03:28 -07001126 const CameraMetadata& staticInfo = mDevice->info();
Ruben Brunk5698d442014-06-18 10:39:40 -07001127 return CameraUtils::getRotationTransform(staticInfo, transform);
Igor Murashkinf8b2a6f2013-09-17 17:03:28 -07001128}
1129
Igor Murashkine7ee7632013-06-11 18:10:18 -07001130} // namespace android