flatten identical nodes by rank; allow alignment table with objects
[scpubgit/stemmatology.git] / lib / Text / Tradition / Parser / TEI.pm
CommitLineData
f6066bac 1package Text::Tradition::Parser::TEI;
2
3use strict;
4use warnings;
910a0a6d 5use Text::Tradition::Parser::Util qw( collate_variants );
f6066bac 6use XML::LibXML;
7use XML::LibXML::XPathContext;
8
9=head1 NAME
10
11Text::Tradition::Parser::TEI
12
13=head1 DESCRIPTION
14
15Parser module for Text::Tradition, given a TEI parallel-segmentation
16file that describes a text and its variants.
17
18=head1 METHODS
19
20=over
21
22=item B<parse>
23
24parse( $tei_string );
25
26Takes an initialized tradition and a string containing the TEI;
27creates the appropriate nodes and edges on the graph, as well as
28the appropriate witness objects.
29
30=cut
31
910a0a6d 32my $text = {}; # Hash of arrays, one per eventual witness we find.
910a0a6d 33my $substitutions = {}; # Keep track of merged readings
34my $app_anchors = {}; # Track apparatus references
35my $app_ac = {}; # Save a.c. readings
eca16057 36my $app_count; # Keep track of how many apps we have
910a0a6d 37
38# Create the package variables for tag names.
39
40# Would really like to do this with varname variables, but apparently this
41# is considered a bad idea. The long way round then.
42my( $LISTWIT, $WITNESS, $TEXT, $W, $SEG, $APP, $RDG, $LEM )
43 = ( 'listWit', 'witness', 'text', 'w', 'seg', 'app', 'rdg', 'lem' );
44sub make_tagnames {
45 my( $ns ) = @_;
46 if( $ns ) {
47 $LISTWIT = "$ns:$LISTWIT";
48 $WITNESS = "$ns:$WITNESS";
49 $TEXT = "$ns:$TEXT";
50 $W = "$ns:$W";
51 $SEG = "$ns:$SEG";
52 $APP = "$ns:$APP";
53 $RDG = "$ns:$RDG";
54 $LEM = "$ns:$LEM";
55 }
56}
57
58# Parse the TEI file.
f6066bac 59sub parse {
60 my( $tradition, $xml_str ) = @_;
61
62 # First, parse the XML.
63 my $parser = XML::LibXML->new();
64 my $doc = $parser->parse_string( $xml_str );
65 my $tei = $doc->documentElement();
f2b9605f 66 my $xpc = XML::LibXML::XPathContext->new( $tei );
910a0a6d 67 my $ns;
68 if( $tei->namespaceURI ) {
69 $ns = 'tei';
70 $xpc->registerNs( $ns, $tei->namespaceURI );
71 }
72 make_tagnames( $ns );
73
f6066bac 74 # Then get the witnesses and create the witness objects.
910a0a6d 75 foreach my $wit_el ( $xpc->findnodes( "//$LISTWIT/$WITNESS" ) ) {
76 my $sig = $wit_el->getAttribute( 'xml:id' );
77 my $source = $wit_el->toString();
78 $tradition->add_witness( sigil => $sig, source => $source );
f6066bac 79 }
910a0a6d 80 map { $text->{$_->sigil} = [] } $tradition->witnesses;
eca16057 81
910a0a6d 82 # Look for all word/seg node IDs and note their pre-existence.
83 my @attrs = $xpc->findnodes( "//$W|$SEG/attribute::xml:id" );
84 save_preexisting_nodeids( @attrs );
85
eca16057 86 # Count up how many apps we have.
87 my @apps = $xpc->findnodes( "//$APP" );
88 $app_count = scalar( @apps );
89
910a0a6d 90 # Now go through the children of the text element and pull out the
91 # actual text.
92 foreach my $xml_el ( $xpc->findnodes( "//$TEXT" ) ) {
93 foreach my $xn ( $xml_el->childNodes ) {
94 _get_readings( $tradition, $xn );
95 }
96 }
97 # Our $text global now has lists of readings, one per witness.
98 # Join them up.
99 my $c = $tradition->collation;
100 foreach my $sig ( keys %$text ) {
101 next if $sig eq 'base'; # Skip base text readings with no witnesses.
102 # Determine the list of readings for
103 my $sequence = $text->{$sig};
104 my @real_sequence = ( $c->start );
105 push( @$sequence, $c->end );
106 my $source = $c->start;
107 foreach( _clean_sequence( $sig, $sequence ) ) {
108 my $rdg = _return_rdg( $_ );
109 push( @real_sequence, $rdg );
110 $c->add_path( $source, $rdg, $sig );
111 $source = $rdg;
112 }
113 $tradition->witness( $sig )->path( \@real_sequence );
114 # See if we need to make an a.c. version of the witness.
115 if( exists $app_ac->{$sig} ) {
116 my @uncorrected;
117 push( @uncorrected, @real_sequence );
118 foreach my $app ( keys %{$app_ac->{$sig}} ) {
119 my $start = _return_rdg( $app_anchors->{$app}->{$sig}->{'start'} );
120 my $end = _return_rdg( $app_anchors->{$app}->{$sig}->{'end'} );
121 my @new = map { _return_rdg( $_ ) } @{$app_ac->{$sig}->{$app}};
122 _replace_sequence( \@uncorrected, $start, $end, @new );
123 }
124 my $source = $c->start;
125 foreach my $rdg ( @uncorrected ) {
126 my $has_base = grep { $_->label eq $sig } $source->edges_to( $rdg );
127 if( $rdg ne $c->start && !$has_base ) {
128 print STDERR sprintf( "Adding path %s from %s -> %s\n",
129 $sig.$c->ac_label, $source->name, $rdg->name );
130 $c->add_path( $source, $rdg, $sig.$c->ac_label );
131 }
132 $source = $rdg;
133 }
78fab1cf 134 print STDERR "Adding a.c. version for witness $sig\n";
910a0a6d 135 $tradition->witness( $sig )->uncorrected_path( \@uncorrected );
136 }
137 }
138 # Delete readings that are no longer part of the graph.
139 # TODO think this is useless actually
140 foreach ( keys %$substitutions ) {
141 $tradition->collation->del_reading( $tradition->collation->reading( $_ ) );
142 }
7e450e44 143 $tradition->collation->calculate_ranks();
0e476982 144
145 # Now that we have ranks, see if we have distinct nodes with identical
146 # text and identical rank that can be merged.
147 $tradition->collation->flatten_ranks();
910a0a6d 148}
149
150sub _clean_sequence {
151 my( $wit, $sequence ) = @_;
152 my @clean_sequence;
153 foreach my $rdg ( @$sequence ) {
154 if( $rdg =~ /^PH-(.*)$/ ) {
155 # It is a placeholder. Keep it only if we need it.
156 my $app_id = $1;
78fab1cf 157 if( exists $app_ac->{$wit} &&
158 exists $app_ac->{$wit}->{$app_id} ) {
910a0a6d 159 print STDERR "Retaining empty placeholder for $app_id\n";
160 push( @clean_sequence, $rdg );
161 }
162 } else {
163 push( @clean_sequence, $rdg );
164 }
f6066bac 165 }
910a0a6d 166 return @clean_sequence;
167}
f6066bac 168
910a0a6d 169sub _replace_sequence {
170 my( $arr, $start, $end, @new ) = @_;
171 my( $start_idx, $end_idx );
172 foreach my $i ( 0 .. $#{$arr} ) {
173 $start_idx = $i if( $arr->[$i]->name eq $start );
174 if( $arr->[$i]->name eq $end ) {
175 $end_idx = $i;
176 last;
177 }
178 }
179 unless( $start_idx && $end_idx ) {
180 warn "Could not find start and end";
181 return;
f2b9605f 182 }
910a0a6d 183 my $length = $end_idx - $start_idx + 1;
184 splice( @$arr, $start_idx, $length, @new );
185}
f6066bac 186
910a0a6d 187sub _return_rdg {
188 my( $rdg ) = @_;
189 # If we were passed a reading name, return the name. If we were
190 # passed a reading object, return the object.
191 my $wantobj = ref( $rdg ) eq 'Text::Tradition::Collation::Reading';
192 my $real = $rdg;
193 if( exists $substitutions->{ $wantobj ? $rdg->name : $rdg } ) {
194 $real = $substitutions->{ $wantobj ? $rdg->name : $rdg };
195 $real = $real->name unless $wantobj;
196 }
197 return $real;
f6066bac 198}
199
910a0a6d 200## Recursive helper function to help us navigate through nested XML,
201## picking out the text. $tradition is the tradition, needed for
202## making readings; $xn is the XML node currently being looked at,
203## $in_var is a flag to say that we are inside a variant, $ac is a
204## flag to say that we are inside an ante-correctionem reading, and
205## @cur_wits is the list of witnesses to which this XML node applies.
206## Returns the list of readings, if any, created on the run.
207
208{
209 my @active_wits;
210 my $current_app;
eca16057 211 my $seen_apps;
910a0a6d 212
213 sub _get_readings {
214 my( $tradition, $xn, $in_var, $ac, @cur_wits ) = @_;
215 @cur_wits = @active_wits unless $in_var;
216
217 my @new_readings;
218 if( $xn->nodeType == XML_TEXT_NODE ) {
219 # Some words, thus make some readings.
220 my $str = $xn->data;
221 return unless $str =~ /\S/; # skip whitespace-only text nodes
222 #print STDERR "Handling text node " . $str . "\n";
223 # Check that all the witnesses we have are active.
224 foreach my $c ( @cur_wits ) {
225 warn "Could not find $c in active wits"
226 unless grep { $c eq $_ } @active_wits;
227 }
228 $str =~ s/^\s+//;
229 my $final = $str =~ s/\s+$//;
230 foreach my $w ( split( /\s+/, $str ) ) {
231 # For now, skip punctuation.
232 next if $w !~ /[[:alnum:]]/;
233 my $rdg = make_reading( $tradition->collation, $w );
234 push( @new_readings, $rdg );
235 unless( $in_var ) {
910a0a6d 236 $rdg->make_common;
237 }
238 foreach ( @cur_wits ) {
239 warn "Empty wit!" unless $_;
240 warn "Empty reading!" unless $rdg;
241 push( @{$text->{$_}}, $rdg ) unless $ac;
242 }
243 }
244 } elsif( $xn->nodeName eq 'w' ) {
245 # Everything in this tag is one word. Also save any original XML ID.
246 #print STDERR "Handling word " . $xn->toString . "\n";
247 # Check that all the witnesses we have are active.
248 foreach my $c ( @cur_wits ) {
249 warn "Could not find $c in active wits"
250 unless grep { $c eq $_ } @active_wits;
251 }
252 my $xml_id = $xn->getAttribute( 'xml:id' );
253 my $rdg = make_reading( $tradition->collation, $xn->textContent, $xml_id );
254 push( @new_readings, $rdg );
255 unless( $in_var ) {
910a0a6d 256 $rdg->make_common;
257 }
258 foreach( @cur_wits ) {
259 warn "Empty wit!" unless $_;
260 warn "Empty reading!" unless $rdg;
261 push( @{$text->{$_}}, $rdg ) unless $ac;
262 }
263 } elsif ( $xn->nodeName eq 'app' ) {
eca16057 264 $seen_apps++;
910a0a6d 265 $current_app = $xn->getAttribute( 'xml:id' );
266 # print STDERR "Handling app $current_app\n";
267 # Keep the reading sets in this app.
268 my @sets;
269 # Recurse through all children (i.e. rdgs) for sets of words.
270 foreach ( $xn->childNodes ) {
271 my @rdg_set = _get_readings( $tradition, $_, $in_var, $ac, @cur_wits );
272 push( @sets, \@rdg_set ) if @rdg_set;
273 }
274 # Now collate these sets if we have more than one.
275 my $subs = collate_variants( $tradition->collation, @sets ) if @sets > 1;
276 map { $substitutions->{$_} = $subs->{$_} } keys %$subs;
277 # TODO Look through substitutions to see if we can make anything common now.
278 # Return the entire set of unique readings.
279 my %unique;
280 foreach my $s ( @sets ) {
281 map { $unique{$_->name} = $_ } @$s;
282 }
283 push( @new_readings, values( %unique ) );
284 # Exit the current app.
285 $current_app = '';
286 } elsif ( $xn->nodeName eq 'lem' || $xn->nodeName eq 'rdg' ) {
287 # Alter the current witnesses and recurse.
288 #print STDERR "Handling reading for " . $xn->getAttribute( 'wit' ) . "\n";
289 $ac = $xn->getAttribute( 'type' ) && $xn->getAttribute( 'type' ) eq 'a.c.';
290 my @rdg_wits = get_sigla( $xn );
291 @rdg_wits = ( 'base' ) unless @rdg_wits; # Allow for editorially-supplied readings
292 my @words;
293 foreach ( $xn->childNodes ) {
294 my @rdg_set = _get_readings( $tradition, $_, 1, $ac, @rdg_wits );
295 push( @words, @rdg_set ) if @rdg_set;
296 }
297 # If we have more than one word in a reading, it should become a segment.
298 # $tradition->collation->add_segment( @words ) if @words > 1;
299
300 if( $ac ) {
301 # Add the reading set to the a.c. readings.
302 foreach ( @rdg_wits ) {
303 $app_ac->{$_}->{$current_app} = \@words;
304 }
305 } else {
306 # Add the reading set to the app anchors for each witness
307 # or put in placeholders for empty p.c. readings
308 foreach ( @rdg_wits ) {
309 my $start = @words ? $words[0]->name : "PH-$current_app";
310 my $end = @words ? $words[-1]->name : "PH-$current_app";
311 $app_anchors->{$current_app}->{$_}->{'start'} = $start;
312 $app_anchors->{$current_app}->{$_}->{'end'} = $end;
313 push( @{$text->{$_}}, $start ) unless @words;
314 }
315 }
316 push( @new_readings, @words );
317 } elsif( $xn->nodeName eq 'witStart' ) {
318 # Add the relevant wit(s) to the active list.
319 #print STDERR "Handling witStart\n";
320 push( @active_wits, @cur_wits );
321 } elsif( $xn->nodeName eq 'witEnd' ) {
322 # Take the relevant wit(s) out of the list.
323 #print STDERR "Handling witEnd\n";
324 my $regexp = '^(' . join( '|', @cur_wits ) . ')$';
325 @active_wits = grep { $_ !~ /$regexp/ } @active_wits;
eca16057 326 # Record a lacuna, unless this is the last app.
327 unless( $seen_apps == $app_count ) {
328 foreach my $i ( 0 .. $#cur_wits ) {
329 my $w = $cur_wits[$i];
330 my $l = $tradition->collation->add_lacuna( $current_app . "_$i" );
331 push( @{$text->{$w}}, $l );
332 }
333 }
910a0a6d 334 } elsif( $xn->nodeName eq 'witDetail' ) {
335 # Ignore these for now.
336 return;
337 } else {
338 # Recurse as if this tag weren't there.
339 #print STDERR "Recursing on tag " . $xn->nodeName . "\n";
340 foreach( $xn->childNodes ) {
341 push( @new_readings, _get_readings( $tradition, $_, $in_var, $ac, @cur_wits ) );
342 }
343 }
344 return @new_readings;
345 }
346
347}
348
349# Helper to extract a list of witness sigla from a reading element.
f6066bac 350sub get_sigla {
351 my( $rdg ) = @_;
352 # Cope if we have been handed a NodeList. There is only
353 # one reading here.
354 if( ref( $rdg ) eq 'XML::LibXML::NodeList' ) {
910a0a6d 355 $rdg = $rdg->shift;
f6066bac 356 }
357
358 my @wits;
359 if( ref( $rdg ) eq 'XML::LibXML::Element' ) {
910a0a6d 360 my $witstr = $rdg->getAttribute( 'wit' );
361 $witstr =~ s/^\s+//;
362 $witstr =~ s/\s+$//;
363 @wits = split( /\s+/, $witstr );
364 map { $_ =~ s/^\#// } @wits;
f6066bac 365 }
366 return @wits;
367}
368
910a0a6d 369# Helper with its counters to actually make the readings.
f2b9605f 370{
371 my $word_ctr = 0;
372 my %used_nodeids;
373
910a0a6d 374 sub save_preexisting_nodeids {
375 foreach( @_ ) {
376 $used_nodeids{$_->getValue()} = 1;
377 }
378 }
379
f2b9605f 380 sub make_reading {
910a0a6d 381 my( $graph, $word, $xml_id ) = @_;
382 if( $xml_id ) {
383 if( exists $used_nodeids{$xml_id} ) {
384 if( $used_nodeids{$xml_id} != 1 ) {
385 warn "Already used assigned XML ID somewhere else!";
386 $xml_id = undef;
387 }
388 } else {
389 warn "Undetected pre-existing XML ID";
390 }
391 }
392 if( !$xml_id ) {
393 until( $xml_id ) {
394 my $try_id = 'w'.$word_ctr++;
395 next if exists $used_nodeids{$try_id};
396 $xml_id = $try_id;
397 }
398 }
399 my $rdg = $graph->add_reading( $xml_id );
400 $rdg->text( $word );
401 $used_nodeids{$xml_id} = $rdg;
402 return $rdg;
f2b9605f 403 }
404}
405
f6066bac 4061;