FTP +解压缩+ readline

时间:2014-04-19 13:27:44

标签: perl ftp gzip perl-io

我想从大型(3+ GB, gzip )FTP下载中提取一些数据,并在运行中执行此操作,以避免在我的磁盘上转储然后完全下载。

要提取所需数据,我需要逐行检查未压缩

所以我正在寻找

的道德等价物
use PerlIO::gzip;

my $handle = open '<:gzip', 'ftp://ftp.foobar.com/path/to/blotto.txt.gz'
             or die $!;
for my $line (<$handle>) {
    # etc.
}
close($handle);

FWIW:我知道如何打开ftp://ftp.foobar.com/path/to/blotto.txt.gzNet::FTP::repr)的阅读句柄,但我还没想出如何向此添加:gzip图层打开句柄


我花了很长时间才找到上述问题的答案,所以我想我会把它发布给下一个需要它的人。

2 个答案:

答案 0 :(得分:1)

好的,答案是(IMO)一点也不明显binmode($handle, ':gzip')

这是一个充实的例子:

use strict;
use Net::FTP;
use PerlIO::gzip;

my $ftp = Net::FTP->new('ftp.foobar.com') or die $@;
$ftp->login or die $ftp->message;  # anonymous FTP
my $handle = $ftp->retr('/path/to/blotto.txt.gz') or die $ftp->message;

binmode($handle, ':gzip');

for my $line (<$handle>) {
    # etc.
}
close($handle);

答案 1 :(得分:1)

以下代码来自IO::Compress FAQ

use Net::FTP;
use IO::Uncompress::Gunzip qw(:all);

my $ftp = new Net::FTP ...

my $retr_fh = $ftp->retr($compressed_filename);
gunzip $retr_fh => $outFilename, AutoClose => 1
    or die "Cannot uncompress '$compressed_file': $GunzipError\n";

要逐行获取数据,请将其更改为

use Net::FTP;
use IO::Uncompress::Gunzip qw(:all);

my $ftp = new Net::FTP ...

my $retr_fh = $ftp->retr($compressed_filename);
my $gunzip = new IO::Uncompress::Gunzip $retr_fh, AutoClose => 1
    or die "Cannot uncompress '$compressed_file': $GunzipError\n";

while(<$gunzip>)
{
    ...
}