blob: 794efa125569bbb0f8d5670a44156e73c254c63d (
plain)
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
|
#!/bin/bash
bekannte_Barcodes=$(
{
printf 'SELECT '
printf '`Schrauben`.`barcode`'
printf ' FROM `Schrauben`;\n'
printf 'SELECT '
printf '`Muttern`.`barcode`'
printf ' FROM `Muttern`;\n'
printf 'SELECT '
printf '`Unterlegscheiben`.`barcode`'
printf ' FROM `Unterlegscheiben`;\n'
} \
| mysql
)
frag_ab() {
local Bezeichner="$1"
shift
while true; do
>&2 printf '%s (' "${Bezeichner}"
printf '%s/' "$@" \
| sed 's@/$@)? @' >&2
read Antwort >&2
if printf '%s\n' "$@" \
| grep -cF "${Antwort}" \
| grep -qxF '1'; then
printf '%s\n' "$@" \
| grep -F "${Antwort}"
return
fi
if printf '%s\n' "$@" \
| grep -cxF "${Antwort}" \
| grep -qxF '1'; then
printf '%s\n' "$@" \
| grep -xF "${Antwort}"
return
fi
printf '\n' >&2
done
}
declare -A Kategorien
Kategorien['Kopf']='Koepfe'
Kategorien['Gewindetyp']='Gewindetypen'
Kategorien['Material']='Materialien'
declare -A Spalten
for Typ in 'Schraube' 'Mutter' 'Unterlegscheibe'; do
Spalten["${Typ}"]=$(
printf 'SHOW CREATE TABLE `%sn`;\n' "${Typ}" \
| mysql -N --raw --batch \
| sed -n '
s/^ `\(\S\+\)` \(\S\+\) .*$/\1:\2/
T
p
' \
| grep -v '^id:' \
| tr '\n' ' ' \
| sed 's@\s$@@'
)
done
frag_aus_Tabelle_ab() {
local Alternativen
local Antwort
Alternativen=$(
{
printf 'SELECT'
printf ' `id`,`name`'
printf ' FROM `%s`' "${Kategorien["$1"]}"
} \
| mysql -N --raw --batch \
| tr '\t' ' ' \
| sort -u
)
Antwort=$(
frag_ab "$1" $(printf '%s\n' "${Alternativen}" | sed 's@^\S\+ @@')
)
printf '%s\n' "${Alternativen}" \
| grep -wF "${Antwort}" \
| cut -d' ' -f1
}
tmp_dir=$(mktemp -d)
trap 'rm -rf --one-file-system "${tmp_dir}"' EXIT
while {
>&2 printf '%s Schachteln übrig\n' \
$(
printf '%s\n' "${bekannte_Barcodes}" "${vorhandene_Barcodes}" "${vorhandene_Barcodes}" \
| sort \
| uniq -u \
| wc -l
)
read -r Barcode
}; do
if [ -z "${Barcode}" ]; then
break
fi
vorhandene_Barcodes=$(
printf '%s\n' ${vorhandene_Barcodes} ${Barcode} \
| sort -u
)
if printf '%s\n' "${bekannte_Barcodes}" \
| grep -qxF "${Barcode}"; then
>&2 printf 'ist bekannt\n\n'
continue
fi
Typ=$(
frag_ab 'Typ' 'Schraube' 'Mutter' 'Unterlegscheibe'
)
for Eigenschaft_Datentyp in ${Spalten["${Typ}"]}; do
Eigenschaft="${Eigenschaft_Datentyp%%:*}"
Datentyp="${Eigenschaft_Datentyp#${Eigenschaft}:}"
if [ "${Eigenschaft}" = 'Barcode' ]; then
Wert="${Barcode}"
elif [ -n "${Kategorien["${Eigenschaft}"]}" ]; then
Wert=$(
frag_aus_Tabelle_ab "${Eigenschaft}"
)
else
>&2 printf '%s (%s): ' "${Eigenschaft}" "${Datentyp}"
read Wert >&2
fi
printf '%s\t' "${Wert}"
done \
| sed '
s@\s$@\n@
' >> "${tmp_dir}/neue-Daten-${Typ}"
done
for Datei in "${tmp_dir}/neue-Daten-"*; do
if [ ! -f "${Datei}" ]; then
continue
fi
Typ="${Datei##*/neue-Daten-}"
printf 'LOAD DATA LOCAL INFILE "%s"' "${Datei}"
printf ' INTO TABLE `%sn`(' "${Typ}"
printf '%s\n' ${Spalten["${Typ}"]} \
| sed '
s@^\([^:]\+\):.*$@`\1`,@
$ s@,$@@
' \
| tr -d '\n'
printf ');\n'
done \
| mysql
fehlende_Barcodes=$(
printf '%s\n' "${bekannte_Barcodes}" "${vorhandene_Barcodes}" "${vorhandene_Barcodes}" \
| sort \
| uniq -u \
| while read -r bc; do
printf '%s' "${bc}" \
| base64 -w0
printf '\n'
done
)
if [ -n "${fehlende_Barcodes}" ]; then
>&2 printf 'Ich vermisse:\n'
for Typ in "${!Spalten[@]}"; do
printf 'SELECT "%s",*' "${Typ}"
printf ' FROM `%sn`' "${Typ}"
printf ' WHERE `%sn`.`Barcode` IN (' "${Typ}"
printf 'FROM_BASE64("%s"),' ${fehlende_Barcodes} \
| sed 's@,$@@'
printf ');\n'
done \
| mysql >&2
fi
|