Project

General

Profile

1 11823 aaronmk
#!/bin/bash -e
2 1541 aaronmk
# Imports all inputs at once
3 11823 aaronmk
set -o errexit -o pipefail # errexit since may be called from shell
4 1541 aaronmk
5 11422 aaronmk
if test "$1" = .; then set --; fi # was .-included without args, so $@ is wrong
6
7 13978 aaronmk
hidden_srcs()
8
{
9
    local hidden_srcs=1 inputs=() # with_all adds the hidden srcs to @inputs
10
    . "$selfDir/with_all" import by_col=1 "$@"
11
}
12
13 11416 aaronmk
main()
14 1952 aaronmk
{
15
    local self="${BASH_SOURCE[0]}"
16
    local selfDir="$(dirname -- "$self")"
17 11430 aaronmk
    pushd "$selfDir/.."
18 1952 aaronmk
19 1953 aaronmk
    if test "${BASH_LINENO[1]}" = 0; then # was run without initial "."
20 11371 aaronmk
        echo "usage: [version=...] [inputs=(inputs/src/ ...)]; . $self \
21
[vars...] (note initial \".\")"|fold -s >&2
22 1952 aaronmk
        return 2
23
    fi
24 7103 aaronmk
    : ${version=$(make -s version)}
25 10579 aaronmk
    local by_col=${by_col-1} full_import=1
26
    export version by_col full_import
27 1952 aaronmk
28 13980 aaronmk
    local log=1 # always use log files for background processes
29
30 10847 aaronmk
    # remove any leftover TNRS lockfile. usually, the PID in it would not exist,
31
    # but sometimes it now refers to an active process which blocks tnrs.make.
32 11419 aaronmk
    "rm" -f inputs/.TNRS/tnrs/tnrs.make.lock
33 10847 aaronmk
34 11421 aaronmk
    make schemas/$version/reinstall
35 6946 aaronmk
36 13979 aaronmk
    local hidden_srcs=1; . "$selfDir/with_all" Source/import "$@"
37 6897 aaronmk
        # note that this isn't affected by $import_source
38 6593 aaronmk
    wait # wait for asynchronous commands
39 11374 aaronmk
    unset hidden_srcs
40 6593 aaronmk
41 7095 aaronmk
    local import_source= # Source tables have already been imported
42
    export import_source # must come after local
43 6897 aaronmk
44 13978 aaronmk
    hidden_srcs "$@" # separate function to avoid overwriting @inputs
45 6594 aaronmk
    wait # wait for asynchronous commands
46 5503 aaronmk
47 11286 aaronmk
    . "$selfDir/with_all" import_scrub "$@" # uses $by_col
48 6210 aaronmk
49 7418 aaronmk
    local jobs="$(jobs -p)"
50
    echo "import_scrub PIDs: $jobs" >&2
51
52 10586 aaronmk
    bin/after_import $jobs &
53 7276 aaronmk
    echo "after_import PID: $!" >&2
54 7228 aaronmk
55
    . bin/disown_all
56 11430 aaronmk
57
    popd
58 1952 aaronmk
}
59 11416 aaronmk
main "$@"