Files
external_libcamera/src/android/camera_metadata.h
Laurent Pinchart 626172a16b libcamera: Drop file name from header comment blocks
Source files in libcamera start by a comment block header, which
includes the file name and a one-line description of the file contents.
While the latter is useful to get a quick overview of the file contents
at a glance, the former is mostly a source of inconvenience. The name in
the comments can easily get out of sync with the file name when files
are renamed, and copy & paste during development have often lead to
incorrect names being used to start with.

Readers of the source code are expected to know which file they're
looking it. Drop the file name from the header comment block.

The change was generated with the following script:

----------------------------------------

dirs="include/libcamera src test utils"

declare -rA patterns=(
	['c']=' \* '
	['cpp']=' \* '
	['h']=' \* '
	['py']='# '
	['sh']='# '
)

for ext in ${!patterns[@]} ; do
	files=$(for dir in $dirs ; do find $dir -name "*.${ext}" ; done)
	pattern=${patterns[${ext}]}

	for file in $files ; do
		name=$(basename ${file})
		sed -i "s/^\(${pattern}\)${name} - /\1/" "$file"
	done
done
----------------------------------------

This misses several files that are out of sync with the comment block
header. Those will be addressed separately and manually.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com>
2024-05-08 22:39:50 +03:00

113 lines
2.7 KiB
C++

/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
* Copyright (C) 2019, Google Inc.
*
* libcamera Android Camera Metadata Helper
*/
#pragma once
#include <stdint.h>
#include <vector>
#include <system/camera_metadata.h>
class CameraMetadata
{
public:
CameraMetadata();
CameraMetadata(size_t entryCapacity, size_t dataCapacity);
CameraMetadata(const camera_metadata_t *metadata);
CameraMetadata(const CameraMetadata &other);
~CameraMetadata();
CameraMetadata &operator=(const CameraMetadata &other);
std::tuple<size_t, size_t> usage() const;
bool resized() const { return resized_; }
bool isValid() const { return valid_; }
bool getEntry(uint32_t tag, camera_metadata_ro_entry_t *entry) const;
template<typename T> bool entryContains(uint32_t tag, T value) const;
bool hasEntry(uint32_t tag) const;
template<typename T,
std::enable_if_t<std::is_arithmetic_v<T> ||
std::is_enum_v<T>> * = nullptr>
bool setEntry(uint32_t tag, const T &data)
{
if (hasEntry(tag))
return updateEntry(tag, &data, 1, sizeof(T));
else
return addEntry(tag, &data, 1, sizeof(T));
}
template<typename T,
std::enable_if_t<std::is_arithmetic_v<T> ||
std::is_enum_v<T>> * = nullptr>
bool addEntry(uint32_t tag, const T &data)
{
return addEntry(tag, &data, 1, sizeof(T));
}
template<typename T, size_t size>
bool addEntry(uint32_t tag, const T (&data)[size])
{
return addEntry(tag, data, size, sizeof(T));
}
template<typename S,
typename T = typename S::value_type>
bool addEntry(uint32_t tag, const S &data)
{
return addEntry(tag, data.data(), data.size(), sizeof(T));
}
template<typename T>
bool addEntry(uint32_t tag, const T *data, size_t count)
{
return addEntry(tag, data, count, sizeof(T));
}
template<typename T>
bool updateEntry(uint32_t tag, const T &data)
{
return updateEntry(tag, &data, 1, sizeof(T));
}
template<typename T, size_t size>
bool updateEntry(uint32_t tag, const T (&data)[size])
{
return updateEntry(tag, data, size, sizeof(T));
}
template<typename S,
typename T = typename S::value_type>
bool updateEntry(uint32_t tag, const S &data)
{
return updateEntry(tag, data.data(), data.size(), sizeof(T));
}
template<typename T>
bool updateEntry(uint32_t tag, const T *data, size_t count)
{
return updateEntry(tag, data, count, sizeof(T));
}
camera_metadata_t *getMetadata();
const camera_metadata_t *getMetadata() const;
private:
bool resize(size_t count, size_t size);
bool addEntry(uint32_t tag, const void *data, size_t count,
size_t elementSize);
bool updateEntry(uint32_t tag, const void *data, size_t count,
size_t elementSize);
camera_metadata_t *metadata_;
bool valid_;
bool resized_;
};