我可以同时读写多个文件句柄(Perl)吗?

时间:2009-07-29 08:03:04

标签: perl filehandle

我正在尝试从两个文件中读取数据,并在第三个文件中生成输出。我首先想要在旅途中编辑第一个,但我找不到合适的方法保存数组。

我的问题是,每当我取消注释“_ref_param_handling”函数时,第三个文件(输出)都是空的。 但是以下是最让我困惑的事情:如果我在输出文件上执行UNIX非常基本的`cat`系统调用(参见下面的代码),它就可以了。如果我在之前打开文件句柄并在编辑后立即关闭它,它也可以正常工作(在我的打印FILEHANDLE列表周围)。

我无疑在这里遗漏了一些东西。除了我的键盘和椅子之间的问题,它是什么?文件句柄冲突?范围问题?

声明每个变量并具有我希望它拥有的值。

编辑(不再适用)。 在三个文件上使用IO :: File没有改变任何内容。


编辑2:新的完整子程序代码

我的代码有效(除非我的引用已经存在,但那是因为我认为“附加”模式)但是可能存在一些错误和 unperlish 编码方式(抱歉,Monks)。但是,使用严格和警告

sub _ref_edit($) {
    my $manda_def = "$dir/manda_def.list";
    my $newrefhandle;
    my $ref       = $_[0];
    (my $refout   = $ref) =~ s/empty//;
    my $refhandle;
    my $parname   = '';
    my $parvalue  = '';
    my @val;

    _printMan;

    my $flush = readline STDIN;    # Wait for <enter>

    # If one or both of the ref. and the default values are missing
    if ( !( -e $manda_def && -e $ref ) ) {
        die "Cannot find $ref and/or $manda_def";
    }

    # Open needed files (ref & default)
    open( $refhandle, "<", $ref ) or die "Cannot open ref $ref : $!";
    open( $newrefhandle, ">>", $refout ) 
      or die "Cannot open new ref $refout : $!";

    # Read each line
    while ( my $refline = <$refhandle> ) {
    # If line read not an editable macro
        if ( $refline =~ /^define\({{(.+)}},\s+{{.*__VALUE__.*}}\)/ ){
        $parname = $1;         # $1 = parameter name captured in regexp
        # Prompt user
        $parvalue = _ref_param_handling( $parname, $manda_def );   
        # Substitution in ref
        $refline =~ s/__VALUE__/$parvalue/;
        # Param not specified and no default value
        $parvalue eq '' ? $refline=~s/__COM__/#/ : $refline=~s/__COM__//; 
        }

    print $newrefhandle $refline;
    }
    close $newrefhandle;
    close $refhandle;

    return $refout;
}    # End ref edit  

_ref_param_handle子程序仍然是:

open( $mde, '<', $_[1] )
      or die "Cannot open mandatory/default list $_[1] : $!";

    # Read default/mandatory file list 
    while (<$mde>) {       
       ( $name, $manda, $default, $match, $descript ) = split( /\s+/, $_, 5 ); 
       next if ( $name !~ $ref_param );  # If param read differs from parname

    (SOME IF/ELSE)

    } # End while <MDE>
    close $mde;
    return $input;
}

从manda_def文件中提取:

NAME  Mandatory? Default Match      Comm.
PORT          y NULL  ^\d+$ Database port
PROJECT       y NULL  \w{1,5}   Project name
SERVER        y NULL  \w+           Server name
modemRouting  n NULL  .+        
modlib        y bin   .+        
modules       y sms   .+

从ref_file中提取:

define({{PORT}},         {{__VALUE__}})dnl
define({{PROJECT}},      {{__VALUE__}})dnl
define({{SERVER}},       {{__VALUE__}})dnl
define({{modemRouting}}, {{__COM__{{$0}} '__VALUE__'}})dnl
define({{modlib}},       {{__COM__{{$0}} '__VALUE__'}})dnl
define({{modules}},      {{__COM__{{$0}} '__VALUE__'}})dnl

