blob: 4555838c3c8bfad35d2dbb0e88b48f65a53b694d [file] [log] [blame]
Igor Murashkin44cfcf02013-03-01 16:22:28 -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
17#define LOG_TAG "Camera2ClientBase"
18#define ATRACE_TAG ATRACE_TAG_CAMERA
19//#define LOG_NDEBUG 0
20
Colin Crosse5729fa2014-03-21 15:04:25 -070021#include <inttypes.h>
22
Igor Murashkin44cfcf02013-03-01 16:22:28 -080023#include <utils/Log.h>
24#include <utils/Trace.h>
25
26#include <cutils/properties.h>
27#include <gui/Surface.h>
28#include <gui/Surface.h>
Igor Murashkin44cfcf02013-03-01 16:22:28 -080029
Shuzhen Wang316781a2020-08-18 18:11:01 -070030#include <camera/CameraSessionStats.h>
31
Eino-Ville Talvala7b82efe2013-07-25 17:12:35 -070032#include "common/Camera2ClientBase.h"
Igor Murashkine7ee7632013-06-11 18:10:18 -070033
Eino-Ville Talvala7b82efe2013-07-25 17:12:35 -070034#include "api2/CameraDeviceClient.h"
35
Eino-Ville Talvalad309fb92015-11-25 12:12:45 -080036#include "device3/Camera3Device.h"
Jayant Chowdhary35642f22022-01-08 00:39:39 +000037#include "device3/aidl/AidlCamera3Device.h"
Jayant Chowdhary22441f32021-12-26 18:35:41 -080038#include "device3/hidl/HidlCamera3Device.h"
Jayant Chowdhary12361932018-08-27 14:46:13 -070039#include "utils/CameraThreadState.h"
Igor Murashkin44cfcf02013-03-01 16:22:28 -080040
41namespace android {
Jayant Chowdhary620763f2022-05-27 05:37:14 +000042
Igor Murashkin44cfcf02013-03-01 16:22:28 -080043using namespace camera2;
44
Igor Murashkin44cfcf02013-03-01 16:22:28 -080045// Interface used by CameraService
46
47template <typename TClientBase>
48Camera2ClientBase<TClientBase>::Camera2ClientBase(
49 const sp<CameraService>& cameraService,
50 const sp<TCamCallbacks>& remoteCallback,
Austin Borger74fca042022-05-23 12:41:21 -070051 std::shared_ptr<CameraServiceProxyWrapper> cameraServiceProxyWrapper,
Igor Murashkin44cfcf02013-03-01 16:22:28 -080052 const String16& clientPackageName,
Jayant Chowdharyeb0169f2022-01-31 00:00:02 -080053 bool systemNativeClient,
Jooyung Han3f9a3b42020-01-23 12:27:18 +090054 const std::optional<String16>& clientFeatureId,
Eino-Ville Talvala2f09bac2016-12-13 11:29:54 -080055 const String8& cameraId,
Yin-Chia Yehc3e9d6f2018-02-06 10:56:32 -080056 int api1CameraId,
Igor Murashkin44cfcf02013-03-01 16:22:28 -080057 int cameraFacing,
Emilian Peev8b64f282021-03-25 16:49:57 -070058 int sensorOrientation,
Igor Murashkin44cfcf02013-03-01 16:22:28 -080059 int clientPid,
60 uid_t clientUid,
Shuzhen Wangd4abdf72021-05-28 11:22:50 -070061 int servicePid,
Emilian Peev5104fe92021-10-21 14:27:09 -070062 bool overrideForPerfClass,
Austin Borger18b30a72022-10-27 12:20:29 -070063 bool overrideToPortrait,
Emilian Peev5104fe92021-10-21 14:27:09 -070064 bool legacyClient):
Jayant Chowdharyeb0169f2022-01-31 00:00:02 -080065 TClientBase(cameraService, remoteCallback, clientPackageName, systemNativeClient,
66 clientFeatureId, cameraId, api1CameraId, cameraFacing, sensorOrientation, clientPid,
Austin Borger18b30a72022-10-27 12:20:29 -070067 clientUid, servicePid, overrideToPortrait),
Yin-Chia Yehcd8fce82014-06-18 10:51:34 -070068 mSharedCameraCallbacks(remoteCallback),
Austin Borger74fca042022-05-23 12:41:21 -070069 mCameraServiceProxyWrapper(cameraServiceProxyWrapper),
Yin-Chia Yehc3e9d6f2018-02-06 10:56:32 -080070 mDeviceActive(false), mApi1CameraId(api1CameraId)
Igor Murashkin44cfcf02013-03-01 16:22:28 -080071{
Eino-Ville Talvala2f09bac2016-12-13 11:29:54 -080072 ALOGI("Camera %s: Opened. Client: %s (PID %d, UID %d)", cameraId.string(),
Eino-Ville Talvalab9d2f332014-09-18 17:24:22 -070073 String8(clientPackageName).string(), clientPid, clientUid);
Igor Murashkin98e24722013-06-19 19:51:04 -070074
Eino-Ville Talvalab9d2f332014-09-18 17:24:22 -070075 mInitialClientPid = clientPid;
Jayant Chowdhary22441f32021-12-26 18:35:41 -080076 mOverrideForPerfClass = overrideForPerfClass;
77 mLegacyClient = legacyClient;
Igor Murashkin44cfcf02013-03-01 16:22:28 -080078}
79
80template <typename TClientBase>
81status_t Camera2ClientBase<TClientBase>::checkPid(const char* checkLocation)
82 const {
83
Jayant Chowdhary12361932018-08-27 14:46:13 -070084 int callingPid = CameraThreadState::getCallingPid();
Igor Murashkin44cfcf02013-03-01 16:22:28 -080085 if (callingPid == TClientBase::mClientPid) return NO_ERROR;
86
87 ALOGE("%s: attempt to use a locked camera from a different process"
88 " (old pid %d, new pid %d)", checkLocation, TClientBase::mClientPid, callingPid);
89 return PERMISSION_DENIED;
90}
91
92template <typename TClientBase>
Emilian Peevbd8c5032018-02-14 23:05:40 +000093status_t Camera2ClientBase<TClientBase>::initialize(sp<CameraProviderManager> manager,
94 const String8& monitorTags) {
95 return initializeImpl(manager, monitorTags);
Eino-Ville Talvala2f09bac2016-12-13 11:29:54 -080096}
97
98template <typename TClientBase>
99template <typename TProviderPtr>
Emilian Peevbd8c5032018-02-14 23:05:40 +0000100status_t Camera2ClientBase<TClientBase>::initializeImpl(TProviderPtr providerPtr,
101 const String8& monitorTags) {
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800102 ATRACE_CALL();
Eino-Ville Talvala2f09bac2016-12-13 11:29:54 -0800103 ALOGV("%s: Initializing client for camera %s", __FUNCTION__,
104 TClientBase::mCameraIdStr.string());
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800105 status_t res;
106
Jayant Chowdhary22441f32021-12-26 18:35:41 -0800107 IPCTransport providerTransport = IPCTransport::INVALID;
108 res = providerPtr->getCameraIdIPCTransport(TClientBase::mCameraIdStr.string(),
109 &providerTransport);
110 if (res != OK) {
111 return res;
112 }
113 switch (providerTransport) {
114 case IPCTransport::HIDL:
115 mDevice =
Austin Borger74fca042022-05-23 12:41:21 -0700116 new HidlCamera3Device(mCameraServiceProxyWrapper,
Austin Borger18b30a72022-10-27 12:20:29 -0700117 TClientBase::mCameraIdStr, mOverrideForPerfClass,
118 TClientBase::mOverrideToPortrait, mLegacyClient);
Jayant Chowdhary22441f32021-12-26 18:35:41 -0800119 break;
120 case IPCTransport::AIDL:
Jayant Chowdhary35642f22022-01-08 00:39:39 +0000121 mDevice =
Austin Borger74fca042022-05-23 12:41:21 -0700122 new AidlCamera3Device(mCameraServiceProxyWrapper,
Austin Borger18b30a72022-10-27 12:20:29 -0700123 TClientBase::mCameraIdStr, mOverrideForPerfClass,
124 TClientBase::mOverrideToPortrait, mLegacyClient);
Jayant Chowdhary35642f22022-01-08 00:39:39 +0000125 break;
Jayant Chowdhary22441f32021-12-26 18:35:41 -0800126 default:
127 ALOGE("%s Invalid transport for camera id %s", __FUNCTION__,
128 TClientBase::mCameraIdStr.string());
129 return NO_INIT;
130 }
Igor Murashkine6800ce2013-03-04 17:25:57 -0800131 if (mDevice == NULL) {
Eino-Ville Talvala2f09bac2016-12-13 11:29:54 -0800132 ALOGE("%s: Camera %s: No device connected",
133 __FUNCTION__, TClientBase::mCameraIdStr.string());
Igor Murashkine6800ce2013-03-04 17:25:57 -0800134 return NO_INIT;
135 }
136
Emilian Peevbd8c5032018-02-14 23:05:40 +0000137 res = mDevice->initialize(providerPtr, monitorTags);
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800138 if (res != OK) {
Eino-Ville Talvala2f09bac2016-12-13 11:29:54 -0800139 ALOGE("%s: Camera %s: unable to initialize device: %s (%d)",
140 __FUNCTION__, TClientBase::mCameraIdStr.string(), strerror(-res), res);
Zhijun He66281c32013-09-13 17:59:59 -0700141 return res;
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800142 }
143
Emilian Peevfa17f092022-07-29 13:28:55 -0700144 // Verify ops permissions
145 res = TClientBase::startCameraOps();
146 if (res != OK) {
147 TClientBase::finishCameraOps();
148 mDevice.clear();
149 return res;
150 }
151
Yin-Chia Yeh5fd603e2019-11-20 11:22:27 -0800152 wp<NotificationListener> weakThis(this);
Yin-Chia Yehe1c80632016-08-08 14:48:05 -0700153 res = mDevice->setNotifyCallback(weakThis);
Austin Borger7b129542022-06-09 13:23:06 -0700154 if (res != OK) {
155 ALOGE("%s: Camera %s: Unable to set notify callback: %s (%d)",
156 __FUNCTION__, TClientBase::mCameraIdStr.string(), strerror(-res), res);
157 return res;
158 }
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800159
Jayant Chowdhary620763f2022-05-27 05:37:14 +0000160 /** Start watchdog thread */
161 mCameraServiceWatchdog = new CameraServiceWatchdog();
Austin Borger7b129542022-06-09 13:23:06 -0700162 res = mCameraServiceWatchdog->run("Camera2ClientBaseWatchdog");
163 if (res != OK) {
164 ALOGE("%s: Unable to start camera service watchdog thread: %s (%d)",
165 __FUNCTION__, strerror(-res), res);
166 return res;
167 }
Jayant Chowdhary620763f2022-05-27 05:37:14 +0000168
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800169 return OK;
170}
171
172template <typename TClientBase>
173Camera2ClientBase<TClientBase>::~Camera2ClientBase() {
174 ATRACE_CALL();
175
176 TClientBase::mDestructionStarted = true;
177
178 disconnect();
179
Ravneetc83d7c42022-06-03 20:51:58 +0000180 if (mCameraServiceWatchdog != NULL) {
181 mCameraServiceWatchdog->requestExit();
182 mCameraServiceWatchdog.clear();
183 }
184
Jayant Chowdhary3ab499d2022-06-15 15:43:33 -0700185 ALOGI("%s: Client object's dtor for Camera Id %s completed. Client was: %s (PID %d, UID %u)",
186 __FUNCTION__, TClientBase::mCameraIdStr.string(),
Svetoslav Ganov280405a2015-05-12 02:19:27 +0000187 String8(TClientBase::mClientPackageName).string(),
Eino-Ville Talvalab9d2f332014-09-18 17:24:22 -0700188 mInitialClientPid, TClientBase::mClientUid);
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800189}
190
191template <typename TClientBase>
Eino-Ville Talvalac4003962016-01-13 10:07:04 -0800192status_t Camera2ClientBase<TClientBase>::dumpClient(int fd,
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800193 const Vector<String16>& args) {
194 String8 result;
Eino-Ville Talvala2f09bac2016-12-13 11:29:54 -0800195 result.appendFormat("Camera2ClientBase[%s] (%p) PID: %d, dump:\n",
196 TClientBase::mCameraIdStr.string(),
Eino-Ville Talvalae992e752014-11-07 16:17:48 -0800197 (TClientBase::getRemoteCallback() != NULL ?
Marco Nelissen06b46062014-11-14 07:58:25 -0800198 IInterface::asBinder(TClientBase::getRemoteCallback()).get() : NULL),
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800199 TClientBase::mClientPid);
200 result.append(" State: ");
201
202 write(fd, result.string(), result.size());
203 // TODO: print dynamic/request section from most recent requests
204
205 return dumpDevice(fd, args);
206}
207
208template <typename TClientBase>
Avichal Rakesh7e53cad2021-10-05 13:46:30 -0700209status_t Camera2ClientBase<TClientBase>::startWatchingTags(const String8 &tags, int out) {
210 sp<CameraDeviceBase> device = mDevice;
211 if (!device) {
212 dprintf(out, " Device is detached");
213 return OK;
214 }
215
216 return device->startWatchingTags(tags);
217}
218
219template <typename TClientBase>
220status_t Camera2ClientBase<TClientBase>::stopWatchingTags(int out) {
221 sp<CameraDeviceBase> device = mDevice;
222 if (!device) {
223 dprintf(out, " Device is detached");
224 return OK;
225 }
226
227 return device->stopWatchingTags();
228}
229
230template <typename TClientBase>
231status_t Camera2ClientBase<TClientBase>::dumpWatchedEventsToVector(std::vector<std::string> &out) {
232 sp<CameraDeviceBase> device = mDevice;
233 if (!device) {
234 // Nothing to dump if the device is detached
235 return OK;
236 }
237 return device->dumpWatchedEventsToVector(out);
238}
239
240template <typename TClientBase>
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800241status_t Camera2ClientBase<TClientBase>::dumpDevice(
242 int fd,
243 const Vector<String16>& args) {
244 String8 result;
245
246 result = " Device dump:\n";
247 write(fd, result.string(), result.size());
248
Yin-Chia Yehe5138f12017-11-10 14:10:05 -0800249 sp<CameraDeviceBase> device = mDevice;
250 if (!device.get()) {
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800251 result = " *** Device is detached\n";
252 write(fd, result.string(), result.size());
253 return NO_ERROR;
254 }
255
Yin-Chia Yehe5138f12017-11-10 14:10:05 -0800256 status_t res = device->dump(fd, args);
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800257 if (res != OK) {
258 result = String8::format(" Error dumping device: %s (%d)",
259 strerror(-res), res);
260 write(fd, result.string(), result.size());
261 }
262
263 return NO_ERROR;
264}
265
266// ICameraClient2BaseUser interface
267
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800268template <typename TClientBase>
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800269binder::Status Camera2ClientBase<TClientBase>::disconnect() {
Ravneet Dhanjal7d412d22022-06-29 01:34:01 +0000270 if (mCameraServiceWatchdog != nullptr && mDevice != nullptr) {
271 // Timer for the disconnect call should be greater than getExpectedInFlightDuration
272 // since this duration is used to error handle methods in the disconnect sequence
273 // thus allowing existing error handling methods to execute first
274 uint64_t maxExpectedDuration =
275 ns2ms(mDevice->getExpectedInFlightDuration() + kBufferTimeDisconnectNs);
276
Jayant Chowdhary3f20d192022-05-31 17:24:39 +0000277 // Initialization from hal succeeded, time disconnect.
278 return mCameraServiceWatchdog->WATCH_CUSTOM_TIMER(disconnectImpl(),
Ravneet Dhanjal7d412d22022-06-29 01:34:01 +0000279 maxExpectedDuration / kCycleLengthMs, kCycleLengthMs);
Jayant Chowdhary3f20d192022-05-31 17:24:39 +0000280 }
281 return disconnectImpl();
Jayant Chowdhary620763f2022-05-27 05:37:14 +0000282}
283
284template <typename TClientBase>
285binder::Status Camera2ClientBase<TClientBase>::disconnectImpl() {
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800286 ATRACE_CALL();
Shuzhen Wang046f4a82022-05-05 17:15:24 -0700287 ALOGD("Camera %s: start to disconnect", TClientBase::mCameraIdStr.string());
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800288 Mutex::Autolock icl(mBinderSerializationLock);
289
Shuzhen Wang046f4a82022-05-05 17:15:24 -0700290 ALOGD("Camera %s: serializationLock acquired", TClientBase::mCameraIdStr.string());
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800291 binder::Status res = binder::Status::ok();
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800292 // Allow both client and the media server to disconnect at all times
Jayant Chowdhary12361932018-08-27 14:46:13 -0700293 int callingPid = CameraThreadState::getCallingPid();
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800294 if (callingPid != TClientBase::mClientPid &&
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800295 callingPid != TClientBase::mServicePid) return res;
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800296
Shuzhen Wang046f4a82022-05-05 17:15:24 -0700297 ALOGD("Camera %s: Shutting down", TClientBase::mCameraIdStr.string());
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800298
Rucha Katakwardf223072021-06-15 10:21:00 -0700299 // Before detaching the device, cache the info from current open session.
300 // The disconnected check avoids duplication of info and also prevents
301 // deadlock while acquiring service lock in cacheDump.
302 if (!TClientBase::mDisconnected) {
Shuzhen Wang046f4a82022-05-05 17:15:24 -0700303 ALOGD("Camera %s: start to cacheDump", TClientBase::mCameraIdStr.string());
Rucha Katakwardf223072021-06-15 10:21:00 -0700304 Camera2ClientBase::getCameraService()->cacheDump();
305 }
306
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800307 detachDevice();
308
Igor Murashkine6800ce2013-03-04 17:25:57 -0800309 CameraService::BasicClient::disconnect();
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800310
Shuzhen Wang316781a2020-08-18 18:11:01 -0700311 ALOGV("Camera %s: Shut down complete", TClientBase::mCameraIdStr.string());
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800312
313 return res;
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800314}
315
316template <typename TClientBase>
317void Camera2ClientBase<TClientBase>::detachDevice() {
318 if (mDevice == 0) return;
319 mDevice->disconnect();
320
Eino-Ville Talvala2f09bac2016-12-13 11:29:54 -0800321 ALOGV("Camera %s: Detach complete", TClientBase::mCameraIdStr.string());
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800322}
323
324template <typename TClientBase>
325status_t Camera2ClientBase<TClientBase>::connect(
326 const sp<TCamCallbacks>& client) {
327 ATRACE_CALL();
328 ALOGV("%s: E", __FUNCTION__);
329 Mutex::Autolock icl(mBinderSerializationLock);
330
331 if (TClientBase::mClientPid != 0 &&
Jayant Chowdhary12361932018-08-27 14:46:13 -0700332 CameraThreadState::getCallingPid() != TClientBase::mClientPid) {
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800333
Eino-Ville Talvala2f09bac2016-12-13 11:29:54 -0800334 ALOGE("%s: Camera %s: Connection attempt from pid %d; "
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800335 "current locked to pid %d",
336 __FUNCTION__,
Eino-Ville Talvala2f09bac2016-12-13 11:29:54 -0800337 TClientBase::mCameraIdStr.string(),
Jayant Chowdhary12361932018-08-27 14:46:13 -0700338 CameraThreadState::getCallingPid(),
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800339 TClientBase::mClientPid);
340 return BAD_VALUE;
341 }
342
Jayant Chowdhary12361932018-08-27 14:46:13 -0700343 TClientBase::mClientPid = CameraThreadState::getCallingPid();
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800344
345 TClientBase::mRemoteCallback = client;
346 mSharedCameraCallbacks = client;
347
348 return OK;
349}
350
351/** Device-related methods */
352
353template <typename TClientBase>
Jianing Weicb0652e2014-03-12 18:29:36 -0700354void Camera2ClientBase<TClientBase>::notifyError(
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800355 int32_t errorCode,
Jianing Weicb0652e2014-03-12 18:29:36 -0700356 const CaptureResultExtras& resultExtras) {
357 ALOGE("Error condition %d reported by HAL, requestId %" PRId32, errorCode,
358 resultExtras.requestId);
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800359}
360
361template <typename TClientBase>
Austin Borger4a870a32022-02-25 01:48:41 +0000362status_t Camera2ClientBase<TClientBase>::notifyActive(float maxPreviewFps) {
Eino-Ville Talvala178e8232021-04-16 18:41:39 -0700363 if (!mDeviceActive) {
364 status_t res = TClientBase::startCameraStreamingOps();
365 if (res != OK) {
366 ALOGE("%s: Camera %s: Error starting camera streaming ops: %d", __FUNCTION__,
367 TClientBase::mCameraIdStr.string(), res);
368 return res;
369 }
Austin Borger74fca042022-05-23 12:41:21 -0700370 mCameraServiceProxyWrapper->logActive(TClientBase::mCameraIdStr, maxPreviewFps);
Eino-Ville Talvala178e8232021-04-16 18:41:39 -0700371 }
372 mDeviceActive = true;
373
374 ALOGV("Camera device is now active");
375 return OK;
376}
377
378template <typename TClientBase>
Shuzhen Wangd26b1862022-03-07 12:05:05 -0800379void Camera2ClientBase<TClientBase>::notifyIdleWithUserTag(
Shuzhen Wang316781a2020-08-18 18:11:01 -0700380 int64_t requestCount, int64_t resultErrorCount, bool deviceError,
Shuzhen Wangd26b1862022-03-07 12:05:05 -0800381 const std::vector<hardware::CameraStreamStats>& streamStats,
Shuzhen Wang9372b0b2022-05-11 18:55:19 -0700382 const std::string& userTag, int videoStabilizationMode) {
Eino-Ville Talvala412fe562015-08-20 17:08:32 -0700383 if (mDeviceActive) {
Eino-Ville Talvala178e8232021-04-16 18:41:39 -0700384 status_t res = TClientBase::finishCameraStreamingOps();
385 if (res != OK) {
386 ALOGE("%s: Camera %s: Error finishing streaming ops: %d", __FUNCTION__,
387 TClientBase::mCameraIdStr.string(), res);
388 }
Austin Borger74fca042022-05-23 12:41:21 -0700389 mCameraServiceProxyWrapper->logIdle(TClientBase::mCameraIdStr,
Shuzhen Wang9372b0b2022-05-11 18:55:19 -0700390 requestCount, resultErrorCount, deviceError, userTag, videoStabilizationMode,
391 streamStats);
Eino-Ville Talvala412fe562015-08-20 17:08:32 -0700392 }
393 mDeviceActive = false;
394
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -0700395 ALOGV("Camera device is now idle");
396}
397
398template <typename TClientBase>
Jianing Weicb0652e2014-03-12 18:29:36 -0700399void Camera2ClientBase<TClientBase>::notifyShutter(const CaptureResultExtras& resultExtras,
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800400 nsecs_t timestamp) {
Jianing Weicb0652e2014-03-12 18:29:36 -0700401 (void)resultExtras;
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800402 (void)timestamp;
403
Jianing Weicb0652e2014-03-12 18:29:36 -0700404 ALOGV("%s: Shutter notification for request id %" PRId32 " at time %" PRId64,
405 __FUNCTION__, resultExtras.requestId, timestamp);
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800406}
407
408template <typename TClientBase>
409void Camera2ClientBase<TClientBase>::notifyAutoFocus(uint8_t newState,
410 int triggerId) {
411 (void)newState;
412 (void)triggerId;
413
414 ALOGV("%s: Autofocus state now %d, last trigger %d",
415 __FUNCTION__, newState, triggerId);
416
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800417}
418
419template <typename TClientBase>
420void Camera2ClientBase<TClientBase>::notifyAutoExposure(uint8_t newState,
421 int triggerId) {
422 (void)newState;
423 (void)triggerId;
424
425 ALOGV("%s: Autoexposure state now %d, last trigger %d",
426 __FUNCTION__, newState, triggerId);
427}
428
429template <typename TClientBase>
430void Camera2ClientBase<TClientBase>::notifyAutoWhitebalance(uint8_t newState,
431 int triggerId) {
432 (void)newState;
433 (void)triggerId;
434
435 ALOGV("%s: Auto-whitebalance state now %d, last trigger %d",
436 __FUNCTION__, newState, triggerId);
437}
438
439template <typename TClientBase>
Eino-Ville Talvala4d44cad2015-04-11 13:15:45 -0700440void Camera2ClientBase<TClientBase>::notifyPrepared(int streamId) {
441 (void)streamId;
442
443 ALOGV("%s: Stream %d now prepared",
444 __FUNCTION__, streamId);
445}
446
447template <typename TClientBase>
Shuzhen Wang9d066012016-09-30 11:30:20 -0700448void Camera2ClientBase<TClientBase>::notifyRequestQueueEmpty() {
449
450 ALOGV("%s: Request queue now empty", __FUNCTION__);
451}
452
453template <typename TClientBase>
Chien-Yu Chene8c535e2016-04-14 12:18:26 -0700454void Camera2ClientBase<TClientBase>::notifyRepeatingRequestError(long lastFrameNumber) {
455 (void)lastFrameNumber;
456
457 ALOGV("%s: Repeating request was stopped. Last frame number is %ld",
458 __FUNCTION__, lastFrameNumber);
459}
460
461template <typename TClientBase>
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800462int Camera2ClientBase<TClientBase>::getCameraId() const {
Yin-Chia Yehc3e9d6f2018-02-06 10:56:32 -0800463 return mApi1CameraId;
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800464}
465
466template <typename TClientBase>
467const sp<CameraDeviceBase>& Camera2ClientBase<TClientBase>::getCameraDevice() {
468 return mDevice;
469}
470
471template <typename TClientBase>
472const sp<CameraService>& Camera2ClientBase<TClientBase>::getCameraService() {
Eino-Ville Talvala2f09bac2016-12-13 11:29:54 -0800473 return TClientBase::sCameraService;
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800474}
475
476template <typename TClientBase>
477Camera2ClientBase<TClientBase>::SharedCameraCallbacks::Lock::Lock(
478 SharedCameraCallbacks &client) :
479
480 mRemoteCallback(client.mRemoteCallback),
481 mSharedClient(client) {
482
483 mSharedClient.mRemoteCallbackLock.lock();
484}
485
486template <typename TClientBase>
487Camera2ClientBase<TClientBase>::SharedCameraCallbacks::Lock::~Lock() {
488 mSharedClient.mRemoteCallbackLock.unlock();
489}
490
491template <typename TClientBase>
492Camera2ClientBase<TClientBase>::SharedCameraCallbacks::SharedCameraCallbacks(
493 const sp<TCamCallbacks>&client) :
494
495 mRemoteCallback(client) {
496}
497
498template <typename TClientBase>
499typename Camera2ClientBase<TClientBase>::SharedCameraCallbacks&
500Camera2ClientBase<TClientBase>::SharedCameraCallbacks::operator=(
501 const sp<TCamCallbacks>&client) {
502
503 Mutex::Autolock l(mRemoteCallbackLock);
504 mRemoteCallback = client;
505 return *this;
506}
507
508template <typename TClientBase>
509void Camera2ClientBase<TClientBase>::SharedCameraCallbacks::clear() {
510 Mutex::Autolock l(mRemoteCallbackLock);
511 mRemoteCallback.clear();
512}
513
Cliff Wud3a05312021-04-26 23:07:31 +0800514template <typename TClientBase>
515status_t Camera2ClientBase<TClientBase>::injectCamera(const String8& injectedCamId,
516 sp<CameraProviderManager> manager) {
517 return mDevice->injectCamera(injectedCamId, manager);
518}
519
520template <typename TClientBase>
521status_t Camera2ClientBase<TClientBase>::stopInjection() {
522 return mDevice->stopInjection();
523}
524
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800525template class Camera2ClientBase<CameraService::Client>;
Igor Murashkine7ee7632013-06-11 18:10:18 -0700526template class Camera2ClientBase<CameraDeviceClientBase>;
Igor Murashkin44cfcf02013-03-01 16:22:28 -0800527
528} // namespace android