gpt4 book ai didi

Perl Moose TypeDecorator 错误。我该如何调试?

转载 作者:行者123 更新时间:2023-12-01 02:51:57 36 4
gpt4 key购买 nike

我最近遇到了一个问题,非常感谢任何见解。圣诞节前,我在 PerlMonks 上发布了一个类似的问题,并提供了一些关于从 MooseX::Declare ([http://www.perlmonks.org/?node_id=877703][1]) 切换的反馈。我现在已经将代码切换到带有 MooseX::Types 和 MooseX::Params::Validate 的 vanilla Moose。然而,同样的错误发生在同一个地方。不足为奇,因为它似乎与 MooseX::Types 相关。

我收到以下错误(为了便于阅读,尝试将其分隔开和堆栈底部被截断):


plxc16479> tmp10.pl

Argument cannot be 'name' at /nfs/pdx/disks/nehalem.pde.077/perl/lib64/site_perl/MooseX/Types/TypeDecorator.pm line 88

MooseX::Types::TypeDecorator::new('MooseX::Types::TypeDecorator=HASH(0x1620c58)', 'name', 'g1145114N5582201_16161616a2x_FU02xxT_2bxc2e3_6x0xxxp0fx0xxx0x...', 'mask_data', '', 'tags', 0) called at /nfs/pdx/disks/nehalem.pde.077/projects/lib/Program-Plist-Pl/lib/Program/Plist/Pl.pm line 61

Program::Plist::Pl::_create_pattern_obj(undef, 'name', 'g1145114N5582201_16161616a2x_FU02xxT_2bxc2e3_6x0xxxp0fx0xxx0x...', 'mask_data', '', 'tag_data', '') called at /nfs/pdx/disks/nehalem.pde.077/projects/lib/Program-Plist-Pl/lib/Program/Plist/Pl.pm line 77

Program::Plist::Pl::BUILD('Program::Plist::Pl=HASH(0x162d6c0)', 'HASH(0x162d648)') called at generated method (unknown origin) line 101

Program::Plist::Pl::new('Program::Plist::Pl', 'name', 'bist_hfmmin_16161616_list', 'parents', 'HASH(0xccf040)', 'fh', 'GLOB(0xccc928)', 'external_pl_code', 'CODE(0x14910b0)', ...) called at /nfs/pdx/disks/nehalem.pde.077/projects/lib/Program-Roles-PlHandler/lib/Program/Roles/PlHandler.pm line 52

Program::Roles::PlHandler::_create_global_pl_obj(undef, 'name', 'bist_hfmmin_16161616_list', 'parents', 'HASH(0xccf040)', 'fh', 'GLOB(0xccc928)') called at /nfs/pdx/disks/nehalem.pde.077/projects/lib/Program-Plist-Pl/lib/Program/Plist/Pl.pm line 77

Program::Plist::Pl::BUILD('Program::Plist::Pl=HASH(0xccd300)', 'HASH(0xccc628)') called at generated method (unknown origin) line 101

Program::Plist::Pl::new('Program::Plist::Pl', 'name', 'bist_list', 'parents', 'HASH(0xccce80)', 'fh', 'GLOB(0xccc928)', 'external_pl_code', 'CODE(0x14910b0)', ...) called at /nfs/pdx/disks/nehalem.pde.077/projects/lib/Program-Roles-PlHandler/lib/Program/Roles/PlHandler.pm line 52

问题 i 似乎是对 TypeDecorator::new 的最高调用。 TypeDecorator 构造函数似乎需要两个参数,class/self 参数和对 TypeDecorator 或 TypeConstraint 对象的引用。相反,它以某种方式接收来 self 的创建模式对象调用的参数。我已经验证进入 _create_pattern_obj 函数的参数是正确的,并且进入 Pattern->new 调用的参数也是正确的(由堆栈跟踪参数证实)。 _create_pattern_obj 函数如下所示:

sub _create_pattern_obj {
my ($self, $name, $mask_data, $tag_data) = validated_list(\@_,
name => {isa => Str},
mask_data => {isa => Str, optional => 1},
tag_data => {isa => Str, optional => 1});

$mask_data = '' if !defined $mask_data;

my $tags = defined $tag_data ? map {$_ => 1} split(',', $tag_data) : {};

my $pattern_obj = Program::Plist::Pl::Pattern->new(name => $name,
mask_data => $mask_data,
tags => $tags);
$self->_add_pattern($pattern_obj);
}

函数死于 Program::Plist::Pl::Pattern->new 调用,即第 61 行在上述调用堆栈中引用的文件 Pl.pm 文件中,其中 TypeDecorator::new 调用声称来自。

模式类是:

package Program::Plist::Pl::Pattern;

use 5.012002;
our $VERSION = sprintf "2.%03d", q($Revision: 473 $) =~ /: (\d+)/;

use Moose;
use namespace::autoclean;

use MooseX::Types::Moose qw(Str Num Int HashRef);
use MooseX::Params::Validate;

has 'name' => (isa => Str,
is => 'ro',
required => 1);

has 'tuple' => (isa => Int,
is => 'ro');

has 'tid' => (isa => Int,
is => 'ro');

has 'weight' => (isa => Num,
is => 'ro');

has 'tags' => (isa => HashRef[Str],
is => 'ro',
default => sub {{}});

has 'mask_data' => (isa => Str,
is => 'rw',
default => '',
writer => '_set_mask_data');

sub has_tag {
my ($self, $tag) = (shift,
pos_validated_list(\@_, {isa => Str}));

exists $self->{tags}->{$tag} ? return 1 : return 0;
}

sub _add_tag {
my ($self, $tag) = (shift,
pos_validated_list(\@_, {isa => Str}));
$self->{tags}->{$tag} = 1;
}

sub BUILDARGS {
print STDERR 'CALLED '.__PACKAGE__."BUILDARGS\n";
print STDERR 'ARGUMENTS:'.join(',', @_)."\n";
}

sub BUILD {
my ($self) = @_;
print STDERR 'CALLED '.__PACKAGE__."::BUILD\n";
}

__PACKAGE__->meta->make_immutable;

1;

不知何故,从调用堆栈中的参数来看,我对 Pattern->new 调用的参数最终被传递给了 TypeDecorator::new 调用并且它正在阻塞它们。我已经验证了对这个子例程的良好调用(来自和更早的堆栈跟踪)看起来像这样(注意两个参数):


数据库<1> T
$ = MooseX::Types::TypeDecorator::new('MooseX::Types::TypeDecorator', ref(Moose::Meta::TypeConstraint)) 从文件`/nfs/pdx/disks/nehalem.pde.077 调用/perl/lib64/site_perl/MooseX/Types.pm' 第 464 行


问题是我不知道如何调试正在发生的事情。单步执行代码时,执行直接从 Pattern->new 调用传递到 TypeDecorator 代码。这是在我的任何类代码执行之前发生的。我知道 Moose 正在为我创建新方法,但我不知道如何调试我看不到的代码。

我已经查看了有关 Moose 的文档,但这些都是关于如何使用它的,而不是关于幕后发生的事情。我确实通读了 Class::MOP 文档,但我不清楚这段代码的确切创建位置和时间。虽然我从所有研究中学到了一些东西,但没有一个能直接帮助我解决我的问题:)

首先,如果您对正在发生的事情有任何想法,我们将不胜感激。其次,我该如何调试这个问题?我所有常用的调试工具都让我失望了!执行直接从我对问题代码的新调用跳转,我似乎无法追踪 TypeDecorator::new 参数实际上是从哪里传递的。最后,是否有关于 Moose 究竟如何做它所做的任何好的文章?还是类::MOP?

编辑 - 这是我的类型定义。我可能会补充说,这是我第一次涉足 Moose,所以如果您发现我正在做的任何事情很奇怪,请随时指出来。

package Program::Types;

use 5.012002;
use strict;
use warnings;

our $VERSION = sprintf "2.%03d", q($Revision: 473 $) =~ /: (\d+)/;

# predeclare types
use MooseX::Types
-declare => [qw(NonemptyStr FilePath DirectoryPath FilePathThatExists DirectoryPathThatExists
TwoDigNum Pl LocalPl Pattern Program_Env Program_Whichload Program_Tpl
Program_Plist Program_Bmfc Program_Tpl_Test Program_Tpl_Flow
Program_Tpl_Flow_Item Program_Tpl_Flow_Item_Result Word)];

# import some MooseX builtin types that will be built on
use MooseX::Types::Moose qw(Str Int Object);

# types base on some objects that I use
class_type Pl, {class => 'Program::Plist::Pl'};

class_type LocalPl, {class => 'Program::Plist::LocalPl'};

class_type Pattern, {class => 'Program::Plist::Pl::Pattern'};

class_type Program_Env, {class => 'Program::Env'};

class_type Program_Whichload, {class => 'Program::Whichload'};

class_type Program_Tpl, {class => 'Program::Tpl'};

class_type Program_Tpl_Test, {class => 'Program::Tpl::Test'};

class_type Program_Tpl_Flow, {class => 'Program::Tpl::Flow'};

class_type Program_Tpl_Flow_Item, {class => 'Program::Tpl::Flow::Item'};

class_type Program_Tpl_Flow_Item_Result, {class => 'Program::Tpl::Flow::Item::Result'};

class_type Program_Plist, {class => 'Program::Plist'};

class_type Program_Bmfc, {class => 'Program::Bmfc'};

subtype Word,
as Str,
where {$_ =~ /^\w*$/};

coerce Word,
from Str,
via {$_};

subtype NonemptyStr,
as Str,
where {$_ ne ''};

coerce NonemptyStr,
from Str,
via {$_};

subtype TwoDigNum,
as Int,
where {$_ =~ /^\d\d\z/},
message {'TwoDigNum must be made of two digits.'};

coerce TwoDigNum,
from Int,
via {$_};

subtype FilePath,
as Str,
where {!($_ =~ /\0/)},
message {'FilePath cannot contain a null character'};

coerce FilePath,
from Str,
via {$_};

subtype DirectoryPath,
as Str,
where {!($_ =~ /\0/)},
message {'DirectoryPath cannot contain a null character'};

coerce DirectoryPath,
from Str,
via {$_};

subtype FilePathThatExists,
as Str,
where {(!($_ =~ /\0/) and -e $_)},
message {'FilePathThatExists must reference a path to a valid existing file.'.
"Path ($_)"};

coerce FilePathThatExists,
from Str,
via {$_};

coerce FilePathThatExists,
from FilePath,
via {$_};

subtype DirectoryPathThatExists,
as FilePath,
where {(!($_ =~ /\0/) and -d $_)},
message {'DirectoryPathThatExists must reference a path to a valid existing '.
"directory. Path ($_)"};

coerce DirectoryPathThatExists,
from Str,
via {$_};

coerce DirectoryPathThatExists,
from DirectoryPath,
via {$_};

1;

Edit2——由于明显的操作错误而被删除 :) 请注意,我在 Pattern 类中使用 BUILDARGS 而没有返回参数列表。我已在当前​​代码中删除了此错误,但未更改错误。

Phaylon,这是 Program::Plist::Pl 类。

package Program::Plist::Pl;

use 5.012002;
our $VERSION = sprintf "2.%03d", q($Revision: 473 $) =~ /: (\d+)/;

use Moose;
use namespace::autoclean;

use Program::Plist::Pl::Pattern;
use Program::Types qw(Pl LocalPl TwoDigNum Pattern);
use Program::Utils qw(rchomp);

use MooseX::Types::Moose qw(HashRef GlobRef Str);
use MooseX::Params::Validate;

with 'Program::Roles::PlHandler';

has 'name' => (isa => Str,
is => 'ro',
required => 1);

has 'parents' => (isa => HashRef[Pl|LocalPl],
is => 'ro',
required => 1);

has 'children' => (isa => HashRef[Pl|LocalPl],
is => 'ro');

has 'prefixes' => (isa => HashRef[TwoDigNum],
is => 'ro',
default => sub{{}});

has 'patterns' => (isa => HashRef[Pattern],
is => 'ro',
default => sub{{}});

sub _add_child {
my ($self, $obj) = (shift,
pos_validated_list(\@_, {isa => Pl|LocalPl}));
$self->{children}->{$obj->name} = $obj;
}

sub _add_pattern {
my ($self, $obj) = (shift,
pos_validated_list(\@_, {isa => Pattern}));
$self->{patterns}->{$obj->name} = $obj;
}

sub _create_pattern_obj {
$DB::single = 1;
my ($self, $name, $mask_data, $tag_data) = validated_list(\@_,
name => {isa => Str},
mask_data => {isa => Str, optional => 1},
tag_data => {isa => Str, optional => 1});

$mask_data = '' if !defined $mask_data;

my $tags = defined $tag_data ? map {$_ => 1} split(',', $tag_data) : {};

$DB::single = 1;
my $pattern_obj = Program::Plist::Pl::Pattern->new(name => $name,
mask_data => $mask_data,
tags => $tags);
$self->_add_pattern($pattern_obj);
}

sub BUILD {
my ($self, $fh) = (shift,
pos_validated_list([$_[0]->{fh}], {isa => GlobRef}));

while (<$fh>) {
# skip empty or commented lines
rchomp;
next if ((/^\s*#/) or (/^\s*$/));

# handle global plist declarations
if (my @m = /^\s*GlobalPList\s+(\w+)/) {
# creating new object and adding it to our data print STDERR
# "SELF($self)\n".join("\n",sort keys
# %Program::Plist::Pl::)."\n";
$self->_create_global_pl_obj(name => $m[0],
parents => {%{$self->parents},
$self->name => $self},
fh => $fh);
}

# handle local referenced plist declarations
elsif (@m = /^\s*PList\s+(\w+):(\w+)/) {
$self->_create_local_pl_obj(file => $m[0],
name => $m[1]);
}
# handling pattern lines
elsif (@m = /^\s*Pat\s+(\w+)\s*(\[.*\])?\s*;\s*(#([\w,])#)?\s*$/) {
$self->_create_pattern_obj(name => $m[0],
mask_data => do {defined $m[1] ? $m[1] : ''},
tag_data => do {defined $m[2] ? $m[2] : ''});
}
# handling our patlist closure
elsif (/^\s*\}/) {
last;
}
}

# need to populate our hash of child plists
for (@{$self->data}) {
if (($_->isa('Pl')) or ($_->isa('LocalPl'))) {
$self->_add_child($_);
}
}
}

__PACKAGE__->meta->make_immutable;

1;

最佳答案

问题是我相信这里。

use Program::Types qw(Pl LocalPl TwoDigNum Pattern);

您正在将一个名为 Pattern 的函数导入到您的 Program::Plist::Pl 类中。然后,您(无意中)在此处调用此函数:

    my $pattern_obj = Program::Plist::Pl::Pattern->new(name => $name,
mask_data => $mask_data,
tags => $tags);

具体来说,Program::Plist::Pl::Pattern 解析为您的完全限定函数 名称,而不是您期望的类(技术上的包名称)。此函数返回一个 TypeObject,然后您可以对其调用 new()

注意:这正是 phaylon 在上面的评论中建议的。

除了知道您始终可以使用它的完全限定名称调用一个函数之外,确实没有办法调试它,因此永远不应该让 MooseX::Type 和有效的类名发生冲突。

如果是我,我会开始编写一个非常简单的测试用例并添加代码来复制原始文件,直到它崩溃。我可能会从调用 new 开始。然后慢慢地添加假设,直到我找到那个打破的假设。希望您在该过程中尽早添加 MooseX::Types 调用,以触发“哦,显然就是这样”的时刻。

关于Perl Moose TypeDecorator 错误。我该如何调试?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4621589/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com