任何帮助表示感谢。

4 个答案:

答案 0 :(得分:1)

尝试打开循环外输入的第二个文件句柄,并将参考传递给子程序_ref_param_handle.Use搜索功能以寻找文件重新开始。
如果你的文件不是太大,你也可以考虑存储数组中的内容并访问它而不是循环遍历相同的内容。
修改:
这是一个支持我上面试图说的一个小例子:


#!/usr/bin/perl -w

sub test
{
 my $fh_to_read = $_[0] ;
 my $fh_to_write = $_[1] ;

 while(<$fh_to_read>)
 {
  print $fh_to_write  $_ ;
 }
 seek($fh_to_read,0,0) ;
}

open(FH1,"<dummy1");
open(FH2,"<dummy2");
open(FH3,">dummy3");

while(<FH2>)
{
 print FH3 "$_" ;
 test(\*FH1,\*FH3);
}

有关perl references

的信息

答案 1 :(得分:1)

目前尚不清楚初始化$refhandle$newrefhandle$mde的内容。根据它们的值,它们会影响打开的行为 - 即它是否会在打开新文件句柄之前关闭任何文件句柄。

我建议您开始使用IO::File界面来打开/写入文件,因为这样可以更轻松地处理文件句柄管理,并避免任何意外关闭。有点像...

use IO::File;

my $refhandle = IO::File->new("< $ref") or die "open() - $!";

$refhandle->print(...);

就编辑文件而言,这是我用来实现此目的的常用模式,确保perl的-i行为。

sub edit_file
{
    my ($filename) = @_;

    # you can re-create the one-liner above by localizing @ARGV as the list of
    # files the <> will process, and localizing $^I as the name of the backup file.
    local (@ARGV) = ($filename);
    local($^I) = '.bak';

    while (<>)
    {
        s/original string/new string/g;
    }
    continue
    {
        print;
    }
}

答案 2 :(得分:1)

根据我收集的内容,您的脚本希望以下列形式转换文件:

define({{VAR1}}, {{__VALUE__}})
define({{VAR2}}, {{__VALUE__}})
define({{VAR3}}, {{__VALUE__}})
define({{VAR4}}, {{__VALUE__}})

这样的事情:

define({{VAR1}}, {{}})
define({{VAR2}}, {{VALUE2}})
define({{VAR3}}, {{VALUE3}})
define({{VAR4}}, {{}})

以下作品。我不知道manda_def是什么意思,而且我也懒得创建一个实际的变量替换函数。

#!/usr/bin/perl
use strict;
use warnings;

sub work {
    my ($ref, $newref, $manda_def) = @_;

    # Open needed files (ref & default)
    open(my $refhandle, '<', $ref) or die "Cannot open ref $ref : $!";
    open(my $newrefhandle, '>', $newref) or die "Cannot open new ref $newref: $!";

    # Read each line
    while (my $refline = <$refhandle>) {
        # if line read is not an editable macro
        if ($refline =~ /^define\({{(.+)}},\s+{{.*__VALUE__.*}}\)/){
            my $parvalue = _ref_param_handling($1, $manda_def); # manda_def?
            # Substitution in ref
            $refline  =~ s/__VALUE__/$parvalue/;
            # Param not specified and no default value
            $refline  =~ s/__COM__/#/ if $parvalue eq '';
        }
        print $newrefhandle $refline;
    }
    close $newrefhandle;
    close $refhandle;

    return $newref;
}

sub _ref_param_handling {
    my %parms = (VAR2 => 'VALUE2', VAR3 => 'VALUE3');
    return $parms{$_[0]} if exists $parms{$_[0]};
}

work('ref.txt', 'newref.txt', 'manda.txt');

答案 3 :(得分:0)

伙计们,我认真考虑用自己的无线鼠标挂自己。

我的脚本从不失败。我只是没有完成它(它实际上是一个非常长的参数列表)。文件句柄关闭后就开始打印(或者我猜到了)......

/ me *哭*

我花了24个小时......