X-Git-Url: http://git.plutz.net/?a=blobdiff_plain;f=multitag.sh;h=49bf273c9ed951f72cd19d031ff5d2ad69d024bb;hb=7068cdba834b18fd78cb48c3e0e1d72c40887a25;hp=43484e63fb9e28698f15258ca4a841992ddf9427;hpb=f99cce3548251966cd0b7c9ead81460e2f14466c;p=serve0 diff --git a/multitag.sh b/multitag.sh index 43484e6..49bf273 100644 --- a/multitag.sh +++ b/multitag.sh @@ -1,35 +1,33 @@ #!/bin/sh +. "$_EXEC/cgilite/storage.sh" +. "$_EXEC/indexmeta.sh" + for select in $(seq 1 $(POST_COUNT select)); do file="$_DATA/$ITEM/$(POST select $select)" meta="${file%/*}/.index/meta" - fn="${file##*/}" - - while ! mkdir "${meta}.lock"; do - sleep 1 - ps -o pid \ - | grep -q "$(cat "${meta}.lock/pid")" \ - || break - done - printf '%i\n' >"${meta}.lock/pid" - grep -vF " $fn" "$meta" >"${meta}.lock/mtmp" - read length width height tags comment x <<-EOF - $(grep -F " $fn" "$meta") + read -r length width height tags comment fn <<-EOF + $(meta_info "$file") EOF - tags="$(printf '%s' "${tags#tags=}" | tr , '\n')" - for tn in $(seq 1 $(POST_COUNT tag)); do - tags="$tags${BR}$(POST tag $tn |sed -r 's;\t;\\t;g; s;\r;;g;')" - done - tags="$tags${BR}$(POST newtag |sed -r 's;\t;\\t;g;')" + if LOCK "$meta"; then + grep -vF " $fn" "$meta" >"${meta}.tmp" + tags="$(UNSTRING "${tags#tags=}" |tr , '\n')" + + for tn in $(seq 1 $(POST_COUNT tag)); do + tags="$(printf '%s\n%s' "$tags" "$(POST tag $tn)")" + done + tags="$(printf '%s\n%s' "$tags" "$(POST newtag |tr -d '\r')")" - printf '%s\t%s\t%s\ttags=%s\t%s\t%s\n' \ - "$length" "$width" "$height" \ - "$(printf %s "$tags" |sort -u |tr '\n' ,)" \ - "$comment" "$fn" \ - >>"${meta}.lock/mtmp" - mv "${meta}.lock/mtmp" "$meta" + tags="$(printf %s "$tags" |sort -u |tr '\n' ,)" + printf '%i\t%i\t%i\ttags=%s\t%s\t%s\n' \ + "$length" "$width" "$height" \ + "$(STRING "${tags#,}")" \ + "$comment" "$fn" \ + >>"${meta}.tmp" + mv "${meta}.tmp" "$meta" - rm "${meta}.lock/pid"; rmdir "${meta}.lock" + RELEASE "$meta" + fi done