]> git.p6c8.net - selfforum.git/blobdiff - selfforum-cgi/shared/Lock/Handle.pm
sort threads by number, not alphabetically
[selfforum.git] / selfforum-cgi / shared / Lock / Handle.pm
index e5a749e94e790bfa9cfa1d431305dec862f767e5..e89f4b2e3c8a416d9c41371d6d16245d9082e895 100644 (file)
@@ -4,7 +4,7 @@ package Lock::Handle;
 #                                                                              #
 # File:        shared/Lock/Handle.pm                                           #
 #                                                                              #
-# Authors:     Andre Malo       <nd@o3media.de>, 2001-05-30                    #
+# Authors:     André Malo <nd@o3media.de>                                      #
 #                                                                              #
 # Description: belongs to Locking and Filehandle class                         #
 #              NOT FOR PUBLIC USE                                              #
@@ -12,19 +12,19 @@ package Lock::Handle;
 ################################################################################
 
 use strict;
-use vars qw(
-  $VERSION
-);
+use Symbol qw(gensym);
 
 use base   qw(Lock::_static);
 
-use Symbol qw(gensym);
-
 ################################################################################
 #
 # 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 new ####################################################################
 #
@@ -44,6 +44,36 @@ sub new {
   $self;
 }
 
+### open () ####################################################################
+#
+# open a file
+#
+# Params: $mode - open mode
+#
+# Return: success code (boolean)
+#
+sub open {
+  my ($self, $mode) = @_;
+
+  return unless defined ($mode);
+
+  sysopen ($self, $self->filename, $mode);
+}
+
+### close () ###################################################################
+#
+# close a file
+#
+# Params: ~none~
+#
+# Return: success code (boolean)
+#
+sub close {
+  my $self = shift;
+
+  CORE::close $self;
+}
+
 ### sub _create_handle #########################################################
 #
 # create a globref

patrick-canterino.de