/* * Copyright 2016 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "metadata.h" #include <camera/CameraMetadata.h> #include <hardware/camera3.h> #include "../common.h" #include "metadata_common.h" namespace v4l2_camera_hal { Metadata::Metadata(PartialMetadataSet components) : components_(std::move(components)) { HAL_LOG_ENTER(); } Metadata::~Metadata() { HAL_LOG_ENTER(); } int Metadata::FillStaticMetadata(android::CameraMetadata* metadata) { HAL_LOG_ENTER(); if (!metadata) { HAL_LOGE("Can't fill null metadata."); return -EINVAL; } std::vector<int32_t> static_tags; std::vector<int32_t> control_tags; std::vector<int32_t> dynamic_tags; int res = 0; for (auto& component : components_) { // Prevent components from potentially overriding others. android::CameraMetadata additional_metadata; // Populate the fields. res = component->PopulateStaticFields(&additional_metadata); if (res) { HAL_LOGE("Failed to get all static properties."); return res; } // Add it to the overall result. if (!additional_metadata.isEmpty()) { res = metadata->append(additional_metadata); if (res != android::OK) { HAL_LOGE("Failed to append all static properties."); return res; } } // Note what tags the component adds. std::vector<int32_t> tags = component->StaticTags(); std::move(tags.begin(), tags.end(), std::inserter(static_tags, static_tags.end())); tags = component->ControlTags(); std::move(tags.begin(), tags.end(), std::inserter(control_tags, control_tags.end())); tags = component->DynamicTags(); std::move(tags.begin(), tags.end(), std::inserter(dynamic_tags, dynamic_tags.end())); } // Populate the meta fields. static_tags.push_back(ANDROID_REQUEST_AVAILABLE_REQUEST_KEYS); res = UpdateMetadata( metadata, ANDROID_REQUEST_AVAILABLE_REQUEST_KEYS, control_tags); if (res != android::OK) { HAL_LOGE("Failed to add request keys meta key."); return -ENODEV; } static_tags.push_back(ANDROID_REQUEST_AVAILABLE_RESULT_KEYS); res = UpdateMetadata( metadata, ANDROID_REQUEST_AVAILABLE_RESULT_KEYS, dynamic_tags); if (res != android::OK) { HAL_LOGE("Failed to add result keys meta key."); return -ENODEV; } static_tags.push_back(ANDROID_REQUEST_AVAILABLE_CHARACTERISTICS_KEYS); res = UpdateMetadata( metadata, ANDROID_REQUEST_AVAILABLE_CHARACTERISTICS_KEYS, static_tags); if (res != android::OK) { HAL_LOGE("Failed to add characteristics keys meta key."); return -ENODEV; } // TODO(b/31018853): cache result. return 0; } bool Metadata::IsValidRequest(const android::CameraMetadata& metadata) { HAL_LOG_ENTER(); // Empty means "use previous settings", which are inherently valid. if (metadata.isEmpty()) return true; for (auto& component : components_) { // Check that all components support the values requested of them. bool valid_request = component->SupportsRequestValues(metadata); if (!valid_request) { // Exit early if possible. return false; } } return true; } int Metadata::GetRequestTemplate(int template_type, android::CameraMetadata* template_metadata) { HAL_LOG_ENTER(); if (!template_metadata) { HAL_LOGE("Can't fill null template."); return -EINVAL; } // Templates are numbered 1 through COUNT-1 for some reason. if (template_type < 1 || template_type >= CAMERA3_TEMPLATE_COUNT) { HAL_LOGE("Unrecognized template type %d.", template_type); return -EINVAL; } for (auto& component : components_) { // Prevent components from potentially overriding others. android::CameraMetadata additional_metadata; int res = component->PopulateTemplateRequest(template_type, &additional_metadata); if (res) { HAL_LOGE("Failed to get all default request fields."); return res; } // Add it to the overall result. if (!additional_metadata.isEmpty()) { res = template_metadata->append(additional_metadata); if (res != android::OK) { HAL_LOGE("Failed to append all default request fields."); return res; } } } // TODO(b/31018853): cache result. return 0; } int Metadata::SetRequestSettings(const android::CameraMetadata& metadata) { HAL_LOG_ENTER(); // Empty means "use previous settings". if (metadata.isEmpty()) return 0; for (auto& component : components_) { int res = component->SetRequestValues(metadata); if (res) { HAL_LOGE("Failed to set all requested settings."); return res; } } return 0; } int Metadata::FillResultMetadata(android::CameraMetadata* metadata) { HAL_LOG_ENTER(); if (!metadata) { HAL_LOGE("Can't fill null metadata."); return -EINVAL; } for (auto& component : components_) { // Prevent components from potentially overriding others. android::CameraMetadata additional_metadata; int res = component->PopulateDynamicFields(&additional_metadata); if (res) { HAL_LOGE("Failed to get all dynamic result fields."); return res; } // Add it to the overall result. if (!additional_metadata.isEmpty()) { res = metadata->append(additional_metadata); if (res != android::OK) { HAL_LOGE("Failed to append all dynamic result fields."); return res; } } } return 0; } } // namespace v4l2_camera_hal