このPerlコードを理解しようとしています...
ストリームが 1 つある場合は機能し、ストリームが 2 つ以上ある場合は、匿名ハッシュの要素数が奇数であると警告します。その場合は配列を返すようです。配列要素を @streams に正しく追加するにはどうすればよいですか? if 句の HASH ケースに正しく追加されているようです。else 句は二段ベッドですか?
my $x = $viewedProjectDataObj->{streams};
if (ref($x) eq 'HASH') {
push(@streams, $x->{id});
} elsif (ref($x) eq 'ARRAY') {
print "$x\n";
print "@$x\n";
my @array = @$x;
foreach my $obj (@array) {
print "in $obj\n";
print Dumper( $obj);
push(@streams, ($obj->{id}) );
}
}
print "streamcount " . @streams % 2;
print Dumper(@streams);
my $stream_defect_filter_spec = {
'streamIdList' => @streams,
'includeDefectInstances' => 'true',
'includeHistory' => 'true',
};
my @streamDefects = $WS->get_stream_defects($defectProxy, \@cids, $stream_defect_filter_spec);
print Dumper(@streamDefects);
次の行を追加しています...
if ($defectSummary->{owner} eq "Various") {
foreach (@streamDefects) {
if (exists($_->{owner})) {
$defectSummary->{owner} = $_->{owner};
last;
}
}
}
my $diref = $streamDefects[0]->{defectInstances};
if ($diref) {
my $defectInstance;
if (ref($diref) eq 'HASH') {
$defectInstance = $diref;
} elsif (ref($diref) eq 'ARRAY') {
$defectInstance = @{$diref}[0];
} else {
die "Unable to handle $diref (".ref($diref).")";
}
今ではエラーになります
Web API がエラー コード S:Server を返しました: getStreamDefects を呼び出しています: 名前が null のストリームが見つかりません。$VAR1 = -1; xyz-handler.pl 行 317 で「strict refs」が使用されている間、文字列 (「-1」) を HASH ref として使用できません。
いくつかのダンパー出力
$VAR1 = {
'streamIdList' => [
{
'name' => 'asdfasdfadsfasdfa'
},
{
'name' => 'cpp-62bad47d63cfb25e76b29a4801c61d8d'
}
],
'includeDefectInstances' => 'true',
'includeHistory' => 'true'
};