forked from gavinhoward/bc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.sh
executable file
·209 lines (155 loc) · 4.2 KB
/
functions.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
#! /bin/sh
#
# Copyright (c) 2018-2019 Gavin D. Howard and contributors.
#
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
readlink() {
local f="$1"
shift
local arrow="-> "
local d=$(dirname "$f")
local lsout=""
local link=""
lsout=$(ls -dl "$f")
link=$(printf '%s' "${lsout#*$arrow}")
while [ -z "${lsout##*$arrow*}" ]; do
f="$d/$link"
d=$(dirname "$f")
lsout=$(ls -dl "$f")
link=$(printf '%s' "${lsout#*$arrow}")
done
printf '%s' "${f##*$d/}"
}
err_exit() {
if [ "$#" -ne 2 ]; then
printf 'Invalid number of args to err_exit\n'
exit 1
fi
printf '%s\n' "$1"
printf '\nexiting...\n'
exit "$2"
}
die() {
local d="$1"
shift
local msg="$1"
shift
local name="$1"
shift
local err="$1"
shift
str=$(printf '\n%s %s on test:\n\n %s\n' "$d" "$msg" "$name")
err_exit "$str" "$err"
}
checkcrash() {
local error="$1"
shift
local name="$1"
shift
if [ "$error" -gt 127 ]; then
die "$d" "crashed ($error)" "$name" "$error"
fi
}
checktest()
{
local error="$1"
shift
local name="$1"
shift
local out="$1"
shift
local exebase="$1"
shift
checkcrash "$error" "$name"
if [ "$error" -eq 0 ]; then
die "$d" "returned no error" "$name" 127
fi
if [ "$error" -eq 100 ]; then
output=$(cat "$out")
fatal_error="Fatal error"
if [ "${output##*$fatal_error*}" ]; then
printf "%s\n" "$output"
die "$d" "had memory errors on a non-fatal error" "$name" "$error"
fi
fi
if [ ! -s "$out" ]; then
die "$d" "produced no error message" "$name" "$error"
fi
# Display the error messages if not directly running exe.
# This allows the script to print valgrind output.
if [ "$exebase" != "bc" -a "$exebase" != "dc" ]; then
cat "$out"
fi
}
substring_replace() {
local str="$1"
shift
local needle="$1"
shift
local replacement="$1"
shift
result=$(printf '%s' "$str" | sed -e "s!$needle!$replacement!g")
printf '%s\n' "$result"
}
gen_nlspath() {
local nlspath="$1"
shift
local locale="$1"
shift
local execname="$1"
shift
local char="@"
local modifier="${locale#*$char}"
local tmplocale="${locale%%$char*}"
char="."
local charset="${tmplocale#*$char}"
tmplocale="${tmplocale%%$char*}"
if [ "$charset" = "$tmplocale" ]; then
charset=""
fi
char="_"
local territory="${tmplocale#*$char}"
local language="${tmplocale%%$char*}"
if [ "$territory" = "$tmplocale" ]; then
territory=""
fi
if [ "$language" = "$tmplocale" ]; then
language=""
fi
local needles="%%:%L:%N:%l:%t:%c"
needles=$(printf '%s' "$needles" | tr ':' '\n')
for i in $needles; do
nlspath=$(substring_replace "$nlspath" "$i" "|$i|")
done
nlspath=$(substring_replace "$nlspath" "%%" "%")
nlspath=$(substring_replace "$nlspath" "%L" "$locale")
nlspath=$(substring_replace "$nlspath" "%N" "$execname")
nlspath=$(substring_replace "$nlspath" "%l" "$language")
nlspath=$(substring_replace "$nlspath" "%t" "$territory")
nlspath=$(substring_replace "$nlspath" "%c" "$charset")
nlspath=$(printf '%s' "$nlspath" | tr -d '|')
printf '%s' "$nlspath"
}