I have a problem with array folding that I could only solve by subclassing XML::Simple and hardcoding a return in the array_to_hash method.
sub array_to_hash {
.
.
.
# Or assume keyattr => [ .... ]
else {
ELEMENT: for($i = 0; $i < @$arrayref; $i++) {
return ($arrayref) if $arrayref->[$i]{name} eq 'e_im_dev_io_entry';
+ #this line was added to jump out
return($arrayref) unless(UNIVERSAL::isa($arrayref->[$i], 'HASH'));
.
.
.
}
If an attribute called "name" has the same value in multiple nested elements, then only one attribute will remain after the array folding. This example is only a part of a larger xml file. I don't want to use KeyAttr=>[] which does prevent the folding, since in other parts of the file, the array folding is desirable. I only want to prevent array folding if the attribute value is equal to "something". I have tried many options with no success. Am I missing something, or is subclassing the only way?
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<Report address="Address" name="IM Report" productID="INTRFC-MGR01">
<Entry detail="4" name="e_im_dev_io_entry">
<Text>Device Handle: 2</Text>
</Entry>
<Entry detail="4" name="e_im_dev_io_entry">
<Text>Device Handle: 5</Text>
</Entry>
</Report>
_______________________________________________
Options used were: none No good, I lost one element
$VAR1 = {
'Entry' => {
'e_im_dev_io_entry' => {
'detail' => '4',
'Text' => 'Device Handle:
+5'
}
},
'name' => 'IM Report',
'address' => 'Address',
'productID' => 'INTRFC-MGR01'
};
_______________________________________________
Options used were: KeyAttr=>[] This is what I want.
$VAR1 = {
'Entry' => [
{
'detail' => '4',
'name' => 'e_im_dev_io_entry',
'Text' => 'Device Handle: 2'
},
{
'detail' => '4',
'name' => 'e_im_dev_io_entry',
'Text' => 'Device Handle: 5'
}
],
'name' => 'IM Report',
'address' => 'Address',
'productID' => 'INTRFC-MGR01'
};
I would like the output to be identical to the last example. I don't want to lose any elements. Again, this is just a small piece of a much larger xml document. There are lots of Entry elements so I can't use KeyAttr {...}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|