]> git.plutz.net Git - serve0/blobdiff - indexmeta.sh
altered groupmatch algorithm
[serve0] / indexmeta.sh
index aad3fc1433990ee4f0822dc4d9b54fdd26420ed0..2da085f9a0bf86fcdb630f8fd98443df7d99c423 100644 (file)
@@ -52,9 +52,9 @@ meta_purge(){
   name="$(meta_name "$file")"
 
   if [ -d "${meta%/meta}" ] && LOCK "$meta"; then
-    grep -avF "        ${name}" "$meta" >"$meta.tmp"
-    grep -aF " ${name}" "$meta" >>"$meta.trash"
-    mv "$meta.tmp" "$meta"
+    grep -avF "        ${name}" "$meta" >"${meta}.tmp"
+    grep -aF " ${name}" "$meta" >>"${meta}.trash"
+    mv "${meta}.tmp" "$meta"
     RELEASE "$meta"
   fi
 }
@@ -76,6 +76,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
@@ -86,9 +89,9 @@ meta_dir(){
     done >"$meta"
 
     RELEASE "$meta"
-  elif [ -d "$dir/.index" -a "$dir" -nt "$meta" ] && LOCK "$meta"; then
+  elif [ -d "$dir/.index" -a "$dir" -nt "$metat" ] && LOCK "$meta"; then
     cp -p "$meta" "$meta.ref"; touch "$meta"
-    find "$dir" -type f -newer "$meta.ref" \
+    find "$dir" -type f -newer "$metat" \
          -mindepth 1 -maxdepth 1 \
     | grep -aE "$file_pattern" \
     | while read -r v; do
@@ -97,6 +100,7 @@ meta_dir(){
     done >>"$meta"
     sort -u "$meta" >"$meta.ref"
     mv "$meta.ref" "$meta"
+    touch "$metat"
 
     RELEASE "$meta"
   fi