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
aea17f43
Commit
aea17f43
authored
10 years ago
by
Alessandro Vullo
Browse files
Options
Downloads
Patches
Plain Diff
Work with bz2 files.
parent
7592f8cb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/Bio/EnsEMBL/Utils/IO.pm
+57
-8
57 additions, 8 deletions
modules/Bio/EnsEMBL/Utils/IO.pm
with
57 additions
and
8 deletions
modules/Bio/EnsEMBL/Utils/IO.pm
+
57
−
8
View file @
aea17f43
...
...
@@ -144,18 +144,18 @@ use Bio::EnsEMBL::Utils::Exception qw(throw);
use
Bio::EnsEMBL::Utils::
Scalar
qw(:assert)
;
use
IO::
File
;
eval
{
require
IO::Compress::
Bzip2
;
require
IO::Uncompress::
Bunzip2
;
$BZIP2_OK
=
1
;
};
eval
{
require
IO::Compress::
Gzip
;
require
IO::Uncompress::
Gunzip
;
$GZIP_OK
=
1
;
};
eval
{
require
IO::Compress::
Bzip2
;
require
IO::Uncompress::
Bunzip2
;
$BZIP2_OK
=
1
;
};
eval
{
require
IO::Compress::
Zip
;
require
IO::Uncompress::
Unzip
;
...
...
@@ -382,7 +382,7 @@ sub iterate_file {
=head2 work_with_file
()
=head2 work_with_file
Arg [1] : string $file
Arg [2] : string; $mode
...
...
@@ -415,7 +415,7 @@ sub work_with_file {
return
;
}
=head2 gz_work_with_file
()
=head2 gz_work_with_file
Arg [1] : string $file
Arg [2] : string; $mode
...
...
@@ -464,6 +464,55 @@ sub gz_work_with_file {
return
;
}
=head2 bz_work_with_file
Arg [1] : string $file
Arg [2] : string; $mode
Supports modes like C<r>, C<w>, C<\>> and C<\<>
Arg [3] : CodeRef the callback which is given the open file handle as
its only argument
Arg [4] : HashRef used to pass options into the IO
compression/uncompression modules
Description : Performs the nitty gritty of checking if a file handle is open
and closing the resulting filehandle down.
Returntype : None
Example : bz_work_with_file('/tmp/out.txt.bz2', 'w', sub {
my ($fh) = @_;
print $fh 'hello';
return;
});
Exceptions : If we could not work with the file due to permissions
Status : Stable
=cut
sub
bz_work_with_file
{
my
(
$file
,
$mode
,
$callback
,
$args
)
=
@_
;
throw
"
IO::Compress was not available
"
if
!
$BZIP2_OK
;
throw
"
We need a file name to open
"
if
!
$file
;
throw
"
We need a mode to open the requested file with
"
if
!
$mode
;
assert_ref
(
$callback
,
'
CODE
',
'
callback
');
$args
||=
{};
my
$fh
;
{
no
warnings
qw/once/
;
if
(
$mode
=~
'
>$
'
||
$mode
eq
'
w
')
{
$args
->
{
Append
}
=
1
if
$mode
=~
/>>$/
;
$fh
=
IO::Compress::
Bzip2
->
new
(
$file
,
%$args
)
or
throw
"
Cannot open '
$file
' for writing:
$IO
::Compress::Gzip::Bzip2Error
";
}
elsif
(
$mode
eq
'
<
'
||
$mode
eq
'
r
')
{
$fh
=
IO::Uncompress::
Bunzip2
->
new
(
$file
,
%$args
)
or
throw
"
Cannot open '
$file
' for writing:
$IO
::Uncompress::Gunzip::Bunzip2Error
";
}
else
{
throw
"
Could not decipher a mode from '
$mode
'
";
}
};
$callback
->
(
$fh
);
close
(
$fh
)
or
throw
"
Cannot close FH from
${file}
: $!
";
return
;
}
=head2 filter_dir
Arg [1] : String; directory
...
...
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