]> git.plutz.net Git - serve0/blobdiff - indexmeta.sh
animated thumbnail show
[serve0] / indexmeta.sh
index fb893e14195bd8ba2554adb121097a5f8c021eb9..43e360d2bfcfab9f4cc7ea2016b971f981239227 100644 (file)
@@ -15,6 +15,7 @@ meta_name() {
 meta_line() {
   local video l w h
   video="$1"
+  [ "${video%.part}" = "$video" -a -s "$video" ] || return 0
 
   read l h w <<__EOF
   $(printf '' \
@@ -76,6 +77,9 @@ meta_dir(){
   local dir meta v
   dir="${1}"
   meta="${dir}/.index/meta"
+  metat="${dir}/.index/meta.time"
+
+  [ -f "$metat" ] || touch -d @0 "$metat"
 
   if [ -d "$dir/.index" -a \! -f "$meta" ] && LOCK "$meta"; then
     touch "$meta"  # preliminary touch to prevent concurrent generators
@@ -84,19 +88,19 @@ meta_dir(){
     | while read -r v; do
       meta_line "$v"
     done >"$meta"
+    touch "$metat"
 
     RELEASE "$meta"
-  elif [ -d "$dir/.index" -a "$dir" -nt "$meta" ] && LOCK "$meta"; then
-    cp -p "$meta" "$meta.ref"; touch "$meta"
-    find "$dir" -type f -newer "$meta.ref" \
+  elif [ -d "$dir/.index" -a "$dir" -nt "$metat" ] && LOCK "$meta"; then
+    touch "$meta"
+    find "$dir" -type f -newer "$metat" \
          -mindepth 1 -maxdepth 1 \
     | grep -aE "$file_pattern" \
     | while read -r v; do
       grep -qF "       $(meta_name "$v")" "$meta" \
       || meta_line "$v"
     done >>"$meta"
-    sort -u "$meta" >"$meta.ref"
-    mv "$meta.ref" "$meta"
+    touch "$metat"
 
     RELEASE "$meta"
   fi