Stop polluting test output with STDERR
[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
3b853983 13=head1 SYNOPSIS
14
15 use Text::Tradition;
16
17 my $t_from_file = Text::Tradition->new(
18 'name' => 'my text',
19 'input' => 'TEI',
20 'file' => '/path/to/parallel_seg_file.xml'
21 );
22
23 my $t_from_string = Text::Tradition->new(
24 'name' => 'my text',
25 'input' => 'TEI',
26 'string' => $parallel_seg_xml,
27 );
28
29
f6066bac 30=head1 DESCRIPTION
31
3b853983 32Parser module for Text::Tradition, given a TEI parallel-segmentation file
33that describes a text and its variants. Normally called upon
34initialization of Text::Tradition.
35
36The witnesses for the tradition are taken from the <listWit/> element
37within the TEI header; the readings are taken from any <p/> element that
38appears in the text body (including <head/> elements therein.)
f6066bac 39
40=head1 METHODS
41
e867486f 42=head2 B<parse>( $tradition, $option_hash )
3b853983 43
44Takes an initialized tradition and a set of options; creates the
45appropriate nodes and edges on the graph, as well as the appropriate
46witness objects. The $option_hash must contain either a 'file' or a
47'string' argument with the XML to be parsed.
48
49=begin testing
50
51use Text::Tradition;
52binmode STDOUT, ":utf8";
53binmode STDERR, ":utf8";
54eval { no warnings; binmode $DB::OUT, ":utf8"; };
55
56my $par_seg = 't/data/florilegium_tei_ps.xml';
57my $t = Text::Tradition->new(
58 'name' => 'inline',
59 'input' => 'TEI',
60 'file' => $par_seg,
61 );
f6066bac 62
3b853983 63is( ref( $t ), 'Text::Tradition', "Parsed parallel-segmentation TEI" );
64if( $t ) {
65 is( scalar $t->collation->readings, 319, "Collation has all readings" );
e4b0f464 66 is( scalar $t->collation->paths, 374, "Collation has all paths" );
3b853983 67}
f6066bac 68
3b853983 69=end testing
f6066bac 70
71=cut
72
910a0a6d 73my $text = {}; # Hash of arrays, one per eventual witness we find.
910a0a6d 74my $substitutions = {}; # Keep track of merged readings
75my $app_anchors = {}; # Track apparatus references
76my $app_ac = {}; # Save a.c. readings
eca16057 77my $app_count; # Keep track of how many apps we have
910a0a6d 78
79# Create the package variables for tag names.
80
81# Would really like to do this with varname variables, but apparently this
82# is considered a bad idea. The long way round then.
83my( $LISTWIT, $WITNESS, $TEXT, $W, $SEG, $APP, $RDG, $LEM )
84 = ( 'listWit', 'witness', 'text', 'w', 'seg', 'app', 'rdg', 'lem' );
3b853983 85sub _make_tagnames {
910a0a6d 86 my( $ns ) = @_;
87 if( $ns ) {
88 $LISTWIT = "$ns:$LISTWIT";
89 $WITNESS = "$ns:$WITNESS";
90 $TEXT = "$ns:$TEXT";
91 $W = "$ns:$W";
92 $SEG = "$ns:$SEG";
93 $APP = "$ns:$APP";
94 $RDG = "$ns:$RDG";
95 $LEM = "$ns:$LEM";
96 }
97}
98
99# Parse the TEI file.
f6066bac 100sub parse {
dfc37e38 101 my( $tradition, $opts ) = @_;
f6066bac 102
103 # First, parse the XML.
104 my $parser = XML::LibXML->new();
dfc37e38 105 my $doc;
106 if( exists $opts->{'string'} ) {
107 $doc = $parser->parse_string( $opts->{'string'} );
108 } elsif ( exists $opts->{'file'} ) {
109 $doc = $parser->parse_file( $opts->{'file'} );
110 } else {
111 warn "Could not find string or file option to parse";
112 return;
113 }
f6066bac 114 my $tei = $doc->documentElement();
f2b9605f 115 my $xpc = XML::LibXML::XPathContext->new( $tei );
910a0a6d 116 my $ns;
117 if( $tei->namespaceURI ) {
118 $ns = 'tei';
119 $xpc->registerNs( $ns, $tei->namespaceURI );
120 }
3b853983 121 _make_tagnames( $ns );
910a0a6d 122
f6066bac 123 # Then get the witnesses and create the witness objects.
910a0a6d 124 foreach my $wit_el ( $xpc->findnodes( "//$LISTWIT/$WITNESS" ) ) {
125 my $sig = $wit_el->getAttribute( 'xml:id' );
126 my $source = $wit_el->toString();
127 $tradition->add_witness( sigil => $sig, source => $source );
f6066bac 128 }
910a0a6d 129 map { $text->{$_->sigil} = [] } $tradition->witnesses;
eca16057 130
910a0a6d 131 # Look for all word/seg node IDs and note their pre-existence.
a7fb3133 132 my @attrs = $xpc->findnodes( "//$W/attribute::xml:id" );
3b853983 133 _save_preexisting_nodeids( @attrs );
910a0a6d 134
eca16057 135 # Count up how many apps we have.
136 my @apps = $xpc->findnodes( "//$APP" );
137 $app_count = scalar( @apps );
138
910a0a6d 139 # Now go through the children of the text element and pull out the
140 # actual text.
141 foreach my $xml_el ( $xpc->findnodes( "//$TEXT" ) ) {
142 foreach my $xn ( $xml_el->childNodes ) {
143 _get_readings( $tradition, $xn );
144 }
145 }
146 # Our $text global now has lists of readings, one per witness.
147 # Join them up.
148 my $c = $tradition->collation;
149 foreach my $sig ( keys %$text ) {
910a0a6d 150 # Determine the list of readings for
151 my $sequence = $text->{$sig};
152 my @real_sequence = ( $c->start );
153 push( @$sequence, $c->end );
154 my $source = $c->start;
155 foreach( _clean_sequence( $sig, $sequence ) ) {
156 my $rdg = _return_rdg( $_ );
157 push( @real_sequence, $rdg );
158 $c->add_path( $source, $rdg, $sig );
159 $source = $rdg;
160 }
910a0a6d 161 # See if we need to make an a.c. version of the witness.
162 if( exists $app_ac->{$sig} ) {
163 my @uncorrected;
164 push( @uncorrected, @real_sequence );
165 foreach my $app ( keys %{$app_ac->{$sig}} ) {
166 my $start = _return_rdg( $app_anchors->{$app}->{$sig}->{'start'} );
167 my $end = _return_rdg( $app_anchors->{$app}->{$sig}->{'end'} );
168 my @new = map { _return_rdg( $_ ) } @{$app_ac->{$sig}->{$app}};
169 _replace_sequence( \@uncorrected, $start, $end, @new );
170 }
171 my $source = $c->start;
172 foreach my $rdg ( @uncorrected ) {
e4b0f464 173 my $has_base = grep { $_ eq $sig } $c->reading_witnesses( $rdg );
910a0a6d 174 if( $rdg ne $c->start && !$has_base ) {
0068967c 175 # print STDERR sprintf( "Adding path %s from %s -> %s\n",
176 # $sig.$c->ac_label, $source->id, $rdg->id );
910a0a6d 177 $c->add_path( $source, $rdg, $sig.$c->ac_label );
178 }
179 $source = $rdg;
180 }
0068967c 181 # print STDERR "Adding a.c. version for witness $sig\n";
1f7aa795 182 $tradition->witness( $sig )->is_layered( 1 );
910a0a6d 183 }
184 }
3b853983 185
186 # Calculate the ranks for the nodes.
a7fb3133 187 $tradition->collation->calculate_ranks();
3bc0cd18 188
189 # Now that we have ranks, see if we have distinct nodes with identical
190 # text and identical rank that can be merged.
0e476982 191 $tradition->collation->flatten_ranks();
910a0a6d 192}
193
194sub _clean_sequence {
195 my( $wit, $sequence ) = @_;
196 my @clean_sequence;
197 foreach my $rdg ( @$sequence ) {
198 if( $rdg =~ /^PH-(.*)$/ ) {
199 # It is a placeholder. Keep it only if we need it.
200 my $app_id = $1;
78fab1cf 201 if( exists $app_ac->{$wit} &&
202 exists $app_ac->{$wit}->{$app_id} ) {
0068967c 203 # print STDERR "Retaining empty placeholder for $app_id\n";
910a0a6d 204 push( @clean_sequence, $rdg );
205 }
206 } else {
207 push( @clean_sequence, $rdg );
208 }
f6066bac 209 }
910a0a6d 210 return @clean_sequence;
211}
f6066bac 212
910a0a6d 213sub _replace_sequence {
214 my( $arr, $start, $end, @new ) = @_;
215 my( $start_idx, $end_idx );
216 foreach my $i ( 0 .. $#{$arr} ) {
e4b0f464 217 $start_idx = $i if( $arr->[$i]->id eq $start );
218 if( $arr->[$i]->id eq $end ) {
910a0a6d 219 $end_idx = $i;
220 last;
221 }
222 }
223 unless( $start_idx && $end_idx ) {
224 warn "Could not find start and end";
225 return;
f2b9605f 226 }
910a0a6d 227 my $length = $end_idx - $start_idx + 1;
228 splice( @$arr, $start_idx, $length, @new );
229}
f6066bac 230
910a0a6d 231sub _return_rdg {
232 my( $rdg ) = @_;
233 # If we were passed a reading name, return the name. If we were
234 # passed a reading object, return the object.
235 my $wantobj = ref( $rdg ) eq 'Text::Tradition::Collation::Reading';
236 my $real = $rdg;
e4b0f464 237 if( exists $substitutions->{ $wantobj ? $rdg->id : $rdg } ) {
238 $real = $substitutions->{ $wantobj ? $rdg->id : $rdg };
239 $real = $real->id unless $wantobj;
910a0a6d 240 }
241 return $real;
f6066bac 242}
243
3b853983 244## TODO test specific sorts of nodes of the parallel-seg XML.
245
910a0a6d 246## Recursive helper function to help us navigate through nested XML,
247## picking out the text. $tradition is the tradition, needed for
248## making readings; $xn is the XML node currently being looked at,
249## $in_var is a flag to say that we are inside a variant, $ac is a
250## flag to say that we are inside an ante-correctionem reading, and
251## @cur_wits is the list of witnesses to which this XML node applies.
252## Returns the list of readings, if any, created on the run.
253
254{
3bc0cd18 255 my %active_wits;
910a0a6d 256 my $current_app;
eca16057 257 my $seen_apps;
910a0a6d 258
259 sub _get_readings {
260 my( $tradition, $xn, $in_var, $ac, @cur_wits ) = @_;
3bc0cd18 261 @cur_wits = grep { $active_wits{$_} } keys %active_wits unless $in_var;
910a0a6d 262
263 my @new_readings;
264 if( $xn->nodeType == XML_TEXT_NODE ) {
265 # Some words, thus make some readings.
266 my $str = $xn->data;
267 return unless $str =~ /\S/; # skip whitespace-only text nodes
268 #print STDERR "Handling text node " . $str . "\n";
269 # Check that all the witnesses we have are active.
270 foreach my $c ( @cur_wits ) {
3bc0cd18 271 warn "$c is not among active wits" unless $active_wits{$c};
910a0a6d 272 }
273 $str =~ s/^\s+//;
274 my $final = $str =~ s/\s+$//;
275 foreach my $w ( split( /\s+/, $str ) ) {
276 # For now, skip punctuation.
277 next if $w !~ /[[:alnum:]]/;
3b853983 278 my $rdg = _make_reading( $tradition->collation, $w );
910a0a6d 279 push( @new_readings, $rdg );
910a0a6d 280 foreach ( @cur_wits ) {
281 warn "Empty wit!" unless $_;
282 warn "Empty reading!" unless $rdg;
283 push( @{$text->{$_}}, $rdg ) unless $ac;
284 }
285 }
286 } elsif( $xn->nodeName eq 'w' ) {
287 # Everything in this tag is one word. Also save any original XML ID.
288 #print STDERR "Handling word " . $xn->toString . "\n";
289 # Check that all the witnesses we have are active.
290 foreach my $c ( @cur_wits ) {
3bc0cd18 291 warn "$c is not among active wits" unless $active_wits{$c};
910a0a6d 292 }
293 my $xml_id = $xn->getAttribute( 'xml:id' );
3b853983 294 my $rdg = _make_reading( $tradition->collation, $xn->textContent, $xml_id );
910a0a6d 295 push( @new_readings, $rdg );
910a0a6d 296 foreach( @cur_wits ) {
297 warn "Empty wit!" unless $_;
298 warn "Empty reading!" unless $rdg;
299 push( @{$text->{$_}}, $rdg ) unless $ac;
300 }
301 } elsif ( $xn->nodeName eq 'app' ) {
eca16057 302 $seen_apps++;
910a0a6d 303 $current_app = $xn->getAttribute( 'xml:id' );
304 # print STDERR "Handling app $current_app\n";
305 # Keep the reading sets in this app.
306 my @sets;
307 # Recurse through all children (i.e. rdgs) for sets of words.
308 foreach ( $xn->childNodes ) {
309 my @rdg_set = _get_readings( $tradition, $_, $in_var, $ac, @cur_wits );
310 push( @sets, \@rdg_set ) if @rdg_set;
311 }
312 # Now collate these sets if we have more than one.
313 my $subs = collate_variants( $tradition->collation, @sets ) if @sets > 1;
314 map { $substitutions->{$_} = $subs->{$_} } keys %$subs;
315 # TODO Look through substitutions to see if we can make anything common now.
316 # Return the entire set of unique readings.
317 my %unique;
318 foreach my $s ( @sets ) {
e4b0f464 319 map { $unique{$_->id} = $_ } @$s;
910a0a6d 320 }
321 push( @new_readings, values( %unique ) );
322 # Exit the current app.
323 $current_app = '';
324 } elsif ( $xn->nodeName eq 'lem' || $xn->nodeName eq 'rdg' ) {
325 # Alter the current witnesses and recurse.
326 #print STDERR "Handling reading for " . $xn->getAttribute( 'wit' ) . "\n";
3bc0cd18 327 # TODO handle p.c. and s.l. designations too
910a0a6d 328 $ac = $xn->getAttribute( 'type' ) && $xn->getAttribute( 'type' ) eq 'a.c.';
3b853983 329 my @rdg_wits = _get_sigla( $xn );
a7fb3133 330 return unless @rdg_wits; # Skip readings that appear in no witnesses
910a0a6d 331 my @words;
332 foreach ( $xn->childNodes ) {
333 my @rdg_set = _get_readings( $tradition, $_, 1, $ac, @rdg_wits );
334 push( @words, @rdg_set ) if @rdg_set;
335 }
336 # If we have more than one word in a reading, it should become a segment.
337 # $tradition->collation->add_segment( @words ) if @words > 1;
338
339 if( $ac ) {
340 # Add the reading set to the a.c. readings.
341 foreach ( @rdg_wits ) {
342 $app_ac->{$_}->{$current_app} = \@words;
343 }
344 } else {
345 # Add the reading set to the app anchors for each witness
346 # or put in placeholders for empty p.c. readings
347 foreach ( @rdg_wits ) {
e4b0f464 348 my $start = @words ? $words[0]->id : "PH-$current_app";
349 my $end = @words ? $words[-1]->id : "PH-$current_app";
910a0a6d 350 $app_anchors->{$current_app}->{$_}->{'start'} = $start;
351 $app_anchors->{$current_app}->{$_}->{'end'} = $end;
352 push( @{$text->{$_}}, $start ) unless @words;
353 }
354 }
355 push( @new_readings, @words );
356 } elsif( $xn->nodeName eq 'witStart' ) {
357 # Add the relevant wit(s) to the active list.
358 #print STDERR "Handling witStart\n";
3bc0cd18 359 map { $active_wits{$_} = 1 } @cur_wits;
360 # Record a lacuna in all non-active witnesses if this is
361 # the first app. Get the full list from $text.
362 if( $seen_apps == 1 ) {
363 my $i = 0;
364 foreach my $sig ( keys %$text ) {
365 next if $active_wits{$sig};
e4b0f464 366 my $l = $tradition->collation->add_reading( {
e4b0f464 367 'id' => $current_app . "_$i",
368 'is_lacuna' => 1 } );
3bc0cd18 369 $i++;
370 push( @{$text->{$sig}}, $l );
371 }
372 }
910a0a6d 373 } elsif( $xn->nodeName eq 'witEnd' ) {
374 # Take the relevant wit(s) out of the list.
375 #print STDERR "Handling witEnd\n";
3bc0cd18 376 map { $active_wits{$_} = undef } @cur_wits;
eca16057 377 # Record a lacuna, unless this is the last app.
378 unless( $seen_apps == $app_count ) {
379 foreach my $i ( 0 .. $#cur_wits ) {
380 my $w = $cur_wits[$i];
e4b0f464 381 my $l = $tradition->collation->add_reading( {
e4b0f464 382 'id' => $current_app . "_$i",
383 'is_lacuna' => 1 } );
eca16057 384 push( @{$text->{$w}}, $l );
385 }
386 }
a7fb3133 387 } elsif( $xn->nodeName eq 'witDetail'
388 || $xn->nodeName eq 'note' ) {
910a0a6d 389 # Ignore these for now.
390 return;
391 } else {
392 # Recurse as if this tag weren't there.
393 #print STDERR "Recursing on tag " . $xn->nodeName . "\n";
394 foreach( $xn->childNodes ) {
395 push( @new_readings, _get_readings( $tradition, $_, $in_var, $ac, @cur_wits ) );
396 }
397 }
398 return @new_readings;
399 }
400
401}
402
3b853983 403=begin testing
404
405use XML::LibXML;
406use XML::LibXML::XPathContext;
407use Text::Tradition::Parser::TEI;
408
409my $xml_str = '<tei><rdg wit="#A #B #C #D">some text</rdg></tei>';
410my $el = XML::LibXML->new()->parse_string( $xml_str )->documentElement;
411my $xpc = XML::LibXML::XPathContext->new( $el );
412my $obj = $xpc->find( '//rdg' );
413
414my @wits = Text::Tradition::Parser::TEI::_get_sigla( $obj );
415is( join( ' ', @wits) , "A B C D", "correctly parsed reading wit string" );
416
417=end testing
418
419=cut
420
910a0a6d 421# Helper to extract a list of witness sigla from a reading element.
3b853983 422sub _get_sigla {
f6066bac 423 my( $rdg ) = @_;
424 # Cope if we have been handed a NodeList. There is only
425 # one reading here.
426 if( ref( $rdg ) eq 'XML::LibXML::NodeList' ) {
910a0a6d 427 $rdg = $rdg->shift;
f6066bac 428 }
429
430 my @wits;
431 if( ref( $rdg ) eq 'XML::LibXML::Element' ) {
910a0a6d 432 my $witstr = $rdg->getAttribute( 'wit' );
a7fb3133 433 return () unless $witstr;
910a0a6d 434 $witstr =~ s/^\s+//;
435 $witstr =~ s/\s+$//;
436 @wits = split( /\s+/, $witstr );
437 map { $_ =~ s/^\#// } @wits;
f6066bac 438 }
439 return @wits;
440}
441
910a0a6d 442# Helper with its counters to actually make the readings.
f2b9605f 443{
444 my $word_ctr = 0;
445 my %used_nodeids;
446
3b853983 447 sub _save_preexisting_nodeids {
910a0a6d 448 foreach( @_ ) {
449 $used_nodeids{$_->getValue()} = 1;
450 }
451 }
452
3b853983 453 sub _make_reading {
910a0a6d 454 my( $graph, $word, $xml_id ) = @_;
455 if( $xml_id ) {
456 if( exists $used_nodeids{$xml_id} ) {
457 if( $used_nodeids{$xml_id} != 1 ) {
458 warn "Already used assigned XML ID somewhere else!";
459 $xml_id = undef;
460 }
461 } else {
462 warn "Undetected pre-existing XML ID";
463 }
464 }
465 if( !$xml_id ) {
466 until( $xml_id ) {
467 my $try_id = 'w'.$word_ctr++;
468 next if exists $used_nodeids{$try_id};
469 $xml_id = $try_id;
470 }
471 }
e4b0f464 472 my $rdg = $graph->add_reading(
49d4f2ac 473 { 'id' => $xml_id,
e4b0f464 474 'text' => $word }
475 );
910a0a6d 476 $used_nodeids{$xml_id} = $rdg;
477 return $rdg;
f2b9605f 478 }
479}
480
f6066bac 4811;
3b853983 482
483=head1 BUGS / TODO
484
485=over
486
487=item * More unit testing
488
e867486f 489=item * Handle special designations apart from a.c.
490
491=item * Mark common nodes within collated variants
492
3b853983 493=back
494
495=head1 LICENSE
496
497This package is free software and is provided "as is" without express
498or implied warranty. You can redistribute it and/or modify it under
499the same terms as Perl itself.
500
501=head1 AUTHOR
502
503Tara L Andrews E<lt>aurum@cpan.orgE<gt>