blob: bc0cc41316ef1d16cd777da63f0fce351137110f (
plain)
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
57
58
59
60
61
62
63
64
65
66
67
|
#!/bin/sh
# Copyright (C) 2015-2023 Internet Systems Consortium, Inc. ("ISC")
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This script embeds config.report into src/lib/process/cfgrpt/config_report.cc
# Called by configure
# shellcheck disable=SC2129
# SC2129: Consider using { cmd1; cmd2; } >> file instead of individual redirects.
# Exit with error if commands exit with non-zero and if undefined variables are
# used.
set -eu
report_file="${1-}"
dest="${2-}"
if [ -z "${report_file}" ]
then
echo "ERROR mk_cfgrpt.sh - expected report_file parameter"
exit 1
fi
if [ -z "${dest}" ]
then
echo "ERROR mk_cfgrpt.sh - expected dest parameter"
exit 1
fi
if [ ! -f "${report_file}" ]
then
echo "ERROR mk_cfgrpt.sh - input report: $report_file does not exist"
exit 1
fi
# Initializes
if ! cat /dev/null > "${dest}"
then
echo "ERROR mk_cfgrpt.sh - cannot create config output file: ${dest}"
exit 2
fi
# Header
cat >> "${dest}" << END
// config_report.cc. Generated from config.report by tools/mk_cfgrpt.sh
namespace isc {
namespace detail {
extern const char* const config_report[] = {
END
# Body: escape '\'s and '"'s, preprend ' ";;;; ' and append '",'
sed -e 's/\\/\\\\/g' -e 's/"/\\"/g' -e 's/^/ ";;;; /' -e 's/$/",/' \
< "${report_file}" >> "${dest}"
# Trailer
cat >> "${dest}" <<END
""
};
}
}
END
|