From ca60f18e9906e84355287ac427f5f9e6e6b36b41 Mon Sep 17 00:00:00 2001 From: Gianni Ceccarelli Date: Tue, 21 Apr 2009 15:25:44 +0200 Subject: docs, and changed the export-munging methods for builders --- lib/Tree/Template/Declare.pm | 117 ++++++++++++++++++++++++++++-- lib/Tree/Template/Declare/DAG_Node.pm | 28 +++++++ lib/Tree/Template/Declare/HTML_Element.pm | 48 ++++++++++++ lib/Tree/Template/Declare/LibXML.pm | 31 +++++++- t/03-html.t | 4 +- 5 files changed, 217 insertions(+), 11 deletions(-) diff --git a/lib/Tree/Template/Declare.pm b/lib/Tree/Template/Declare.pm index 4d410f3..1c4a53a 100644 --- a/lib/Tree/Template/Declare.pm +++ b/lib/Tree/Template/Declare.pm @@ -47,14 +47,9 @@ sub _build_group { } } - my $additional_exports={}; - if ($builder->can('_additional_exports')) { - $additional_exports=$builder->_additional_exports(); - } - my @current_node=(undef); - return { + my $normal_exports= { tree => sub(&) { my $tree=$builder->new_tree(); { @@ -83,8 +78,13 @@ sub _build_group { $builder->set_node_attributes($current_node[0],\%attrs); return; }, - %$additional_exports, }; + if ($builder->can('_munge_exports')) { + return $builder->_munge_exports($normal_exports); + } + else { + return $normal_exports; + } } 1; @@ -113,6 +113,109 @@ Tree::Template::Declare - easily build tree structures }; }; +=head1 FUNCTIONS + +For details on the implementation of these functions, see the +L section, and the documentation of your chosen builder. + +=head2 C + +This function takes a code ref or a block, inside which calls to +C should be made, and returns a properly constructed tree +containing those nodes. + +Uses the builder's C and C. + +=head2 C + +This function takes a code ref or a block, inside which calls to +C, C, and C should be made, and adds the node to +the "calling" node or tree. It also returns the node. + +Uses the builder's C and C. + +=head2 C + +This function takes a scalar, and sets the name of the current node to +the value of that scalar. + +Uses the builder's C. + +=head2 C + +This function takes a hash (not a hash ref), and sets the attributes +of the current node. + +Uses the builder's C. + +=head1 BUILDER + +To actually create nodes and trees, this module uses helper classes +called "builders". You must always specify a builder package, class or +object with the C option in the C line. + +If the builder is an object, the methods discussed below will be +called on it; if it's a class (i.e. a package that has a C +function), they will be called on an instance created by calling +C without parameters; otherwise they will be called as class +methods. + +The builder must implement these methods: + +=over + +=item C + + $tree = $current_node = $builder->new_tree(); + +returns a tree object; that object will be set as the current node +within the code passed to the C function + +=item C + + return $builder->finalize_tree($tree); + +this function will be passed the object returned by C, after +the code passed to C has been executed; the result of +C will be the result of C + +=item C + + $current_node=$builder->new_node(); + +returns a new, unattached node + +=item C + + $builder->set_node_name($current_node, $name); + +sets the name of the node (e.g. for SGML-like trees, this is the "tag +name") + +=item C + + $builder->set_node_attributes($current_node, \%attribs); + +sets attributes of the node; it should not remove previously-set attributes + +=item C + + $builder->add_child_node($parent_node, $child_node); + +adds the second node at the end of the children list of the first node + +=back + +The builder can also implement an C<_munge_exports> method. If it +does, C<_munge_exports> will be called with a hash ref consisting of +the methods that C wants to export, and it +should return a hash ref with the methods that will actually be +exported. + +See L, in particular the section on group builders, for +details. See L and +L for examples. + =head1 IMPORTING This module uses L, although it munges the C list diff --git a/lib/Tree/Template/Declare/DAG_Node.pm b/lib/Tree/Template/Declare/DAG_Node.pm index 806413d..2736a5f 100644 --- a/lib/Tree/Template/Declare/DAG_Node.pm +++ b/lib/Tree/Template/Declare/DAG_Node.pm @@ -54,3 +54,31 @@ sub set_node_attributes { } 1; +__END__ + +=head1 NAME + +Tree::Template::Declare::DAG_Node + +=head1 SYNOPSIS + +See L. + +=head1 SPECIFICITIES + +This module will build trees using L. You can make it +use another module (assuming it has the same interface, for example +L) by passing the class name to the C +method. + + use Tree::Template::Declare builder => '+DAG_Node'; # default + + use Tree::Template::Declare builder => + Tree::Template::Declare::DAG_Node->new('Tree::DAG_Node::XPath'); + # custom class + +=head1 AUTHOR + +Gianni Ceccarelli + +=cut diff --git a/lib/Tree/Template/Declare/HTML_Element.pm b/lib/Tree/Template/Declare/HTML_Element.pm index 1480987..c2dd87c 100644 --- a/lib/Tree/Template/Declare/HTML_Element.pm +++ b/lib/Tree/Template/Declare/HTML_Element.pm @@ -10,6 +10,21 @@ sub new { return bless {},$class; } +sub _munge_exports { + my ($self,$exports)=@_; + + return { + %$exports, + text_node => sub($) { + $exports->{node}->( + sub { + $exports->{name}->('~text'); + $exports->{attribs}->(text => $_[0]); + }); + }, + }; +} + sub new_tree { my ($self)=@_; @@ -57,3 +72,36 @@ sub set_node_attributes { } 1; +__END__ + +=head1 NAME + +Tree::Template::Declare::HTML_Element + +=head1 SYNOPSIS + +See L. + +=head1 SPECIFICITIES + +This module will build trees using L. + +To create text nodes, you would be forced to say: + + node { + name '~text'; + attribs text => 'some text'; + } + +which is too cumbersone. You can instead use: + + text_node 'some text'; + +HTML::Element's C method will be called by +C before returning the tree object. + +=head1 AUTHOR + +Gianni Ceccarelli + +=cut diff --git a/lib/Tree/Template/Declare/LibXML.pm b/lib/Tree/Template/Declare/LibXML.pm index f8c0e01..d5e208c 100644 --- a/lib/Tree/Template/Declare/LibXML.pm +++ b/lib/Tree/Template/Declare/LibXML.pm @@ -10,10 +10,11 @@ sub new { return bless {ns=>{':default'=>undef}},$class; } -sub _additional_exports { - my ($self)=@_; +sub _munge_exports { + my ($self,$exports)=@_; return { + %$exports, xmlns => sub($$) { $self->{ns}->{$_[0]}=$_[1]; return; @@ -95,3 +96,29 @@ sub set_node_attributes { } 1; +__END__ + +=head1 NAME + +Tree::Template::Declare::LibXML + +=head1 SYNOPSIS + +See L. + +=head1 SPECIFICITIES + +A function C is exported, so that you can declare XML namespaces: + + xmlns test => 'http://test/'; + + node { name 'test:elem'; attribs id => 1, 'test:attr' => 5 }; + +You I create nodes with qualified names with undeclared prefixes, +but it's probably not a good idea. + +=head1 AUTHOR + +Gianni Ceccarelli + +=cut diff --git a/t/03-html.t b/t/03-html.t index 08ad9c3..9cb196e 100644 --- a/t/03-html.t +++ b/t/03-html.t @@ -17,7 +17,7 @@ my $tree=tree { name 'head'; node { name 'title'; - node { name '~text'; attribs text => 'Page title' }; + text_node 'Page title'; } }; node { @@ -26,7 +26,7 @@ my $tree=tree { name 'p'; attribs id => 'p1'; attribs class => 'para'; - node { name '~text'; attribs text => 'Page para' }; + text_node 'Page para'; }; }; }; -- cgit v1.2.3