blob: b861d714a55817b0b716b17aa8477657535de4d4 [file] [log] [blame]
Yin-Chia Yehe074a932015-01-30 10:29:02 -08001/*
2 * Copyright (C) 2015 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 "CameraModule"
18//#define LOG_NDEBUG 0
19
20#include "CameraModule.h"
21
22namespace android {
23
24void CameraModule::deriveCameraCharacteristicsKeys(
25 uint32_t deviceVersion, CameraMetadata &chars) {
26 // HAL1 devices should not reach here
27 if (deviceVersion < CAMERA_DEVICE_API_VERSION_2_0) {
28 ALOGV("%s: Cannot derive keys for HAL version < 2.0");
29 return;
30 }
31
32 // Keys added in HAL3.3
33 if (deviceVersion < CAMERA_DEVICE_API_VERSION_3_3) {
34 Vector<uint8_t> controlModes;
35 uint8_t data = ANDROID_CONTROL_AE_LOCK_AVAILABLE_TRUE;
36 chars.update(ANDROID_CONTROL_AE_LOCK_AVAILABLE, &data, /*count*/1);
37 data = ANDROID_CONTROL_AWB_LOCK_AVAILABLE_TRUE;
38 chars.update(ANDROID_CONTROL_AWB_LOCK_AVAILABLE, &data, /*count*/1);
39 controlModes.push(ANDROID_CONTROL_MODE_OFF);
40 controlModes.push(ANDROID_CONTROL_MODE_AUTO);
41 camera_metadata_entry entry = chars.find(ANDROID_CONTROL_AVAILABLE_SCENE_MODES);
42 if (entry.count > 1 || entry.data.u8[0] != ANDROID_CONTROL_SCENE_MODE_DISABLED) {
43 controlModes.push(ANDROID_CONTROL_MODE_USE_SCENE_MODE);
44 }
45 chars.update(ANDROID_CONTROL_AVAILABLE_MODES, controlModes);
46 }
47 return;
48}
49
50CameraModule::CameraModule(camera_module_t *module) {
51 if (module == NULL) {
52 ALOGE("%s: camera hardware module must not be null", __FUNCTION__);
53 assert(0);
54 }
55
56 mModule = module;
Chien-Yu Chen676b21b2015-02-24 10:28:19 -080057 mCameraInfoMap.setCapacity(getNumberOfCameras());
Yin-Chia Yehe074a932015-01-30 10:29:02 -080058}
59
60int CameraModule::getCameraInfo(int cameraId, struct camera_info *info) {
61 Mutex::Autolock lock(mCameraInfoLock);
Chien-Yu Chen676b21b2015-02-24 10:28:19 -080062 if (cameraId < 0) {
Yin-Chia Yehe074a932015-01-30 10:29:02 -080063 ALOGE("%s: Invalid camera ID %d", __FUNCTION__, cameraId);
64 return -EINVAL;
65 }
66
Yin-Chia Yehb6dc0bf2015-02-18 14:42:16 -080067 // Only override static_camera_characteristics for API2 devices
68 int apiVersion = mModule->common.module_api_version;
69 if (apiVersion < CAMERA_MODULE_API_VERSION_2_0) {
70 return mModule->get_camera_info(cameraId, info);
71 }
72
Chien-Yu Chen676b21b2015-02-24 10:28:19 -080073 ssize_t index = mCameraInfoMap.indexOfKey(cameraId);
74 if (index == NAME_NOT_FOUND) {
75 // Get camera info from raw module and cache it
Yin-Chia Yeh54298b32015-03-24 16:51:41 -070076 camera_info rawInfo, cameraInfo;
Yin-Chia Yehe074a932015-01-30 10:29:02 -080077 int ret = mModule->get_camera_info(cameraId, &rawInfo);
78 if (ret != 0) {
79 return ret;
80 }
Yin-Chia Yeh7768ded2015-04-15 12:16:02 -070081 int deviceVersion = cameraInfo.device_version;
82 if (deviceVersion < CAMERA_DEVICE_API_VERSION_2_0) {
83 // static_camera_characteristics is invalid
84 *info = rawInfo;
85 return ret;
86 }
Yin-Chia Yeh54298b32015-03-24 16:51:41 -070087 CameraMetadata m;
Yin-Chia Yehe074a932015-01-30 10:29:02 -080088 m = rawInfo.static_camera_characteristics;
Yin-Chia Yehb6dc0bf2015-02-18 14:42:16 -080089 deriveCameraCharacteristicsKeys(rawInfo.device_version, m);
Yin-Chia Yeh54298b32015-03-24 16:51:41 -070090 mCameraCharacteristicsMap.add(cameraId, m);
91 cameraInfo = rawInfo;
92 cameraInfo.static_camera_characteristics =
93 mCameraCharacteristicsMap.valueFor(cameraId).getAndLock();
Chien-Yu Chen676b21b2015-02-24 10:28:19 -080094 mCameraInfoMap.add(cameraId, cameraInfo);
95 index = mCameraInfoMap.indexOfKey(cameraId);
Yin-Chia Yehe074a932015-01-30 10:29:02 -080096 }
Chien-Yu Chen676b21b2015-02-24 10:28:19 -080097
98 assert(index != NAME_NOT_FOUND);
99 // return the cached camera info
Yin-Chia Yeh54298b32015-03-24 16:51:41 -0700100 *info = mCameraInfoMap[index];
Yin-Chia Yehe074a932015-01-30 10:29:02 -0800101 return 0;
102}
103
104int CameraModule::open(const char* id, struct hw_device_t** device) {
Chien-Yu Chend231fd62015-02-25 16:04:22 -0800105 return filterOpenErrorCode(mModule->common.methods->open(&mModule->common, id, device));
Yin-Chia Yehe074a932015-01-30 10:29:02 -0800106}
107
108int CameraModule::openLegacy(
109 const char* id, uint32_t halVersion, struct hw_device_t** device) {
110 return mModule->open_legacy(&mModule->common, id, halVersion, device);
111}
112
Yin-Chia Yehe074a932015-01-30 10:29:02 -0800113int CameraModule::getNumberOfCameras() {
114 return mModule->get_number_of_cameras();
115}
116
117int CameraModule::setCallbacks(const camera_module_callbacks_t *callbacks) {
118 return mModule->set_callbacks(callbacks);
119}
120
121bool CameraModule::isVendorTagDefined() {
122 return mModule->get_vendor_tag_ops != NULL;
123}
124
125void CameraModule::getVendorTagOps(vendor_tag_ops_t* ops) {
126 if (mModule->get_vendor_tag_ops) {
127 mModule->get_vendor_tag_ops(ops);
128 }
129}
130
131int CameraModule::setTorchMode(const char* camera_id, bool enable) {
132 return mModule->set_torch_mode(camera_id, enable);
133}
134
Chien-Yu Chend231fd62015-02-25 16:04:22 -0800135status_t CameraModule::filterOpenErrorCode(status_t err) {
136 switch(err) {
137 case NO_ERROR:
138 case -EBUSY:
139 case -EINVAL:
140 case -EUSERS:
141 return err;
142 default:
143 break;
144 }
145 return -ENODEV;
146}
147
Chien-Yu Chen676b21b2015-02-24 10:28:19 -0800148uint16_t CameraModule::getModuleApiVersion() {
149 return mModule->common.module_api_version;
150}
151
152const char* CameraModule::getModuleName() {
153 return mModule->common.name;
154}
155
156uint16_t CameraModule::getHalApiVersion() {
157 return mModule->common.hal_api_version;
158}
159
160const char* CameraModule::getModuleAuthor() {
161 return mModule->common.author;
162}
163
164void* CameraModule::getDso() {
165 return mModule->common.dso;
166}
Chien-Yu Chend231fd62015-02-25 16:04:22 -0800167
Yin-Chia Yehe074a932015-01-30 10:29:02 -0800168}; // namespace android
169