blob: dd73b399159d50aa51d2db69331080661c91f98a [file] [log] [blame]
Yin-Chia Yehfaef8f92016-10-31 12:53:56 -07001/*
2 * Copyright (C) 2016 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#ifndef ANDROID_HARDWARE_CAMERA_DEVICE_V3_2_CAMERADEVICE3SESSION_H
18#define ANDROID_HARDWARE_CAMERA_DEVICE_V3_2_CAMERADEVICE3SESSION_H
19
Yifan Hong1192e1d2017-04-11 14:45:00 -070020#include <android/hardware/camera/device/3.2/ICameraDevice.h>
21#include <android/hardware/camera/device/3.2/ICameraDeviceSession.h>
22#include <fmq/MessageQueue.h>
23#include <hidl/MQDescriptor.h>
24#include <hidl/Status.h>
25#include <include/convert.h>
Yin-Chia Yehbed3a942017-03-06 14:14:17 -080026#include <deque>
27#include <map>
Yin-Chia Yeh9c6dbd52016-12-22 14:55:02 -080028#include <unordered_map>
Yin-Chia Yehbed3a942017-03-06 14:14:17 -080029#include "CameraMetadata.h"
Yifan Hong1192e1d2017-04-11 14:45:00 -070030#include "HandleImporter.h"
31#include "hardware/camera3.h"
32#include "hardware/camera_common.h"
33#include "utils/Mutex.h"
Yin-Chia Yehfaef8f92016-10-31 12:53:56 -070034
35namespace android {
36namespace hardware {
37namespace camera {
38namespace device {
39namespace V3_2 {
40namespace implementation {
41
42using ::android::hardware::camera::device::V3_2::CaptureRequest;
43using ::android::hardware::camera::device::V3_2::HalStreamConfiguration;
44using ::android::hardware::camera::device::V3_2::StreamConfiguration;
45using ::android::hardware::camera::device::V3_2::ICameraDeviceSession;
46using ::android::hardware::camera::common::V1_0::Status;
Yin-Chia Yeh248ed702017-01-23 17:27:26 -080047using ::android::hardware::camera::common::V1_0::helper::HandleImporter;
Yifan Hong1192e1d2017-04-11 14:45:00 -070048using ::android::hardware::kSynchronizedReadWrite;
49using ::android::hardware::MessageQueue;
50using ::android::hardware::MQDescriptorSync;
Yin-Chia Yehfaef8f92016-10-31 12:53:56 -070051using ::android::hardware::Return;
52using ::android::hardware::Void;
53using ::android::hardware::hidl_vec;
54using ::android::hardware::hidl_string;
55using ::android::sp;
56using ::android::Mutex;
57
Eino-Ville Talvala50fe4302017-08-22 16:15:09 -070058struct Camera3Stream;
59
Yin-Chia Yehfaef8f92016-10-31 12:53:56 -070060/**
61 * Function pointer types with C calling convention to
62 * use for HAL callback functions.
63 */
64extern "C" {
65 typedef void (callbacks_process_capture_result_t)(
66 const struct camera3_callback_ops *,
67 const camera3_capture_result_t *);
68
69 typedef void (callbacks_notify_t)(
70 const struct camera3_callback_ops *,
71 const camera3_notify_msg_t *);
72}
73
Eino-Ville Talvala50fe4302017-08-22 16:15:09 -070074struct CameraDeviceSession : public virtual RefBase, protected camera3_callback_ops {
Yin-Chia Yehfaef8f92016-10-31 12:53:56 -070075
Yin-Chia Yehbed3a942017-03-06 14:14:17 -080076 CameraDeviceSession(camera3_device_t*,
77 const camera_metadata_t* deviceInfo,
78 const sp<ICameraDeviceCallback>&);
Eino-Ville Talvala50fe4302017-08-22 16:15:09 -070079 virtual ~CameraDeviceSession();
Yin-Chia Yehfaef8f92016-10-31 12:53:56 -070080 // Call by CameraDevice to dump active device states
81 void dumpState(const native_handle_t* fd);
82 // Caller must use this method to check if CameraDeviceSession ctor failed
83 bool isInitFailed() { return mInitFail; }
84 // Used by CameraDevice to signal external camera disconnected
85 void disconnect();
86 bool isClosed();
87
Eino-Ville Talvala50fe4302017-08-22 16:15:09 -070088 // Retrieve the HIDL interface, split into its own class to avoid inheritance issues when
89 // dealing with minor version revs and simultaneous implementation and interface inheritance
90 virtual sp<ICameraDeviceSession> getInterface() {
91 return new TrampolineSessionInterface_3_2(this);
92 }
93
94protected:
95
96 // Methods from ::android::hardware::camera::device::V3_2::ICameraDeviceSession follow
97
Yin-Chia Yehbed3a942017-03-06 14:14:17 -080098 Return<void> constructDefaultRequestSettings(
Eino-Ville Talvala50fe4302017-08-22 16:15:09 -070099 RequestTemplate type,
100 ICameraDeviceSession::constructDefaultRequestSettings_cb _hidl_cb);
Yin-Chia Yehbed3a942017-03-06 14:14:17 -0800101 Return<void> configureStreams(
Eino-Ville Talvala50fe4302017-08-22 16:15:09 -0700102 const StreamConfiguration& requestedConfiguration,
103 ICameraDeviceSession::configureStreams_cb _hidl_cb);
Yifan Hong1192e1d2017-04-11 14:45:00 -0700104 Return<void> getCaptureRequestMetadataQueue(
Eino-Ville Talvala50fe4302017-08-22 16:15:09 -0700105 ICameraDeviceSession::getCaptureRequestMetadataQueue_cb _hidl_cb);
Yifan Hong993e3d02017-04-12 16:31:23 -0700106 Return<void> getCaptureResultMetadataQueue(
Eino-Ville Talvala50fe4302017-08-22 16:15:09 -0700107 ICameraDeviceSession::getCaptureResultMetadataQueue_cb _hidl_cb);
Yin-Chia Yehbed3a942017-03-06 14:14:17 -0800108 Return<void> processCaptureRequest(
Yin-Chia Yeh28eebbf2017-03-30 15:06:20 -0700109 const hidl_vec<CaptureRequest>& requests,
110 const hidl_vec<BufferCache>& cachesToRemove,
Eino-Ville Talvala50fe4302017-08-22 16:15:09 -0700111 ICameraDeviceSession::processCaptureRequest_cb _hidl_cb);
112 Return<Status> flush();
113 Return<void> close();
Yin-Chia Yehfaef8f92016-10-31 12:53:56 -0700114
Eino-Ville Talvala658d30d2018-01-18 12:55:07 -0800115 // Helper methods
116 Status constructDefaultRequestSettingsRaw(int type, CameraMetadata *outMetadata);
117
Emilian Peeve18057b2017-11-13 16:03:44 +0000118 bool preProcessConfigurationLocked(const StreamConfiguration& requestedConfiguration,
119 camera3_stream_configuration_t *stream_list /*out*/,
120 hidl_vec<camera3_stream_t*> *streams /*out*/);
121 void postProcessConfigurationLocked(const StreamConfiguration& requestedConfiguration);
122
Eino-Ville Talvala50fe4302017-08-22 16:15:09 -0700123protected:
124
Yin-Chia Yehfaef8f92016-10-31 12:53:56 -0700125 // protecting mClosed/mDisconnected/mInitFail
126 mutable Mutex mStateLock;
127 // device is closed either
128 // - closed by user
129 // - init failed
130 // - camera disconnected
131 bool mClosed = false;
132
133 // Set by CameraDevice (when external camera is disconnected)
134 bool mDisconnected = false;
135
Emilian Peevcf581372017-04-07 13:53:10 +0100136 struct AETriggerCancelOverride {
137 bool applyAeLock;
138 uint8_t aeLock;
139 bool applyAePrecaptureTrigger;
140 uint8_t aePrecaptureTrigger;
141 };
142
Yin-Chia Yehfaef8f92016-10-31 12:53:56 -0700143 camera3_device_t* mDevice;
Emilian Peev7d52a6f2017-04-07 09:53:48 +0100144 uint32_t mDeviceVersion;
Emilian Peevcf581372017-04-07 13:53:10 +0100145 bool mIsAELockAvailable;
Emilian Peeva13ac992017-04-10 12:02:17 +0100146 bool mDerivePostRawSensKey;
Emilian Peevcf581372017-04-07 13:53:10 +0100147 uint32_t mNumPartialResults;
Yin-Chia Yehfaef8f92016-10-31 12:53:56 -0700148 // Stream ID -> Camera3Stream cache
149 std::map<int, Camera3Stream> mStreamMap;
Yin-Chia Yeh9c6dbd52016-12-22 14:55:02 -0800150
151 mutable Mutex mInflightLock; // protecting mInflightBuffers and mCirculatingBuffers
Yin-Chia Yehfaef8f92016-10-31 12:53:56 -0700152 // (streamID, frameNumber) -> inflight buffer cache
Yin-Chia Yeh9c6dbd52016-12-22 14:55:02 -0800153 std::map<std::pair<int, uint32_t>, camera3_stream_buffer_t> mInflightBuffers;
154
Emilian Peevcf581372017-04-07 13:53:10 +0100155 // (frameNumber, AETriggerOverride) -> inflight request AETriggerOverrides
156 std::map<uint32_t, AETriggerCancelOverride> mInflightAETriggerOverrides;
157 ::android::hardware::camera::common::V1_0::helper::CameraMetadata mOverridenResult;
Emilian Peeva13ac992017-04-10 12:02:17 +0100158 std::map<uint32_t, bool> mInflightRawBoostPresent;
159 ::android::hardware::camera::common::V1_0::helper::CameraMetadata mOverridenRequest;
Emilian Peevcf581372017-04-07 13:53:10 +0100160
Yin-Chia Yeh9c6dbd52016-12-22 14:55:02 -0800161 // buffers currently ciculating between HAL and camera service
Yin-Chia Yehd926f932017-01-09 15:21:11 -0800162 // key: bufferId sent via HIDL interface
Yin-Chia Yeh9c6dbd52016-12-22 14:55:02 -0800163 // value: imported buffer_handle_t
164 // Buffer will be imported during process_capture_request and will be freed
165 // when the its stream is deleted or camera device session is closed
Yin-Chia Yehd926f932017-01-09 15:21:11 -0800166 typedef std::unordered_map<uint64_t, buffer_handle_t> CirculatingBuffers;
Yin-Chia Yeh9c6dbd52016-12-22 14:55:02 -0800167 // Stream ID -> circulating buffers map
168 std::map<int, CirculatingBuffers> mCirculatingBuffers;
Yin-Chia Yehfaef8f92016-10-31 12:53:56 -0700169
Yin-Chia Yeh519c1672017-04-21 14:59:31 -0700170 static HandleImporter sHandleImporter;
Yin-Chia Yeh248ed702017-01-23 17:27:26 -0800171
Yin-Chia Yehfaef8f92016-10-31 12:53:56 -0700172 bool mInitFail;
Yin-Chia Yehe9ab8222017-07-27 11:36:44 -0700173 bool mFirstRequest = false;
Yin-Chia Yehbed3a942017-03-06 14:14:17 -0800174
175 common::V1_0::helper::CameraMetadata mDeviceInfo;
176
Yifan Hong1192e1d2017-04-11 14:45:00 -0700177 using RequestMetadataQueue = MessageQueue<uint8_t, kSynchronizedReadWrite>;
178 std::unique_ptr<RequestMetadataQueue> mRequestMetadataQueue;
Yifan Hong993e3d02017-04-12 16:31:23 -0700179 using ResultMetadataQueue = MessageQueue<uint8_t, kSynchronizedReadWrite>;
180 std::shared_ptr<ResultMetadataQueue> mResultMetadataQueue;
Yifan Hong1192e1d2017-04-11 14:45:00 -0700181
Yin-Chia Yehbed3a942017-03-06 14:14:17 -0800182 class ResultBatcher {
183 public:
184 ResultBatcher(const sp<ICameraDeviceCallback>& callback);
185 void setNumPartialResults(uint32_t n);
186 void setBatchedStreams(const std::vector<int>& streamsToBatch);
Yifan Hong993e3d02017-04-12 16:31:23 -0700187 void setResultMetadataQueue(std::shared_ptr<ResultMetadataQueue> q);
Yin-Chia Yehbed3a942017-03-06 14:14:17 -0800188
Emilian Peevb75aa352018-01-17 11:00:54 +0000189 void registerBatch(uint32_t frameNumber, uint32_t batchSize);
Yin-Chia Yehbed3a942017-03-06 14:14:17 -0800190 void notify(NotifyMsg& msg);
191 void processCaptureResult(CaptureResult& result);
192
193 private:
194 struct InflightBatch {
195 // Protect access to entire struct. Acquire this lock before read/write any data or
196 // calling any methods. processCaptureResult and notify will compete for this lock
197 // HIDL IPCs might be issued while the lock is held
198 Mutex mLock;
199
200 bool allDelivered() const;
201
202 uint32_t mFirstFrame;
203 uint32_t mLastFrame;
204 uint32_t mBatchSize;
205
206 bool mShutterDelivered = false;
207 std::vector<NotifyMsg> mShutterMsgs;
208
209 struct BufferBatch {
Yin-Chia Yehaa699312017-05-26 14:01:32 -0700210 BufferBatch(uint32_t batchSize) {
211 mBuffers.reserve(batchSize);
212 }
Yin-Chia Yehbed3a942017-03-06 14:14:17 -0800213 bool mDelivered = false;
214 // This currently assumes every batched request will output to the batched stream
215 // and since HAL must always send buffers in order, no frameNumber tracking is
216 // needed
217 std::vector<StreamBuffer> mBuffers;
218 };
219 // Stream ID -> VideoBatch
220 std::unordered_map<int, BufferBatch> mBatchBufs;
221
222 struct MetadataBatch {
223 // (frameNumber, metadata)
224 std::vector<std::pair<uint32_t, CameraMetadata>> mMds;
225 };
226 // Partial result IDs that has been delivered to framework
227 uint32_t mNumPartialResults;
228 uint32_t mPartialResultProgress = 0;
229 // partialResult -> MetadataBatch
230 std::map<uint32_t, MetadataBatch> mResultMds;
231
232 // Set to true when batch is removed from mInflightBatches
233 // processCaptureResult and notify must check this flag after acquiring mLock to make
234 // sure this batch isn't removed while waiting for mLock
235 bool mRemoved = false;
236 };
237
238 static const int NOT_BATCHED = -1;
239
240 // Get the batch index and pointer to InflightBatch (nullptrt if the frame is not batched)
241 // Caller must acquire the InflightBatch::mLock before accessing the InflightBatch
242 // It's possible that the InflightBatch is removed from mInflightBatches before the
243 // InflightBatch::mLock is acquired (most likely caused by an error notification), so
244 // caller must check InflightBatch::mRemoved flag after the lock is acquried.
245 // This method will hold ResultBatcher::mLock briefly
246 std::pair<int, std::shared_ptr<InflightBatch>> getBatch(uint32_t frameNumber);
247
248 // Check if the first batch in mInflightBatches is ready to be removed, and remove it if so
249 // This method will hold ResultBatcher::mLock briefly
250 void checkAndRemoveFirstBatch();
251
252 // The following sendXXXX methods must be called while the InflightBatch::mLock is locked
253 // HIDL IPC methods will be called during these methods.
254 void sendBatchShutterCbsLocked(std::shared_ptr<InflightBatch> batch);
255 // send buffers for all batched streams
256 void sendBatchBuffersLocked(std::shared_ptr<InflightBatch> batch);
257 // send buffers for specified streams
258 void sendBatchBuffersLocked(
259 std::shared_ptr<InflightBatch> batch, const std::vector<int>& streams);
260 void sendBatchMetadataLocked(
261 std::shared_ptr<InflightBatch> batch, uint32_t lastPartialResultIdx);
262 // End of sendXXXX methods
263
264 // helper methods
265 void freeReleaseFences(hidl_vec<CaptureResult>&);
266 void notifySingleMsg(NotifyMsg& msg);
267 void processOneCaptureResult(CaptureResult& result);
Yifan Hong993e3d02017-04-12 16:31:23 -0700268 void invokeProcessCaptureResultCallback(hidl_vec<CaptureResult> &results, bool tryWriteFmq);
Yin-Chia Yehbed3a942017-03-06 14:14:17 -0800269
Yin-Chia Yehaa699312017-05-26 14:01:32 -0700270 // move/push function avoids "hidl_handle& operator=(hidl_handle&)", which clones native
271 // handle
272 void moveStreamBuffer(StreamBuffer&& src, StreamBuffer& dst);
273 void pushStreamBuffer(StreamBuffer&& src, std::vector<StreamBuffer>& dst);
274
Yin-Chia Yehbed3a942017-03-06 14:14:17 -0800275 // Protect access to mInflightBatches, mNumPartialResults and mStreamsToBatch
276 // processCaptureRequest, processCaptureResult, notify will compete for this lock
277 // Do NOT issue HIDL IPCs while holding this lock (except when HAL reports error)
278 mutable Mutex mLock;
279 std::deque<std::shared_ptr<InflightBatch>> mInflightBatches;
280 uint32_t mNumPartialResults;
281 std::vector<int> mStreamsToBatch;
282 const sp<ICameraDeviceCallback> mCallback;
Yifan Hong993e3d02017-04-12 16:31:23 -0700283 std::shared_ptr<ResultMetadataQueue> mResultMetadataQueue;
284
285 // Protect against invokeProcessCaptureResultCallback()
286 Mutex mProcessCaptureResultLock;
287
Yin-Chia Yehbed3a942017-03-06 14:14:17 -0800288 } mResultBatcher;
289
290 std::vector<int> mVideoStreamIds;
291
Yin-Chia Yehfaef8f92016-10-31 12:53:56 -0700292 bool initialize();
293
294 Status initStatus() const;
295
296 // Validate and import request's input buffer and acquire fence
Yin-Chia Yeh9c6dbd52016-12-22 14:55:02 -0800297 Status importRequest(
Yin-Chia Yehfaef8f92016-10-31 12:53:56 -0700298 const CaptureRequest& request,
Yin-Chia Yeh9c6dbd52016-12-22 14:55:02 -0800299 hidl_vec<buffer_handle_t*>& allBufPtrs,
Yin-Chia Yehfaef8f92016-10-31 12:53:56 -0700300 hidl_vec<int>& allFences);
301
Yin-Chia Yeh9c6dbd52016-12-22 14:55:02 -0800302 static void cleanupInflightFences(
Yin-Chia Yehfaef8f92016-10-31 12:53:56 -0700303 hidl_vec<int>& allFences, size_t numFences);
304
Emilian Peev98014ff2017-02-02 16:20:12 +0000305 void cleanupBuffersLocked(int id);
306
Yin-Chia Yeh28eebbf2017-03-30 15:06:20 -0700307 void updateBufferCaches(const hidl_vec<BufferCache>& cachesToRemove);
308
Emilian Peev7d52a6f2017-04-07 09:53:48 +0100309 android_dataspace mapToLegacyDataspace(
310 android_dataspace dataSpace) const;
311
Emilian Peevcf581372017-04-07 13:53:10 +0100312 bool handleAePrecaptureCancelRequestLocked(
313 const camera3_capture_request_t &halRequest,
314 android::hardware::camera::common::V1_0::helper::CameraMetadata *settings /*out*/,
315 AETriggerCancelOverride *override /*out*/);
316
317 void overrideResultForPrecaptureCancelLocked(
318 const AETriggerCancelOverride &aeTriggerCancelOverride,
319 ::android::hardware::camera::common::V1_0::helper::CameraMetadata *settings /*out*/);
320
Yin-Chia Yehbed3a942017-03-06 14:14:17 -0800321 Status processOneCaptureRequest(const CaptureRequest& request);
Yin-Chia Yehfaef8f92016-10-31 12:53:56 -0700322 /**
323 * Static callback forwarding methods from HAL to instance
324 */
325 static callbacks_process_capture_result_t sProcessCaptureResult;
326 static callbacks_notify_t sNotify;
Eino-Ville Talvala50fe4302017-08-22 16:15:09 -0700327
328private:
329
330 struct TrampolineSessionInterface_3_2 : public ICameraDeviceSession {
331 TrampolineSessionInterface_3_2(sp<CameraDeviceSession> parent) :
332 mParent(parent) {}
333
334 virtual Return<void> constructDefaultRequestSettings(
335 V3_2::RequestTemplate type,
336 V3_2::ICameraDeviceSession::constructDefaultRequestSettings_cb _hidl_cb) override {
337 return mParent->constructDefaultRequestSettings(type, _hidl_cb);
338 }
339
340 virtual Return<void> configureStreams(
341 const V3_2::StreamConfiguration& requestedConfiguration,
342 V3_2::ICameraDeviceSession::configureStreams_cb _hidl_cb) override {
343 return mParent->configureStreams(requestedConfiguration, _hidl_cb);
344 }
345
346 virtual Return<void> processCaptureRequest(const hidl_vec<V3_2::CaptureRequest>& requests,
347 const hidl_vec<V3_2::BufferCache>& cachesToRemove,
348 V3_2::ICameraDeviceSession::processCaptureRequest_cb _hidl_cb) override {
349 return mParent->processCaptureRequest(requests, cachesToRemove, _hidl_cb);
350 }
351
352 virtual Return<void> getCaptureRequestMetadataQueue(
353 V3_2::ICameraDeviceSession::getCaptureRequestMetadataQueue_cb _hidl_cb) override {
354 return mParent->getCaptureRequestMetadataQueue(_hidl_cb);
355 }
356
357 virtual Return<void> getCaptureResultMetadataQueue(
358 V3_2::ICameraDeviceSession::getCaptureResultMetadataQueue_cb _hidl_cb) override {
359 return mParent->getCaptureResultMetadataQueue(_hidl_cb);
360 }
361
362 virtual Return<Status> flush() override {
363 return mParent->flush();
364 }
365
366 virtual Return<void> close() override {
367 return mParent->close();
368 }
369
370 private:
371 sp<CameraDeviceSession> mParent;
372 };
Yin-Chia Yehfaef8f92016-10-31 12:53:56 -0700373};
374
375} // namespace implementation
376} // namespace V3_2
377} // namespace device
378} // namespace camera
379} // namespace hardware
380} // namespace android
381
382#endif // ANDROID_HARDWARE_CAMERA_DEVICE_V3_2_CAMERADEVICE3SESSION_H