summaryrefslogtreecommitdiff
path: root/bin/build-master-status
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-02-01 14:02:05 +0100
committerErich Eckner <git@eckner.net>2018-02-01 14:02:05 +0100
commita154303d59fc2d6e8928df6351dcf76e8aefe64b (patch)
treee7241fc7f8758e96e7b551a3c148d74ae789f4fb /bin/build-master-status
parent4d31b38cf29577615aef7404bdf9cdbfa9d6cf50 (diff)
downloadbuilder-a154303d59fc2d6e8928df6351dcf76e8aefe64b.tar.xz
bin/build-master-status: update todos correctly
Diffstat (limited to 'bin/build-master-status')
-rwxr-xr-xbin/build-master-status59
1 files changed, 44 insertions, 15 deletions
diff --git a/bin/build-master-status b/bin/build-master-status
index b117e4e..ce49332 100755
--- a/bin/build-master-status
+++ b/bin/build-master-status
@@ -540,7 +540,7 @@ if ${web}; then
# update todos
# shellcheck disable=SC2016
while read -r file line desc; do
- printf 'UPDATE `todos`'
+ printf 'UPDATE IGNORE `todos`'
printf ' SET `todos`.`line`=from_base64("%s")' \
"${line}"
printf ' WHERE `todos`.`file`=from_base64("%s")' \
@@ -548,7 +548,7 @@ if ${web}; then
printf ' AND `todos`.`description`=from_base64("%s");\n' \
"${desc}"
- printf 'UPDATE `todos`'
+ printf 'UPDATE IGNORE `todos`'
printf ' SET `todos`.`description`=from_base64("%s")' \
"${desc}"
printf ' WHERE `todos`.`file`=from_base64("%s")' \
@@ -560,19 +560,48 @@ if ${web}; then
${mysql_command}
# insert unfound todos
# shellcheck disable=SC2016
- while read -r file line desc; do
- printf ' ('
- printf 'from_base64("%s"),' \
- "${file}" \
- "${line}" \
- "${desc}" | \
- sed 's/,$/),/'
- done < \
- "${tmp_dir}/todos" | \
- sed '
- 1 i INSERT IGNORE INTO `todos` (`file`,`line`,`description`) VALUES
- s/,$/;\n/
- ' | \
+ {
+ printf 'CREATE TEMPORARY TABLE `td` ('
+ printf '`file` VARCHAR(64), '
+ printf '`line` MEDIUMINT, '
+ printf '`description` VARCHAR(128), '
+ printf 'UNIQUE KEY `position` (`file`,`line`), '
+ printf 'UNIQUE KEY `content` (`file`,`description`)'
+ printf ');'
+ printf 'INSERT INTO `td` (`file`,`line`,`description`) VALUES '
+ while read -r file line desc; do
+ printf '('
+ printf 'from_base64("%s"),' \
+ "${file}" \
+ "${line}" \
+ "${desc}" | \
+ sed 's/,$/),/'
+ done < \
+ "${tmp_dir}/todos" | \
+ sed '
+ s/,$//
+ '
+ printf ';\n'
+ printf 'INSERT IGNORE INTO `todos` (`file`,`line`,`description`) '
+ printf 'SELECT `td`.`file`,`td`.`line`,`td`.`description` '
+ printf 'FROM `td`;\n'
+ printf 'DELETE FROM `todos` WHERE NOT EXISTS ('
+ printf 'SELECT * FROM `td`'
+ printf ' AND `td`.`%s`=`todos`.`%s`' \
+ 'file' 'file' \
+ 'line' 'line' \
+ 'description' 'description' | \
+ sed 's/^ AND / WHERE /'
+ printf ');'
+ printf 'DROP TABLE `td`;\n'
+ printf 'DELETE FROM `todo_links` WHERE NOT EXISTS ('
+ printf 'SELECT * FROM `todos` '
+ printf 'WHERE `todos`.`id`=`todo_links`.`depending_on`'
+ printf ') OR NOT EXISTS ('
+ printf 'SELECT * FROM `todos` '
+ printf 'WHERE `todos`.`id`=`todo_links`.`dependent`'
+ printf ');\n'
+ } | \
${mysql_command}
rm -f "${tmp_dir}/todos"
fi