-
Notifications
You must be signed in to change notification settings - Fork 189
/
Copy pathadd_missing_headers.sh
executable file
·56 lines (51 loc) · 1.77 KB
/
add_missing_headers.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env sh
#
# Copyright (C) 2018-2022 The ESPResSo project
#
# This file is part of ESPResSo.
#
# ESPResSo is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# ESPResSo is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# Add copyright header to C++, CUDA, Doxygen, Python and shell files.
cd "$(git rev-parse --show-toplevel)" || exit 1
# Get files without headers
all_files=$(maintainer/files_with_header.sh)
files_to_check=$(grep -iL copyright ${all_files})
py_files=$(echo ${files_to_check} | tr " " "\n" | grep -P '\.(pyx?|pxd|sh)$')
cpp_files=$(echo ${files_to_check} | tr " " "\n" | grep -P '\.([c|h]pp|cuh?|dox)$')
tmp=$(mktemp)
# process python/cython/bash files
for f in ${py_files}; do
head -n1 "${f}" | grep -q '^#!'
if [ "${?}" = 0 ]; then
# preserve shebang on first line
(head -n1 "${f}"
sed -e 's/^/# /' maintainer/header_template.txt | sed 's/ $//'
tail -n+2 "${f}") > "${tmp}"
else
(sed -e 's/^/# /' maintainer/header_template.txt | sed 's/ $//'; cat "${f}") > "${tmp}"
fi
cp "${tmp}" "${f}"
echo "${f}"
done
# process c++/cuda/doxygen files
for f in ${cpp_files}; do
(echo '/*'
sed -e 's/^/ * /' maintainer/header_template.txt | sed 's/ $//'
echo ' */'
cat "${f}") > "${tmp}"
cp "${tmp}" "${f}"
echo "${f}"
done
rm "${tmp}"