-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sh
338 lines (297 loc) · 9.18 KB
/
build.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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
#!/usr/bin/env bash
#
# Copyright (c) 2018-2024 Stéphane Micheloud
#
# Licensed under the MIT License.
#
##############################################################################
## Subroutines
getHome() {
local source="${BASH_SOURCE[0]}"
while [[ -h "$source" ]]; do
local linked="$(readlink "$source")"
local dir="$( cd -P $(dirname "$source") && cd -P $(dirname "$linked") && pwd )"
source="$dir/$(basename "$linked")"
done
( cd -P "$(dirname "$source")" && pwd )
}
debug() {
local DEBUG_LABEL="[44m[DEBUG][0m"
$DEBUG && echo "$DEBUG_LABEL $1" 1>&2
}
warning() {
local WARNING_LABEL="[46m[WARNING][0m"
echo "$WARNING_LABEL $1" 1>&2
}
error() {
local ERROR_LABEL="[91mError:[0m"
echo "$ERROR_LABEL $1" 1>&2
}
# use variables EXITCODE, TIMER_START
cleanup() {
[[ $1 =~ ^[0-1]$ ]] && EXITCODE=$1
if $TIMER; then
local TIMER_END=$(date +'%s')
local duration=$((TIMER_END - TIMER_START))
echo "Total elapsed time: $(date -d @$duration +'%H:%M:%S')" 1>&2
fi
debug "EXITCODE=$EXITCODE"
exit $EXITCODE
}
args() {
[[ $# -eq 0 ]] && HELP=true && return 1
for arg in "$@"; do
case "$arg" in
## options
-debug) DEBUG=true ;;
-help) HELP=true ;;
-timer) TIMER=true ;;
-verbose) VERBOSE=true ;;
-*)
error "Unknown option $arg"
EXITCODE=1 && return 0
;;
## subcommands
clean) CLEAN=true ;;
compile) COMPILE=true ;;
doc) DOC=true ;;
help) HELP=true ;;
lint) LINT=true ;;
run) COMPILE=true && RUN=true ;;
*)
error "Unknown subcommand $arg"
EXITCODE=1 && return 0
;;
esac
done
if $LINT; then
if [[ ! -x "$HLINT_CMD" ]]; then
warning "HLint installation not found"
LINT=false
fi
fi
debug "Properties : APP_NAME=$APP_NAME"
debug "Options : TIMER=$TIMER VERBOSE=$VERBOSE"
debug "Subcommands: CLEAN=$CLEAN COMPILE=$COMPILE DOC=$DOC HELP=$HELP LINT=$LINT RUN=$RUN"
debug "Variables : CABAL_DIR=$CABAL_DIR"
debug "Variables : GHC_HOME=$GHC_HOME"
# See http://www.cyberciti.biz/faq/linux-unix-formatting-dates-for-display/
$TIMER && TIMER_START=$(date +"%s")
}
help() {
cat << EOS
Usage: $BASENAME { <option> | <subcommand> }
Options:
-debug print commands executed by this script
-timer print total execution time
-verbose print progress messages
Subcommands:
clean delete generated files
compile compile Haskell source files
doc generate HTML documentation
help print this help message
lint analyze Scala source files with HLint
run execute main program "$APP_NAME"
EOS
}
clean() {
if [[ -d "$TARGET_DIR" ]]; then
if $DEBUG; then
debug "Delete directory \"$TARGET_DIR\""
elif $VERBOSE; then
echo "Delete directory \"${TARGET_DIR/$ROOT_DIR\//}\"" 1>&2
fi
rm -rf "$TARGET_DIR"
[[ $? -eq 0 ]] || ( EXITCODE=1 && return 0 )
fi
}
lint() {
[[ -d "$TARGET_DIR" ]] || mkdir "$TARGET_DIR"
if $DEBUG; then set HLINT_OPTS=--color=auto
else set HLINT_OPTS="--color=auto --report=\"$TARGET_DIR/report.html\""
fi
if $DEBUG; then debug "$HLINT_CMD $HLINT_OPTS $SOURCE_DIR"
elif $VERBOSE; then echo "Analyze Haskell source files in directory \"${SOURCE_DIR/$ROOT_DIR/\\}\"" 1>&2
fi
eval "$HLINT_CMD" $HLINT_OPTS $SOURCE_DIR
[[ $? -eq 0 ]] || ( EXITCODE=1 && return 0 )
}
compile() {
[[ -d "$TARGET_DIR" ]] || mkdir -p "$TARGET_DIR"
local required=$(action_required "$EXE_FILE" "$SOURCE_DIR/" "*.hs")
[[ $required -eq 1 ]] || return 1
local source_files=
local n=0
for f in $(find "$SOURCE_DIR/" -type f -name "*.hs" 2>/dev/null); do
source_files="$source_files $f"
n=$((n + 1))
done
if [[ $n -eq 0 ]]; then
warning "No Haskell source file found"
return 1
fi
local s=; [[ $n -gt 1 ]] && s="s"
local n_files="$n Haskell source file$s"
## option "-hidir <dir>" redirects all generated interface files into <dir>
local ghc_opts="-Wall -Wmissing-import-lists -Wincomplete-uni-patterns -Werror -hidir $TARGET_GEN_DIR -odir $TARGET_GEN_DIR -o $EXE_FILE"
if $DEBUG; then debug "$GHC_CMD $ghc_opts $source_files"
elif $VERBOSE; then echo "Compile $n_files to file \"${EXE_FILE/$ROOT_DIR/}\"" 1>&2
fi
eval "$GHC_CMD" $ghc_opts $source_files
if [[ $? -ne 0 ]]; then
error "Failed to compile $n_files to file \"${EXE_FILE/$ROOT_DIR/}\"" 1>&2
cleanup 1
fi
}
mixed_path() {
if [[ -x "$CYGPATH_CMD" ]]; then
$CYGPATH_CMD -am $1
elif $mingw || $msys; then
echo $1 | sed 's|/|\\\\|g'
else
echo $1
fi
}
action_required() {
local target_file=$1
local search_path=$2
local search_pattern=$3
local source_file=
for f in $(find "$search_path" -type f -name "$search_pattern" 2>/dev/null); do
[[ $f -nt $source_file ]] && source_file=$f
done
if [[ -z "$source_file" ]]; then
## Do not compile if no source file
echo 0
elif [[ ! -f "$target_file" ]]; then
## Do compile if target file doesn't exist
echo 1
else
## Do compile if target file is older than most recent source file
[[ $target_file -nt $source_file ]] && echo 1 || echo 0
fi
}
doc() {
[[ -d "$TARGET_DOCS_DIR" ]] || mkdir -p "$TARGET_DOCS_DIR"
local html_libs_dir="$GHC_HOME/doc/html/libraries"
if [[ ! -d "$html_libs_dir" ]]; then
echo error "GHC HTML documentation directory not found" 1>&2
cleanup 1
fi
local haddock_opts="$HADDOCK_OPTS --title=$PROJECT_NAME --package-name=$APP_NAME --package-version=$PROJECT_VERSION"
## Use "*.haddock" instead of "base.haddock" to include all interface docs.
for f in $(find "$html_libs_dir" -type f -name "base.haddock"); do
file="$(mixed_path $f)"
file="C:\\opt\\ghc-8.10.7\\doc\\html\\libraries\\base-4.14.1.0\\base.haddock"
parent_dir="$(dirname $file)/"
parent_dir="C:\\opt\\ghc-8.10.7\\doc\\html\\libraries\\base-4.14.1.0"
haddock_opts="$haddock_opts --read-interface=\"$parent_dir\",\"$file\""
done
local source_files=
for f in $(find $SOURCE_DIR/ -type f -name "*.hs" 2>/dev/null); do
source_files="$source_files $(mixed_path $f)"
done
if $DEBUG; then debug "$HADDOCK_CMD $haddock_opts $source_files"
elif $VERBOSE; then echo "Generate HTML documentation into directory \"${TARGET_DOCS_DIR/$ROOT_DIR/\\}\"" 1>&2
fi
eval "$HADDOCK_CMD" $haddock_opts $source_files
if [[ $? -ne 0 ]]; then
error "Failed to generate HTML documentation into directory \"${TARGET_DOCS_DIR/$ROOT_DIR/\\}\""
cleanup 1
fi
}
run() {
if [[ ! -f "$EXE_FILE" ]]; then
error "Executable not found (\"${EXE_FILE/$ROOT_DIR/\\}\")"
cleanup 1
fi
if $DEBUG; then debug "$EXE_FILE"
elif $VERBOSE; then echo "Execute Haskell program \"${EXE_FILE/$ROOT_DIR/\\}\"" 1>&2
fi
eval "$EXE_FILE"
if [[ $? -ne 0 ]]; then
error "Program executable not found (\"${EXE_FILE/$ROOT_DIR/\\}\")"
cleanup 1
fi
}
##############################################################################
## Environment setup
BASENAME=$(basename "${BASH_SOURCE[0]}")
EXITCODE=0
ROOT_DIR="$(getHome)"
SOURCE_DIR="$ROOT_DIR/app"
TARGET_DIR="$ROOT_DIR/target"
TARGET_DOCS_DIR="$TARGET_DIR/docs"
TARGET_GEN_DIR="$TARGET_DIR/gen"
CLEAN=false
COMPILE=false
DEBUG=false
DOC=false
HELP=false
LINT=false
RUN=false
TEST=false
TIMER=false
VERBOSE=false
COLOR_START="[32m"
COLOR_END="[0m"
APP_NAME=Colors
EXE_FILE="$TARGET_DIR/$APP_NAME.exe"
cygwin=false
mingw=false
msys=false
darwin=false
case "$(uname -s)" in
CYGWIN*) cygwin=true ;;
MINGW*) mingw=true ;;
MSYS*) msys=true ;;
Darwin*) darwin=true
esac
unset CYGPATH_CMD
PSEP=":"
if $cygwin || $mingw || $msys; then
CYGPATH_CMD="$(which cygpath 2>/dev/null)"
PSEP=";"
[[ -n "$CABAL_DIR" ]] && CABAL_DIR="$(mixed_path $CABAL_DIR)"
[[ -n "$GHC_HOME" ]] && GHC_HOME="$(mixed_path $GHC_HOME)"
[[ -n "$GIT_HOME" ]] && GIT_HOME="$(mixed_path $GIT_HOME)"
DIFF_CMD="$GIT_HOME/usr/bin/diff.exe"
else
DIFF_CMD="$(which diff)"
fi
if [[ ! -x "$GHC_HOME/bin/ghc.exe" ]]; then
error "GHC installation not found"
cleanup 1
fi
GHC_CMD="$GHC_HOME/bin/ghc.exe"
HADDOCK_CMD="$GHC_HOME/bin/haddock.exe"
HADDOCK_OPTS="--html --odir=$(mixed_path $TARGET_DOCS_DIR)"
HLINT_CMD=
[[ -x "$CABAL_DIR/bin/hlint" ]] && HLINT_CMD="$CABAL_DIR/bin/hlint"
PROJECT_NAME="$(basename $ROOT_DIR)"
PROJECT_URL="github.com/$USER/haskell-examples"
PROJECT_VERSION="1.0-SNAPSHOT"
args "$@"
[[ $EXITCODE -eq 0 ]] || cleanup 1
##############################################################################
## Main
$HELP && help && cleanup
if $CLEAN; then
clean || cleanup 1
fi
if $LINT; then
lint || cleanup 1
fi
if $COMPILE; then
compile || cleanup 1
fi
if $DOC; then
doc || cleanup 1
fi
if $RUN; then
run || cleanup 1
fi
if $TEST; then
run_tests || cleanup 1
fi
cleanup