blob: fb1bc1551372d2ec93e0dbfdde30b1e0cea3fce1 [file] [log] [blame]
Igor Murashkin70725502013-06-25 20:27:06 +00001/*
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
Eino-Ville Talvala2f1a2e42013-07-25 17:12:05 -070017package android.hardware.camera2.impl;
Igor Murashkin70725502013-06-25 20:27:06 +000018
Igor Murashkin57ea59b2013-08-23 16:55:57 -070019import static android.hardware.camera2.CameraAccessException.CAMERA_IN_USE;
20
Eino-Ville Talvala2f1a2e42013-07-25 17:12:05 -070021import android.hardware.camera2.CameraAccessException;
Eino-Ville Talvalacca00c62014-05-14 10:53:20 -070022import android.hardware.camera2.CameraCaptureSession;
Ruben Brunk57493682014-05-27 18:58:08 -070023import android.hardware.camera2.CameraCharacteristics;
Eino-Ville Talvala2f1a2e42013-07-25 17:12:05 -070024import android.hardware.camera2.CaptureRequest;
Igor Murashkin57ea59b2013-08-23 16:55:57 -070025import android.hardware.camera2.CaptureResult;
26import android.hardware.camera2.ICameraDeviceCallbacks;
27import android.hardware.camera2.ICameraDeviceUser;
Igor Murashkindb075af2014-05-21 10:07:08 -070028import android.hardware.camera2.TotalCaptureResult;
Eino-Ville Talvala5afd3e92013-08-21 10:37:04 -070029import android.hardware.camera2.utils.CameraBinderDecorator;
Igor Murashkin57ea59b2013-08-23 16:55:57 -070030import android.hardware.camera2.utils.CameraRuntimeException;
Igor Murashkin9c595172014-05-12 13:56:20 -070031import android.hardware.camera2.utils.LongParcelable;
Eino-Ville Talvala4af73c22013-08-14 10:35:46 -070032import android.os.Handler;
Ruben Brunkdecfe952013-10-29 11:00:32 -070033import android.os.IBinder;
Eino-Ville Talvala4af73c22013-08-14 10:35:46 -070034import android.os.Looper;
Ruben Brunkdecfe952013-10-29 11:00:32 -070035import android.os.RemoteException;
Igor Murashkin70725502013-06-25 20:27:06 +000036import android.util.Log;
Igor Murashkin57ea59b2013-08-23 16:55:57 -070037import android.util.SparseArray;
Igor Murashkin70725502013-06-25 20:27:06 +000038import android.view.Surface;
39
Jianing Weid2c3a822014-03-27 18:27:43 -070040import java.util.AbstractMap.SimpleEntry;
Igor Murashkin57ea59b2013-08-23 16:55:57 -070041import java.util.ArrayList;
Igor Murashkin57ea59b2013-08-23 16:55:57 -070042import java.util.HashSet;
Ruben Brunkdecfe952013-10-29 11:00:32 -070043import java.util.Iterator;
Igor Murashkin70725502013-06-25 20:27:06 +000044import java.util.List;
Jianing Weid2c3a822014-03-27 18:27:43 -070045import java.util.TreeSet;
Igor Murashkin70725502013-06-25 20:27:06 +000046
47/**
Eino-Ville Talvala70c22072013-08-27 12:09:04 -070048 * HAL2.1+ implementation of CameraDevice. Use CameraManager#open to instantiate
Igor Murashkin70725502013-06-25 20:27:06 +000049 */
Igor Murashkin21547d62014-06-04 15:21:42 -070050public class CameraDeviceImpl extends android.hardware.camera2.CameraDevice {
Igor Murashkin70725502013-06-25 20:27:06 +000051
52 private final String TAG;
Zhijun Heecb323e2013-07-31 09:40:27 -070053 private final boolean DEBUG;
Igor Murashkin70725502013-06-25 20:27:06 +000054
Ruben Brunkdecfe952013-10-29 11:00:32 -070055 private static final int REQUEST_ID_NONE = -1;
56
Igor Murashkin70725502013-06-25 20:27:06 +000057 // TODO: guard every function with if (!mRemoteDevice) check (if it was closed)
58 private ICameraDeviceUser mRemoteDevice;
59
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -070060 // Lock to synchronize cross-thread access to device public interface
61 private final Object mInterfaceLock = new Object();
Igor Murashkin70725502013-06-25 20:27:06 +000062 private final CameraDeviceCallbacks mCallbacks = new CameraDeviceCallbacks();
63
Eino-Ville Talvala868d9042013-10-03 11:15:21 -070064 private final StateListener mDeviceListener;
Igor Murashkin0b27d342014-05-30 09:45:05 -070065 private volatile StateListener mSessionStateListener;
Eino-Ville Talvala868d9042013-10-03 11:15:21 -070066 private final Handler mDeviceHandler;
67
Igor Murashkin49b2b132014-06-18 19:03:00 -070068 private volatile boolean mClosing = false;
Eino-Ville Talvala7fcb35782014-06-03 18:30:27 -070069 private boolean mInError = false;
Eino-Ville Talvala868d9042013-10-03 11:15:21 -070070 private boolean mIdle = true;
Eino-Ville Talvala4af73c22013-08-14 10:35:46 -070071
Igor Murashkin21547d62014-06-04 15:21:42 -070072 /** map request IDs to listener/request data */
Eino-Ville Talvala4af73c22013-08-14 10:35:46 -070073 private final SparseArray<CaptureListenerHolder> mCaptureListenerMap =
74 new SparseArray<CaptureListenerHolder>();
Igor Murashkin70725502013-06-25 20:27:06 +000075
Ruben Brunkdecfe952013-10-29 11:00:32 -070076 private int mRepeatingRequestId = REQUEST_ID_NONE;
77 private final ArrayList<Integer> mRepeatingRequestIdDeletedList = new ArrayList<Integer>();
Igor Murashkin57ea59b2013-08-23 16:55:57 -070078 // Map stream IDs to Surfaces
79 private final SparseArray<Surface> mConfiguredOutputs = new SparseArray<Surface>();
Igor Murashkin70725502013-06-25 20:27:06 +000080
81 private final String mCameraId;
Ruben Brunk57493682014-05-27 18:58:08 -070082 private final CameraCharacteristics mCharacteristics;
Zhijun He83159152014-07-16 11:32:59 -070083 private final int mTotalPartialCount;
Igor Murashkin70725502013-06-25 20:27:06 +000084
Jianing Weid2c3a822014-03-27 18:27:43 -070085 /**
86 * A list tracking request and its expected last frame.
87 * Updated when calling ICameraDeviceUser methods.
88 */
89 private final List<SimpleEntry</*frameNumber*/Long, /*requestId*/Integer>>
90 mFrameNumberRequestPairs = new ArrayList<SimpleEntry<Long, Integer>>();
91
92 /**
93 * An object tracking received frame numbers.
94 * Updated when receiving callbacks from ICameraDeviceCallbacks.
95 */
96 private final FrameNumberTracker mFrameNumberTracker = new FrameNumberTracker();
97
Igor Murashkin0b27d342014-05-30 09:45:05 -070098 private CameraCaptureSessionImpl mCurrentSession;
99
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700100 // Runnables for all state transitions, except error, which needs the
101 // error code argument
102
103 private final Runnable mCallOnOpened = new Runnable() {
Jianing Weid2c3a822014-03-27 18:27:43 -0700104 @Override
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700105 public void run() {
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700106 StateListener sessionListener = null;
107 synchronized(mInterfaceLock) {
108 if (mRemoteDevice == null) return; // Camera already closed
Igor Murashkin49b2b132014-06-18 19:03:00 -0700109
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700110 sessionListener = mSessionStateListener;
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700111 }
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700112 if (sessionListener != null) {
113 sessionListener.onOpened(CameraDeviceImpl.this);
114 }
115 mDeviceListener.onOpened(CameraDeviceImpl.this);
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700116 }
117 };
118
119 private final Runnable mCallOnUnconfigured = new Runnable() {
Jianing Weid2c3a822014-03-27 18:27:43 -0700120 @Override
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700121 public void run() {
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700122 StateListener sessionListener = null;
123 synchronized(mInterfaceLock) {
124 if (mRemoteDevice == null) return; // Camera already closed
Igor Murashkin49b2b132014-06-18 19:03:00 -0700125
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700126 sessionListener = mSessionStateListener;
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700127 }
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700128 if (sessionListener != null) {
129 sessionListener.onUnconfigured(CameraDeviceImpl.this);
130 }
131 mDeviceListener.onUnconfigured(CameraDeviceImpl.this);
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700132 }
133 };
134
135 private final Runnable mCallOnActive = new Runnable() {
Jianing Weid2c3a822014-03-27 18:27:43 -0700136 @Override
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700137 public void run() {
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700138 StateListener sessionListener = null;
139 synchronized(mInterfaceLock) {
140 if (mRemoteDevice == null) return; // Camera already closed
Igor Murashkin49b2b132014-06-18 19:03:00 -0700141
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700142 sessionListener = mSessionStateListener;
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700143 }
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700144 if (sessionListener != null) {
145 sessionListener.onActive(CameraDeviceImpl.this);
146 }
147 mDeviceListener.onActive(CameraDeviceImpl.this);
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700148 }
149 };
150
151 private final Runnable mCallOnBusy = new Runnable() {
Jianing Weid2c3a822014-03-27 18:27:43 -0700152 @Override
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700153 public void run() {
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700154 StateListener sessionListener = null;
155 synchronized(mInterfaceLock) {
156 if (mRemoteDevice == null) return; // Camera already closed
Igor Murashkin49b2b132014-06-18 19:03:00 -0700157
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700158 sessionListener = mSessionStateListener;
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700159 }
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700160 if (sessionListener != null) {
161 sessionListener.onBusy(CameraDeviceImpl.this);
162 }
163 mDeviceListener.onBusy(CameraDeviceImpl.this);
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700164 }
165 };
166
167 private final Runnable mCallOnClosed = new Runnable() {
Igor Murashkin49b2b132014-06-18 19:03:00 -0700168 private boolean mClosedOnce = false;
169
Jianing Weid2c3a822014-03-27 18:27:43 -0700170 @Override
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700171 public void run() {
Igor Murashkin49b2b132014-06-18 19:03:00 -0700172 if (mClosedOnce) {
173 throw new AssertionError("Don't post #onClosed more than once");
174 }
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700175 StateListener sessionListener = null;
176 synchronized(mInterfaceLock) {
177 sessionListener = mSessionStateListener;
178 }
Igor Murashkin0b27d342014-05-30 09:45:05 -0700179 if (sessionListener != null) {
Igor Murashkin21547d62014-06-04 15:21:42 -0700180 sessionListener.onClosed(CameraDeviceImpl.this);
Igor Murashkin0b27d342014-05-30 09:45:05 -0700181 }
Sol Boucher4b3f8002014-06-05 13:47:24 -0700182 mDeviceListener.onClosed(CameraDeviceImpl.this);
Igor Murashkin49b2b132014-06-18 19:03:00 -0700183 mClosedOnce = true;
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700184 }
185 };
186
187 private final Runnable mCallOnIdle = new Runnable() {
Jianing Weid2c3a822014-03-27 18:27:43 -0700188 @Override
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700189 public void run() {
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700190 StateListener sessionListener = null;
191 synchronized(mInterfaceLock) {
192 if (mRemoteDevice == null) return; // Camera already closed
Igor Murashkin49b2b132014-06-18 19:03:00 -0700193
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700194 sessionListener = mSessionStateListener;
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700195 }
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700196 if (sessionListener != null) {
197 sessionListener.onIdle(CameraDeviceImpl.this);
198 }
199 mDeviceListener.onIdle(CameraDeviceImpl.this);
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700200 }
201 };
202
203 private final Runnable mCallOnDisconnected = new Runnable() {
Jianing Weid2c3a822014-03-27 18:27:43 -0700204 @Override
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700205 public void run() {
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700206 StateListener sessionListener = null;
207 synchronized(mInterfaceLock) {
208 if (mRemoteDevice == null) return; // Camera already closed
Igor Murashkin49b2b132014-06-18 19:03:00 -0700209
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700210 sessionListener = mSessionStateListener;
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700211 }
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700212 if (sessionListener != null) {
213 sessionListener.onDisconnected(CameraDeviceImpl.this);
214 }
215 mDeviceListener.onDisconnected(CameraDeviceImpl.this);
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700216 }
217 };
218
Igor Murashkin21547d62014-06-04 15:21:42 -0700219 public CameraDeviceImpl(String cameraId, StateListener listener, Handler handler,
Ruben Brunk57493682014-05-27 18:58:08 -0700220 CameraCharacteristics characteristics) {
Zhijun He83159152014-07-16 11:32:59 -0700221 if (cameraId == null || listener == null || handler == null || characteristics == null) {
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700222 throw new IllegalArgumentException("Null argument given");
223 }
Igor Murashkin70725502013-06-25 20:27:06 +0000224 mCameraId = cameraId;
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700225 mDeviceListener = listener;
226 mDeviceHandler = handler;
Ruben Brunk57493682014-05-27 18:58:08 -0700227 mCharacteristics = characteristics;
Eino-Ville Talvalab72d1ef2014-04-28 13:21:18 -0700228
229 final int MAX_TAG_LEN = 23;
230 String tag = String.format("CameraDevice-JV-%s", mCameraId);
231 if (tag.length() > MAX_TAG_LEN) {
232 tag = tag.substring(0, MAX_TAG_LEN);
233 }
234 TAG = tag;
Zhijun Heecb323e2013-07-31 09:40:27 -0700235 DEBUG = Log.isLoggable(TAG, Log.DEBUG);
Zhijun He83159152014-07-16 11:32:59 -0700236
237 Integer partialCount =
238 mCharacteristics.get(CameraCharacteristics.REQUEST_PARTIAL_RESULT_COUNT);
239 if (partialCount == null) {
240 // 1 means partial result is not supported.
241 mTotalPartialCount = 1;
242 } else {
243 mTotalPartialCount = partialCount;
244 }
Igor Murashkin70725502013-06-25 20:27:06 +0000245 }
246
247 public CameraDeviceCallbacks getCallbacks() {
248 return mCallbacks;
249 }
250
Igor Murashkin70725502013-06-25 20:27:06 +0000251 public void setRemoteDevice(ICameraDeviceUser remoteDevice) {
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700252 synchronized(mInterfaceLock) {
253 // TODO: Move from decorator to direct binder-mediated exceptions
Eino-Ville Talvala7fcb35782014-06-03 18:30:27 -0700254 // If setRemoteFailure already called, do nothing
255 if (mInError) return;
256
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700257 mRemoteDevice = CameraBinderDecorator.newInstance(remoteDevice);
258
259 mDeviceHandler.post(mCallOnOpened);
260 mDeviceHandler.post(mCallOnUnconfigured);
261 }
Igor Murashkin70725502013-06-25 20:27:06 +0000262 }
263
Eino-Ville Talvala7fcb35782014-06-03 18:30:27 -0700264 /**
265 * Call to indicate failed connection to a remote camera device.
266 *
267 * <p>This places the camera device in the error state and informs the listener.
268 * Use in place of setRemoteDevice() when startup fails.</p>
269 */
270 public void setRemoteFailure(final CameraRuntimeException failure) {
271 int failureCode = StateListener.ERROR_CAMERA_DEVICE;
272 boolean failureIsError = true;
273
274 switch (failure.getReason()) {
275 case CameraAccessException.CAMERA_IN_USE:
276 failureCode = StateListener.ERROR_CAMERA_IN_USE;
277 break;
278 case CameraAccessException.MAX_CAMERAS_IN_USE:
279 failureCode = StateListener.ERROR_MAX_CAMERAS_IN_USE;
280 break;
281 case CameraAccessException.CAMERA_DISABLED:
282 failureCode = StateListener.ERROR_CAMERA_DISABLED;
283 break;
284 case CameraAccessException.CAMERA_DISCONNECTED:
285 failureIsError = false;
286 break;
287 case CameraAccessException.CAMERA_ERROR:
288 failureCode = StateListener.ERROR_CAMERA_DEVICE;
289 break;
290 default:
291 Log.wtf(TAG, "Unknown failure in opening camera device: " + failure.getReason());
292 break;
293 }
294 final int code = failureCode;
295 final boolean isError = failureIsError;
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700296 synchronized(mInterfaceLock) {
297 if (mRemoteDevice == null) return; // Camera already closed, can't go to error state
Igor Murashkin49b2b132014-06-18 19:03:00 -0700298
Eino-Ville Talvala7fcb35782014-06-03 18:30:27 -0700299 mInError = true;
300 mDeviceHandler.post(new Runnable() {
Igor Murashkine1442202014-06-09 17:51:24 -0700301 @Override
Eino-Ville Talvala7fcb35782014-06-03 18:30:27 -0700302 public void run() {
303 if (isError) {
304 mDeviceListener.onError(CameraDeviceImpl.this, code);
305 } else {
306 mDeviceListener.onDisconnected(CameraDeviceImpl.this);
307 }
308 }
309 });
310 }
311 }
312
Igor Murashkin70725502013-06-25 20:27:06 +0000313 @Override
Eino-Ville Talvala4af73c22013-08-14 10:35:46 -0700314 public String getId() {
315 return mCameraId;
316 }
317
Igor Murashkin70725502013-06-25 20:27:06 +0000318 public void configureOutputs(List<Surface> outputs) throws CameraAccessException {
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700319 // Treat a null input the same an empty list
320 if (outputs == null) {
321 outputs = new ArrayList<Surface>();
322 }
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700323 synchronized(mInterfaceLock) {
Eino-Ville Talvala7fcb35782014-06-03 18:30:27 -0700324 checkIfCameraClosedOrInError();
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700325
Igor Murashkin57ea59b2013-08-23 16:55:57 -0700326 HashSet<Surface> addSet = new HashSet<Surface>(outputs); // Streams to create
327 List<Integer> deleteList = new ArrayList<Integer>(); // Streams to delete
328
329 // Determine which streams need to be created, which to be deleted
330 for (int i = 0; i < mConfiguredOutputs.size(); ++i) {
331 int streamId = mConfiguredOutputs.keyAt(i);
332 Surface s = mConfiguredOutputs.valueAt(i);
333
334 if (!outputs.contains(s)) {
335 deleteList.add(streamId);
336 } else {
337 addSet.remove(s); // Don't create a stream previously created
338 }
339 }
340
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700341 mDeviceHandler.post(mCallOnBusy);
342 stopRepeating();
Igor Murashkin57ea59b2013-08-23 16:55:57 -0700343
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700344 try {
Ruben Brunkdecfe952013-10-29 11:00:32 -0700345 waitUntilIdle();
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700346
Ruben Brunkfeb50af2014-05-09 19:58:49 -0700347 mRemoteDevice.beginConfigure();
Igor Murashkin57ea59b2013-08-23 16:55:57 -0700348 // Delete all streams first (to free up HW resources)
349 for (Integer streamId : deleteList) {
350 mRemoteDevice.deleteStream(streamId);
351 mConfiguredOutputs.delete(streamId);
352 }
353
354 // Add all new streams
355 for (Surface s : addSet) {
Igor Murashkin70725502013-06-25 20:27:06 +0000356 // TODO: remove width,height,format since we are ignoring
357 // it.
Igor Murashkin57ea59b2013-08-23 16:55:57 -0700358 int streamId = mRemoteDevice.createStream(0, 0, 0, s);
359 mConfiguredOutputs.put(streamId, s);
Igor Murashkin70725502013-06-25 20:27:06 +0000360 }
Igor Murashkin57ea59b2013-08-23 16:55:57 -0700361
Ruben Brunkfeb50af2014-05-09 19:58:49 -0700362 mRemoteDevice.endConfigure();
Igor Murashkin57ea59b2013-08-23 16:55:57 -0700363 } catch (CameraRuntimeException e) {
364 if (e.getReason() == CAMERA_IN_USE) {
365 throw new IllegalStateException("The camera is currently busy." +
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700366 " You must wait until the previous operation completes.");
Igor Murashkin57ea59b2013-08-23 16:55:57 -0700367 }
368
369 throw e.asChecked();
370 } catch (RemoteException e) {
371 // impossible
372 return;
Igor Murashkin70725502013-06-25 20:27:06 +0000373 }
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700374
375 if (outputs.size() > 0) {
376 mDeviceHandler.post(mCallOnIdle);
377 } else {
378 mDeviceHandler.post(mCallOnUnconfigured);
379 }
Igor Murashkin70725502013-06-25 20:27:06 +0000380 }
381 }
382
383 @Override
Eino-Ville Talvalacca00c62014-05-14 10:53:20 -0700384 public void createCaptureSession(List<Surface> outputs,
385 CameraCaptureSession.StateListener listener, Handler handler)
386 throws CameraAccessException {
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700387 synchronized(mInterfaceLock) {
Igor Murashkin0b27d342014-05-30 09:45:05 -0700388 if (DEBUG) {
389 Log.d(TAG, "createCaptureSession");
390 }
391
Eino-Ville Talvala7fcb35782014-06-03 18:30:27 -0700392 checkIfCameraClosedOrInError();
Igor Murashkin0b27d342014-05-30 09:45:05 -0700393
394 // TODO: we must be in UNCONFIGURED mode to begin with, or using another session
395
396 // TODO: dont block for this
397 boolean configureSuccess = true;
398 CameraAccessException pendingException = null;
399 try {
400 configureOutputs(outputs); // and then block until IDLE
401 } catch (CameraAccessException e) {
402 configureSuccess = false;
403 pendingException = e;
Igor Murashkine1442202014-06-09 17:51:24 -0700404 if (DEBUG) {
405 Log.v(TAG, "createCaptureSession - failed with exception ", e);
406 }
Igor Murashkin0b27d342014-05-30 09:45:05 -0700407 }
408
409 // Fire onConfigured if configureOutputs succeeded, fire onConfigureFailed otherwise.
410 CameraCaptureSessionImpl newSession =
411 new CameraCaptureSessionImpl(outputs, listener, handler, this, mDeviceHandler,
412 configureSuccess);
413
414 if (mCurrentSession != null) {
415 mCurrentSession.replaceSessionClose(newSession);
416 }
417
418 // TODO: wait until current session closes, then create the new session
419 mCurrentSession = newSession;
420
421 if (pendingException != null) {
422 throw pendingException;
423 }
424
425 mSessionStateListener = mCurrentSession.getDeviceStateListener();
426 }
Eino-Ville Talvalacca00c62014-05-14 10:53:20 -0700427 }
428
429 @Override
Eino-Ville Talvala70c22072013-08-27 12:09:04 -0700430 public CaptureRequest.Builder createCaptureRequest(int templateType)
431 throws CameraAccessException {
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700432 synchronized(mInterfaceLock) {
Eino-Ville Talvala7fcb35782014-06-03 18:30:27 -0700433 checkIfCameraClosedOrInError();
Igor Murashkin70725502013-06-25 20:27:06 +0000434
Eino-Ville Talvala70c22072013-08-27 12:09:04 -0700435 CameraMetadataNative templatedRequest = new CameraMetadataNative();
Igor Murashkin70725502013-06-25 20:27:06 +0000436
437 try {
Igor Murashkin0b27d342014-05-30 09:45:05 -0700438 mRemoteDevice.createDefaultRequest(templateType, /*out*/templatedRequest);
Igor Murashkin70725502013-06-25 20:27:06 +0000439 } catch (CameraRuntimeException e) {
440 throw e.asChecked();
441 } catch (RemoteException e) {
442 // impossible
443 return null;
444 }
445
Eino-Ville Talvala70c22072013-08-27 12:09:04 -0700446 CaptureRequest.Builder builder =
447 new CaptureRequest.Builder(templatedRequest);
Igor Murashkin70725502013-06-25 20:27:06 +0000448
Eino-Ville Talvala70c22072013-08-27 12:09:04 -0700449 return builder;
Igor Murashkin70725502013-06-25 20:27:06 +0000450 }
451 }
452
Igor Murashkin6bbf9dc2013-09-05 12:22:00 -0700453 public int capture(CaptureRequest request, CaptureListener listener, Handler handler)
Igor Murashkin70725502013-06-25 20:27:06 +0000454 throws CameraAccessException {
Jianing Weid2c3a822014-03-27 18:27:43 -0700455 if (DEBUG) {
456 Log.d(TAG, "calling capture");
457 }
458 List<CaptureRequest> requestList = new ArrayList<CaptureRequest>();
459 requestList.add(request);
460 return submitCaptureRequest(requestList, listener, handler, /*streaming*/false);
Igor Murashkin70725502013-06-25 20:27:06 +0000461 }
462
Igor Murashkin6bbf9dc2013-09-05 12:22:00 -0700463 public int captureBurst(List<CaptureRequest> requests, CaptureListener listener,
Eino-Ville Talvala4af73c22013-08-14 10:35:46 -0700464 Handler handler) throws CameraAccessException {
Igor Murashkin0b27d342014-05-30 09:45:05 -0700465 if (requests == null || requests.isEmpty()) {
466 throw new IllegalArgumentException("At least one request must be given");
Zhijun Hefc19e2c2013-08-22 14:43:07 -0700467 }
Jianing Weid2c3a822014-03-27 18:27:43 -0700468 return submitCaptureRequest(requests, listener, handler, /*streaming*/false);
Igor Murashkin70725502013-06-25 20:27:06 +0000469 }
470
Jianing Wei5a4b02b2014-04-11 09:59:24 -0700471 /**
472 * This method checks lastFrameNumber returned from ICameraDeviceUser methods for
473 * starting and stopping repeating request and flushing.
474 *
475 * <p>If lastFrameNumber is NO_FRAMES_CAPTURED, it means that the request was never
Eino-Ville Talvalaee37e302014-06-10 15:24:26 -0700476 * sent to HAL. Then onCaptureSequenceAborted is immediately triggered.
Jianing Wei5a4b02b2014-04-11 09:59:24 -0700477 * If lastFrameNumber is non-negative, then the requestId and lastFrameNumber pair
478 * is added to the list mFrameNumberRequestPairs.</p>
479 *
480 * @param requestId the request ID of the current repeating request.
481 *
482 * @param lastFrameNumber last frame number returned from binder.
483 */
484 private void checkEarlyTriggerSequenceComplete(
485 final int requestId, final long lastFrameNumber) {
486 // lastFrameNumber being equal to NO_FRAMES_CAPTURED means that the request
Eino-Ville Talvalaee37e302014-06-10 15:24:26 -0700487 // was never sent to HAL. Should trigger onCaptureSequenceAborted immediately.
Jianing Wei5a4b02b2014-04-11 09:59:24 -0700488 if (lastFrameNumber == CaptureListener.NO_FRAMES_CAPTURED) {
489 final CaptureListenerHolder holder;
490 int index = mCaptureListenerMap.indexOfKey(requestId);
491 holder = (index >= 0) ? mCaptureListenerMap.valueAt(index) : null;
492 if (holder != null) {
493 mCaptureListenerMap.removeAt(index);
Jianing Weibaf0c652014-04-18 17:35:00 -0700494 if (DEBUG) {
495 Log.v(TAG, String.format(
496 "remove holder for requestId %d, "
497 + "because lastFrame is %d.",
498 requestId, lastFrameNumber));
499 }
Jianing Wei5a4b02b2014-04-11 09:59:24 -0700500 }
501
502 if (holder != null) {
503 if (DEBUG) {
Eino-Ville Talvalaee37e302014-06-10 15:24:26 -0700504 Log.v(TAG, "immediately trigger onCaptureSequenceAborted because"
Jianing Wei5a4b02b2014-04-11 09:59:24 -0700505 + " request did not reach HAL");
506 }
507
508 Runnable resultDispatch = new Runnable() {
509 @Override
510 public void run() {
Igor Murashkin21547d62014-06-04 15:21:42 -0700511 if (!CameraDeviceImpl.this.isClosed()) {
Jianing Wei5a4b02b2014-04-11 09:59:24 -0700512 if (DEBUG) {
513 Log.d(TAG, String.format(
514 "early trigger sequence complete for request %d",
515 requestId));
516 }
517 if (lastFrameNumber < Integer.MIN_VALUE
518 || lastFrameNumber > Integer.MAX_VALUE) {
519 throw new AssertionError(lastFrameNumber + " cannot be cast to int");
520 }
Eino-Ville Talvalaee37e302014-06-10 15:24:26 -0700521 holder.getListener().onCaptureSequenceAborted(
Igor Murashkin21547d62014-06-04 15:21:42 -0700522 CameraDeviceImpl.this,
Eino-Ville Talvalaee37e302014-06-10 15:24:26 -0700523 requestId);
Jianing Wei5a4b02b2014-04-11 09:59:24 -0700524 }
525 }
526 };
527 holder.getHandler().post(resultDispatch);
528 } else {
529 Log.w(TAG, String.format(
530 "did not register listener to request %d",
531 requestId));
532 }
533 } else {
534 mFrameNumberRequestPairs.add(
535 new SimpleEntry<Long, Integer>(lastFrameNumber,
536 requestId));
537 }
538 }
539
Jianing Weid2c3a822014-03-27 18:27:43 -0700540 private int submitCaptureRequest(List<CaptureRequest> requestList, CaptureListener listener,
Eino-Ville Talvala4af73c22013-08-14 10:35:46 -0700541 Handler handler, boolean repeating) throws CameraAccessException {
542
543 // Need a valid handler, or current thread needs to have a looper, if
544 // listener is valid
Eino-Ville Talvalae841d4e2013-09-05 09:04:08 -0700545 if (listener != null) {
546 handler = checkHandler(handler);
Eino-Ville Talvala4af73c22013-08-14 10:35:46 -0700547 }
Igor Murashkin70725502013-06-25 20:27:06 +0000548
Ruben Brunk7f2372b2014-07-02 11:05:08 -0700549 // Make sure that there all requests have at least 1 surface; all surfaces are non-null
550 for (CaptureRequest request : requestList) {
551 if (request.getTargets().isEmpty()) {
552 throw new IllegalArgumentException(
553 "Each request must have at least one Surface target");
554 }
555
556 for (Surface surface : request.getTargets()) {
557 if (surface == null) {
558 throw new IllegalArgumentException("Null Surface targets are not allowed");
559 }
560 }
561 }
562
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700563 synchronized(mInterfaceLock) {
Eino-Ville Talvala7fcb35782014-06-03 18:30:27 -0700564 checkIfCameraClosedOrInError();
Igor Murashkin70725502013-06-25 20:27:06 +0000565 int requestId;
566
Ruben Brunke73b41b2013-11-07 19:30:43 -0800567 if (repeating) {
568 stopRepeating();
569 }
570
Jianing Weid2c3a822014-03-27 18:27:43 -0700571 LongParcelable lastFrameNumberRef = new LongParcelable();
Igor Murashkin70725502013-06-25 20:27:06 +0000572 try {
Jianing Weid2c3a822014-03-27 18:27:43 -0700573 requestId = mRemoteDevice.submitRequestList(requestList, repeating,
574 /*out*/lastFrameNumberRef);
Jianing Wei5a4b02b2014-04-11 09:59:24 -0700575 if (DEBUG) {
Jianing Weid2c3a822014-03-27 18:27:43 -0700576 Log.v(TAG, "last frame number " + lastFrameNumberRef.getNumber());
577 }
Igor Murashkin70725502013-06-25 20:27:06 +0000578 } catch (CameraRuntimeException e) {
579 throw e.asChecked();
580 } catch (RemoteException e) {
581 // impossible
Igor Murashkin6bbf9dc2013-09-05 12:22:00 -0700582 return -1;
Igor Murashkin70725502013-06-25 20:27:06 +0000583 }
Jianing Wei5a4b02b2014-04-11 09:59:24 -0700584
Eino-Ville Talvala4af73c22013-08-14 10:35:46 -0700585 if (listener != null) {
Jianing Weid2c3a822014-03-27 18:27:43 -0700586 mCaptureListenerMap.put(requestId, new CaptureListenerHolder(listener,
587 requestList, handler, repeating));
Jianing Weibaf0c652014-04-18 17:35:00 -0700588 } else {
589 if (DEBUG) {
590 Log.d(TAG, "Listen for request " + requestId + " is null");
591 }
Eino-Ville Talvala4af73c22013-08-14 10:35:46 -0700592 }
Igor Murashkin70725502013-06-25 20:27:06 +0000593
Jianing Weid2c3a822014-03-27 18:27:43 -0700594 long lastFrameNumber = lastFrameNumberRef.getNumber();
Jianing Wei5a4b02b2014-04-11 09:59:24 -0700595
Igor Murashkin70725502013-06-25 20:27:06 +0000596 if (repeating) {
Jianing Weid2c3a822014-03-27 18:27:43 -0700597 if (mRepeatingRequestId != REQUEST_ID_NONE) {
Jianing Wei5a4b02b2014-04-11 09:59:24 -0700598 checkEarlyTriggerSequenceComplete(mRepeatingRequestId, lastFrameNumber);
Jianing Weid2c3a822014-03-27 18:27:43 -0700599 }
Ruben Brunkdecfe952013-10-29 11:00:32 -0700600 mRepeatingRequestId = requestId;
Jianing Weid2c3a822014-03-27 18:27:43 -0700601 } else {
602 mFrameNumberRequestPairs.add(
603 new SimpleEntry<Long, Integer>(lastFrameNumber, requestId));
Igor Murashkin70725502013-06-25 20:27:06 +0000604 }
605
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700606 if (mIdle) {
607 mDeviceHandler.post(mCallOnActive);
608 }
609 mIdle = false;
610
Igor Murashkin6bbf9dc2013-09-05 12:22:00 -0700611 return requestId;
Igor Murashkin70725502013-06-25 20:27:06 +0000612 }
613 }
614
Igor Murashkin6bbf9dc2013-09-05 12:22:00 -0700615 public int setRepeatingRequest(CaptureRequest request, CaptureListener listener,
Eino-Ville Talvala4af73c22013-08-14 10:35:46 -0700616 Handler handler) throws CameraAccessException {
Jianing Weid2c3a822014-03-27 18:27:43 -0700617 List<CaptureRequest> requestList = new ArrayList<CaptureRequest>();
618 requestList.add(request);
619 return submitCaptureRequest(requestList, listener, handler, /*streaming*/true);
Igor Murashkin70725502013-06-25 20:27:06 +0000620 }
621
Igor Murashkin6bbf9dc2013-09-05 12:22:00 -0700622 public int setRepeatingBurst(List<CaptureRequest> requests, CaptureListener listener,
Eino-Ville Talvala4af73c22013-08-14 10:35:46 -0700623 Handler handler) throws CameraAccessException {
Igor Murashkin0b27d342014-05-30 09:45:05 -0700624 if (requests == null || requests.isEmpty()) {
625 throw new IllegalArgumentException("At least one request must be given");
Zhijun Hefc19e2c2013-08-22 14:43:07 -0700626 }
Jianing Weid2c3a822014-03-27 18:27:43 -0700627 return submitCaptureRequest(requests, listener, handler, /*streaming*/true);
Igor Murashkin70725502013-06-25 20:27:06 +0000628 }
629
Igor Murashkin70725502013-06-25 20:27:06 +0000630 public void stopRepeating() throws CameraAccessException {
631
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700632 synchronized(mInterfaceLock) {
Eino-Ville Talvala7fcb35782014-06-03 18:30:27 -0700633 checkIfCameraClosedOrInError();
Ruben Brunkdecfe952013-10-29 11:00:32 -0700634 if (mRepeatingRequestId != REQUEST_ID_NONE) {
635
636 int requestId = mRepeatingRequestId;
637 mRepeatingRequestId = REQUEST_ID_NONE;
638
639 // Queue for deletion after in-flight requests finish
Zhijun He1a9b6462014-03-31 16:11:33 -0700640 if (mCaptureListenerMap.get(requestId) != null) {
641 mRepeatingRequestIdDeletedList.add(requestId);
642 }
Igor Murashkin70725502013-06-25 20:27:06 +0000643
644 try {
Jianing Weid2c3a822014-03-27 18:27:43 -0700645 LongParcelable lastFrameNumberRef = new LongParcelable();
646 mRemoteDevice.cancelRequest(requestId, /*out*/lastFrameNumberRef);
647 long lastFrameNumber = lastFrameNumberRef.getNumber();
Jianing Wei5a4b02b2014-04-11 09:59:24 -0700648
649 checkEarlyTriggerSequenceComplete(requestId, lastFrameNumber);
650
Igor Murashkin70725502013-06-25 20:27:06 +0000651 } catch (CameraRuntimeException e) {
652 throw e.asChecked();
653 } catch (RemoteException e) {
654 // impossible
655 return;
656 }
657 }
658 }
659 }
660
Zhijun Hed842fcd2013-12-26 14:14:04 -0800661 private void waitUntilIdle() throws CameraAccessException {
Zhijun He7f4d3142013-07-23 07:54:38 -0700662
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700663 synchronized(mInterfaceLock) {
Eino-Ville Talvala7fcb35782014-06-03 18:30:27 -0700664 checkIfCameraClosedOrInError();
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700665
Ruben Brunkdecfe952013-10-29 11:00:32 -0700666 if (mRepeatingRequestId != REQUEST_ID_NONE) {
Zhijun He7f4d3142013-07-23 07:54:38 -0700667 throw new IllegalStateException("Active repeating request ongoing");
668 }
Zhijun He7f4d3142013-07-23 07:54:38 -0700669 try {
670 mRemoteDevice.waitUntilIdle();
671 } catch (CameraRuntimeException e) {
672 throw e.asChecked();
673 } catch (RemoteException e) {
674 // impossible
675 return;
676 }
Eino-Ville Talvalae841d4e2013-09-05 09:04:08 -0700677 }
Igor Murashkin70725502013-06-25 20:27:06 +0000678 }
679
Eino-Ville Talvala8ebd52b2013-08-13 12:09:44 -0700680 public void flush() throws CameraAccessException {
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700681 synchronized(mInterfaceLock) {
Eino-Ville Talvala7fcb35782014-06-03 18:30:27 -0700682 checkIfCameraClosedOrInError();
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700683
684 mDeviceHandler.post(mCallOnBusy);
Eino-Ville Talvala8ebd52b2013-08-13 12:09:44 -0700685 try {
Jianing Weid2c3a822014-03-27 18:27:43 -0700686 LongParcelable lastFrameNumberRef = new LongParcelable();
687 mRemoteDevice.flush(/*out*/lastFrameNumberRef);
688 if (mRepeatingRequestId != REQUEST_ID_NONE) {
689 long lastFrameNumber = lastFrameNumberRef.getNumber();
Jianing Wei5a4b02b2014-04-11 09:59:24 -0700690 checkEarlyTriggerSequenceComplete(mRepeatingRequestId, lastFrameNumber);
Jianing Weid2c3a822014-03-27 18:27:43 -0700691 mRepeatingRequestId = REQUEST_ID_NONE;
692 }
Eino-Ville Talvala8ebd52b2013-08-13 12:09:44 -0700693 } catch (CameraRuntimeException e) {
694 throw e.asChecked();
695 } catch (RemoteException e) {
696 // impossible
697 return;
698 }
699 }
700 }
701
702 @Override
Igor Murashkin5c9eaf62013-09-10 19:35:24 -0700703 public void close() {
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700704 synchronized (mInterfaceLock) {
Igor Murashkin70725502013-06-25 20:27:06 +0000705 try {
Igor Murashkin2a3eced2013-08-28 17:35:10 -0700706 if (mRemoteDevice != null) {
707 mRemoteDevice.disconnect();
708 }
Igor Murashkin70725502013-06-25 20:27:06 +0000709 } catch (CameraRuntimeException e) {
Igor Murashkin5c9eaf62013-09-10 19:35:24 -0700710 Log.e(TAG, "Exception while closing: ", e.asChecked());
Igor Murashkin70725502013-06-25 20:27:06 +0000711 } catch (RemoteException e) {
712 // impossible
713 }
714
Eino-Ville Talvala7fcb35782014-06-03 18:30:27 -0700715 // Only want to fire the onClosed callback once;
716 // either a normal close where the remote device is valid
717 // or a close after a startup error (no remote device but in error state)
718 if (mRemoteDevice != null || mInError) {
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700719 mDeviceHandler.post(mCallOnClosed);
720 }
Igor Murashkin70725502013-06-25 20:27:06 +0000721
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700722 mRemoteDevice = null;
Eino-Ville Talvala7fcb35782014-06-03 18:30:27 -0700723 mInError = false;
Igor Murashkin70725502013-06-25 20:27:06 +0000724 }
725 }
726
727 @Override
728 protected void finalize() throws Throwable {
729 try {
730 close();
Igor Murashkin70725502013-06-25 20:27:06 +0000731 }
732 finally {
733 super.finalize();
734 }
735 }
736
737 static class CaptureListenerHolder {
738
739 private final boolean mRepeating;
740 private final CaptureListener mListener;
Jianing Weid2c3a822014-03-27 18:27:43 -0700741 private final List<CaptureRequest> mRequestList;
Eino-Ville Talvala4af73c22013-08-14 10:35:46 -0700742 private final Handler mHandler;
Igor Murashkin70725502013-06-25 20:27:06 +0000743
Jianing Weid2c3a822014-03-27 18:27:43 -0700744 CaptureListenerHolder(CaptureListener listener, List<CaptureRequest> requestList,
745 Handler handler, boolean repeating) {
Eino-Ville Talvala4af73c22013-08-14 10:35:46 -0700746 if (listener == null || handler == null) {
747 throw new UnsupportedOperationException(
748 "Must have a valid handler and a valid listener");
749 }
Igor Murashkin70725502013-06-25 20:27:06 +0000750 mRepeating = repeating;
Eino-Ville Talvala4af73c22013-08-14 10:35:46 -0700751 mHandler = handler;
Jianing Weid2c3a822014-03-27 18:27:43 -0700752 mRequestList = new ArrayList<CaptureRequest>(requestList);
Igor Murashkin70725502013-06-25 20:27:06 +0000753 mListener = listener;
754 }
755
756 public boolean isRepeating() {
757 return mRepeating;
758 }
759
760 public CaptureListener getListener() {
761 return mListener;
762 }
763
Jianing Weid2c3a822014-03-27 18:27:43 -0700764 public CaptureRequest getRequest(int subsequenceId) {
765 if (subsequenceId >= mRequestList.size()) {
766 throw new IllegalArgumentException(
767 String.format(
768 "Requested subsequenceId %d is larger than request list size %d.",
769 subsequenceId, mRequestList.size()));
770 } else {
771 if (subsequenceId < 0) {
772 throw new IllegalArgumentException(String.format(
773 "Requested subsequenceId %d is negative", subsequenceId));
774 } else {
775 return mRequestList.get(subsequenceId);
776 }
777 }
778 }
779
Igor Murashkin70725502013-06-25 20:27:06 +0000780 public CaptureRequest getRequest() {
Jianing Weid2c3a822014-03-27 18:27:43 -0700781 return getRequest(0);
Igor Murashkin70725502013-06-25 20:27:06 +0000782 }
Eino-Ville Talvala4af73c22013-08-14 10:35:46 -0700783
784 public Handler getHandler() {
785 return mHandler;
786 }
787
Igor Murashkin70725502013-06-25 20:27:06 +0000788 }
789
Jianing Weid2c3a822014-03-27 18:27:43 -0700790 /**
791 * This class tracks the last frame number for submitted requests.
792 */
793 public class FrameNumberTracker {
794
795 private long mCompletedFrameNumber = -1;
796 private final TreeSet<Long> mFutureErrorSet = new TreeSet<Long>();
797
798 private void update() {
799 Iterator<Long> iter = mFutureErrorSet.iterator();
800 while (iter.hasNext()) {
801 long errorFrameNumber = iter.next();
802 if (errorFrameNumber == mCompletedFrameNumber + 1) {
803 mCompletedFrameNumber++;
804 iter.remove();
805 } else {
806 break;
807 }
808 }
809 }
810
811 /**
812 * This function is called every time when a result or an error is received.
813 * @param frameNumber: the frame number corresponding to the result or error
814 * @param isError: true if it is an error, false if it is not an error
815 */
816 public void updateTracker(long frameNumber, boolean isError) {
817 if (isError) {
818 mFutureErrorSet.add(frameNumber);
819 } else {
820 /**
821 * HAL cannot send an OnResultReceived for frame N unless it knows for
822 * sure that all frames prior to N have either errored out or completed.
823 * So if the current frame is not an error, then all previous frames
824 * should have arrived. The following line checks whether this holds.
825 */
826 if (frameNumber != mCompletedFrameNumber + 1) {
Zhijun He22589b42014-05-01 10:37:36 -0700827 Log.e(TAG, String.format(
Jianing Wei5a4b02b2014-04-11 09:59:24 -0700828 "result frame number %d comes out of order, should be %d + 1",
829 frameNumber, mCompletedFrameNumber));
Jianing Weid2c3a822014-03-27 18:27:43 -0700830 }
831 mCompletedFrameNumber++;
832 }
833 update();
834 }
835
836 public long getCompletedFrameNumber() {
837 return mCompletedFrameNumber;
838 }
839
840 }
841
842 private void checkAndFireSequenceComplete() {
843 long completedFrameNumber = mFrameNumberTracker.getCompletedFrameNumber();
844 Iterator<SimpleEntry<Long, Integer> > iter = mFrameNumberRequestPairs.iterator();
845 while (iter.hasNext()) {
846 final SimpleEntry<Long, Integer> frameNumberRequestPair = iter.next();
847 if (frameNumberRequestPair.getKey() <= completedFrameNumber) {
848
849 // remove request from mCaptureListenerMap
850 final int requestId = frameNumberRequestPair.getValue();
851 final CaptureListenerHolder holder;
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700852 synchronized(mInterfaceLock) {
853 if (mRemoteDevice == null) {
Igor Murashkin49b2b132014-06-18 19:03:00 -0700854 Log.w(TAG, "Camera closed while checking sequences");
855 return;
856 }
857
Jianing Wei5a4b02b2014-04-11 09:59:24 -0700858 int index = mCaptureListenerMap.indexOfKey(requestId);
859 holder = (index >= 0) ? mCaptureListenerMap.valueAt(index)
Jianing Weid2c3a822014-03-27 18:27:43 -0700860 : null;
861 if (holder != null) {
Jianing Wei5a4b02b2014-04-11 09:59:24 -0700862 mCaptureListenerMap.removeAt(index);
863 if (DEBUG) {
864 Log.v(TAG, String.format(
865 "remove holder for requestId %d, "
866 + "because lastFrame %d is <= %d",
867 requestId, frameNumberRequestPair.getKey(),
868 completedFrameNumber));
869 }
Jianing Weid2c3a822014-03-27 18:27:43 -0700870 }
871 }
872 iter.remove();
873
874 // Call onCaptureSequenceCompleted
875 if (holder != null) {
876 Runnable resultDispatch = new Runnable() {
877 @Override
878 public void run() {
Igor Murashkin21547d62014-06-04 15:21:42 -0700879 if (!CameraDeviceImpl.this.isClosed()){
Jianing Weid2c3a822014-03-27 18:27:43 -0700880 if (DEBUG) {
881 Log.d(TAG, String.format(
882 "fire sequence complete for request %d",
883 requestId));
884 }
885
Jianing Wei5a4b02b2014-04-11 09:59:24 -0700886 long lastFrameNumber = frameNumberRequestPair.getKey();
887 if (lastFrameNumber < Integer.MIN_VALUE
888 || lastFrameNumber > Integer.MAX_VALUE) {
889 throw new AssertionError(lastFrameNumber
890 + " cannot be cast to int");
891 }
Jianing Weid2c3a822014-03-27 18:27:43 -0700892 holder.getListener().onCaptureSequenceCompleted(
Igor Murashkin21547d62014-06-04 15:21:42 -0700893 CameraDeviceImpl.this,
Jianing Weid2c3a822014-03-27 18:27:43 -0700894 requestId,
Igor Murashkindb075af2014-05-21 10:07:08 -0700895 lastFrameNumber);
Jianing Weid2c3a822014-03-27 18:27:43 -0700896 }
897 }
898 };
899 holder.getHandler().post(resultDispatch);
900 }
901
902 }
903 }
904 }
905
Zhijun Heecb323e2013-07-31 09:40:27 -0700906 public class CameraDeviceCallbacks extends ICameraDeviceCallbacks.Stub {
Igor Murashkin70725502013-06-25 20:27:06 +0000907
Eino-Ville Talvalae841d4e2013-09-05 09:04:08 -0700908 //
909 // Constants below need to be kept up-to-date with
910 // frameworks/av/include/camera/camera2/ICameraDeviceCallbacks.h
911 //
912
913 //
914 // Error codes for onCameraError
915 //
916
917 /**
918 * Camera has been disconnected
919 */
920 static final int ERROR_CAMERA_DISCONNECTED = 0;
921
922 /**
923 * Camera has encountered a device-level error
924 * Matches CameraDevice.StateListener#ERROR_CAMERA_DEVICE
925 */
926 static final int ERROR_CAMERA_DEVICE = 1;
927
928 /**
929 * Camera has encountered a service-level error
930 * Matches CameraDevice.StateListener#ERROR_CAMERA_SERVICE
931 */
932 static final int ERROR_CAMERA_SERVICE = 2;
933
Igor Murashkin70725502013-06-25 20:27:06 +0000934 @Override
935 public IBinder asBinder() {
936 return this;
937 }
938
Igor Murashkin70725502013-06-25 20:27:06 +0000939 @Override
Jianing Weid2c3a822014-03-27 18:27:43 -0700940 public void onCameraError(final int errorCode, CaptureResultExtras resultExtras) {
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700941 Runnable r = null;
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700942
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700943 synchronized(mInterfaceLock) {
944 if (mRemoteDevice == null) {
Igor Murashkin49b2b132014-06-18 19:03:00 -0700945 return; // Camera already closed
946 }
947
Eino-Ville Talvala7fcb35782014-06-03 18:30:27 -0700948 mInError = true;
Eino-Ville Talvalae841d4e2013-09-05 09:04:08 -0700949 switch (errorCode) {
950 case ERROR_CAMERA_DISCONNECTED:
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700951 r = mCallOnDisconnected;
Eino-Ville Talvalae841d4e2013-09-05 09:04:08 -0700952 break;
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700953 default:
954 Log.e(TAG, "Unknown error from camera device: " + errorCode);
955 // no break
Eino-Ville Talvalae841d4e2013-09-05 09:04:08 -0700956 case ERROR_CAMERA_DEVICE:
957 case ERROR_CAMERA_SERVICE:
958 r = new Runnable() {
Jianing Weid2c3a822014-03-27 18:27:43 -0700959 @Override
Eino-Ville Talvalae841d4e2013-09-05 09:04:08 -0700960 public void run() {
Igor Murashkin21547d62014-06-04 15:21:42 -0700961 if (!CameraDeviceImpl.this.isClosed()) {
962 mDeviceListener.onError(CameraDeviceImpl.this, errorCode);
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700963 }
Eino-Ville Talvalae841d4e2013-09-05 09:04:08 -0700964 }
965 };
966 break;
Eino-Ville Talvalae841d4e2013-09-05 09:04:08 -0700967 }
Igor Murashkin21547d62014-06-04 15:21:42 -0700968 CameraDeviceImpl.this.mDeviceHandler.post(r);
Jianing Weid2c3a822014-03-27 18:27:43 -0700969
Igor Murashkin49b2b132014-06-18 19:03:00 -0700970 // Fire onCaptureSequenceCompleted
971 if (DEBUG) {
972 Log.v(TAG, String.format("got error frame %d", resultExtras.getFrameNumber()));
973 }
974 mFrameNumberTracker.updateTracker(resultExtras.getFrameNumber(), /*error*/true);
975 checkAndFireSequenceComplete();
Jianing Wei5a4b02b2014-04-11 09:59:24 -0700976 }
Eino-Ville Talvalae841d4e2013-09-05 09:04:08 -0700977 }
978
979 @Override
980 public void onCameraIdle() {
981 if (DEBUG) {
982 Log.d(TAG, "Camera now idle");
983 }
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -0700984 synchronized(mInterfaceLock) {
985 if (mRemoteDevice == null) return; // Camera already closed
Igor Murashkin49b2b132014-06-18 19:03:00 -0700986
Igor Murashkin21547d62014-06-04 15:21:42 -0700987 if (!CameraDeviceImpl.this.mIdle) {
988 CameraDeviceImpl.this.mDeviceHandler.post(mCallOnIdle);
Eino-Ville Talvala868d9042013-10-03 11:15:21 -0700989 }
Igor Murashkin21547d62014-06-04 15:21:42 -0700990 CameraDeviceImpl.this.mIdle = true;
Eino-Ville Talvalae841d4e2013-09-05 09:04:08 -0700991 }
992 }
993
994 @Override
Jianing Weid2c3a822014-03-27 18:27:43 -0700995 public void onCaptureStarted(final CaptureResultExtras resultExtras, final long timestamp) {
996 int requestId = resultExtras.getRequestId();
Eino-Ville Talvalae841d4e2013-09-05 09:04:08 -0700997 if (DEBUG) {
998 Log.d(TAG, "Capture started for id " + requestId);
999 }
1000 final CaptureListenerHolder holder;
1001
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -07001002 synchronized(mInterfaceLock) {
1003 if (mRemoteDevice == null) return; // Camera already closed
Igor Murashkin49b2b132014-06-18 19:03:00 -07001004
1005 // Get the listener for this frame ID, if there is one
Igor Murashkin21547d62014-06-04 15:21:42 -07001006 holder = CameraDeviceImpl.this.mCaptureListenerMap.get(requestId);
Eino-Ville Talvalae841d4e2013-09-05 09:04:08 -07001007
Igor Murashkin49b2b132014-06-18 19:03:00 -07001008 if (holder == null) {
1009 return;
1010 }
Eino-Ville Talvalae841d4e2013-09-05 09:04:08 -07001011
Igor Murashkin49b2b132014-06-18 19:03:00 -07001012 if (isClosed()) return;
Eino-Ville Talvala868d9042013-10-03 11:15:21 -07001013
Igor Murashkin49b2b132014-06-18 19:03:00 -07001014 // Dispatch capture start notice
1015 holder.getHandler().post(
1016 new Runnable() {
1017 @Override
1018 public void run() {
1019 if (!CameraDeviceImpl.this.isClosed()) {
1020 holder.getListener().onCaptureStarted(
1021 CameraDeviceImpl.this,
1022 holder.getRequest(resultExtras.getSubsequenceId()),
1023 timestamp);
1024 }
Eino-Ville Talvala868d9042013-10-03 11:15:21 -07001025 }
Igor Murashkin49b2b132014-06-18 19:03:00 -07001026 });
1027
1028 }
Igor Murashkin70725502013-06-25 20:27:06 +00001029 }
1030
1031 @Override
Jianing Weid2c3a822014-03-27 18:27:43 -07001032 public void onResultReceived(CameraMetadataNative result,
1033 CaptureResultExtras resultExtras) throws RemoteException {
Ruben Brunk57493682014-05-27 18:58:08 -07001034
Jianing Weid2c3a822014-03-27 18:27:43 -07001035 int requestId = resultExtras.getRequestId();
Zhijun Heecb323e2013-07-31 09:40:27 -07001036 if (DEBUG) {
Jianing Weibaf0c652014-04-18 17:35:00 -07001037 Log.v(TAG, "Received result frame " + resultExtras.getFrameNumber() + " for id "
1038 + requestId);
Zhijun Heecb323e2013-07-31 09:40:27 -07001039 }
Ruben Brunk57493682014-05-27 18:58:08 -07001040
Eino-Ville Talvala2f75e7d2014-07-15 10:31:54 -07001041 synchronized(mInterfaceLock) {
1042 if (mRemoteDevice == null) return; // Camera already closed
Ruben Brunk57493682014-05-27 18:58:08 -07001043
Igor Murashkin49b2b132014-06-18 19:03:00 -07001044 // TODO: Handle CameraCharacteristics access from CaptureResult correctly.
1045 result.set(CameraCharacteristics.LENS_INFO_SHADING_MAP_SIZE,
1046 getCharacteristics().get(CameraCharacteristics.LENS_INFO_SHADING_MAP_SIZE));
Ruben Brunk57493682014-05-27 18:58:08 -07001047
Igor Murashkin49b2b132014-06-18 19:03:00 -07001048 final CaptureListenerHolder holder =
1049 CameraDeviceImpl.this.mCaptureListenerMap.get(requestId);
Igor Murashkin70725502013-06-25 20:27:06 +00001050
Zhijun He83159152014-07-16 11:32:59 -07001051 boolean isPartialResult =
1052 (resultExtras.getPartialResultCount() < mTotalPartialCount);
Eino-Ville Talvala7a313102013-11-07 14:45:06 -08001053
Igor Murashkin49b2b132014-06-18 19:03:00 -07001054 // Update tracker (increment counter) when it's not a partial result.
Zhijun He83159152014-07-16 11:32:59 -07001055 if (!isPartialResult) {
Igor Murashkin49b2b132014-06-18 19:03:00 -07001056 mFrameNumberTracker.updateTracker(resultExtras.getFrameNumber(),
1057 /*error*/false);
Jianing Wei5a4b02b2014-04-11 09:59:24 -07001058 }
Igor Murashkin70725502013-06-25 20:27:06 +00001059
Igor Murashkin49b2b132014-06-18 19:03:00 -07001060 // Check if we have a listener for this
1061 if (holder == null) {
1062 if (DEBUG) {
1063 Log.d(TAG,
1064 "holder is null, early return at frame "
1065 + resultExtras.getFrameNumber());
1066 }
1067 return;
Jianing Wei5a4b02b2014-04-11 09:59:24 -07001068 }
Eino-Ville Talvala868d9042013-10-03 11:15:21 -07001069
Igor Murashkin49b2b132014-06-18 19:03:00 -07001070 if (isClosed()) {
1071 if (DEBUG) {
1072 Log.d(TAG,
1073 "camera is closed, early return at frame "
1074 + resultExtras.getFrameNumber());
Eino-Ville Talvala7a313102013-11-07 14:45:06 -08001075 }
Igor Murashkin49b2b132014-06-18 19:03:00 -07001076 return;
1077 }
Igor Murashkindb075af2014-05-21 10:07:08 -07001078
Igor Murashkin49b2b132014-06-18 19:03:00 -07001079 final CaptureRequest request = holder.getRequest(resultExtras.getSubsequenceId());
1080
1081
1082 Runnable resultDispatch = null;
1083
1084 // Either send a partial result or the final capture completed result
Zhijun He83159152014-07-16 11:32:59 -07001085 if (isPartialResult) {
Igor Murashkin49b2b132014-06-18 19:03:00 -07001086 final CaptureResult resultAsCapture =
1087 new CaptureResult(result, request, requestId);
1088
1089 // Partial result
1090 resultDispatch = new Runnable() {
1091 @Override
1092 public void run() {
1093 if (!CameraDeviceImpl.this.isClosed()){
Zhijun Hefac77c42014-07-18 14:20:48 -07001094 holder.getListener().onCaptureProgressed(
Igor Murashkin49b2b132014-06-18 19:03:00 -07001095 CameraDeviceImpl.this,
1096 request,
1097 resultAsCapture);
1098 }
Eino-Ville Talvala868d9042013-10-03 11:15:21 -07001099 }
Igor Murashkin49b2b132014-06-18 19:03:00 -07001100 };
1101 } else {
1102 final TotalCaptureResult resultAsCapture =
1103 new TotalCaptureResult(result, request, requestId);
Eino-Ville Talvala7a313102013-11-07 14:45:06 -08001104
Igor Murashkin49b2b132014-06-18 19:03:00 -07001105 // Final capture result
1106 resultDispatch = new Runnable() {
1107 @Override
1108 public void run() {
1109 if (!CameraDeviceImpl.this.isClosed()){
1110 holder.getListener().onCaptureCompleted(
1111 CameraDeviceImpl.this,
1112 request,
1113 resultAsCapture);
1114 }
1115 }
1116 };
1117 }
Jianing Weid2c3a822014-03-27 18:27:43 -07001118
Igor Murashkin49b2b132014-06-18 19:03:00 -07001119 holder.getHandler().post(resultDispatch);
1120
1121 // Fire onCaptureSequenceCompleted
Zhijun He83159152014-07-16 11:32:59 -07001122 if (!isPartialResult) {
Igor Murashkin49b2b132014-06-18 19:03:00 -07001123 checkAndFireSequenceComplete();
1124 }
1125
Jianing Weid2c3a822014-03-27 18:27:43 -07001126 }
Igor Murashkin70725502013-06-25 20:27:06 +00001127 }
1128
1129 }
1130
Eino-Ville Talvalae841d4e2013-09-05 09:04:08 -07001131 /**
Igor Murashkin0b27d342014-05-30 09:45:05 -07001132 * Default handler management.
1133 *
1134 * <p>
1135 * If handler is null, get the current thread's
1136 * Looper to create a Handler with. If no looper exists, throw {@code IllegalArgumentException}.
1137 * </p>
Eino-Ville Talvalae841d4e2013-09-05 09:04:08 -07001138 */
Igor Murashkin0b27d342014-05-30 09:45:05 -07001139 static Handler checkHandler(Handler handler) {
Eino-Ville Talvalae841d4e2013-09-05 09:04:08 -07001140 if (handler == null) {
1141 Looper looper = Looper.myLooper();
1142 if (looper == null) {
1143 throw new IllegalArgumentException(
1144 "No handler given, and current thread has no looper!");
1145 }
1146 handler = new Handler(looper);
1147 }
1148 return handler;
1149 }
1150
Eino-Ville Talvala7fcb35782014-06-03 18:30:27 -07001151 private void checkIfCameraClosedOrInError() throws CameraAccessException {
1152 if (mInError) {
1153 throw new CameraAccessException(CameraAccessException.CAMERA_ERROR,
1154 "The camera device has encountered a serious error");
1155 }
Zhijun He7f4d3142013-07-23 07:54:38 -07001156 if (mRemoteDevice == null) {
1157 throw new IllegalStateException("CameraDevice was already closed");
1158 }
1159 }
Eino-Ville Talvala868d9042013-10-03 11:15:21 -07001160
Igor Murashkin49b2b132014-06-18 19:03:00 -07001161 /** Whether the camera device has started to close (may not yet have finished) */
Eino-Ville Talvala868d9042013-10-03 11:15:21 -07001162 private boolean isClosed() {
Igor Murashkin49b2b132014-06-18 19:03:00 -07001163 return mClosing;
Eino-Ville Talvala868d9042013-10-03 11:15:21 -07001164 }
Ruben Brunk57493682014-05-27 18:58:08 -07001165
1166 private CameraCharacteristics getCharacteristics() {
1167 return mCharacteristics;
1168 }
Igor Murashkin70725502013-06-25 20:27:06 +00001169}