]> git.p6c8.net - selfforum.git/commitdiff
added purge method
authorndparker <>
Fri, 27 Jul 2001 15:26:38 +0000 (15:26 +0000)
committerndparker <>
Fri, 27 Jul 2001 15:26:38 +0000 (15:26 +0000)
selfforum-cgi/shared/Lock/Exclusive.pm
selfforum-cgi/shared/Lock/Symlink.pm
selfforum-cgi/shared/Lock/Unlink.pm

index fbcf38d872d48ae696d351a3ceacc54ec26518c7..009a469736cda19372098cb81c92297d270f3d4a 100644 (file)
@@ -24,7 +24,7 @@ use Fcntl;
 #
 sub VERSION {(q$Revision$ =~ /([\d.]+)\s*$/)[0] or '0.0'}
 
 #
 sub VERSION {(q$Revision$ =~ /([\d.]+)\s*$/)[0] or '0.0'}
 
-### sub _simple_lock ###########################################################
+### _simple_lock () ############################################################
 #
 # simple file lock
 # (create lock file)
 #
 # simple file lock
 # (create lock file)
@@ -44,7 +44,7 @@ sub _simple_lock {
   return;
 }
 
   return;
 }
 
-### sub _simple_unlock #########################################################
+### _simple_unlock () ##########################################################
 #
 # simple file unlock
 # (unlink lock file)
 #
 # simple file unlock
 # (unlink lock file)
@@ -64,7 +64,7 @@ sub _simple_unlock {
   return;
 }
 
   return;
 }
 
-### sub _reftime ###############################################################
+### _reftime () ################################################################
 #
 # determine reference time for violent unlock
 #
 #
 # determine reference time for violent unlock
 #
@@ -85,7 +85,7 @@ sub _reftime {
   $time;
 }
 
   $time;
 }
 
-### sub masterlocked ###########################################################
+### masterlocked () ############################################################
 #
 # check on master lock status of the file
 #
 #
 # check on master lock status of the file
 #
@@ -95,7 +95,7 @@ sub _reftime {
 #
 sub masterlocked {-f shift -> masterlock}
 
 #
 sub masterlocked {-f shift -> masterlock}
 
-### sub excl_announced #########################################################
+### excl_announced () ##########################################################
 #
 # check on exclusive lock announced status of the file
 #
 #
 # check on exclusive lock announced status of the file
 #
@@ -105,7 +105,7 @@ sub masterlocked {-f shift -> masterlock}
 #
 sub excl_announced {-f shift -> lockfile}
 
 #
 sub excl_announced {-f shift -> lockfile}
 
-### sub exsh_announced #########################################################
+### exsh_announced () ##########################################################
 #
 # check on exclusive shared lock status of the file
 #
 #
 # check on exclusive shared lock status of the file
 #
@@ -115,6 +115,18 @@ sub excl_announced {-f shift -> lockfile}
 #
 sub exsh_announced {-f shift -> exshlock}
 
 #
 sub exsh_announced {-f shift -> exshlock}
 
+### purge () ###################################################################
+#
+# cover our traces after a file was removed
+#
+# Params: ~none~
+#
+# Return: ~none~
+#
+sub purge {
+  shift -> release;
+}
+
 # keep 'require' happy
 1;
 
 # keep 'require' happy
 1;
 
index dfe8fd1f53f2d8a2ae007c890210d627729be3ca..736cb7e6b52477b131a6742ee236cacef34d1b7f 100644 (file)
@@ -24,7 +24,7 @@ use Fcntl;
 #
 sub VERSION {(q$Revision$ =~ /([\d.]+)\s*$/)[0] or '0.0'}
 
 #
 sub VERSION {(q$Revision$ =~ /([\d.]+)\s*$/)[0] or '0.0'}
 
-### sub _simple_lock ###########################################################
+### _simple_lock () ############################################################
 #
 # simple file lock
 # (create lock file)
 #
 # simple file lock
 # (create lock file)
@@ -42,7 +42,7 @@ sub _simple_lock {
   return;
 }
 
   return;
 }
 
-### sub _simple_unlock #########################################################
+### _simple_unlock () ##########################################################
 #
 # simple file unlock
 # (unlink lock file)
 #
 # simple file unlock
 # (unlink lock file)
@@ -62,7 +62,7 @@ sub _simple_unlock {
   return;
 }
 
   return;
 }
 
-### sub _reftime ###############################################################
+### _reftime () ################################################################
 #
 # determine reference time for violent unlock
 #
 #
 # determine reference time for violent unlock
 #
@@ -83,7 +83,7 @@ sub _reftime {
   $time;
 }
 
   $time;
 }
 
