Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
ensembl
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ensembl-gh-mirror
ensembl
Commits
6581d3c0
Commit
6581d3c0
authored
13 years ago
by
Andy Yates
Browse files
Options
Downloads
Patches
Plain Diff
Bringing in generic IO modules for working with file handles to various perl output structures
parent
e777b5f6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/Bio/EnsEMBL/Utils/IO.pm
+200
-0
200 additions, 0 deletions
modules/Bio/EnsEMBL/Utils/IO.pm
modules/t/utilsIo.t
+49
-0
49 additions, 0 deletions
modules/t/utilsIo.t
with
249 additions
and
0 deletions
modules/Bio/EnsEMBL/Utils/IO.pm
0 → 100644
+
200
−
0
View file @
6581d3c0
package
Bio::EnsEMBL::Utils::
IO
;
=pod
=head1 LICENSE
Copyright (c) 1999-2011 The European Bioinformatics Institute and
Genome Research Limited. All rights reserved.
This software is distributed under a modified Apache license.
For license details, please see
http://www.ensembl.org/info/about/code_licence.html
=head1 CONTACT
Please email comments or questions to the public Ensembl
developers list at <dev@ensembl.org>.
Questions may also be sent to the Ensembl help desk at
<helpdesk@ensembl.org>.
=cut
=pod
=head1 NAME
Bio::EnsEMBL::Utils::IO
=head1 SYNOPSIS
use Bio::EnsEMBL::Utils::IO qw/slurp work_with_file slurp_to_array fh_to_array/;
#or
# use Bio::EnsEMBL::Utils::IO qw/:slurp/; #brings in any method starting with slurp
# use Bio::EnsEMBL::Utils::IO qw/:all/; #brings all methods in
#As a scalar
my $file_contents = slurp('/my/file/location.txt');
print length($file_contents);
#As a ref
my $file_contents_ref = slurp('/my/file/location.txt', 1);
print length($$file_contents_ref);
#Sending it to an array
my $array = slurp_to_array('/my/location');
$array = fh_to_array($fh);
#Sending this back out to another file
work_with_file('/my/file/newlocation.txt', 'w', sub {
my ($fh) = @_;
print $fh $$file_contents_ref;
return;
});
=head1 DESCRIPTION
A collection of subroutines aimed to helping IO based operations
=head1 METHODS
See subroutines.
=head1 MAINTAINER
$Author$
=head1 VERSION
$Revision$
=cut
use
strict
;
use
warnings
;
use
base
qw(Exporter)
;
our
@EXPORT_OK
=
qw/slurp slurp_to_array fh_to_array work_with_file/
;
our
%EXPORT_TAGS
=
(
all
=>
[
@EXPORT_OK
],
slurp
=>
[
qw/slurp slurp_to_array/
]
);
use
Bio::EnsEMBL::Utils::
Exception
qw(throw)
;
use
Bio::EnsEMBL::Utils::
Scalar
qw(assert_ref)
;
use
IO::
File
;
=head2 slurp()
Arg [1] : string $file
Arg [2] : boolean; $want_ref
Indicates if we want to return a scalar reference
Description : Forces the contents of a file into a scalar. This is the
fastest way to get a file into memory in Perl. You can also
get a scalar reference back to avoid copying the file contents
in Scalar references
Returntype : Scalar or reference of the file contents depending on arg 2
Example : my $contents = slurp('/tmp/file.txt');
Exceptions : If the file did not exist or was not readable
Status : Stable
=cut
sub
slurp
{
my
(
$file
,
$want_ref
)
=
@_
;
local
$/
=
undef
;
my
$contents
;
work_with_file
(
$file
,
'
r
',
sub
{
my
(
$fh
)
=
@_
;
$contents
=
<
$fh
>
;
return
;
});
return
(
$want_ref
)
?
\
$contents
:
$contents
;
}
=head2 slurp_to_array()
Arg [1] : string $file
Arg [2] : boolean $chomp
Description : Sends the contents of the given file into an ArrayRef
Returntype : ArrayRef
Example : my $contents_array = slurp_to_array('/tmp/file.txt');
Exceptions : If the file did not exist or was not readable
Status : Stable
=cut
sub
slurp_to_array
{
my
(
$file
,
$chomp
)
=
@_
;
my
$contents
;
work_with_file
(
$file
,
'
r
',
sub
{
my
(
$fh
)
=
@_
;
$contents
=
fh_to_array
(
$fh
,
$chomp
);
return
;
});
return
$contents
;
}
=head2 fh_to_array()
Arg [1] : Glob/IO::Handle $fh
Arg [2] : boolean $chomp
Description : Sends the contents of the given filehandle into an ArrayRef.
Will perform chomp on each line if specified.
Returntype : ArrayRef
Example : my $contents_array = fh_to_array($fh);
Exceptions : None
Status : Stable
=cut
sub
fh_to_array
{
my
(
$fh
,
$chomp
)
=
@_
;
my
@contents
;
if
(
$chomp
)
{
while
(
my
$line
=
<
$fh
>
)
{
chomp
(
$line
);
push
(
@contents
,
$line
);
}
}
else
{
@contents
=
<
$fh
>
;
}
return
\
@contents
;
}
=head2 work_with_file()
Arg [1] : string $file
Arg [2] : string; $mode
Supports all modes specified by the C<open()> function as well as those
supported by IO::File
Arg [3] : CodeRef the callback which is given the open file handle as
its only argument
Description : Performs the nitty gritty of checking if a file handle is open
and closing the resulting filehandle down.
Returntype : None
Example : work_with_file('/tmp/out.txt', 'w', sub {
my ($fh) = @_;
print $fh 'hello';
return;
});
Exceptions : If we could not work with the file due to permissions
Status : Stable
=cut
sub
work_with_file
{
my
(
$file
,
$mode
,
$callback
)
=
@_
;
throw
"
We need a mode to open the requested file with
"
if
!
$file
;
assert_ref
(
$callback
,
'
CODE
',
'
callback
');
my
$fh
=
IO::
File
->
new
(
$file
,
$mode
)
or
throw
"
Cannot open '
${file}
' in mode '
${mode}
': $!
";
$callback
->
(
$fh
);
close
(
$fh
)
or
throw
"
Cannot close FH from
${file}
: $!
";
return
;
}
1
;
This diff is collapsed.
Click to expand it.
modules/t/utilsIo.t
0 → 100644
+
49
−
0
View file @
6581d3c0
use
strict
;
use
warnings
;
use
Test::
More
;
use
Test::
Exception
;
use
Bio::EnsEMBL::Utils::
IO
qw/:all/
;
my
$file
=
'
/tmp/
'
.
$ENV
{
USER
}
.
'
utilsIo.txt
';
my
$contents
=
<<'EOF';
>X
AAAAGGGTTCCC
TTGGCCAAAAAA
ATTC
EOF
throws_ok
{
slurp
(
$file
)
}
qr/No such file/
,
'
File does not currently exist so die
';
work_with_file
(
$file
,
'
w
',
sub
{
my
(
$fh
)
=
@_
;
print
$fh
$contents
;
return
;
});
my
$written_contents
=
slurp
(
$file
);
is
(
$contents
,
$written_contents
,
'
Contents should be the same
');
my
$written_contents_ref
=
slurp
(
$file
,
1
);
is
('
SCALAR
',
ref
(
$written_contents_ref
),
'
Asked for a ref so expect one back
');
is
(
$contents
,
$$written_contents_ref
,
'
Contents should be the same
');
work_with_file
(
$file
,
'
r
',
sub
{
my
(
$fh
)
=
@_
;
my
$line
=
<
$fh
>
;
chomp
(
$line
);
is
(
$line
,
'
>X
',
'
First line expected to be FASTA header
');
});
my
$expected_array
=
[
qw/>X AAAAGGGTTCCC TTGGCCAAAAAA ATTC/
];
my
$chomp
=
1
;
is_deeply
(
slurp_to_array
(
$file
,
$chomp
),
$expected_array
,
'
Checking slurp to array with chomp
');
$chomp
=
0
;
is_deeply
(
slurp_to_array
(
$file
,
$chomp
),
[
map
{
"
${_}
\n
"
}
@
{
$expected_array
}
],
'
Checking slurp to array with chomp
');
unlink
$file
;
dies_ok
{
slurp
(
$file
)
}
'
File no longer exists so die
';
done_testing
();
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment