使用MooseX :: Declare创建BUILDARGS方法的正确方法是什么?

met*_*ta4 6 perl moose

在调用BUILDARGS时,我很难正确使用MooseX :: Declare.

我正在尝试创建一个对象作为文件的接口.(具体来说,我想要一个二进制文件的接口,让我可以查看文件中的下几个字节,然后将它们关闭以进行进一步处理.)

我希望能够像这样创建其中一个对象

my $f = binary_file_buffer->new( $file_name );
Run Code Online (Sandbox Code Playgroud)

然后像这样使用它

while( my $block_id = $f->peek( $id_offset, $id_length ) ) {
    $block_id = unpack_block_id( $block_id );
    $munge_block{ $block_id }->(
        $f->pop( $block_size[ $block_id ] )
    );
}
Run Code Online (Sandbox Code Playgroud)

我的binary_file_buffer类定义/声明看起来像这样

use MooseX::Declare;
class binary_file_buffer {
    use FileHandle;
    use Carp;

    has _file      => ( is => 'ro', isa => 'FileHandle' );
    has _file_name => ( is => 'ro', isa => 'Str' );
    has _buff      => ( is => 'rw', isa => 'Str',  default => '' );

    method BUILDARGS ( Str $file_name ) {
      my $file = FileHandle->new( $file_name );
      carp "unable to open $file_name : $!" unless defined $file;
      $file->binmode;
      return (
        _file_name => $file_name,
        _file      => $file,
      );
    }

    # get the next n bytes from the buffer.
    method pop ( Int $len ) {
        # ... Make sure there is data in _buff
        return substr( $self->{_buff}, 0, $len, '' );
    }

    # Look around inside the buffer without changing the location for pop
    method peek ( Int $offset, Int $len ) {
        # ... Make sure there is data in _buff
        return substr( $self->{_buff}, $offset, $len );
    }
}
Run Code Online (Sandbox Code Playgroud)

(缓冲区加载和管理代码我没有在这里包含.它非常直接.)

问题是,我methodBUILDARGS声明中使用了关键字.所以,MooseX :: Declare期望一个binary_file_buffer 对象作为第一个参数BUILDARGS.但是BUILDARGS将参数传递给new,所以第一个参数是字符串 a 'binary_file_buffer',即包的名称.因此,它在使用new创建对象时无法进行类型检查并死亡,就像我在第一个代码片段中所做的那样.(至少那是我对正在发生的事情的理解.)

我得到的错误信息是:

Validation failed for 'MooseX::Types::Structured::Tuple[MooseX::Types::Structured::Tuple[Object,Str,Bool],MooseX::Types::Structured::Dict[]]' failed with value [ [ "binary_file_buffer", "drap_iono_t1.log", 0 ], {  } ], Internal Validation Error is: Validation failed for 'MooseX::Types::Structured::Tuple[Object,Str,Bool]' failed with value [ "binary_file_buffer", "drap_iono_t1.log", 0 ] at C:/bin/perl/site/lib/MooseX/Method/Signatures/Meta/Method.pm line 445
 MooseX::Method::Signatures::Meta::Method::validate('MooseX::Method::Signatures::Meta::Method=HASH(0x2a623b4)', 'ARRAY(0x2a62764)') called at C:/bin/perl/site/lib/MooseX/Method/Signatures/Meta/Method.pm line 145
 binary_file_buffer::BUILDARGS('binary_file_buffer', 'drap_iono_t1.log') called at generated method (unknown origin) line 5
 binary_file_buffer::new('binary_file_buffer', 'drap_iono_t1.log') called at logshred.pl line 13
Run Code Online (Sandbox Code Playgroud)

我喜欢method关键字为$ file_name提供的类型检查糖,但我不知道如何获取它,因为从BUILDARGS技术上讲它不是一种方法.

MooseX :: Declare有没有办法跳过$self创作,或类似的东西?

我这样做是正确的MooseX :: Declare方式吗?或者我错过了什么?

per*_*rin 10

我想你想要一些method BUILDARGS (ClassName $class: Str $filename) { ... }你明确定义调用者的东西ClassName $class.