Я пытаюсь извлечь данные из файла XML.
Формат XML следующий:
<notifications>
<notification name="ccmSmtp" oid="1.3.6.1" status="current">
<objects>
<object module="callhome" name="ccmSmtp"/>
</objects>
<description>
This is a description
</description>
</notification>
<notification name="ccmAlertGroup" oid="1.3.6.1" status="current">
<objects>
<object module="callhome" name="callHome"/>
</objects>
<description>
This is a description
</description>
</notification>
<notification name="ccmAlert" oid="1.3.6.1" status="current">
<objects>
<object module="callhome" name="callHome"/>
</objects>
<description>
This is a description
</description>
</notification>
<notification name="ccmSmtp" oid="1.3.6.1" status="current">
<objects>
</objects>
<description>
This is a description
</description>
</notification>
</notifications>
Я написал следующий код для извлечения узла уведомлений из файла example.xml.
#!/usr/bin/perl
use XML::Simple;
use Data::Dumper;
$xml = new XML::Simple;
$data = $xml->XMLin("example.xml",KeyAttr => {
notifications => notification => 'name'
});
$notification = $data->{notifications};
print Dumper($notification);
Когда я запускаю указанный выше файл Perl, я получаю следующий вывод:
$VAR1 = {
'notification' => [
{
'objects' => {
'object' => {
'name' => 'ccmSmtp',
'module' => 'callhome'
}
},
'status' => 'current',
'oid' => '1.3.6.',
'name' => 'ccmSmtp',
'description' => ' This is a mib '
},
{
'objects' => {
'object' => {
'name' => 'callHome',
'module' => 'module'
}
},
'status' => 'current',
'oid' => '1.3.6.1.4',
'name' => 'ccmAlert',
'description' => 'This is a description'
},
{
'objects' => {
'object' => {
'name' => 'callHome',
'module' => 'homemib'
}
},
'status' => 'current',
'oid' => '1.3.6.1.4',
'name' => 'ccmAlertf',
'description' => 'This is a description'
},
{
'objects' => {},
'status' => 'current',
'oid' => '1.3.6.1',
'name' => 'ccmSmtp',
'description' => ' This is an example'
}
]
};
Мой вопрос: как мне извлечь содержимое узла уведомлений и сохранить значения в отдельных переменных / массиве?