blob: 2e4a303cd06fd715a5b7ec2c0230d4dfafc76ac3 [file] [log] [blame]
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -08001/*
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 Talvalaf76e0272013-02-27 18:02:26 -080017#ifndef ANDROID_SERVERS_CAMERA3DEVICE_H
18#define ANDROID_SERVERS_CAMERA3DEVICE_H
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -080019
20#include <utils/Condition.h>
21#include <utils/Errors.h>
22#include <utils/List.h>
23#include <utils/Mutex.h>
24#include <utils/Thread.h>
25
26#include "CameraDeviceBase.h"
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -080027#include "camera3/Camera3Stream.h"
28#include "camera3/Camera3OutputStream.h"
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -080029
30#include "hardware/camera3.h"
31
32/**
33 * Function pointer types with C calling convention to
34 * use for HAL callback functions.
35 */
36extern "C" {
37 typedef void (callbacks_process_capture_result_t)(
38 const struct camera3_callback_ops *,
39 const camera3_capture_result_t *);
40
41 typedef void (callbacks_notify_t)(
42 const struct camera3_callback_ops *,
43 const camera3_notify_msg_t *);
44}
45
46namespace android {
47
48/**
49 * CameraDevice for HAL devices with version CAMERA_DEVICE_API_VERSION_3_0
50 */
51class Camera3Device :
52 public CameraDeviceBase,
53 private camera3_callback_ops {
54 public:
55 Camera3Device(int id);
56
57 virtual ~Camera3Device();
58
59 /**
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -080060 * CameraDeviceBase interface
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -080061 */
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -080062
Igor Murashkin71381052013-03-04 14:53:08 -080063 virtual int getId() const;
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -080064
65 // Transitions to idle state on success.
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -080066 virtual status_t initialize(camera_module_t *module);
67 virtual status_t disconnect();
68 virtual status_t dump(int fd, const Vector<String16> &args);
69 virtual const CameraMetadata& info() const;
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -080070
71 // Capture and setStreamingRequest will configure streams if currently in
72 // idle state
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -080073 virtual status_t capture(CameraMetadata &request);
74 virtual status_t setStreamingRequest(const CameraMetadata &request);
75 virtual status_t clearStreamingRequest();
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -080076
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -080077 virtual status_t waitUntilRequestReceived(int32_t requestId, nsecs_t timeout);
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -080078
79 // Actual stream creation/deletion is delayed until first request is submitted
80 // If adding streams while actively capturing, will pause device before adding
81 // stream, reconfiguring device, and unpausing.
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -080082 virtual status_t createStream(sp<ANativeWindow> consumer,
83 uint32_t width, uint32_t height, int format, size_t size,
84 int *id);
85 virtual status_t createReprocessStreamFromStream(int outputId, int *id);
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -080086
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -080087 virtual status_t getStreamInfo(int id,
88 uint32_t *width, uint32_t *height, uint32_t *format);
89 virtual status_t setStreamTransform(int id, int transform);
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -080090
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -080091 virtual status_t deleteStream(int id);
92 virtual status_t deleteReprocessStream(int id);
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -080093
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -080094 virtual status_t createDefaultRequest(int templateId, CameraMetadata *request);
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -080095
96 // Transitions to the idle state on success
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -080097 virtual status_t waitUntilDrained();
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -080098
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -080099 virtual status_t setNotifyCallback(NotificationListener *listener);
100 virtual status_t waitForNextFrame(nsecs_t timeout);
101 virtual status_t getNextFrame(CameraMetadata *frame);
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800102
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -0800103 virtual status_t triggerAutofocus(uint32_t id);
104 virtual status_t triggerCancelAutofocus(uint32_t id);
105 virtual status_t triggerPrecaptureMetering(uint32_t id);
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800106
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -0800107 virtual status_t pushReprocessBuffer(int reprocessStreamId,
108 buffer_handle_t *buffer, wp<BufferReleasedListener> listener);
109
110 private:
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800111 static const nsecs_t kShutdownTimeout = 5000000000; // 5 sec
Igor Murashkin4d2f2e82013-04-01 17:29:07 -0700112 struct RequestTrigger;
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800113
114 Mutex mLock;
115
116 /**** Scope for mLock ****/
117
118 const int mId;
119 camera3_device_t *mHal3Device;
120
121 CameraMetadata mDeviceInfo;
122 vendor_tag_query_ops_t mVendorTagOps;
123
124 enum {
125 STATUS_ERROR,
126 STATUS_UNINITIALIZED,
127 STATUS_IDLE,
128 STATUS_ACTIVE
129 } mStatus;
130
Eino-Ville Talvalab2058d12013-04-09 13:49:56 -0700131 // Tracking cause of fatal errors when in STATUS_ERROR
132 String8 mErrorCause;
133
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800134 // Mapping of stream IDs to stream instances
135 typedef KeyedVector<int, sp<camera3::Camera3OutputStream> > StreamSet;
136
137 StreamSet mOutputStreams;
138 sp<camera3::Camera3Stream> mInputStream;
139 int mNextStreamId;
140
141 // Need to hold on to stream references until configure completes.
142 Vector<sp<camera3::Camera3Stream> > mDeletedStreams;
143
144 /**** End scope for mLock ****/
145
146 class CaptureRequest : public LightRefBase<CaptureRequest> {
147 public:
148 CameraMetadata mSettings;
149 sp<camera3::Camera3Stream> mInputStream;
150 Vector<sp<camera3::Camera3Stream> > mOutputStreams;
151 };
152 typedef List<sp<CaptureRequest> > RequestList;
153
154 /**
155 * Lock-held version of waitUntilDrained. Will transition to IDLE on
156 * success.
157 */
158 status_t waitUntilDrainedLocked();
159
160 /**
161 * Do common work for setting up a streaming or single capture request.
162 * On success, will transition to ACTIVE if in IDLE.
163 */
164 sp<CaptureRequest> setUpRequestLocked(const CameraMetadata &request);
165
166 /**
167 * Build a CaptureRequest request from the CameraDeviceBase request
168 * settings.
169 */
170 sp<CaptureRequest> createCaptureRequest(const CameraMetadata &request);
171
172 /**
173 * Take the currently-defined set of streams and configure the HAL to use
174 * them. This is a long-running operation (may be several hundered ms).
175 */
176 status_t configureStreamsLocked();
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -0800177
Eino-Ville Talvalab2058d12013-04-09 13:49:56 -0700178 /**
179 * Set device into an error state due to some fatal failure, and set an
180 * error message to indicate why. Only the first call's message will be
181 * used. The message is also sent to the log.
182 */
183 void setErrorState(const char *fmt, ...);
184 void setErrorStateV(const char *fmt, va_list args);
185 void setErrorStateLocked(const char *fmt, ...);
186 void setErrorStateLockedV(const char *fmt, va_list args);
187
Igor Murashkin4d2f2e82013-04-01 17:29:07 -0700188 struct RequestTrigger {
189 // Metadata tag number, e.g. android.control.aePrecaptureTrigger
190 uint32_t metadataTag;
191 // Metadata value, e.g. 'START' or the trigger ID
192 int32_t entryValue;
193
194 // The last part of the fully qualified path, e.g. afTrigger
195 const char *getTagName() const {
196 return get_camera_metadata_tag_name(metadataTag) ?: "NULL";
197 }
198
199 // e.g. TYPE_BYTE, TYPE_INT32, etc.
200 int getTagType() const {
201 return get_camera_metadata_tag_type(metadataTag);
202 }
203 };
204
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -0800205 /**
206 * Thread for managing capture request submission to HAL device.
207 */
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800208 class RequestThread : public Thread {
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -0800209
210 public:
211
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800212 RequestThread(wp<Camera3Device> parent,
213 camera3_device_t *hal3Device);
214
215 /**
216 * Call after stream (re)-configuration is completed.
217 */
218 void configurationComplete();
219
220 /**
221 * Set or clear the list of repeating requests. Does not block
222 * on either. Use waitUntilPaused to wait until request queue
223 * has emptied out.
224 */
225 status_t setRepeatingRequests(const RequestList& requests);
226 status_t clearRepeatingRequests();
227
228 status_t queueRequest(sp<CaptureRequest> request);
229
230 /**
Igor Murashkin4d2f2e82013-04-01 17:29:07 -0700231 * Queue a trigger to be dispatched with the next outgoing
232 * process_capture_request. The settings for that request only
233 * will be temporarily rewritten to add the trigger tag/value.
234 * Subsequent requests will not be rewritten (for this tag).
235 */
236 status_t queueTrigger(RequestTrigger trigger[], size_t count);
237
238 /**
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800239 * Pause/unpause the capture thread. Doesn't block, so use
240 * waitUntilPaused to wait until the thread is paused.
241 */
242 void setPaused(bool paused);
243
244 /**
245 * Wait until thread is paused, either due to setPaused(true)
246 * or due to lack of input requests. Returns TIMED_OUT in case
247 * the thread does not pause within the timeout.
248 */
249 status_t waitUntilPaused(nsecs_t timeout);
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -0800250
Igor Murashkin4d2f2e82013-04-01 17:29:07 -0700251 /**
252 * Wait until thread processes the capture request with settings'
253 * android.request.id == requestId.
254 *
255 * Returns TIMED_OUT in case the thread does not process the request
256 * within the timeout.
257 */
258 status_t waitUntilRequestProcessed(int32_t requestId, nsecs_t timeout);
259
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -0800260 protected:
261
262 virtual bool threadLoop();
263
264 private:
Igor Murashkin4d2f2e82013-04-01 17:29:07 -0700265 status_t queueTriggerLocked(RequestTrigger trigger);
266 // Mix-in queued triggers into this request
267 int32_t insertTriggers(const sp<CaptureRequest> &request);
268 // Purge the queued triggers from this request,
269 // restoring the old field values for those tags.
270 status_t removeTriggers(const sp<CaptureRequest> &request);
271
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800272 static const nsecs_t kRequestTimeout = 50e6; // 50 ms
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -0800273
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800274 // Waits for a request, or returns NULL if times out.
275 sp<CaptureRequest> waitForNextRequest();
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -0800276
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800277 // Return buffers, etc, for a request that couldn't be fully
278 // constructed. The buffers will be returned in the ERROR state
279 // to mark them as not having valid data.
280 // All arguments will be modified.
281 void cleanUpFailedRequest(camera3_capture_request_t &request,
282 sp<CaptureRequest> &nextRequest,
283 Vector<camera3_stream_buffer_t> &outputBuffers);
284
285 // Pause handling
286 bool waitIfPaused();
287
Eino-Ville Talvalab2058d12013-04-09 13:49:56 -0700288 // Relay error to parent device object setErrorState
289 void setErrorState(const char *fmt, ...);
290
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800291 wp<Camera3Device> mParent;
292 camera3_device_t *mHal3Device;
293
294 Mutex mRequestLock;
295 Condition mRequestSignal;
296 RequestList mRequestQueue;
297 RequestList mRepeatingRequests;
298
299 bool mReconfigured;
300
301 // Used by waitIfPaused, waitForNextRequest, and waitUntilPaused
302 Mutex mPauseLock;
303 bool mDoPause;
304 Condition mDoPauseSignal;
305 bool mPaused;
306 Condition mPausedSignal;
307
308 sp<CaptureRequest> mPrevRequest;
Igor Murashkin4d2f2e82013-04-01 17:29:07 -0700309 int32_t mPrevTriggers;
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800310
311 int32_t mFrameNumber;
Igor Murashkin4d2f2e82013-04-01 17:29:07 -0700312
313 Mutex mLatestRequestMutex;
314 Condition mLatestRequestSignal;
315 // android.request.id for latest process_capture_request
316 int32_t mLatestRequestId;
317
318 typedef KeyedVector<uint32_t/*tag*/, RequestTrigger> TriggerMap;
319 Mutex mTriggerMutex;
320 TriggerMap mTriggerMap;
321 TriggerMap mTriggerRemovedMap;
322 TriggerMap mTriggerReplacedMap;
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -0800323 };
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800324 sp<RequestThread> mRequestThread;
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -0800325
326 /**
Eino-Ville Talvala7d346fa2013-03-11 14:13:50 -0700327 * Output result queue and current HAL device 3A state
328 */
329
330 // Lock for output side of device
331 Mutex mOutputLock;
332
333 /**** Scope for mOutputLock ****/
334
335 List<CameraMetadata> mResultQueue;
336 Condition mResultSignal;
337 NotificationListener *mListener;
338
339 struct AlgState {
340 camera_metadata_enum_android_control_ae_state aeState;
341 camera_metadata_enum_android_control_af_state afState;
342 camera_metadata_enum_android_control_awb_state awbState;
343
344 AlgState() :
345 aeState(ANDROID_CONTROL_AE_STATE_INACTIVE),
346 afState(ANDROID_CONTROL_AF_STATE_INACTIVE),
347 awbState(ANDROID_CONTROL_AWB_STATE_INACTIVE) {
348 }
349 } m3AState;
350
351 /**** End scope for mOutputLock ****/
352
353 /**
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -0800354 * Callback functions from HAL device
355 */
356 void processCaptureResult(const camera3_capture_result *result);
357
358 void notify(const camera3_notify_msg *msg);
359
360 /**
361 * Static callback forwarding methods from HAL to instance
362 */
363 static callbacks_process_capture_result_t sProcessCaptureResult;
364
365 static callbacks_notify_t sNotify;
366
367}; // class Camera3Device
368
369}; // namespace android
370
371#endif