aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/%HOME%/.bash_utils/distr.sh
blob: 1a42afd317180939a7dd53eddcbb4347bdc42d07 (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
#!/usr/bin/env bash

# Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com>
# This file is part of the "linux-home" project.
# For details, see https://github.com/egor-tensin/linux-home.
# Distributed under the MIT License.

sums_path='sha1sums.txt'
sums_name="$( basename -- "$sums_path" )"

_sums_unescape_path() (
    set -o errexit -o nounset -o pipefail
    shopt -s inherit_errexit 2> /dev/null || true

    if [ "$#" -ne 1 ]; then
        echo "usage: ${FUNCNAME[0]} PATH" >&2
        return 1
    fi

    local path="$1"
    path="${path//'\\'/$'\\'}"
    path="${path//'\n'/$'\n'}"
    echo "$path"
)

sums_list_paths() (
    set -o errexit -o nounset -o pipefail
    shopt -s inherit_errexit 2> /dev/null || true

    local print_lines=
    local print_sums=
    local zero_terminated=

    while [ "$#" -gt 0 ]; do
        local key="$1"
        shift
        case "$key" in
            -h|--help)
                echo "usage: ${FUNCNAME[0]} [-h|--help] [-0|--null|-z|--zero] [-l|--lines] [-s|--sums]"
                return 0
                ;;
            -0|-null|-z|--zero)
                zero_terminated=1
                ;;
            -l|--lines)
                print_lines=1
                ;;
            -s|--sums)
                print_sums=1
                ;;
            *)
                echo "${FUNCNAME[0]}: unrecognized parameter: $key" >&2
                return 1
                ;;
        esac
    done

    local fmt_line='%s\n'
    [ -n "$zero_terminated" ] && fmt_line='%s\0'

    local fmt_output="$fmt_line"

    [ -n "$print_lines" ] && fmt_output="$fmt_line$fmt_output"
    [ -n "$print_sums"  ] && fmt_output="$fmt_output$fmt_line"

    [ -e "$sums_path" ] || return 0

    local -a output=()
    local line

    while IFS= read -r line; do
        {
            local path sum

            IFS= read -d ' ' -r sum
            local escaped=
            if [ "${sum#'\'}" != "$sum" ]; then
                escaped=1
                sum="${sum:1}"
            fi

            IFS= read -r path
            path="${path:1}"

            [ -n "$escaped" ] && path="$( _sums_unescape_path "$path" )"

            [ -n "$print_lines" ] && output+=("$line")
            output+=("$path")
            [ -n "$print_sums"  ] && output+=("$sum")
        } <<< "$line"
    done < "$sums_path"

    if [ "${#output[@]}" -gt 0 ]; then
        printf -- "$fmt_output" ${output[@]+"${output[@]}"}
    fi
)

sums_add() (
    set -o errexit -o nounset -o pipefail
    shopt -s inherit_errexit 2> /dev/null || true
    shopt -s lastpipe

    local -A existing
    local -a missing=()

    local path
    sums_list_paths -z | while IFS= read -d '' -r path; do
        existing[$path]=1
    done

    for path; do
        [ -z "${existing[$path]+x}" ] && missing+=("$path")
    done

    [ "${#missing[@]}" -eq 0 ] && return 0

    sha1sum -- ${missing[@]+"${missing[@]}"} >> "$sums_path"
)

sums_add_all() (
    set -o errexit -o nounset -o pipefail
    shopt -s inherit_errexit 2> /dev/null || true
    shopt -s lastpipe

    local -a paths

    local path
    find . -type f -\! -iname "$sums_name" -printf '%P\0' | while IFS= read -d '' -r path; do
        paths+=("$path")
    done

    sums_add ${paths[@]+"${paths[@]}"}
)

sums_add_distr() (
    set -o errexit -o nounset -o pipefail
    shopt -s inherit_errexit 2> /dev/null || true
    shopt -s lastpipe

    local -a paths
    local path

    find . -type f -\(        \
        -iname '*.7z'         \
        -o -iname '*.exe'     \
        -o -iname '*.img'     \
        -o -iname '*.iso'     \
        -o -iname '*.tar'     \
        -o -iname '*.tar.bz2' \
        -o -iname '*.tar.gz'  \
        -o -iname '*.zip'     \
        -\) -printf '%P\0' |
    while IFS= read -d '' -r path; do
        paths+=("$path")
    done

    sums_add ${paths[@]+"${paths[@]}"}
)

sums_verify() (
    set -o errexit -o nounset -o pipefail
    shopt -s inherit_errexit 2> /dev/null || true

    sha1sum --check --strict --quiet -- "$sums_path"
)

sums_remove_missing() (
    set -o errexit -o nounset -o pipefail
    shopt -s inherit_errexit 2> /dev/null || true
    shopt -s lastpipe

    local dry_run=

    while [ "$#" -gt 0 ]; do
        local key="$1"
        shift
        case "$key" in
            -h|--help)
                echo "usage: ${FUNCNAME[0]} [-h|--help] [-n|--dry-run]"
                return 0
                ;;
            -n|--dry-run)
                dry_run=1
                ;;
            *)
                echo "${FUNCNAME[0]}: unrecognized parameter: $key" >&2
                return 1
                ;;
        esac
    done

    local -a input=()
    local -a paths=()

    local line path
    sums_list_paths -z --lines | while IFS= read -d '' -r line; do
        IFS= read -d '' -r path
        input+=("$line")
        paths+=("$path")
    done

    local -a output=()

    local i
    for i in "${!paths[@]}"; do
        if [ ! -e "${paths[$i]}" ]; then
            echo "${FUNCNAME[0]}: doesn't exist: ${paths[$i]}"
        else
            output+=("${input[$i]}")
        fi
    done

    [ -n "$dry_run" ] && return 0

    for line in ${output[@]+"${output[@]}"}; do
        echo "$line"
    done > "$sums_path"
)