我应该如何使用 XML::Simple 处理未定义的引用?

发布于 2024-12-10 20:18:31 字数 1538 浏览 0 评论 0原文

我正在使用这些选项使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

在你怀里撒娇 2024-12-17 20:18:31

首先,您真的需要启用“ForceArray”选项吗?也许最好使用标量值并检查它们(可能)所在的数组?

我使用的对可能未定义的数组的引用的解决方案是:

my $string = join '', @{ $var || [] };

这意味着“取消引用变量或空匿名 arrayref”。

在你的情况下它将是

$nb = join '', @{ $_->{hostname} || [] };

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:

my $string = join '', @{ $var || [] };

Which means "dereference variable or empty anonymous arrayref".

In your case it will be

$nb = join '', @{ $_->{hostname} || [] };
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文