-
Notifications
You must be signed in to change notification settings - Fork 5
/
gprdeps.sh
executable file
·140 lines (124 loc) · 4.09 KB
/
gprdeps.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
#!/usr/bin/env sh
#
# SweetAda *.gpr dependencies parser.
#
# Copyright (C) 2020-2024 Gabriele Galeotti
#
# This work is licensed under the terms of the MIT License.
# Please consult the LICENSE.txt file located in the top-level directory.
#
#
# Arguments:
# optional starting "-u" = output sorted, not-duplicated units
# $1 = input filename
#
# Environment variables:
# none
#
# shellcheck disable=SC2086,SC2268,SC2317
################################################################################
# Script initialization. #
# #
################################################################################
SCRIPT_FILENAME=$(basename "$0")
LOG_FILENAME=""
if [ "x${LOG_FILENAME}" != "x" ] ; then
rm -f "${LOG_FILENAME}"
touch "${LOG_FILENAME}"
fi
################################################################################
# log_print() #
# #
################################################################################
log_print()
{
if [ "x${LOG_FILENAME}" != "x" ] ; then
printf "%s\n" "$1" | tee -a "${LOG_FILENAME}"
else
printf "%s\n" "$1"
fi
return 0
}
################################################################################
# log_print_error() #
# #
################################################################################
log_print_error()
{
if [ "x${LOG_FILENAME}" != "x" ] ; then
printf "%s\n" "$1" | tee -a "${LOG_FILENAME}" 1>&2
else
printf "%s\n" "$1" 1>&2
fi
return 0
}
################################################################################
# parse_gpr() #
# #
################################################################################
parse_gpr()
{
if [ ! -e $1 ] ; then
return 0
fi
while IFS= read -r textline ; do
textline=$( \
printf "%s" "${textline}" | \
sed \
-e "s|^[[:blank:]]*||;s|[[:blank:]]*\$||" \
-e "s|^[Ww][Ii][Tt][Hh]|with|" \
)
case ${textline} in
--* | "")
continue
;;
with*)
unit=$(
printf "%s" "${textline}" | \
sed -e "s|^with[[:blank:]]*\"\(.*\)\"[[:blank:]]*;.*\$|\1|" \
)
printf " %s.gpr" "${unit}"
;;
*)
break
;;
esac
done < $1
return 0
}
################################################################################
# parse_recursive() #
# #
################################################################################
parse_recursive()
(
for u in "$@" ; do
units=$(parse_gpr ${u})
if [ "${units}" != "" ] ; then
printf "%s" " ${units}"
parse_recursive ${units}
fi
done
)
################################################################################
# Main loop. #
# #
################################################################################
#
# Basic input parameters check.
#
if [ "x$1" = "x-u" ] ; then
UNIQ_OUTPUT=Y
shift
fi
INPUT_FILENAME="$1"
if [ "x${INPUT_FILENAME}" = "x" ] ; then
log_print_error "${SCRIPT_FILENAME}: *** Error: no input file specified."
exit 1
fi
gprdeps=$(parse_recursive "${INPUT_FILENAME}")
if [ "x${UNIQ_OUTPUT}" = "xY" ] ; then
gprdeps=$(printf "%s\n" "${gprdeps}" | tr " " "\n" | sort -u | tr "\n" " ")
fi
printf "%s\n" "${gprdeps}"
exit 0