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 blocks in template files and templates embedded in generator scripts. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com>
27 lines
485 B
Bash
Executable file
27 lines
485 B
Bash
Executable file
#!/bin/sh
|
|
|
|
src_dir="$1"
|
|
dst_file="$2"
|
|
|
|
cat <<EOF > "$dst_file"
|
|
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
/* This file is auto-generated, do not edit! */
|
|
/*
|
|
* Copyright (C) 2018-2019, Google Inc.
|
|
*
|
|
* libcamera public API
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
EOF
|
|
|
|
headers=$(for header in "$src_dir"/*.h "$src_dir"/*.h.in ; do
|
|
header=$(basename "$header")
|
|
header="${header%.in}"
|
|
echo "$header"
|
|
done | sort)
|
|
|
|
for header in $headers ; do
|
|
echo "#include <libcamera/$header>" >> "$dst_file"
|
|
done
|