blob: 054223f5349122c843f64b719c94dd38730b3ae3 (
plain) (
blame)
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
339
340
341
342
343
344
|
#!/usr/bin/env bash
# Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com>
# This file is part of the "Configuration file management" project.
# For details, see https://github.com/egor-tensin/config-links.
# Distributed under the MIT License.
# This script relies on the availability of native symlinks.
# Those are indeed supported by NTFS, but require Administrator privileges for
# creation.
# It likely won't bother you as long as you don't use the functions defined in
# this file.
# In any case, you will see `ln` complaining about some access being denied in
# case something goes wrong.
#
# Remember that in order to force `ln` to use native NTFS symlinks, your
# `CYGWIN` Windows environment variable value **must** include either
# `winsymlinks:native` or `winsymlinks:nativestrict`!
# usage: ./update.sh [-d|--database PATH] [-s|--source DIR] [-n|--dry-run] [-h|--help]
set -o errexit
set -o nounset
set -o pipefail
script_argv0="${BASH_SOURCE[0]}"
script_dir="$( cd "$( dirname "$script_argv0" )" && pwd )"
dump() {
local prefix="${FUNCNAME[0]}"
if [ "${#FUNCNAME[@]}" -gt 1 ]; then
prefix="${FUNCNAME[1]}"
fi
while [ "$#" -ne 0 ]; do
echo "$prefix: $1" || true
shift
done
}
src_dir="$script_dir"
update_src_dir() {
if [ "$#" -ne 1 ]; then
echo "usage: ${FUNCNAME[0]} DIR" || true
return 1
fi
src_dir="$( readlink --canonicalize-existing "$1" )"
if [ ! -d "$src_dir" ]; then
dump "must be a directory: $src_dir" >&2
return 1
fi
}
ensure_symlinks_enabled() {
case "${CYGWIN:-}" in
*winsymlinks:native*) ;;
*winsymlinks:nativestrict*) ;;
*)
dump 'native Windows symlinks aren'"'"'t enabled in Cygwin' >&2
return 1
;;
esac
}
database_path="$src_dir/db.bin"
declare -A database
update_database_path() {
if [ "$#" -ne 1 ]; then
echo "usage: ${FUNCNAME[0]} PATH" || true
return 1
fi
database_path="$( readlink --canonicalize "$1" )"
if [ -e "$database_path" ] && [ ! -f "$database_path" ]; then
dump "must be a regular file: $database_path" >&2
return 1
fi
}
ensure_database_exists() {
[ -f "$database_path" ] || touch "$database_path"
}
read_database() {
local entry
while IFS= read -d '' -r entry; do
database[$entry]=1
done < "$database_path"
}
write_database() {
if [ -n "${dry_run+x}" ]; then
dump 'won'"'"'t write the database because it'"'"'s a dry run'
return 0
fi
> "$database_path"
local entry
for entry in "${!database[@]}"; do
printf '%s\0' "$entry" >> "$database_path"
done
}
delete_obsolete_dirs() {
if [ $# -ne 2 ]; then
echo "usage: ${FUNCNAME[0]} BASE_DIR DIR" || true
return 1
fi
local base_dir="$1"
local dir="$2"
base_dir="$( readlink --canonicalize-missing "$base_dir" )"
dir="$( readlink --canonicalize-missing "$dir" )"
if [ ! -d "$base_dir" ]; then
dump "base directory doesn't exist: $base_dir" >&2
return 1
fi
[ "$base_dir" == "$dir" ] && return 0
local subpath="${dir##$base_dir/}"
if [ "$subpath" == "$dir" ]; then
dump "base directory: $base_dir" >&2
dump "... is not a parent of: $dir" >&2
return 1
fi
if [ -n "${dry_run+x}" ]; then
dump 'won'"'"'t delete the directory because it'"'"'s a dry run'
return 0
fi
( cd "$base_dir" && rmdir --parents "$subpath" --ignore-fail-on-non-empty )
}
delete_obsolete_entries() {
local entry
for entry in "${!database[@]}"; do
dump "entry: $entry"
local var_name
var_name="$( expr "$entry" : '%\([_[:alpha:]][_[:alnum:]]*\)%/' )"
if [ -z "$var_name" ]; then
dump ' couldn'"'"'t extract variable name' >&2
unset database["$entry"]
continue
fi
if [ -z "${!var_name+x}" ]; then
dump " variable is not set: $var_name" >&2
unset database["$entry"]
continue
fi
local dest_var_dir
dest_var_dir="$( readlink --canonicalize-missing "$( cygpath "${!var_name}" )" )"
local src_var_dir="$src_dir/%$var_name%"
local subpath="${entry#%$var_name%/}"
local dest_path="$dest_var_dir/$subpath"
local src_path="$src_var_dir/$subpath"
if [ ! -e "$dest_path" ]; then
dump " missing destination file: $dest_path" >&2
unset database["$entry"]
continue
fi
if [ ! -e "$src_path" ]; then
dump " missing source file: $src_path" >&2
if [ -z "${dry_run+x}" ]; then
rm --force "$dest_path"
else
dump ' won'"'"'t delete an obsolete symlink, because it'"'"'s a dry run'
fi
unset database["$entry"]
local dest_dir
dest_dir="$( dirname "$dest_path" )"
delete_obsolete_dirs "$dest_var_dir" "$dest_dir" || true
continue
fi
if [ ! -L "$dest_path" ]; then
dump " not a symlink: $dest_path" >&2
unset database["$entry"]
continue
fi
local target_path
target_path="$( readlink --canonicalize-existing "$dest_path" )"
if [ "$target_path" != "$src_path" ]; then
dump " points to a wrong file: $dest_path" >&2
unset database["$entry"]
continue
fi
dump ' ... points to the right file'
done
}
var_name_regex='%\([_[:alpha:]][_[:alnum:]]*\)%'
discover_new_entries() {
local src_var_dir
while IFS= read -d '' -r src_var_dir; do
dump "source directory: $src_var_dir"
local var_name
var_name="$( basename "$src_var_dir" )"
var_name="$( expr "$var_name" : "$var_name_regex" )"
dump " variable name: $var_name"
if [ -z "${!var_name+x}" ]; then
dump " variable is not set: $var_name" >&2
continue
fi
local dest_var_dir
dest_var_dir="$( readlink --canonicalize-missing "$( cygpath "${!var_name}" )" )"
dump " destination directory: $dest_var_dir"
local src_path
while IFS= read -d '' -r src_path; do
dump " source file: $src_path"
local entry="%$var_name%${src_path:${#src_var_dir}}"
if [ -n "${database[$entry]+x}" ]; then
dump ' ... points to the right file'
continue
fi
local dest_path="$dest_var_dir${src_path:${#src_var_dir}}"
dump " destination file: $dest_path"
if [ -z "${dry_run+x}" ]; then
mkdir --parents "$( dirname "$dest_path" )"
ln --force --symbolic "$src_path" "$dest_path"
else
dump ' won'"'"'t create a symlink because it'"'"'s a dry run'
fi
database[$entry]=1
done < <( find "$src_var_dir" -type f -print0 )
done < <( find "$src_dir" -regextype posix-basic -mindepth 1 -maxdepth 1 -type d -regex ".*/$var_name_regex\$" -print0 )
}
exit_with_usage() {
local msg
IFS= read -d '' -r msg <<MSG || echo -n "$msg" || true
usage: $script_argv0 [-d|--database PATH] [-s|--source DIR] [-n|--dry-run] [-h|--help]
optional parameters:
-h,--help show this message and exit
-d,--database set database file path
-s,--source set source directory path (script directory by default)
-n,--dry-run don't actually do anything intrusive
MSG
exit "${exit_with_usage:-0}"
}
parse_script_options() {
while [ "$#" -gt 0 ]; do
local key="$1"
shift
case "$key" in
-h|--help)
exit_with_usage=0
break
;;
-n|--dry-run)
dry_run=1
continue
;;
-d|--database|-s|--source)
;;
*)
dump "usage error: unrecognized parameter: $key" >&2
exit_with_usage=1
break
;;
esac
if [ "$#" -eq 0 ]; then
dump "usage error: missing argument for parameter: $key" >&2
exit_with_usage=1
break
fi
local value="$1"
shift
case "$key" in
-d|--database)
update_database_path "$value"
;;
-s|--source)
update_src_dir "$value"
;;
*)
dump "usage error: unrecognized parameter: $key" >&2
exit_with_usage=1
break
;;
esac
done
}
main() {
parse_script_options "$@"
[ -n "${exit_with_usage+x}" ] && exit_with_usage
ensure_database_exists
read_database
delete_obsolete_entries
ensure_symlinks_enabled
discover_new_entries
write_database
}
main "$@"
|