Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
I have some XML files stored. Occasionally, I'll receive "update" XML files from other machines. I need to replace the content of existing nodes (and their children) with the incoming update. I don't need to keep any existing data in the replaced nodes, but I do need to keep the data in any other nodes. Also, I need to keep the order of the tags in the updated file the same as in the original file.

Here's an example of the results I'm looking for. In it, I want to update everything in the <jobs> node and below.

Given this "old" XML:

<root> <info> <name>Joe Bleugh</name> <badge_id>1234</badge_id> <phone_ext>987</phone_ext> </info> <jobs> <chore> <desc>Wash Dishes</desc> <due>8-17-2000</due> </chore> <chore> <desc>Paint House</desc> <due>9-20-2000</due> </chore> </jobs> </root>
And this Update:
<root> <info> <badge_id>1234</badge_id> </info> <jobs> <chore> <desc>Mow Lawn</desc> <due>8-20-2000</due> </chore> <chore> <desc>Buy Car</desc> <due>10-1-2000</due> </chore> </jobs> </root>
I want to produce:
<root> <info> <name>Joe Bleugh</name> <badge_id>1234</badge_id> <phone_ext>987</phone_ext> </info> <jobs> <chore> <desc>Mow Lawn</desc> <due>8-20-2000</due> </chore> <chore> <desc>Buy Car</desc> <due>10-1-2000</due> </chore> </jobs> </root>
Where none of the data outside the <jobs> node gets altered, but everything within it does get replaced.

So my question isn't whether it can be done (of course it can) but rather about what's the best, easiest way of doing it. XML::Simple doesn't seem quite robust enough, whereas XML::Parser doesn't make it too easy. XML::Twig looks like it can do this, but my eyes started to cross after a couple of pages worth of docs. Before I went too much further reading anything at CPAN with the letters XML attached, I thought I'd ask here and see what y'all thought. Is there a module that's particularly well suited for this or do I just need to sit down with a Big Brew and write a bunch of subroutines for XML:Parser to go through?

Thanks, of course, for any insights.
db


In reply to Replacing XML content by doran

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (5)
As of 2024-04-20 00:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found