Bio::Root
IO
Summary
Bio::Root::IO - module providing several methods often needed when dealing with file IO
Package variables
Privates (from "my" definitions)
$TEMPCOUNTER;
Included modules
Inherit
Synopsis
# utilize stream I/O in your module
$self->{'io'} = Bio::Root::IO->new(-file => "myfile");
$self->{'io'}->_print("some stuff");
$line = $self->{'io'}->_readline();
$self->{'io'}->_pushback($line);
$self->{'io'}->close();
# obtain platform-compatible filenames
$path = Bio::Root::IO->catfile($dir, $subdir, $filename);
# obtain a temporary file (created in $TEMPDIR)
($handle) = $io->tempfile();
Description
This module provides methods that will usually be needed for any sort
of file- or stream-related input/output, e.g., keeping track of a file
handle, transient printing and reading from the file handle, a close
method, automatically closing the handle on garbage collection, etc.
To use this for your own code you will either want to inherit from
this module, or instantiate an object for every file or stream you are
dealing with. In the first case this module will most likely not be
the first class off which your class inherits; therefore you need to
call _initialize_io() with the named parameters in order to set file
handle, open file, etc automatically.
Most methods start with an underscore, indicating they are private. In
OO speak, they are not private but protected, that is, use them in
your module code, but a client code of your module will usually not
want to call them (except those not starting with an underscore).
In addition this module contains a couple of convenience methods for
cross-platform safe tempfile creation and similar tasks. There are
some CPAN modules related that may not be available on all
platforms. At present, File::Spec and File::Temp are attempted. This
module defines $PATHSEP, $TEMPDIR, and $ROOTDIR, which will always be set,
and $OPENFLAGS, which will be set if either of File::Spec or File::Temp fails.
Methods
Methods description
Title : new
Usage :
Function: Overridden here to automatically call _initialize_io().
Example :
Returns : new instance of this class
Args : named parameters |
Title : initialize_io
Usage : $self->_initialize_io(@params);
Function: Initializes filehandle and other properties.
Currently recognized the following named parameters: -file, -fh
Example :
Returns : TRUE
Args : named parameters |
Title : _fh
Usage : $obj->_fh($newval)
Function:
Example :
Returns : value of _filehandle
Args : newvalue (optional) |
Title : file
Usage : $obj->file($newval)
Function:
Example :
Returns : value of file
Args : newvalue (optional) |
Title : _print
Usage : $obj->_print(@lines)
Function:
Example :
Returns : writes output |
Title : _readline
Usage : $obj->_readline
Function: Reads a line of input.
Note that this method implicitely uses the value of $/ that is
in effect when called.
Note also that the current implementation does not handle pushed
back input correctly unless the pushed back input ends with the
value of $/.
Example :
Returns : |
Title : _pushback
Usage : $obj->_pushback($newvalue)
Function: puts a line previously read with _readline back into a buffer
Example :
Returns :
Args : newvalue |
Title : close
Usage : $io->close()
Function: Closes the file handle associated with this IO instance.
Example :
Returns :
Args : |
Title : exists_exe
Usage : $exists = $obj->exists_exe('clustalw');
$exists = Bio::Root::IO->exists_exe('clustalw')
$exists = Bio::Root::IO::exists_exe('clustalw')
Function: Determines whether the given executable exists either as file
or within the path environment. The latter requires File::Spec
to be installed.
On Win32-based system, .exe is automatically appended to the program
name unless the program name already ends in .exe.
Example :
Returns : 1 if the given program is callable as an executable, and 0 otherwise
Args : the name of the executable |
Title : tempfile
Usage : my ($handle,$tempfile) = $io->tempfile();
Function: Returns a temporary filename and a handle opened for writing and
and reading.
Caveats : If you do not have File::Temp on your system you should avoid
specifying TEMPLATE and SUFFIX. (We don't want to recode
everything, okay?)
Returns : a 2-element array, consisting of temporary handle and temporary
file name
Args : named parameters compatible with File::Temp: DIR (defaults to
$Bio::Root::IO::TEMPDIR), TEMPLATE, SUFFIX. |
Title : tempdir
Usage : my ($tempdir) = $io->tempdir(CLEANUP=>1);
Function: Creates and returns the name of a new temporary directory.
Note that you should not use this function for obtaining "the"
temp directory. Use $Bio::Root::IO::TEMPDIR for that. Calling this
method will in fact create a new directory.
Returns : The name of a new temporary directory.
Args : args - ( key CLEANUP ) indicates whether or not to cleanup
dir on object destruction, other keys as specified by File::Temp |
Title : catfile
Usage : $path = Bio::Root::IO->catfile(@dirs,$filename);
Function: Constructs a full pathname in a cross-platform safe way.
If File::Spec exists on your system, this routine will merely
delegate to it. Otherwise it tries to make a good guess.
You should use this method whenever you construct a path name
from directory and filename. Otherwise you risk cross-platform
compatibility of your code.
You can call this method both as a class and an instance method.
Returns : a string
Args : components of the pathname (directories and filename, NOT an
extension) |
Title : rmtree
Usage : Bio::Root::IO->rmtree($dirname );
Function: Remove a full directory tree
If File::Path exists on your system, this routine will merely
delegate to it. Otherwise it runs a local version of that code.
You should use this method to remove directories which contain
files.
You can call this method both as a class and an instance method.
Returns : number of files successfully deleted
Args : roots - rootdir to delete or reference to list of dirs
verbose - a boolean value, which if TRUE will cause
rmtree to print a message each time it examines a file, giving the name of the file, and indicating whether it's using rmdir or unlink to remove it, or that it's skipping it. (defaults to FALSE)
safe - a boolean value, which if TRUE will cause rmtree to skip any files to which you do not have delete access (if running under VMS) or write access (if running under another OS). This will change in the future when a criterion for 'delete permission' under OSs other than VMS is settled. (defaults to FALSE) |
Methods code
BEGIN { $TEMPCOUNTER = 0;
$FILESPECLOADED = 0;
$FILETEMPLOADED = 0;
$FILEPATHLOADED = 0;
$VERBOSE = 1;
eval {
require File::Path;
$FILEPATHLOADED = 1;
};
if( $@ ) {
print STDERR "Cannot load File::Path: $@" if( $VERBOSE > 0 );
}
if($^O =~ /mswin/i) {
$PATHSEP = "\\";
} elsif($^O =~ /macos/i) {
$PATHSEP = ":";
} else { $PATHSEP = "/";
}
eval {
require File::Spec;
$FILESPECLOADED = 1;
$TEMPDIR = File::Spec->tmpdir();
$ROOTDIR = File::Spec->rootdir();
require File::Temp; $FILETEMPLOADED = 1;
};
if( $@ ) {
if(! defined($TEMPDIR)) { if (defined $ENV{'TEMPDIR'} && -d $ENV{'TEMPDIR'} ) {
$TEMPDIR = $ENV{'TEMPDIR'};
} elsif( defined $ENV{'TMPDIR'} && -d $ENV{'TMPDIR'} ) {
$TEMPDIR = $ENV{'TMPDIR'};
}
if($^O =~ /mswin/i) {
$TEMPDIR = 'C:\TEMP' unless $TEMPDIR;
$ROOTDIR = 'C:';
} elsif($^O =~ /macos/i) {
$TEMPDIR = "" unless $TEMPDIR; $ROOTDIR = ""; } else { $TEMPDIR = "/tmp" unless $TEMPDIR;
$ROOTDIR = "/";
}
if (!( -d $TEMPDIR && -w $TEMPDIR )) {
$TEMPDIR = '.'; }
}
use Fcntl;
use Symbol;
$OPENFLAGS = O_CREAT | O_EXCL | O_RDWR;
for my $oflag (qw/FOLLOW BINARY LARGEFILE EXLOCK NOINHERIT TEMPORARY/){
my ($bit, $func) = (0, "Fcntl::O_" . $oflag);
no strict 'refs';
$OPENFLAGS |= $bit if eval { $bit = &$func(); 1 };
}} |
sub new
{ my ($caller, @args) = @_;
my $self = $caller->SUPER::new(@args);
$self->_initialize_io(@args);
return $self;} |
sub _initialize_io
{ my($self, @args) = @_;
$self->_register_for_cleanup(\&_io_cleanup);
my ($input, $file, $fh) = $self->_rearrange([qw(INPUT FILE FH)], @args);
delete $self->{'_readbuffer'};
delete $self->{'_filehandle'};
if($input) {
if(ref(\$input) eq "SCALAR") {
if($file && ($file ne $input)) {
$self->throw("input file given twice: $file and $input disagree");
}
$file = $input;
} elsif(ref($input) &&
((ref($input) eq "GLOB") || $input->isa('IO::Handle'))) {
$fh = $input;
} else {
$self->throw("unable to determine type of input $input: ".
"not string and not GLOB");
}
}
if(defined($file) && defined($fh)) {
$self->throw("Providing both a file and a filehandle for reading - only one please!");
}
if(defined($file) && ($file ne '')) {
$fh = Symbol::gensym();
open ($fh,$file) ||
$self->throw("Could not open $file for reading: $!");
$self->file($file);
}
$self->_fh($fh) if $fh; return 1;} |
sub _fh
{ my ($obj, $value) = @_;
if ( defined $value) {
$obj->{'_filehandle'} = $value;
}
return $obj->{'_filehandle'};} |
sub file
{ my ($obj, $value) = @_;
if ( defined $value) {
$obj->{'_file'} = $value;
}
return $obj->{'_file'};} |
sub _print
{ my $self = shift;
my $fh = $self->_fh ||\* STDOUT;
print $fh @_;} |
sub _readline
{ my $self = shift;
my $fh = $self->_fh ||\* STDIN;
my $line;
if(exists($self->{'_readbuffer'})) {
$line = $self->{'_readbuffer'};
delete $self->{'_readbuffer'};
} else {
$line = <$fh>;
}
$line =~ s/\r\n/\n/g if (defined $line);
return $line;} |
sub _pushback
{ my ($obj, $value) = @_;
$value .= $obj->{'_readbuffer'} if(exists($obj->{'_readbuffer'}));
$obj->{'_readbuffer'} = $value;} |
sub close
{ my ($self, @args) = @_;
$self->{'_filehandle'} = undef;
delete $self->{'_readbuffer'};} |
sub _io_cleanup
{ my ($self) = @_;
$self->close();
if( exists($self->{'_rootio_tempfiles'}) &&
ref($self->{'_rootio_tempfiles'}) =~ /array/i) {
if( $self->verbose > 0 ) {
print STDERR "going to remove files ",
join(",", @{$self->{'_rootio_tempfiles'}}), "\n";
}
unlink (@{$self->{'_rootio_tempfiles'}} );
}
if( $self->{'_cleanuptempdir'} &&
exists($self->{'_rootio_tempdirs'}) &&
ref($self->{'_rootio_tempdirs'}) =~ /array/i) {
if( $self->verbose > 0 ) {
print STDERR "going to remove dirs ",
join(",", @{$self->{'_rootio_tempdirs'}}), "\n";
}
$self->rmtree( $self->{'_rootio_tempdirs'});
}} |
sub exists_exe
{ my ($self, $exe) = @_;
$exe = $self if(!(ref($self) || $exe));
$exe .= '.exe' if(($^O =~ /mswin/i) && ($exe !~ /\.(exe|com|bat|cmd)$/i));
return $exe if(-e $exe); $exe =~ s/^$PATHSEP//;
if($FILESPECLOADED) {
foreach my $dir (File::Spec->path()) {
my $f = Bio::Root::IO->catfile($dir, $exe);
return $f if(-e $f );
}
}
return 0;} |
sub tempfile
{ my ($self, @args) = @_;
my ($tfh, $file);
my %params = @args;
foreach my $key (grep { $_ =~ /^-/; } keys(%params)) {
$params{substr($key,1)} = $params{$key};
delete $params{$key};
}
$params{'DIR'} = $TEMPDIR if(! exists($params{'DIR'}));
if($FILETEMPLOADED) {
if(exists($params{'TEMPLATE'})) {
my $template = $params{'TEMPLATE'};
delete $params{'TEMPLATE'};
($tfh, $file) = File::Temp::tempfile($template, %params);
} else {
($tfh, $file) = File::Temp::tempfile(@args);
}
} else {
my $dir = $params{'DIR'};
$file = $self->catfile($dir,
(exists($params{'TEMPLATE'}) ?
$params{'TEMPLATE'} :
sprintf( "%s.%s.%s",
$ENV{USER} || 'unknown', $$,
$TEMPCOUNTER++)));
if ($] < 5.006) {
$tfh = &Symbol::gensym;
}
local $^F = 2;
my $umask = umask();
umask(066);
if ( sysopen($tfh, $file, $OPENFLAGS, 0600) ) {
umask($umask);
} else {
$self->throw("Could not open tempfile $file: $!\n");
}
}
push @{$self->{'_rootio_tempfiles'}}, $file;
return ($tfh,$file);} |
sub tempdir
{ my ( $self, @args ) = @_;
if($FILETEMPLOADED && File::Temp->can('tempdir') ) {
return File::Temp::tempdir(@args);
}
my %params = @args;
$self->{'_cleanuptempdir'} = $params{CLEANUP} == 1;
my $tdir = $self->catfile($TEMPDIR,
sprintf("dir_%s-%s-%s",
$ENV{USER} || 'unknown', $$,
$TEMPCOUNTER++));
mkdir($tdir, 0755);
push @{$self->{'_rootio_tempdirs'}}, $tdir;
return $tdir;} |
sub catfile
{ my ($self, @args) = @_;
return File::Spec->catfile(@args) if($FILESPECLOADED);
if($args[0] eq '/') {
$args[0] = $ROOTDIR;
}
return join($PATHSEP, @args);} |
sub rmtree
{ my($self,$roots, $verbose, $safe) = @_;
if( $FILEPATHLOADED ) {
return File::Path::rmtree ($roots, $verbose, $safe);
}
my $force_writeable = ($^O eq 'os2' || $^O eq 'dos' || $^O eq 'MSWin32'
|| $^O eq 'amigaos');
my $Is_VMS = $^O eq 'VMS';
my(@files);
my($count) = 0;
$verbose ||= 0;
$safe ||= 0;
if ( defined($roots) && length($roots) ) {
$roots = [$roots] unless ref $roots;
} else {
$self->warn("No root path(s) specified\n");
return 0;
}
my($root);
foreach $root (@{$roots}) {
$root =~ s#/\z##;
(undef, undef, my $rp) = lstat $root or next;
$rp &= 07777; if ( -d _ ) {
chmod(0777, ($Is_VMS ? VMS::Filespec::fileify($root) : $root))
or $self->warn("Can't make directory $root read+writeable: $!")
unless $safe;
if (opendir(DIR, $root) ){
@files = readdir DIR;
closedir(DIR);
} else {
$self->warn( "Can't read $root: $!");
@files = ();
}
@files = reverse @files if $Is_VMS;
($root = VMS::Filespec::unixify($root)) =~ s#\.dir\z## if $Is_VMS;
@files = map("$root/$_", grep $_!~/^\.{1,2}\z/s,@files);
$count += $self->rmtree([@files],$verbose,$safe);
if ($safe &&
($Is_VMS ? !&VMS::Filespec::candelete($root) : !-w $root)) {
print "skipped $root\n" if $verbose;
next;
}
chmod 0777, $root
or $self->warn( "Can't make directory $root writeable: $!")
if $force_writeable;
print "rmdir $root\n" if $verbose;
if (rmdir $root) {
++$count;
}
else {
$self->warn( "Can't remove directory $root: $!");
chmod($rp, ($Is_VMS ? VMS::Filespec::fileify($root) : $root))
or $self->warn("and can't restore permissions to "
. sprintf("0%o",$rp) . "\n");
}
}
else {
if ($safe &&
($Is_VMS ? !&VMS::Filespec::candelete($root)
: !(-l $root || -w $root)))
{
print "skipped $root\n" if $verbose;
next;
}
chmod 0666, $root
or $self->warn( "Can't make file $root writeable: $!")
if $force_writeable;
print "unlink $root\n" if $verbose;
for (;;) {
unless (unlink $root) {
$self->warn( "Can't unlink file $root: $!");
if ($force_writeable) {
chmod $rp, $root
or $self->warn("and can't restore permissions to "
. sprintf("0%o",$rp) . "\n");
}
last;
}
++$count;
last unless $Is_VMS && lstat $root;
}
}
}
$count;} |
General documentation
User feedback is an integral part of the evolution of this
and other Bioperl modules. Send your comments and suggestions preferably
to one of the Bioperl mailing lists.
Your participation is much appreciated.
bioperl-l@bioperl.org - General discussion
http://bio.perl.org/MailList.html - About the mailing lists
Report bugs to the Bioperl bug tracking system to help us keep track
the bugs and their resolution.
Bug reports can be submitted via email or the web:
bioperl-bugs@bio.perl.org
http://bio.perl.org/bioperl-bugs/
The rest of the documentation details each of the object methods. Internal methods are usually preceded with a _