NAME XML::TreePP -- Pure Perl implementation for parsing/writing xml files SYNOPSIS parse xml file into hash tree use XML::TreePP; my $tpp = XML::TreePP->new(); my $tree = $tpp->parsefile( "index.rdf" ); print "Title: ", $tree->{"rdf:RDF"}->{item}->[0]->{title}, "\n"; print "URL: ", $tree->{"rdf:RDF"}->{item}->[0]->{link}, "\n"; write xml as string from hash tree use XML::TreePP; my $tpp = XML::TreePP->new(); my $tree = { rss => { channel => { item => [ { title => "The Perl Directory", link => "http://www.perl.org/", }, { title => "The Comprehensive Perl Archive Network", link => "http://cpan.perl.org/", } ] } } }; my $xml = $tpp->write( $tree ); print $xml; get remote xml file with HTTP-GET and parse it into hash tree use XML::TreePP; my $tpp = XML::TreePP->new(); my $tree = $tpp->parsehttp( GET => "http://use.perl.org/index.rss" ); print "Title: ", $tree->{"rdf:RDF"}->{channel}->{title}, "\n"; print "URL: ", $tree->{"rdf:RDF"}->{channel}->{link}, "\n"; get remote xml file with HTTP-POST and parse it into hash tree use XML::TreePP; my $tpp = XML::TreePP->new( force_array => [qw( item )] ); my $cgiurl = "http://search.hatena.ne.jp/keyword"; my $keyword = "ajax"; my $cgiquery = "mode=rss2&word=".$keyword; my $tree = $tpp->parsehttp( POST => $cgiurl, $cgiquery ); print "Link: ", $tree->{rss}->{channel}->{item}->[0]->{link}, "\n"; print "Desc: ", $tree->{rss}->{channel}->{item}->[0]->{description}, "\n"; DESCRIPTION XML::TreePP module parses XML file and expands it for a hash tree. And also generate XML file from a hash tree. This is a pure Perl implementation. You can also download XML from remote web server like XMLHttpRequest object at JavaScript language. EXAMPLES Parse XML file Sample XML source: Yasuhisa Chizuko Shiori Yusuke Kairi Sample program to read a xml file and dump it: use XML::TreePP; use Data::Dumper; my $tpp = XML::TreePP->new(); my $tree = $tpp->parsefile( "family.xml" ); my $text = Dumper( $tree ); print $text; Result dumped: $VAR1 = { 'family' => { '-name' => 'Kawasaki', 'father' => 'Yasuhisa', 'mother' => 'Chizuko', 'children' => { 'girl' => 'Shiori' 'boy' => [ 'Yusuke', 'Kairi' ], } } }; Details: print $tree->{family}->{father}; # the father's given name. The prefix '-' is added on every attributes' name. print $tree->{family}->{"-name"}; # the family name of the family The array is used because the family has two boys. print $tree->{family}->{children}->{boy}->[1]; # The second boy's name print $tree->{family}->{children}->{girl}; # The girl's name Text node and attributes: If a element has both of a text node and attributes or both of a text node and other child nodes, value of a text node is moved to "#text" like child nodes. use XML::TreePP; use Data::Dumper; my $tpp = XML::TreePP->new(); my $source = 'Kawasaki Yusuke'; my $tree = $tpp->parse( $source ); my $text = Dumper( $tree ); print $text; The result dumped is following: $VAR1 = { 'span' => { '-class' => 'author', '#text' => 'Kawasaki Yusuke' } }; The special node name of "#text" is used because this elements has attribute(s) in addition to the text node. CONSTRUCTOR AND OPTIONS $tpp = XML::TreePP->new(); This constructor method returns a new XML::TreePP object. $tpp = XML::TreePP->new( %options ); Its first argument is a hash variable to set one or more options like following: $tpp->set( option_name => $option_value ); This method sets a option value for "option_name". If $option_value is not defined, its option is deleted. Options below are available: $tpp->set( output_encoding => 'UTF-8' ); You can define a encoding of xml file generated by write/writefile methods. On Perl 5.8.x and later, you can select it from every encodings supported by Encode.pm. On Perl 5.6.x or before with Jcode.pm, you can use 'Shift_JIS', 'EUC-JP', 'ISO-2022-JP' and 'UTF-8'. The default value is 'UTF-8'. $tpp->set( force_array => [ 'rdf:li', 'item', '-xmlns' ] ); This option allows you to specify a list of element names which should always be forced into an array representation The default value is null, it means that context of the elements will determine to make array or to keep it scalar. $tpp->set( first_out => [ 'link', 'title', '-type' ] ); This option allows you to specify a list of element/attribute names which should always appears at first on output XML code. The default value is null, it means alphabetical order is used. $tpp->set( last_out => [ 'items', 'item', 'entry' ] ); This option allows you to specify a list of element/attribute names which should always appears at last on output XML code. $tpp->set( cdata_scalar_ref => 1 ); This option allows you to convert a cdata section into a reference for scalar on parsing XML source. If this option is false, per default, cdata section is converted into a scalar. $tpp->set( user_agent => 'Mozilla/4.0 (compatible; ...)' ); This option allows you to specify a HTTP_USER_AGENT string which is used by parsehttp() method. The default string is "XML-TreePP/#.##", where "#.##" is substituted with the version number of this library. $tpp->set( attr_prefix => '@' ); This option allows you to specify a prefix character(s) which is inserted before each attribute names. The default character is '-'. Or set '@' to access attribute values like E4X, ECMAScript for XML. $tpp->get( "option_name" ); This method returns a current option value for "option_name". METHODS $tree = $tpp->parse( $source ); This method reads XML source and returns a hash tree converted. The first argument is a scalar or a reference to a scalar. $tree = $tpp->parsefile( $file ); This method reads a XML file and returns a hash tree converted. The first argument is a filename. $tree = $tpp->parsehttp( $method, $url, $body ); This method receives a XML file from a remote server via HTTP and returns a hash tree converted. $method is a method of HTTP connection: GET/POST/PUT/DELETE $url is URI of a XML file. $body is request body when you use POST method. LWP::UserAgent module or HTTP::Lite module is required to fetch a file. $source = $tpp->write( $tree, $encode ); This method parses a hash tree and returns a XML source generated. $tree is a referecen to a hash tree. $tpp->writefile( $file, $tree, $encode ); This method parses a hash tree and writes a XML source into a file. $file is a filename to create. $tree is a referecen to a hash tree. AUTHOR Yusuke Kawasaki, http://www.kawa.net/ COPYRIGHT AND LICENSE Copyright (c) 2006 Yusuke Kawasaki. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.