我应该如何使用 XML::Simple 处理未定义的引用?
我正在使用这些选项使用 XML::Simple 解析 XML 文件
my $xml = XML::Simple->new(ForceArray => 1, KeyAttr => 1, KeepRoot => 1);
这是一个示例 xml 文档
<ip>
<hostname>foo</hostname>
<info>server</info>
<soluton>N/A</solution>
<cats>
<cat>
<title>Baz</title>
<flags>0</flags>
</cat>
<cat><title>FooBar</title></cat>
</cats>
</ip>
<ip>
<info>client</info>
<diagnosis>N/A</diagnosis>
<cats>
<cat><title>Foo</title></cat>
<cat>
<title>Bar</title>
<update>Date</update>
</cat>
</cats>
</ip>
如您所见,并非每个节点都有主机名属性,这会导致我的脚本因“无法使用未定义的值”而终止当我尝试获取主机名时,出现“作为 ARRAY 引用”错误
$nb = "@{ $_->{hostname} }";
xml 中有几个可选元素(十多个)。我该怎么处理? 我应该在分配之前检查元素是否存在吗?
if ( @{ $_->{hostname} ) { $nb = "@{ $_->{hostname} }" }
if ( @{ $_->{solution} ) { $s = "@{ $_->{solution} }" }
if ( @{ $_->{diagnosis} ) {...}
我应该使用 eval 块吗?
eval { $nb = "@{ $_->{hostname} }" };
也许
eval {
$nb = "@{ $_->{hostname} }";
$s = "@{ $_->{solution} }";
$d = "@{ $_->{diagnosis} }";
};
有更好的方法吗?
I'm parsing a XML file with XML::Simple using these options
my $xml = XML::Simple->new(ForceArray => 1, KeyAttr => 1, KeepRoot => 1);
This is a sample xml document
<ip>
<hostname>foo</hostname>
<info>server</info>
<soluton>N/A</solution>
<cats>
<cat>
<title>Baz</title>
<flags>0</flags>
</cat>
<cat><title>FooBar</title></cat>
</cats>
</ip>
<ip>
<info>client</info>
<diagnosis>N/A</diagnosis>
<cats>
<cat><title>Foo</title></cat>
<cat>
<title>Bar</title>
<update>Date</update>
</cat>
</cats>
</ip>
As you can see, not every node has the hostname attribute, which causes my script to die with an "Can't use an undefined value as an ARRAY reference" error when I try to get the hostname
$nb = "@{ $_->{hostname} }";
There are several optional elements in the xml (more than a dozen). How should I handle that?
Should I check the existence of the element prior to the assignment?
if ( @{ $_->{hostname} ) { $nb = "@{ $_->{hostname} }" }
if ( @{ $_->{solution} ) { $s = "@{ $_->{solution} }" }
if ( @{ $_->{diagnosis} ) {...}
Should I use an eval block?
eval { $nb = "@{ $_->{hostname} }" };
Maybe
eval {
$nb = "@{ $_->{hostname} }";
$s = "@{ $_->{solution} }";
$d = "@{ $_->{diagnosis} }";
};
Is there a better way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您真的需要启用“ForceArray”选项吗?也许最好使用标量值并检查它们(可能)所在的数组?
我使用的对可能未定义的数组的引用的解决方案是:
这意味着“取消引用变量或空匿名 arrayref”。
在你的情况下它将是
First at all, do you really need 'ForceArray' option enabled? Maybe it's better to use scalar values and check for arrays where they (possible) are?
Solutions for references to array that-may-be-undefined I use is:
Which means "dereference variable or empty anonymous arrayref".
In your case it will be