some more rehoming of functionality
[scpubgit/stemmatology.git] / lib / Text / Tradition / Parser / GraphML.pm
CommitLineData
e58153d6 1package Text::Tradition::Parser::GraphML;
b49c4318 2
3use strict;
4use warnings;
b49c4318 5use XML::LibXML;
6use XML::LibXML::XPathContext;
7
2ceca8c3 8=head1 NAME
b49c4318 9
2ceca8c3 10Text::Tradition::Parser::GraphML
11
12=head1 DESCRIPTION
13
14Parser module for Text::Tradition, given a GraphML file that describes
15a collation graph. For further information on the GraphML format for
16text collation, see http://gregor.middell.net/collatex/
17
18=head1 METHODS
19
20=over
21
22=item B<parse>
23
24parse( $graph, $graphml_string );
25
26Takes an initialized Text::Tradition::Graph object and a string
27containing the GraphML; creates the appropriate nodes and edges on the
28graph.
29
30=cut
b49c4318 31
4a8828f0 32use vars qw/ $xpc %nodedata /;
33
b49c4318 34sub parse {
4a8828f0 35 my( $tradition, $graphml_str ) = @_;
b49c4318 36
4a8828f0 37 my $collation = $tradition->collation;
b49c4318 38 my $parser = XML::LibXML->new();
39 my $doc = $parser->parse_string( $graphml_str );
8e1394aa 40 my $graphml = $doc->documentElement();
4a8828f0 41 $xpc = XML::LibXML::XPathContext->new( $graphml );
b49c4318 42 $xpc->registerNs( 'g', 'http://graphml.graphdrawing.org/xmlns' );
43
44 # First get the ID keys, for witnesses and for collation data
b49c4318 45 my %witnesses;
46 foreach my $k ( $xpc->findnodes( '//g:key' ) ) {
47 # Each key has a 'for' attribute; the edge keys are witnesses, and
48 # the node keys contain an ID and string for each node.
49
50 if( $k->getAttribute( 'for' ) eq 'node' ) {
4a8828f0 51 # The node data keys we expect are:
52 # 'number' -> unique node identifier
53 # 'token' -> reading for the node
54 # 'identical' -> the node of which this node is
55 # a transposed version
56 # 'position' -> a calculated position for the node
b49c4318 57 $nodedata{ $k->getAttribute( 'attr.name' ) } = $k->getAttribute( 'id' );
58 } else {
59 $witnesses{ $k->getAttribute( 'id' ) } = $k->getAttribute( 'attr.name' );
60 }
61 }
62
4a8828f0 63 my $has_explicit_positions = defined $nodedata{'position'};
64
65 # Add the witnesses that we have found
66 foreach my $wit ( values %witnesses ) {
67 $tradition->add_witness( 'sigil' => $wit );
68 }
69
b49c4318 70 my $graph_el = $xpc->find( '/g:graphml/g:graph' )->[0];
71
72 # Add the nodes to the graph. First delete the start node, because
73 # GraphML graphs will have their own start nodes.
8e1394aa 74 $collation->del_reading( $collation->start() );
b49c4318 75 # Map from XML IDs to node name/identity
76 my %node_name;
77 # Keep track of whatever extra info we're passed
78 my $extra_data = {};
79 my @nodes = $xpc->findnodes( '//g:node' );
80 foreach my $n ( @nodes ) {
4a8828f0 81 my $id = _lookup_node_data( $n, 'number' );
82 my $label = _lookup_node_data( $n, 'token' );
8e1394aa 83 my $gnode = $collation->add_reading( $id );
b49c4318 84 $node_name{ $n->getAttribute('id') } = $id;
85 $gnode->set_attribute( 'label', $label );
86
4a8828f0 87 # Now get the rest of the data, i.e. not the ID or label
b49c4318 88 my $extra = {};
4a8828f0 89 foreach my $k ( keys %nodedata ) {
90 next if $k =~ /^(number|token)$/;
91 $extra->{ $k } = _lookup_node_data( $n, $k );
b49c4318 92 }
93 $extra_data->{ $id } = $extra;
94 }
95
96 # Now add the edges.
97 my @edges = $xpc->findnodes( '//g:edge' );
98 foreach my $e ( @edges ) {
99 my $from = $node_name{ $e->getAttribute('source') };
100 my $to = $node_name{ $e->getAttribute('target') };
101 # Label according to the witnesses present.
102 my @wit_ids = $xpc->findnodes( './g:data/attribute::key', $e );
103 my @wit_names = map { $witnesses{ $_->getValue() } } @wit_ids;
4a8828f0 104 my $label = $collation->path_label( @wit_names );
8e1394aa 105 $collation->add_path( $from, $to, $label );
b49c4318 106 }
107
108 ## Reverse the node_name hash so that we have two-way lookup.
109 my %node_id = reverse %node_name;
a25d4374 110
111 ## Record the nodes that are marked as transposed.
c557b209 112 my $tr_xpath = '//g:node[g:data[@key="' . $nodedata{'identical'} . '"]]';
c2d16875 113 my $transposition_nodes = $xpc->find( $tr_xpath );
114 foreach my $tn ( @$transposition_nodes ) {
115 my $id_xpath = sprintf( './g:data[@key="%s"]/text()',
c557b209 116 $nodedata{'identical'} );
8e1394aa 117 $collation->reading( $node_id{ $tn->getAttribute( 'id' ) } )->
118 set_identical( $collation->reading(
119 $node_name{ $xpc->findvalue( $id_xpath, $tn ) } ) );
a25d4374 120 }
a25d4374 121
b49c4318 122 # Find the beginning and end nodes of the graph. The beginning node
123 # has no incoming edges; the end node has no outgoing edges.
124 my( $begin_node, $end_node );
8e1394aa 125 foreach my $gnode ( $collation->readings() ) {
4a8828f0 126 # print STDERR "Checking node " . $gnode->name . "\n";
b49c4318 127 my @outgoing = $gnode->outgoing();
128 my @incoming = $gnode->incoming();
129
130 unless( scalar @incoming ) {
131 warn "Already have a beginning node" if $begin_node;
4a8828f0 132 $begin_node = $gnode;
8e1394aa 133 $collation->start( $gnode );
b49c4318 134 }
135 unless( scalar @outgoing ) {
136 warn "Already have an ending node" if $end_node;
4a8828f0 137 $end_node = $gnode;
b49c4318 138 }
139 }
140
4a8828f0 141 $collation->walk_witness_paths( $end_node );
142 # Now we have added the witnesses and their paths, so have also
143 # implicitly marked the common nodes. Now we can calculate their
144 # explicit permissions. This is separate because it won't always
145 # be necessary with the GraphML parsing.
146 $collation->calculate_positions() unless $has_explicit_positions;
147 if( $has_explicit_positions ) {
148 # Record the positions that came with each graph node.
149 # TODO we really need to translate these into our own style of
150 # position identifier. That's why we defer this until now.
151 foreach my $node_id ( keys %$extra_data ) {
152 my $pos = $extra_data->{$node_id}->{'position'};
153 $collation->reading( $node_name{$node_id} )->position( $pos );
b49c4318 154 }
4a8828f0 155 } else {
156 # Calculate a position for each graph node.
157 $collation->calculate_positions();
b49c4318 158 }
4a8828f0 159}
b49c4318 160
4a8828f0 161sub _lookup_node_data {
162 my( $xmlnode, $key ) = @_;
163 my $lookup_xpath = './g:data[@key="%s"]/child::text()';
164 my $data = $xpc->findvalue( sprintf( $lookup_xpath, $nodedata{$key} ),
165 $xmlnode );
166 return $data;
b49c4318 167}
168
2ceca8c3 169=back
170
171=head1 LICENSE
172
173This package is free software and is provided "as is" without express
174or implied warranty. You can redistribute it and/or modify it under
175the same terms as Perl itself.
176
177=head1 AUTHOR
178
179Tara L Andrews, aurum@cpan.org
180
181=cut
182
b49c4318 1831;