删除元素后,父元素不会关闭:XML Twig

时间:2013-07-31 21:41:56

标签: xml perl xml-twig

我正在尝试查找具有特定值的属性的元素,并将其从文档中删除。

在这个例子中,我正在寻找一个File元素,其属性名为“RelativePath”,其值为“.... \ TS \ ETestScenario.inc”。

问题:运行脚本后,最后一个元素 - </Files>丢失了。此外,“VisualStudioProject”结束标记打印两次。不知道我在这做什么。

use strict;
use XML::Twig;
my $fileName = 'Z:\autotest\test.xml';
my $t= new XML::Twig( TwigRoots=> 
            { Files => \&upd_files_section
             },

              twig_print_outside_roots => 1,               # print the rest
              keep_spaces => 1,
              keep_atts_order=>1,
            );              

$t->parsefile("$fileName");
#$t->parsefile_inplace ("$fileName");


sub upd_files_section{
    my ($t, $inputFields)=@_;

    my $file_to_delete = $inputFields->get_xpath("./File[\@att='..\..\TS\ETestScenario.inc']");
    $inputFields->delete($file_to_delete);
    $t->flush;
}

XML输出不正确:

<VisualStudioProject
    ProjectType="Visual C++"
    Version="8.00"
    Name="xxx"
    ProjectGUID="{}"
    RootNamespace="xx"
    SccProjectName="x"
    SccLocalPath="."
    SccProvider="x"
    >
        <Files>
                <Filter Name="Source Files" Filter="cpp;bat">
                        <File RelativePath="..\..\TS\ADK_MacCommon_Test.cpp">
                        </File>
                        <File RelativePath="..\..\FSO\EADK.cpp">
                        </File>
                <Filter Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" Name="Resource Files">
                </Filter>
                <File RelativePath="..\..\TS\ETestScenario.inc">
                </File>
        </VisualStudioProject>
        <Globals>
        </Globals>
</VisualStudioProject>

1 个答案:

答案 0 :(得分:2)

如上所述,XML无效,代码无法编译。

如果我理解正确,我认为处理程序应该是:

sub upd_files_section{
    my ($t, $inputFields)=@_;
    my @files_to_delete = $inputFields->get_xpath("./File[\@RelativePath='..\\..\\TS\\ETestScenario.inc']");
    foreach my $file (@files_to_delete) { $file->delete; }
    $t->flush;
}

一些注意事项:

  • 你需要在XPath表达式中转义反斜杠,或者Perl认为它们是为了逃避下面的字符;或者,在表达式q{}
  • 周围使用简单的引号或q{./File[@RelativePath='..\..\TS\ETestScenario.inc']} XPath表达式中的
  • 应该是@RelativePath,而不是@att
  • get_xpath返回您必须删除的元素列表
  • 删除其上的元素调用delete,无需像DOM一样通过其父元素
  • 您还可以使用... cut_children方法一次切断所有孩子:$inputFields->cut_children( q{File[@RelativePath='..\..\TS\ETestScenario.inc']});