]> git.p6c8.net - selfforum.git/blobdiff - selfforum-cgi/shared/Lock/Symlink.pm
support for fo_delete.pl
[selfforum.git] / selfforum-cgi / shared / Lock / Symlink.pm
index 82ea283a488d0c2c56925e2e8941c68dbae693e2..736cb7e6b52477b131a6742ee236cacef34d1b7f 100644 (file)
@@ -4,7 +4,7 @@ package Lock::Symlink;
 #                                                                              #
 # File:        shared/Lock/Symlink.pm                                          #
 #                                                                              #
-# Authors:     Andre Malo       <nd@o3media.de>, 2001-05-25                    #
+# Authors:     André Malo <nd@o3media.de>                                      #
 #                                                                              #
 # Description: Locking and Filehandle class                                    #
 #              using symlinks                                                  #
@@ -12,19 +12,19 @@ package Lock::Symlink;
 ################################################################################
 
 use strict;
-use vars qw(
-  $VERSION
-);
-
 use Fcntl;
 
 ################################################################################
 #
 # Version check
 #
-$VERSION = do { my @r =(q$Revision$ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
+# last modified:
+#    $Date$ (GMT)
+# by $Author$
+#
+sub VERSION {(q$Revision$ =~ /([\d.]+)\s*$/)[0] or '0.0'}
 
-### sub _simple_lock ###########################################################
+### _simple_lock () ############################################################
 #
 # simple file lock
 # (create lock file)
@@ -42,7 +42,7 @@ sub _simple_lock {
   return;
 }
 
-### sub _simple_unlock #########################################################
+### _simple_unlock () ##########################################################
 #
 # simple file unlock
 # (unlink lock file)
@@ -62,7 +62,7 @@ sub _simple_unlock {
   return;
 }
 
-### sub _reftime ###############################################################
+### _reftime () ################################################################
 #
 # determine reference time for violent unlock
 #
@@ -83,7 +83,7 @@ sub _reftime {
   $time;
 }
 
-### sub masterlocked ###########################################################
+### masterlocked () ############################################################
 #
 # check on master lock status of the file
 #
@@ -93,7 +93,7 @@ sub _reftime {
 #
 sub masterlocked {-l shift -> masterlock}
 
-### sub excl_announced #########################################################
+### excl_announced () ##########################################################
 #
 # 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 exsh_announced #########################################################
+### exsh_announced () ##########################################################
 #
 # check on exclusive shared lock status of the file
 #
@@ -113,9 +113,21 @@ sub excl_announced {-l shift -> lockfile}
 #
 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;
 
 #
 #
-### end of Lock::Symlink #######################################################
+### end of Lock::Symlink #######################################################
\ No newline at end of file

patrick-canterino.de