-
Notifications
You must be signed in to change notification settings - Fork 618
/
Copy pathwmakeLnIncludeAll
executable file
·219 lines (186 loc) · 6.16 KB
/
wmakeLnIncludeAll
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
#!/bin/bash
#------------------------------------------------------------------------------
# ========= |
# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
# \\ / O peration | Website: https://openfoam.org
# \\ / A nd | Copyright (C) 2011-2021 OpenFOAM Foundation
# \\/ M anipulation |
#------------------------------------------------------------------------------
# License
# This file is part of OpenFOAM.
#
# OpenFOAM 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.
#
# OpenFOAM 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 OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
#
# Script
# wmakeLnIncludeAll
#
# Usage
# wmakeLnIncludeAll [dir1 .. dirN]
#
# Description
# Find directories with a 'Make/files' that contains a 'LIB =' directive
# and execute 'wmakeLnInclude' for each one
#
#------------------------------------------------------------------------------
Script=${0##*/}
usage() {
cat<<USAGE
Usage: $Script [OPTION] [dir1 .. dirN]
options:
-j Compile using all local cores/hyperthreads
-j <N> | -j<N> Compile using N cores/hyperthreads
-help | -h Print the usage
Find directories with a 'Make/files' that contains a 'LIB =' directive
and execute 'wmakeLnInclude -update' for each one
USAGE
}
error() {
while [ "$#" -ge 1 ]; do echo "$1"; shift; done
usage
exit 1
}
#------------------------------------------------------------------------------
# Parse arguments and options
#------------------------------------------------------------------------------
nCores=0
# Default 'wmakeLnInclude' option
wmLnOpt=
# Option to execute 'wmakeLnInclude' on all dependent libraries
depOpt=
while [ "$#" -gt 0 ]
do
case "$1" in
-h | -help) # Provide immediate help
usage && exit 0
;;
-u | -update)
wmLnOpt="-update"
;;
-d | -dep)
depOpt=true
shift
;;
# Parallel execution on WM_NCOMPPROCS cores
-j)
nCores=$WM_NCOMPPROCS
test $# -ge 2 && (($2 + 1)) > /dev/null 2>&1 \
&& shift && nCores=$1
;;
# Parallel compilation on specified number of cores
-j*)
nCores=${1#-j}
;;
-*)
error "unknown option: '$*'"
;;
*)
break
;;
esac
shift
done
if [ "$depOpt" = true ]
then
MakeDir=Make
[ -r $MakeDir/options ] || {
echo "$Script error: file '$MakeDir/options' does not exist" 1>&2
exit 1
}
# shellcheck disable=SC2034
LIB_SRC="$WM_PROJECT_DIR/src"
# shellcheck disable=SC2016
includeDirs="
$WM_PROJECT_DIR/src/$WM_PROJECT
$WM_PROJECT_DIR/src/OSspecific/$WM_OSTYPE
$(grep -e '-I.*lnInclude' $MakeDir/options |
sed -e 's%-I\([.$(a-zA-Z0-9_)/]*\)lnInclude.*%\1%' -e 's/$(\(.*\))/$\1/')"
printed=
for d in $includeDirs
do [ ! -d "$d" ]
path=$(eval echo "$d")
if [ ! -d "$path/lnInclude" ]
then
[ $printed ] || echo "$Script: running wmakeLnInclude on dependent libraries:"
printed=true
echo -n " "
eval wmakeLnInclude $wmLnOpt "$d"
fi
done
unset MakeDir LIB_SRC printed
else
if [ "$nCores" -gt 0 ]
then
echo "$Script: starting wmakeLnInclude processes on $nCores cores"
else
echo "$Script: running wmakeLnInclude"
fi
# Defaults to searching from CWD
[ "$#" -gt 0 ] || set -- .
for checkDir
do
if [ -d "$checkDir" ]
then
echo " searching $checkDir for 'Make' directories"
else
echo " skipping non-dir $checkDir"
continue
fi
find "$checkDir" -depth -type d -name Make -print | while read -r MakeDir
do
topDir=${MakeDir%/Make} # trim /Make from the end
if [ -d "$topDir" ]
then
if grep -e '^ *LIB *=' "$MakeDir/files" >/dev/null 2>&1
then
# If running in parallel start wmakeLnInclude on nCores
# and more as the cores become free
if [ "$nCores" -gt 0 ]
then
# shellcheck disable=SC2207
joblist=($(jobs -p))
while (( ${#joblist[*]} > "$nCores" ))
do
# When the job limit is reached wait for a job to finish
wait -n
# shellcheck disable=SC2207
joblist=($(jobs -p))
done
wmakeLnInclude $wmLnOpt "$topDir" &
else
wmakeLnInclude $wmLnOpt "$topDir"
fi
elif [ -d "$topDir/lnInclude" ]
then
echo " removing spurious $topDir/lnInclude"
rm -rf "$topDir/lnInclude"
fi
fi
done
done
if [ "$nCores" -gt 0 ]
then
# Wait for all of the wmakeLnInclude jobs to finish
wait
# Synchronise the file system to ensure that all of the links exist
# before compilation
# sync
sleep 3
fi
unset joblist
fi
#------------------------------------------------------------------------------
# Cleanup local variables and functions
#------------------------------------------------------------------------------
unset Script usage error nCores wmLnOpt depOpt
#------------------------------------------------------------------------------