-### sub masterlocked ###########################################################
+### masterlocked () ############################################################
 #
 # check on master lock status of the file
 #
 #
 # check on master lock status of the file
 #
@@ -93,7 +93,7 @@ sub _reftime {
 #
 sub masterlocked {-l shift -> masterlock}
 
 #
 sub masterlocked {-l shift -> masterlock}
 
-### sub excl_announced #########################################################
+### excl_announced () ##########################################################
 #
 # check on exclusive lock announced status of the file
 #
 #
 # check on exclusive lock announced status of the file
 #
@@ -103,7 +103,7 @@ sub masterlocked {-l shift -> masterlock}
 #
 sub excl_announced {-l shift -> lockfile}
 
 #
 sub excl_announced {-l shift -> lockfile}
 
-### sub exsh_announced #########################################################
+### exsh_announced () ##########################################################
 #
 # check on exclusive shared lock status of the file
 #
 #
 # check on exclusive shared lock status of the file
 #
@@ -113,6 +113,18 @@ sub excl_announced {-l shift -> lockfile}
 #
 sub exsh_announced {-l shift -> exshlock}
 
 #
 sub exsh_announced {-l shift -> exshlock}
 
+### purge () ###################################################################
+#
+# cover our traces after a file was removed
+#
+# Params: ~none~
+#
+# Return: ~none~
+#
+sub purge {
+  shift -> release;
+}
+
 # keep 'require' happy
 1;
 
 # keep 'require' happy
 1;
 
index b4770f37c0d83aeac8376a8c1bbcabc3094e2cda..0042ff743d0e3195d70b5fdaf09aedd5be1e5b41 100644 (file)
@@ -24,7 +24,7 @@ use Fcntl;
 #
 sub VERSION {(q$Revision$ =~ /([\d.]+)\s*$/)[0] or '0.0'}
 
 #
 sub VERSION {(q$Revision$ =~ /([\d.]+)\s*$/)[0] or '0.0'}
 
-### sub _simple_lock ###########################################################
+### _simple_lock () ############################################################
 #
 # simple file lock
 # (unlink lock file)
 #
 # simple file lock
 # (unlink lock file)
@@ -42,7 +42,7 @@ sub _simple_lock {
   return;
 }
 
   return;
 }
 
-### sub _simple_unlock #########################################################
+### _simple_unlock () ##########################################################
 #
 # simple file unlock
 # (create lock file)
 #
 # simple file unlock
 # (create lock file)
@@ -65,7 +65,7 @@ sub _simple_unlock {
   return;
 }
 
   return;
 }
 
-### sub _reftime ###############################################################
+### _reftime () ################################################################
 #
 # determine reference time for violent unlock
 #
 #
 # determine reference time for violent unlock
 #
@@ -86,7 +86,7 @@ sub _reftime {
   $time;
 }
 
   $time;
 }
 
-### sub masterlocked ###########################################################
+### masterlocked () ############################################################
 #
 # check on master lock status of the file
 #
 #
 # check on master lock status of the file
 #
@@ -96,7 +96,7 @@ sub _reftime {
 #
 sub masterlocked {not -f shift -> masterlock}
 
 #
 sub masterlocked {not -f shift -> masterlock}
 
-### sub excl_announced #########################################################
+### excl_announced () ##########################################################
 #
 # check on exclusive lock announced status of the file
 #
 #
 # check on exclusive lock announced status of the file
 #
@@ -106,7 +106,7 @@ sub masterlocked {not -f shift -> masterlock}
 #
 sub excl_announced {not -f shift -> lockfile}
 
 #
 sub excl_announced {not -f shift -> lockfile}
 
-### sub exsh_announced #########################################################
+### exsh_announced () ##########################################################
 #
 # check on exclusive shared lock status of the file
 #
 #
 # check on exclusive shared lock status of the file
 #
@@ -116,6 +116,26 @@ sub excl_announced {not -f shift -> lockfile}
 #
 sub exsh_announced {not -f shift -> exshlock}
 
 #
 sub exsh_announced {not -f shift -> exshlock}
 
+### purge () ###################################################################
+#
+# cover our traces after a file was removed
+#
+# Params: ~none~
+#
+# Return: ~none~
+#
+sub purge {
+  my $self = shift;
+
+  $self -> set_ref (0);          # reference counter = 0
+  unlink ($self -> reflock);     # remove reference counter lock
+  unlink ($self -> lockfile);    # remove any write lock announce
+  unlink ($self -> exshlock);    # remove any excl shared lock
+  unlink ($self -> masterlock);  # remove master lock
+
+  return;
+}
+
 # keep 'require' happy
 1;
 
 # keep 'require' happy
 1;
 

patrick-canterino.de