blob: 440da5f8844758b7580c86ea9a03547901191b8a [file] [log] [blame]
Alex Rayb0be1032013-05-28 15:52:47 -07001/*
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 */
Mark Salyzynd88dfe82017-04-11 08:56:09 -070016//#define LOG_NDEBUG 0
17#define LOG_TAG "Metadata"
Alex Rayb0be1032013-05-28 15:52:47 -070018
Alex Rayb0be1032013-05-28 15:52:47 -070019#include <system/camera_metadata.h>
20
Mark Salyzynd88dfe82017-04-11 08:56:09 -070021#include <log/log.h>
Alex Rayb0be1032013-05-28 15:52:47 -070022
23#define ATRACE_TAG (ATRACE_TAG_CAMERA | ATRACE_TAG_HAL)
Alex Rayea803822013-10-14 15:56:43 -070024#include <utils/Trace.h>
Alex Rayb0be1032013-05-28 15:52:47 -070025
26#include "Metadata.h"
27
28namespace default_camera_hal {
29
Alex Ray62735082013-10-21 12:55:24 -070030Metadata::Metadata():
31 mData(NULL)
Alex Rayb0be1032013-05-28 15:52:47 -070032{
Alex Rayb0be1032013-05-28 15:52:47 -070033}
34
35Metadata::~Metadata()
36{
Alex Ray62735082013-10-21 12:55:24 -070037 replace(NULL);
Alex Rayb0be1032013-05-28 15:52:47 -070038}
39
Alex Ray62735082013-10-21 12:55:24 -070040void Metadata::replace(camera_metadata_t *m)
Alex Ray89a82662013-05-28 20:32:48 -070041{
Alex Ray62735082013-10-21 12:55:24 -070042 if (m == mData) {
43 ALOGE("%s: Replacing metadata with itself?!", __func__);
44 return;
Alex Ray89a82662013-05-28 20:32:48 -070045 }
Alex Ray62735082013-10-21 12:55:24 -070046 if (mData)
47 free_camera_metadata(mData);
48 mData = m;
Alex Ray89a82662013-05-28 20:32:48 -070049}
50
Alex Ray62735082013-10-21 12:55:24 -070051int Metadata::init(const camera_metadata_t *metadata)
52{
53 camera_metadata_t* tmp;
54
Jacopo Mondi2ecebbf2015-08-18 17:45:39 +020055 if (validate_camera_metadata_structure(metadata, NULL))
Alex Ray62735082013-10-21 12:55:24 -070056 return -EINVAL;
57
58 tmp = clone_camera_metadata(metadata);
59 if (tmp == NULL)
60 return -EINVAL;
61
62 replace(tmp);
63 return 0;
64}
65
66int Metadata::addUInt8(uint32_t tag, int count, const uint8_t *data)
Alex Rayb0be1032013-05-28 15:52:47 -070067{
68 if (!validate(tag, TYPE_BYTE, count)) return -EINVAL;
69 return add(tag, count, data);
70}
71
Alex Ray62735082013-10-21 12:55:24 -070072int Metadata::add1UInt8(uint32_t tag, const uint8_t data)
73{
74 return addUInt8(tag, 1, &data);
75}
76
77int Metadata::addInt32(uint32_t tag, int count, const int32_t *data)
Alex Rayb0be1032013-05-28 15:52:47 -070078{
79 if (!validate(tag, TYPE_INT32, count)) return -EINVAL;
80 return add(tag, count, data);
81}
82
Alex Ray62735082013-10-21 12:55:24 -070083int Metadata::addFloat(uint32_t tag, int count, const float *data)
Alex Rayb0be1032013-05-28 15:52:47 -070084{
85 if (!validate(tag, TYPE_FLOAT, count)) return -EINVAL;
86 return add(tag, count, data);
87}
88
Alex Ray62735082013-10-21 12:55:24 -070089int Metadata::addInt64(uint32_t tag, int count, const int64_t *data)
Alex Rayb0be1032013-05-28 15:52:47 -070090{
91 if (!validate(tag, TYPE_INT64, count)) return -EINVAL;
92 return add(tag, count, data);
93}
94
Alex Ray62735082013-10-21 12:55:24 -070095int Metadata::addDouble(uint32_t tag, int count, const double *data)
Alex Rayb0be1032013-05-28 15:52:47 -070096{
97 if (!validate(tag, TYPE_DOUBLE, count)) return -EINVAL;
98 return add(tag, count, data);
99}
100
101int Metadata::addRational(uint32_t tag, int count,
Alex Ray62735082013-10-21 12:55:24 -0700102 const camera_metadata_rational_t *data)
Alex Rayb0be1032013-05-28 15:52:47 -0700103{
104 if (!validate(tag, TYPE_RATIONAL, count)) return -EINVAL;
105 return add(tag, count, data);
106}
107
108bool Metadata::validate(uint32_t tag, int tag_type, int count)
109{
110 if (get_camera_metadata_tag_type(tag) < 0) {
111 ALOGE("%s: Invalid metadata entry tag: %d", __func__, tag);
112 return false;
113 }
114 if (tag_type < 0 || tag_type >= NUM_TYPES) {
115 ALOGE("%s: Invalid metadata entry tag type: %d", __func__, tag_type);
116 return false;
117 }
118 if (tag_type != get_camera_metadata_tag_type(tag)) {
119 ALOGE("%s: Tag %d called with incorrect type: %s(%d)", __func__, tag,
120 camera_metadata_type_names[tag_type], tag_type);
121 return false;
122 }
123 if (count < 1) {
124 ALOGE("%s: Invalid metadata entry count: %d", __func__, count);
125 return false;
126 }
127 return true;
128}
129
Alex Ray62735082013-10-21 12:55:24 -0700130int Metadata::add(uint32_t tag, int count, const void *tag_data)
Alex Rayb0be1032013-05-28 15:52:47 -0700131{
Alex Ray62735082013-10-21 12:55:24 -0700132 int res;
Jacopo Mondi2ecebbf2015-08-18 17:45:39 +0200133 size_t entry_capacity = 0;
134 size_t data_capacity = 0;
Alex Ray62735082013-10-21 12:55:24 -0700135 camera_metadata_t* tmp;
Alex Rayb0be1032013-05-28 15:52:47 -0700136 int tag_type = get_camera_metadata_tag_type(tag);
Alex Ray62735082013-10-21 12:55:24 -0700137 size_t size = calculate_camera_metadata_entry_data_size(tag_type, count);
Alex Rayb0be1032013-05-28 15:52:47 -0700138
Jacopo Mondi2ecebbf2015-08-18 17:45:39 +0200139 if (NULL == mData) {
140 entry_capacity = 1;
141 data_capacity = size;
142 } else {
143 entry_capacity = get_camera_metadata_entry_count(mData) + 1;
144 data_capacity = get_camera_metadata_data_count(mData) + size;
145 }
146
147 // Opportunistically attempt to add if metadata exists and has room for it
148 if (mData && !add_camera_metadata_entry(mData, tag, tag_data, count))
Alex Ray62735082013-10-21 12:55:24 -0700149 return 0;
Alex Ray62735082013-10-21 12:55:24 -0700150 // Double new dimensions to minimize future reallocations
151 tmp = allocate_camera_metadata(entry_capacity * 2, data_capacity * 2);
152 if (tmp == NULL) {
Sasha Levitskiya82f4562014-04-21 17:20:17 -0700153 ALOGE("%s: Failed to allocate new metadata with %zu entries, %zu data",
Alex Ray62735082013-10-21 12:55:24 -0700154 __func__, entry_capacity, data_capacity);
Alex Rayb0be1032013-05-28 15:52:47 -0700155 return -ENOMEM;
Alex Ray62735082013-10-21 12:55:24 -0700156 }
Jacopo Mondi2ecebbf2015-08-18 17:45:39 +0200157 // Append the current metadata to the new (empty) metadata, if any
158 if (NULL != mData) {
159 res = append_camera_metadata(tmp, mData);
160 if (res) {
161 ALOGE("%s: Failed to append old metadata %p to new %p",
162 __func__, mData, tmp);
163 return res;
164 }
Alex Ray62735082013-10-21 12:55:24 -0700165 }
Jacopo Mondi2ecebbf2015-08-18 17:45:39 +0200166 // Add the remaining new item to tmp and replace mData
Sasha Levitskiya82f4562014-04-21 17:20:17 -0700167 res = add_camera_metadata_entry(tmp, tag, tag_data, count);
168 if (res) {
Alex Ray62735082013-10-21 12:55:24 -0700169 ALOGE("%s: Failed to add new entry (%d, %p, %d) to metadata %p",
170 __func__, tag, tag_data, count, tmp);
171 return res;
172 }
Alex Ray62735082013-10-21 12:55:24 -0700173 replace(tmp);
Jacopo Mondi2ecebbf2015-08-18 17:45:39 +0200174
Alex Rayb0be1032013-05-28 15:52:47 -0700175 return 0;
176}
177
Alex Ray62735082013-10-21 12:55:24 -0700178camera_metadata_t* Metadata::get()
Alex Rayb0be1032013-05-28 15:52:47 -0700179{
Alex Ray62735082013-10-21 12:55:24 -0700180 return mData;
Alex Rayb0be1032013-05-28 15:52:47 -0700181}
182
183} // namespace default_camera_hal