Merge branch 'master' into phylo
[scpubgit/stemmatology.git] / lib / Text / Tradition / Collation.pm
CommitLineData
dd3b58b0 1package Text::Tradition::Collation;
d047cd52 2
6771a1b1 3use feature 'say';
910a0a6d 4use Encode qw( decode_utf8 );
5use File::Temp;
bfcbcecb 6use File::Which;
c9bf3dbf 7use Graph;
8e1394aa 8use IPC::Run qw( run binary );
82fa4d57 9use Text::CSV;
5c0072ef 10use Text::Tradition::Collation::Data;
b15511bf 11use Text::Tradition::Collation::Reading;
22222af9 12use Text::Tradition::Collation::RelationshipStore;
63778331 13use Text::Tradition::Error;
cc31ebaa 14use XML::Easy::Syntax qw( $xml10_namestartchar_rx $xml10_namechar_rx );
5c0072ef 15use XML::LibXML;
16use XML::LibXML::XPathContext;
dd3b58b0 17use Moose;
18
5c0072ef 19has _data => (
20 isa => 'Text::Tradition::Collation::Data',
21 is => 'ro',
22 required => 1,
23 handles => [ qw(
24 sequence
25 paths
26 _set_relations
27 relations
28 _set_start
29 _set_end
30 ac_label
31 has_cached_table
32 relationships
33 related_readings
34 get_relationship
35 del_relationship
36 equivalence
37 equivalence_graph
38 readings
39 reading
40 _add_reading
41 del_reading
42 has_reading
43 wit_list_separator
44 baselabel
45 linear
46 wordsep
47 start
48 end
49 cached_table
50 _graphcalc_done
51 has_cached_svg
52 wipe_table
53 )]
54);
dd3b58b0 55
3a2ebbf4 56has 'tradition' => (
57 is => 'ro',
d047cd52 58 isa => 'Text::Tradition',
8cfd99c4 59 writer => '_set_tradition',
8d9a1cd8 60 weak_ref => 1,
d047cd52 61 );
dd3b58b0 62
4e5a7b2c 63=head1 NAME
64
65Text::Tradition::Collation - a software model for a text collation
66
67=head1 SYNOPSIS
68
69 use Text::Tradition;
70 my $t = Text::Tradition->new(
71 'name' => 'this is a text',
72 'input' => 'TEI',
73 'file' => '/path/to/tei_parallel_seg_file.xml' );
74
75 my $c = $t->collation;
76 my @readings = $c->readings;
77 my @paths = $c->paths;
78 my @relationships = $c->relationships;
79
80 my $svg_variant_graph = $t->collation->as_svg();
81
82=head1 DESCRIPTION
83
84Text::Tradition is a library for representation and analysis of collated
85texts, particularly medieval ones. The Collation is the central feature of
86a Tradition, where the text, its sequence of readings, and its relationships
87between readings are actually kept.
88
89=head1 CONSTRUCTOR
90
91=head2 new
92
93The constructor. Takes a hash or hashref of the following arguments:
94
95=over
96
97=item * tradition - The Text::Tradition object to which the collation
98belongs. Required.
99
100=item * linear - Whether the collation should be linear; that is, whether
101transposed readings should be treated as two linked readings rather than one,
102and therefore whether the collation graph is acyclic. Defaults to true.
103
4e5a7b2c 104=item * baselabel - The default label for the path taken by a base text
105(if any). Defaults to 'base text'.
106
107=item * wit_list_separator - The string to join a list of witnesses for
108purposes of making labels in display graphs. Defaults to ', '.
109
110=item * ac_label - The extra label to tack onto a witness sigil when
111representing another layer of path for the given witness - that is, when
112a text has more than one possible reading due to scribal corrections or
113the like. Defaults to ' (a.c.)'.
114
4e483aa5 115=item * wordsep - The string used to separate words in the original text.
116Defaults to ' '.
117
4e5a7b2c 118=back
119
120=head1 ACCESSORS
121
122=head2 tradition
123
124=head2 linear
125
4e5a7b2c 126=head2 wit_list_separator
127
128=head2 baselabel
129
130=head2 ac_label
131
4e483aa5 132=head2 wordsep
133
4e5a7b2c 134Simple accessors for collation attributes.
135
136=head2 start
137
138The meta-reading at the start of every witness path.
139
140=head2 end
141
142The meta-reading at the end of every witness path.
143
144=head2 readings
145
146Returns all Reading objects in the graph.
147
148=head2 reading( $id )
149
150Returns the Reading object corresponding to the given ID.
151
152=head2 add_reading( $reading_args )
153
154Adds a new reading object to the collation.
155See L<Text::Tradition::Collation::Reading> for the available arguments.
156
157=head2 del_reading( $object_or_id )
158
159Removes the given reading from the collation, implicitly removing its
160paths and relationships.
161
4e483aa5 162=head2 merge_readings( $main, $second, $concatenate, $with_str )
163
164Merges the $second reading into the $main one. If $concatenate is true, then
165the merged node will carry the text of both readings, concatenated with either
166$with_str (if specified) or a sensible default (the empty string if the
167appropriate 'join_*' flag is set on either reading, or else $self->wordsep.)
4e5a7b2c 168
4e483aa5 169The first two arguments may be either readings or reading IDs.
4e5a7b2c 170
171=head2 has_reading( $id )
172
173Predicate to see whether a given reading ID is in the graph.
174
175=head2 reading_witnesses( $object_or_id )
176
177Returns a list of sigils whose witnesses contain the reading.
178
179=head2 paths
180
181Returns all reading paths within the document - that is, all edges in the
182collation graph. Each path is an arrayref of [ $source, $target ] reading IDs.
183
184=head2 add_path( $source, $target, $sigil )
185
186Links the given readings in the collation in sequence, under the given witness
187sigil. The readings may be specified by object or ID.
188
189=head2 del_path( $source, $target, $sigil )
190
191Links the given readings in the collation in sequence, under the given witness
192sigil. The readings may be specified by object or ID.
193
194=head2 has_path( $source, $target );
195
196Returns true if the two readings are linked in sequence in any witness.
197The readings may be specified by object or ID.
198
199=head2 relationships
200
201Returns all Relationship objects in the collation.
202
203=head2 add_relationship( $reading, $other_reading, $options )
204
205Adds a new relationship of the type given in $options between the two readings,
206which may be specified by object or ID. Returns a value of ( $status, @vectors)
207where $status is true on success, and @vectors is a list of relationship edges
208that were ultimately added.
209See L<Text::Tradition::Collation::Relationship> for the available options.
210
211=cut
dd3b58b0 212
5c0072ef 213sub BUILDARGS {
214 my ( $class, @args ) = @_;
215 my %args = @args == 1 ? %{ $args[0] } : @args;
216 # TODO determine these from the Moose::Meta object
217 my @delegate_attrs = qw(sequence relations readings wit_list_separator baselabel
218 linear wordsep start end cached_table _graphcalc_done);
219 my %data_args;
220 for my $attr (@delegate_attrs) {
221 $data_args{$attr} = delete $args{$attr} if exists $args{$attr};
222 }
223 $args{_data} = Text::Tradition::Collation::Data->new(%data_args);
224 return \%args;
225}
226
d047cd52 227sub BUILD {
3a2ebbf4 228 my $self = shift;
22222af9 229 $self->_set_relations( Text::Tradition::Collation::RelationshipStore->new( 'collation' => $self ) );
e4b73942 230 $self->_set_start( $self->add_reading(
231 { 'collation' => $self, 'is_start' => 1, 'init' => 1 } ) );
232 $self->_set_end( $self->add_reading(
233 { 'collation' => $self, 'is_end' => 1, 'init' => 1 } ) );
d047cd52 234}
784877d9 235
3a2ebbf4 236### Reading construct/destruct functions
237
238sub add_reading {
239 my( $self, $reading ) = @_;
240 unless( ref( $reading ) eq 'Text::Tradition::Collation::Reading' ) {
241 my %args = %$reading;
e4b73942 242 if( $args{'init'} ) {
243 # If we are initializing an empty collation, don't assume that we
244 # have set a tradition.
245 delete $args{'init'};
246 } elsif( $self->tradition->has_language && !exists $args{'language'} ) {
6ad2ce78 247 $args{'language'} = $self->tradition->language;
248 }
3a2ebbf4 249 $reading = Text::Tradition::Collation::Reading->new(
250 'collation' => $self,
251 %args );
252 }
253 # First check to see if a reading with this ID exists.
254 if( $self->reading( $reading->id ) ) {
63778331 255 throw( "Collation already has a reading with id " . $reading->id );
3a2ebbf4 256 }
c1915ab9 257 $self->_graphcalc_done(0);
3a2ebbf4 258 $self->_add_reading( $reading->id => $reading );
259 # Once the reading has been added, put it in both graphs.
260 $self->sequence->add_vertex( $reading->id );
cecbe56d 261 $self->relations->add_reading( $reading->id );
3a2ebbf4 262 return $reading;
eca16057 263};
264
3a2ebbf4 265around del_reading => sub {
266 my $orig = shift;
267 my $self = shift;
268 my $arg = shift;
269
cecbe56d 270 if( ref( $arg ) eq 'Text::Tradition::Collation::Reading' ) {
271 $arg = $arg->id;
3a2ebbf4 272 }
3a2ebbf4 273 # Remove the reading from the graphs.
c1915ab9 274 $self->_graphcalc_done(0);
4e483aa5 275 $self->_clear_cache; # Explicitly clear caches to GC the reading
cecbe56d 276 $self->sequence->delete_vertex( $arg );
277 $self->relations->delete_reading( $arg );
3a2ebbf4 278
279 # Carry on.
cecbe56d 280 $self->$orig( $arg );
3a2ebbf4 281};
7854e12e 282
4e483aa5 283=begin testing
284
285use Text::Tradition;
286
287my $cxfile = 't/data/Collatex-16.xml';
288my $t = Text::Tradition->new(
289 'name' => 'inline',
290 'input' => 'CollateX',
291 'file' => $cxfile,
292 );
293my $c = $t->collation;
294
295my $rno = scalar $c->readings;
296# Split n21 for testing purposes
297my $new_r = $c->add_reading( { 'id' => 'n21p0', 'text' => 'un', 'join_next' => 1 } );
298my $old_r = $c->reading( 'n21' );
299$old_r->alter_text( 'to' );
300$c->del_path( 'n20', 'n21', 'A' );
301$c->add_path( 'n20', 'n21p0', 'A' );
302$c->add_path( 'n21p0', 'n21', 'A' );
303$c->flatten_ranks();
304ok( $c->reading( 'n21p0' ), "New reading exists" );
305is( scalar $c->readings, $rno, "Reading add offset by flatten_ranks" );
306
679f17e1 307# Combine n3 and n4 ( with his )
4e483aa5 308$c->merge_readings( 'n3', 'n4', 1 );
309ok( !$c->reading('n4'), "Reading n4 is gone" );
310is( $c->reading('n3')->text, 'with his', "Reading n3 has both words" );
311
679f17e1 312# Collapse n9 and n10 ( rood / root )
313$c->merge_readings( 'n9', 'n10' );
314ok( !$c->reading('n10'), "Reading n10 is gone" );
315is( $c->reading('n9')->text, 'rood', "Reading n9 has an unchanged word" );
4e483aa5 316
317# Combine n21 and n21p0
318my $remaining = $c->reading('n21');
319$remaining ||= $c->reading('n22'); # one of these should still exist
320$c->merge_readings( 'n21p0', $remaining, 1 );
321ok( !$c->reading('n21'), "Reading $remaining is gone" );
322is( $c->reading('n21p0')->text, 'unto', "Reading n21p0 merged correctly" );
323
324=end testing
325
326=cut
7854e12e 327
3a2ebbf4 328sub merge_readings {
329 my $self = shift;
330
56772e8c 331 # Sanity check
332 my( $kept_obj, $del_obj, $combine, $combine_char ) = $self->_objectify_args( @_ );
333 my $mergemeta = $kept_obj->is_meta;
334 throw( "Cannot merge meta and non-meta reading" )
335 unless ( $mergemeta && $del_obj->is_meta )
336 || ( !$mergemeta && !$del_obj->is_meta );
337 if( $mergemeta ) {
338 throw( "Cannot merge with start or end node" )
339 if( $kept_obj eq $self->start || $kept_obj eq $self->end
340 || $del_obj eq $self->start || $del_obj eq $self->end );
341 }
3a2ebbf4 342 # We only need the IDs for adding paths to the graph, not the reading
343 # objects themselves.
56772e8c 344 my $kept = $kept_obj->id;
345 my $deleted = $del_obj->id;
c1915ab9 346 $self->_graphcalc_done(0);
10943ab0 347
3a2ebbf4 348 # The kept reading should inherit the paths and the relationships
349 # of the deleted reading.
350 foreach my $path ( $self->sequence->edges_at( $deleted ) ) {
351 my @vector = ( $kept );
352 push( @vector, $path->[1] ) if $path->[0] eq $deleted;
353 unshift( @vector, $path->[0] ) if $path->[1] eq $deleted;
49d4f2ac 354 next if $vector[0] eq $vector[1]; # Don't add a self loop
3a2ebbf4 355 my %wits = %{$self->sequence->get_edge_attributes( @$path )};
356 $self->sequence->add_edge( @vector );
357 my $fwits = $self->sequence->get_edge_attributes( @vector );
358 @wits{keys %$fwits} = values %$fwits;
359 $self->sequence->set_edge_attributes( @vector, \%wits );
360 }
cecbe56d 361 $self->relations->merge_readings( $kept, $deleted, $combine );
3a2ebbf4 362
363 # Do the deletion deed.
4e483aa5 364 if( $combine ) {
869a1ada 365 # Combine the text of the readings
4e483aa5 366 my $joinstr = $combine_char;
367 unless( defined $joinstr ) {
368 $joinstr = '' if $kept_obj->join_next || $del_obj->join_prior;
369 $joinstr = $self->wordsep unless defined $joinstr;
370 }
371 $kept_obj->alter_text( join( $joinstr, $kept_obj->text, $del_obj->text ) );
339786dd 372 # Change this reading to a joining one if necessary
373 $kept_obj->_set_join_next( $del_obj->join_next );
869a1ada 374 $kept_obj->normal_form(
375 join( $joinstr, $kept_obj->normal_form, $del_obj->normal_form ) );
376 # Combine the lexemes present in the readings
377 if( $kept_obj->has_lexemes && $del_obj->has_lexemes ) {
378 $kept_obj->add_lexeme( $del_obj->lexemes );
379 }
49d4f2ac 380 }
3a2ebbf4 381 $self->del_reading( $deleted );
382}
7854e12e 383
6771a1b1 384=head2 compress_readings
385
386Where possible in the graph, compresses plain sequences of readings into a
387single reading. The sequences must consist of readings with no
388relationships to other readings, with only a single witness path between
389them and no other witness paths from either that would skip the other. The
390readings must also not be marked as nonsense or bad grammar.
391
392WARNING: This operation cannot be undone.
393
394=cut
395
396sub compress_readings {
397 my $self = shift;
398 # Anywhere in the graph that there is a reading that joins only to a single
399 # successor, and neither of these have any relationships, just join the two
400 # readings.
401 my %gobbled;
402 foreach my $rdg ( sort { $a->rank <=> $b->rank } $self->readings ) {
428bcf0b 403 # While we are here, get rid of any extra wordforms from a disambiguated
404 # reading.
405 if( $rdg->disambiguated ) {
406 foreach my $lex ( $rdg->lexemes ) {
407 $lex->clear_matching_forms();
408 $lex->add_matching_form( $lex->form );
409 }
410 }
411 # Now look for readings that can be joined to their successors.
6771a1b1 412 next if $rdg->is_meta;
413 next if $gobbled{$rdg->id};
414 next if $rdg->grammar_invalid || $rdg->is_nonsense;
415 next if $rdg->related_readings();
416 my %seen;
417 while( $self->sequence->successors( $rdg ) == 1 ) {
418 my( $next ) = $self->reading( $self->sequence->successors( $rdg ) );
419 throw( "Infinite loop" ) if $seen{$next->id};
420 $seen{$next->id} = 1;
421 last if $self->sequence->predecessors( $next ) > 1;
422 last if $next->is_meta;
423 last if $next->grammar_invalid || $next->is_nonsense;
424 last if $next->related_readings();
425 say "Joining readings $rdg and $next";
426 $self->merge_readings( $rdg, $next, 1 );
427 }
428 }
429 # Make sure we haven't screwed anything up
430 foreach my $wit ( $self->tradition->witnesses ) {
431 my $pathtext = $self->path_text( $wit->sigil );
432 my $origtext = join( ' ', @{$wit->text} );
433 throw( "Text differs for witness " . $wit->sigil )
434 unless $pathtext eq $origtext;
435 if( $wit->is_layered ) {
436 $pathtext = $self->path_text( $wit->sigil.$self->ac_label );
437 $origtext = join( ' ', @{$wit->layertext} );
438 throw( "Ante-corr text differs for witness " . $wit->sigil )
439 unless $pathtext eq $origtext;
440 }
441 }
442
443 $self->relations->rebuild_equivalence();
444 $self->calculate_ranks();
445}
3265b0ce 446
3a2ebbf4 447# Helper function for manipulating the graph.
448sub _stringify_args {
4e483aa5 449 my( $self, $first, $second, @args ) = @_;
3a2ebbf4 450 $first = $first->id
451 if ref( $first ) eq 'Text::Tradition::Collation::Reading';
452 $second = $second->id
453 if ref( $second ) eq 'Text::Tradition::Collation::Reading';
4e483aa5 454 return( $first, $second, @args );
3a2ebbf4 455}
df6d9812 456
4e5a7b2c 457# Helper function for manipulating the graph.
458sub _objectify_args {
459 my( $self, $first, $second, $arg ) = @_;
460 $first = $self->reading( $first )
461 unless ref( $first ) eq 'Text::Tradition::Collation::Reading';
462 $second = $self->reading( $second )
463 unless ref( $second ) eq 'Text::Tradition::Collation::Reading';
464 return( $first, $second, $arg );
465}
3a2ebbf4 466### Path logic
467
468sub add_path {
469 my $self = shift;
470
471 # We only need the IDs for adding paths to the graph, not the reading
472 # objects themselves.
cecbe56d 473 my( $source, $target, $wit ) = $self->_stringify_args( @_ );
3a2ebbf4 474
c1915ab9 475 $self->_graphcalc_done(0);
3a2ebbf4 476 # Connect the readings
359944f7 477 unless( $self->sequence->has_edge( $source, $target ) ) {
478 $self->sequence->add_edge( $source, $target );
479 $self->relations->add_equivalence_edge( $source, $target );
480 }
3a2ebbf4 481 # Note the witness in question
482 $self->sequence->set_edge_attribute( $source, $target, $wit, 1 );
359944f7 483}
b15511bf 484
3a2ebbf4 485sub del_path {
486 my $self = shift;
49d4f2ac 487 my @args;
488 if( ref( $_[0] ) eq 'ARRAY' ) {
489 my $e = shift @_;
490 @args = ( @$e, @_ );
491 } else {
492 @args = @_;
493 }
3a2ebbf4 494
495 # We only need the IDs for adding paths to the graph, not the reading
496 # objects themselves.
49d4f2ac 497 my( $source, $target, $wit ) = $self->_stringify_args( @args );
3a2ebbf4 498
c1915ab9 499 $self->_graphcalc_done(0);
3a2ebbf4 500 if( $self->sequence->has_edge_attribute( $source, $target, $wit ) ) {
49d4f2ac 501 $self->sequence->delete_edge_attribute( $source, $target, $wit );
3a2ebbf4 502 }
503 unless( keys %{$self->sequence->get_edge_attributes( $source, $target )} ) {
504 $self->sequence->delete_edge( $source, $target );
359944f7 505 $self->relations->delete_equivalence_edge( $source, $target );
3a2ebbf4 506 }
784877d9 507}
508
3a2ebbf4 509
15d2d3df 510# Extra graph-alike utility
511sub has_path {
3a2ebbf4 512 my $self = shift;
513 my( $source, $target, $wit ) = $self->_stringify_args( @_ );
514 return undef unless $self->sequence->has_edge( $source, $target );
515 return $self->sequence->has_edge_attribute( $source, $target, $wit );
b15511bf 516}
517
4e5a7b2c 518=head2 clear_witness( @sigil_list )
3a2ebbf4 519
4e5a7b2c 520Clear the given witnesses out of the collation entirely, removing references
521to them in paths, and removing readings that belong only to them. Should only
522be called via $tradition->del_witness.
3a2ebbf4 523
524=cut
525
4e5a7b2c 526sub clear_witness {
527 my( $self, @sigils ) = @_;
528
c1915ab9 529 $self->_graphcalc_done(0);
4e5a7b2c 530 # Clear the witness(es) out of the paths
531 foreach my $e ( $self->paths ) {
532 foreach my $sig ( @sigils ) {
533 $self->del_path( $e, $sig );
534 }
535 }
536
537 # Clear out the newly unused readings
538 foreach my $r ( $self->readings ) {
539 unless( $self->reading_witnesses( $r ) ) {
540 $self->del_reading( $r );
541 }
542 }
543}
3a2ebbf4 544
545sub add_relationship {
546 my $self = shift;
22222af9 547 my( $source, $target, $opts ) = $self->_stringify_args( @_ );
414cc046 548 my( @vectors ) = $self->relations->add_relationship( $source, $target, $opts );
c1915ab9 549 $self->_graphcalc_done(0);
63778331 550 return @vectors;
22222af9 551}
ef9d481f 552
ca6e6095 553around qw/ get_relationship del_relationship / => sub {
554 my $orig = shift;
555 my $self = shift;
556 my @args = @_;
557 if( @args == 1 && ref( $args[0] ) eq 'ARRAY' ) {
558 @args = @{$_[0]};
559 }
560 my( $source, $target ) = $self->_stringify_args( @args );
561 $self->$orig( $source, $target );
562};
563
22222af9 564=head2 reading_witnesses( $reading )
910a0a6d 565
22222af9 566Return a list of sigils corresponding to the witnesses in which the reading appears.
3265b0ce 567
22222af9 568=cut
1d310495 569
1d310495 570sub reading_witnesses {
571 my( $self, $reading ) = @_;
572 # We need only check either the incoming or the outgoing edges; I have
96dc90ec 573 # arbitrarily chosen "incoming". Thus, special-case the start node.
574 if( $reading eq $self->start ) {
575 return map { $_->sigil } $self->tradition->witnesses;
576 }
1d310495 577 my %all_witnesses;
578 foreach my $e ( $self->sequence->edges_to( $reading ) ) {
579 my $wits = $self->sequence->get_edge_attributes( @$e );
580 @all_witnesses{ keys %$wits } = 1;
581 }
c12bb878 582 my $acstr = $self->ac_label;
583 foreach my $acwit ( grep { $_ =~ s/^(.*)\Q$acstr\E$/$1/ } keys %all_witnesses ) {
584 delete $all_witnesses{$acwit.$acstr} if exists $all_witnesses{$acwit};
585 }
1d310495 586 return keys %all_witnesses;
910a0a6d 587}
588
4e5a7b2c 589=head1 OUTPUT METHODS
8e1394aa 590
0ecb975c 591=head2 as_svg( \%options )
8e1394aa 592
0068967c 593Returns an SVG string that represents the graph, via as_dot and graphviz.
bfcbcecb 594See as_dot for a list of options. Must have GraphViz (dot) installed to run.
8e1394aa 595
596=cut
597
598sub as_svg {
0ecb975c 599 my( $self, $opts ) = @_;
bfcbcecb 600 throw( "Need GraphViz installed to output SVG" )
601 unless File::Which::which( 'dot' );
e247aad1 602 my $want_subgraph = exists $opts->{'from'} || exists $opts->{'to'};
1ff82d4f 603 $self->calculate_ranks()
604 unless( $self->_graphcalc_done || $opts->{'nocalc'} || !$self->linear );
be3af600 605 my @cmd = qw/dot -Tsvg/;
606 my( $svg, $err );
607 my $dotfile = File::Temp->new();
608 ## USE FOR DEBUGGING
609 # $dotfile->unlink_on_destroy(0);
610 binmode $dotfile, ':utf8';
611 print $dotfile $self->as_dot( $opts );
612 push( @cmd, $dotfile->filename );
613 run( \@cmd, ">", binary(), \$svg );
614 $svg = decode_utf8( $svg );
615 return $svg;
8e1394aa 616}
617
b22576c6 618
0ecb975c 619=head2 as_dot( \%options )
b22576c6 620
0ecb975c 621Returns a string that is the collation graph expressed in dot
622(i.e. GraphViz) format. Options include:
b22576c6 623
0ecb975c 624=over 4
b22576c6 625
0ecb975c 626=item * from
b22576c6 627
0ecb975c 628=item * to
df6d9812 629
0ecb975c 630=item * color_common
631
632=back
df6d9812 633
634=cut
635
636sub as_dot {
0ecb975c 637 my( $self, $opts ) = @_;
638 my $startrank = $opts->{'from'} if $opts;
639 my $endrank = $opts->{'to'} if $opts;
640 my $color_common = $opts->{'color_common'} if $opts;
b365fbae 641 my $STRAIGHTENHACK = !$startrank && !$endrank && $self->end->rank
642 && $self->end->rank > 100;
6648ee3d 643 $STRAIGHTENHACK = 1 if $opts->{'straight'}; # even for subgraphs or small graphs
b365fbae 644
b22576c6 645 # Check the arguments
646 if( $startrank ) {
647 return if $endrank && $startrank > $endrank;
648 return if $startrank > $self->end->rank;
649 }
650 if( defined $endrank ) {
651 return if $endrank < 0;
f1b3b33a 652 $endrank = undef if $endrank == $self->end->rank;
b22576c6 653 }
654
67da8d6c 655 my $graph_name = $self->tradition->name;
656 $graph_name =~ s/[^\w\s]//g;
657 $graph_name = join( '_', split( /\s+/, $graph_name ) );
f13b5582 658
659 my %graph_attrs = (
660 'rankdir' => 'LR',
661 'bgcolor' => 'none',
662 );
663 my %node_attrs = (
b8990398 664 'fontsize' => 14,
f13b5582 665 'fillcolor' => 'white',
666 'style' => 'filled',
667 'shape' => 'ellipse'
668 );
669 my %edge_attrs = (
670 'arrowhead' => 'open',
671 'color' => '#000000',
672 'fontcolor' => '#000000',
673 );
674
67da8d6c 675 my $dot = sprintf( "digraph %s {\n", $graph_name );
f13b5582 676 $dot .= "\tgraph " . _dot_attr_string( \%graph_attrs ) . ";\n";
677 $dot .= "\tnode " . _dot_attr_string( \%node_attrs ) . ";\n";
df6d9812 678
b22576c6 679 # Output substitute start/end readings if necessary
680 if( $startrank ) {
43c94341 681 $dot .= "\t\"__SUBSTART__\" [ label=\"...\",id=\"__START__\" ];\n";
b22576c6 682 }
683 if( $endrank ) {
43c94341 684 $dot .= "\t\"__SUBEND__\" [ label=\"...\",id=\"__END__\" ];\n";
b22576c6 685 }
b365fbae 686 if( $STRAIGHTENHACK ) {
687 ## HACK part 1
43c94341 688 my $startlabel = $startrank ? '__SUBSTART__' : '__START__';
689 $dot .= "\tsubgraph { rank=same \"$startlabel\" \"#SILENT#\" }\n";
b365fbae 690 $dot .= "\t\"#SILENT#\" [ shape=diamond,color=white,penwidth=0,label=\"\" ];"
691 }
b22576c6 692 my %used; # Keep track of the readings that actually appear in the graph
30ddc24c 693 # Sort the readings by rank if we have ranks; this speeds layout.
694 my @all_readings = $self->end->has_rank
695 ? sort { $a->rank <=> $b->rank } $self->readings
696 : $self->readings;
4633f9e4 697 # TODO Refrain from outputting lacuna nodes - just grey out the edges.
30ddc24c 698 foreach my $reading ( @all_readings ) {
b22576c6 699 # Only output readings within our rank range.
700 next if $startrank && $reading->rank < $startrank;
701 next if $endrank && $reading->rank > $endrank;
702 $used{$reading->id} = 1;
910a0a6d 703 # Need not output nodes without separate labels
3a2ebbf4 704 next if $reading->id eq $reading->text;
d4b75f44 705 my $rattrs;
30f0df34 706 my $label = $reading->text;
629e27b0 707 $label .= '-' if $reading->join_next;
708 $label = "-$label" if $reading->join_prior;
8f9cab7b 709 $label =~ s/\"/\\\"/g;
d4b75f44 710 $rattrs->{'label'} = $label;
10e4b1ac 711 $rattrs->{'id'} = $reading->id;
0ecb975c 712 $rattrs->{'fillcolor'} = '#b3f36d' if $reading->is_common && $color_common;
d4b75f44 713 $dot .= sprintf( "\t\"%s\" %s;\n", $reading->id, _dot_attr_string( $rattrs ) );
df6d9812 714 }
3a2ebbf4 715
30ddc24c 716 # Add the real edges. Need to weight one edge per rank jump, in a
717 # continuous line.
b365fbae 718 # my $weighted = $self->_add_edge_weights;
b22576c6 719 my @edges = $self->paths;
3bdec618 720 my( %substart, %subend );
b22576c6 721 foreach my $edge ( @edges ) {
722 # Do we need to output this edge?
508fd430 723 if( $used{$edge->[0]} && $used{$edge->[1]} ) {
027d819c 724 my $label = $self->_path_display_label( $self->path_witnesses( $edge ) );
f13b5582 725 my $variables = { %edge_attrs, 'label' => $label };
30ddc24c 726
b22576c6 727 # Account for the rank gap if necessary
30ddc24c 728 my $rank0 = $self->reading( $edge->[0] )->rank
729 if $self->reading( $edge->[0] )->has_rank;
730 my $rank1 = $self->reading( $edge->[1] )->rank
731 if $self->reading( $edge->[1] )->has_rank;
732 if( defined $rank0 && defined $rank1 && $rank1 - $rank0 > 1 ) {
733 $variables->{'minlen'} = $rank1 - $rank0;
734 }
735
736 # Add the calculated edge weights
b365fbae 737 # if( exists $weighted->{$edge->[0]}
e247aad1 738 # && $weighted->{$edge->[0]} eq $edge->[1] ) {
739 # # $variables->{'color'} = 'red';
740 # $variables->{'weight'} = 3.0;
741 # }
30ddc24c 742
508fd430 743 # EXPERIMENTAL: make edge width reflect no. of witnesses
744 my $extrawidth = scalar( $self->path_witnesses( $edge ) ) * 0.2;
745 $variables->{'penwidth'} = $extrawidth + 0.8; # gives 1 for a single wit
746
f13b5582 747 my $varopts = _dot_attr_string( $variables );
748 $dot .= sprintf( "\t\"%s\" -> \"%s\" %s;\n",
749 $edge->[0], $edge->[1], $varopts );
3bdec618 750 } elsif( $used{$edge->[0]} ) {
96ba0418 751 $subend{$edge->[0]} = $edge->[1];
3bdec618 752 } elsif( $used{$edge->[1]} ) {
96ba0418 753 $substart{$edge->[1]} = $edge->[0];
b22576c6 754 }
df6d9812 755 }
3bdec618 756 # Add substitute start and end edges if necessary
757 foreach my $node ( keys %substart ) {
96ba0418 758 my $witstr = $self->_path_display_label ( $self->path_witnesses( $substart{$node}, $node ) );
f13b5582 759 my $variables = { %edge_attrs, 'label' => $witstr };
96ba0418 760 my $nrdg = $self->reading( $node );
761 if( $nrdg->has_rank && $nrdg->rank > $startrank ) {
762 # Substart is actually one lower than $startrank
763 $variables->{'minlen'} = $nrdg->rank - ( $startrank - 1 );
764 }
f13b5582 765 my $varopts = _dot_attr_string( $variables );
96ba0418 766 $dot .= "\t\"__SUBSTART__\" -> \"$node\" $varopts;\n";
3bdec618 767 }
768 foreach my $node ( keys %subend ) {
96ba0418 769 my $witstr = $self->_path_display_label ( $self->path_witnesses( $node, $subend{$node} ) );
f13b5582 770 my $variables = { %edge_attrs, 'label' => $witstr };
771 my $varopts = _dot_attr_string( $variables );
96ba0418 772 $dot .= "\t\"$node\" -> \"__SUBEND__\" $varopts;\n";
3bdec618 773 }
b365fbae 774 # HACK part 2
775 if( $STRAIGHTENHACK ) {
43c94341 776 my $endlabel = $endrank ? '__SUBEND__' : '__END__';
777 $dot .= "\t\"$endlabel\" -> \"#SILENT#\" [ color=white,penwidth=0 ];\n";
b365fbae 778 }
30ddc24c 779
df6d9812 780 $dot .= "}\n";
781 return $dot;
782}
783
f13b5582 784sub _dot_attr_string {
785 my( $hash ) = @_;
786 my @attrs;
787 foreach my $k ( sort keys %$hash ) {
788 my $v = $hash->{$k};
789 push( @attrs, $k.'="'.$v.'"' );
790 }
791 return( '[ ' . join( ', ', @attrs ) . ' ]' );
792}
793
30ddc24c 794sub _add_edge_weights {
795 my $self = shift;
796 # Walk the graph from START to END, choosing the successor node with
797 # the largest number of witness paths each time.
798 my $weighted = {};
799 my $curr = $self->start->id;
008fc8a6 800 my $ranked = $self->end->has_rank;
30ddc24c 801 while( $curr ne $self->end->id ) {
008fc8a6 802 my $rank = $ranked ? $self->reading( $curr )->rank : 0;
30ddc24c 803 my @succ = sort { $self->path_witnesses( $curr, $a )
804 <=> $self->path_witnesses( $curr, $b ) }
805 $self->sequence->successors( $curr );
806 my $next = pop @succ;
008fc8a6 807 my $nextrank = $ranked ? $self->reading( $next )->rank : 0;
30ddc24c 808 # Try to avoid lacunae in the weighted path.
008fc8a6 809 while( @succ &&
810 ( $self->reading( $next )->is_lacuna ||
811 $nextrank - $rank > 1 ) ){
30ddc24c 812 $next = pop @succ;
813 }
814 $weighted->{$curr} = $next;
815 $curr = $next;
816 }
817 return $weighted;
818}
819
027d819c 820=head2 path_witnesses( $edge )
821
822Returns the list of sigils whose witnesses are associated with the given edge.
823The edge can be passed as either an array or an arrayref of ( $source, $target ).
824
825=cut
826
3a2ebbf4 827sub path_witnesses {
828 my( $self, @edge ) = @_;
829 # If edge is an arrayref, cope.
830 if( @edge == 1 && ref( $edge[0] ) eq 'ARRAY' ) {
831 my $e = shift @edge;
832 @edge = @$e;
833 }
834 my @wits = keys %{$self->sequence->get_edge_attributes( @edge )};
508fd430 835 return @wits;
3a2ebbf4 836}
837
7f9f05e8 838# Helper function. Make a display label for the given witnesses, showing a.c.
839# witnesses only where the main witness is not also in the list.
027d819c 840sub _path_display_label {
508fd430 841 my $self = shift;
7f9f05e8 842 my %wits;
843 map { $wits{$_} = 1 } @_;
844
845 # If an a.c. wit is listed, remove it if the main wit is also listed.
846 # Otherwise keep it for explicit listing.
847 my $aclabel = $self->ac_label;
848 my @disp_ac;
849 foreach my $w ( sort keys %wits ) {
850 if( $w =~ /^(.*)\Q$aclabel\E$/ ) {
851 if( exists $wits{$1} ) {
852 delete $wits{$w};
853 } else {
854 push( @disp_ac, $w );
855 }
856 }
857 }
858
859 # See if we are in a majority situation.
8f9cab7b 860 my $maj = scalar( $self->tradition->witnesses ) * 0.6;
1ff82d4f 861 $maj = $maj > 5 ? $maj : 5;
7f9f05e8 862 if( scalar keys %wits > $maj ) {
863 unshift( @disp_ac, 'majority' );
864 return join( ', ', @disp_ac );
8f9cab7b 865 } else {
7f9f05e8 866 return join( ', ', sort keys %wits );
8f9cab7b 867 }
868}
1dd07bda 869
bf6e338d 870=head2 readings_at_rank( $rank )
1dd07bda 871
bf6e338d 872Returns a list of readings at a given rank, taken from the alignment table.
1dd07bda 873
874=cut
875
bf6e338d 876sub readings_at_rank {
1dd07bda 877 my( $self, $rank ) = @_;
bf6e338d 878 my $table = $self->alignment_table;
879 # Table rank is real rank - 1.
880 my @elements = map { $_->{'tokens'}->[$rank-1] } @{$table->{'alignment'}};
881 my %readings;
882 foreach my $e ( @elements ) {
883 next unless ref( $e ) eq 'HASH';
884 next unless exists $e->{'t'};
885 $readings{$e->{'t'}->id} = $e->{'t'};
886 }
887 return values %readings;
1dd07bda 888}
8f9cab7b 889
4e5a7b2c 890=head2 as_graphml
8e1394aa 891
4e5a7b2c 892Returns a GraphML representation of the collation. The GraphML will contain
893two graphs. The first expresses the attributes of the readings and the witness
894paths that link them; the second expresses the relationships that link the
895readings. This is the native transfer format for a tradition.
8e1394aa 896
56eefa04 897=begin testing
898
899use Text::Tradition;
900
901my $READINGS = 311;
902my $PATHS = 361;
903
904my $datafile = 't/data/florilegium_tei_ps.xml';
905my $tradition = Text::Tradition->new( 'input' => 'TEI',
906 'name' => 'test0',
907 'file' => $datafile,
908 'linear' => 1 );
909
910ok( $tradition, "Got a tradition object" );
911is( scalar $tradition->witnesses, 13, "Found all witnesses" );
912ok( $tradition->collation, "Tradition has a collation" );
913
914my $c = $tradition->collation;
915is( scalar $c->readings, $READINGS, "Collation has all readings" );
916is( scalar $c->paths, $PATHS, "Collation has all paths" );
917is( scalar $c->relationships, 0, "Collation has all relationships" );
918
919# Add a few relationships
920$c->add_relationship( 'w123', 'w125', { 'type' => 'collated' } );
921$c->add_relationship( 'w193', 'w196', { 'type' => 'collated' } );
922$c->add_relationship( 'w257', 'w262', { 'type' => 'transposition' } );
923
924# Now write it to GraphML and parse it again.
925
926my $graphml = $c->as_graphml;
927my $st = Text::Tradition->new( 'input' => 'Self', 'string' => $graphml );
928is( scalar $st->collation->readings, $READINGS, "Reparsed collation has all readings" );
929is( scalar $st->collation->paths, $PATHS, "Reparsed collation has all paths" );
930is( scalar $st->collation->relationships, 3, "Reparsed collation has new relationships" );
931
9fef629b 932# Now add a stemma, write to GraphML, and look at the output.
2a812726 933my $stemma = $tradition->add_stemma( 'dotfile' => 't/data/florilegium.dot' );
934is( ref( $stemma ), 'Text::Tradition::Stemma', "Parsed dotfile into stemma" );
935is( $tradition->stemmata, 1, "Tradition now has the stemma" );
936$graphml = $c->as_graphml;
937like( $graphml, qr/digraph/, "Digraph declaration exists in GraphML" );
938
9fef629b 939# Now add a user, write to GraphML, and look at the output.
940unlike( $graphml, qr/testuser/, "Test user name does not exist in GraphML yet" );
941my $testuser = Text::Tradition::User->new(
942 id => 'testuser', password => 'testpass' );
943is( ref( $testuser ), 'Text::Tradition::User', "Created test user object" );
944$testuser->add_tradition( $tradition );
945is( $tradition->user->id, $testuser->id, "Tradition assigned to test user" );
946$graphml = $c->as_graphml;
947like( $graphml, qr/testuser/, "Test user name now exists in GraphML" );
948
56eefa04 949=end testing
950
8e1394aa 951=cut
952
953sub as_graphml {
a30ca502 954 my( $self, $options ) = @_;
3d14b48e 955 $self->calculate_ranks unless $self->_graphcalc_done;
956
a30ca502 957 my $start = $options->{'from'}
958 ? $self->reading( $options->{'from'} ) : $self->start;
959 my $end = $options->{'to'}
960 ? $self->reading( $options->{'to'} ) : $self->end;
961 if( $start->has_rank && $end->has_rank && $end->rank < $start->rank ) {
962 throw( 'Start node must be before end node' );
963 }
964 # The readings need to be ranked for this to work.
965 $start = $self->start unless $start->has_rank;
966 $end = $self->end unless $end->has_rank;
414cc046 967 my $rankoffset = 0;
968 unless( $start eq $self->start ) {
969 $rankoffset = $start->rank - 1;
970 }
a30ca502 971 my %use_readings;
972
8e1394aa 973 # Some namespaces
974 my $graphml_ns = 'http://graphml.graphdrawing.org/xmlns';
975 my $xsi_ns = 'http://www.w3.org/2001/XMLSchema-instance';
976 my $graphml_schema = 'http://graphml.graphdrawing.org/xmlns ' .
910a0a6d 977 'http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd';
8e1394aa 978
979 # Create the document and root node
428bcf0b 980 require XML::LibXML;
8e1394aa 981 my $graphml = XML::LibXML->createDocument( "1.0", "UTF-8" );
982 my $root = $graphml->createElementNS( $graphml_ns, 'graphml' );
983 $graphml->setDocumentElement( $root );
984 $root->setNamespace( $xsi_ns, 'xsi', 0 );
985 $root->setAttributeNS( $xsi_ns, 'schemaLocation', $graphml_schema );
bbd064a9 986
987 # List of attribute types to save on our objects and their corresponding
988 # GraphML types
989 my %save_types = (
990 'Str' => 'string',
991 'Int' => 'int',
992 'Bool' => 'boolean',
10e4b1ac 993 'ReadingID' => 'string',
bbd064a9 994 'RelationshipType' => 'string',
995 'RelationshipScope' => 'string',
996 );
997
bbd064a9 998 # Add the data keys for the graph. Include an extra key 'version' for the
999 # GraphML output version.
e309421a 1000 my %graph_data_keys;
1001 my $gdi = 0;
bbd064a9 1002 my %graph_attributes = ( 'version' => 'string' );
1003 # Graph attributes include those of Tradition and those of Collation.
1004 my %gattr_from;
1005 my $tmeta = $self->tradition->meta;
1006 my $cmeta = $self->meta;
1007 map { $gattr_from{$_->name} = 'Tradition' } $tmeta->get_all_attributes;
1008 map { $gattr_from{$_->name} = 'Collation' } $cmeta->get_all_attributes;
1009 foreach my $attr ( ( $tmeta->get_all_attributes, $cmeta->get_all_attributes ) ) {
1010 next if $attr->name =~ /^_/;
bbd064a9 1011 next unless $save_types{$attr->type_constraint->name};
1012 $graph_attributes{$attr->name} = $save_types{$attr->type_constraint->name};
1013 }
9fef629b 1014 # Extra custom keys for complex objects that should be saved in some form.
1015 # The subroutine should return a string, or undef/empty.
1016 $graph_attributes{'stemmata'} = sub {
1017 my @stemstrs;
1018 map { push( @stemstrs, $_->editable( {linesep => ''} ) ) }
1019 $self->tradition->stemmata;
1020 join( "\n", @stemstrs );
1021 };
1022 $graph_attributes{'user'} = sub {
1023 $self->tradition->user ? $self->tradition->user->id : undef
1024 };
bbd064a9 1025
1026 foreach my $datum ( sort keys %graph_attributes ) {
e309421a 1027 $graph_data_keys{$datum} = 'dg'.$gdi++;
1028 my $key = $root->addNewChild( $graphml_ns, 'key' );
9fef629b 1029 my $dtype = ref( $graph_attributes{$datum} ) ? 'string'
1030 : $graph_attributes{$datum};
e309421a 1031 $key->setAttribute( 'attr.name', $datum );
9fef629b 1032 $key->setAttribute( 'attr.type', $dtype );
e309421a 1033 $key->setAttribute( 'for', 'graph' );
1034 $key->setAttribute( 'id', $graph_data_keys{$datum} );
1035 }
f6066bac 1036
bbd064a9 1037 # Add the data keys for reading nodes
1038 my %reading_attributes;
1039 my $rmeta = Text::Tradition::Collation::Reading->meta;
1040 foreach my $attr( $rmeta->get_all_attributes ) {
1041 next if $attr->name =~ /^_/;
bbd064a9 1042 next unless $save_types{$attr->type_constraint->name};
1043 $reading_attributes{$attr->name} = $save_types{$attr->type_constraint->name};
1044 }
7cd9f181 1045 # Extra custom key for the reading morphology
1046 $reading_attributes{'lexemes'} = 'string';
1047
ef9d481f 1048 my %node_data_keys;
1049 my $ndi = 0;
bbd064a9 1050 foreach my $datum ( sort keys %reading_attributes ) {
910a0a6d 1051 $node_data_keys{$datum} = 'dn'.$ndi++;
1052 my $key = $root->addNewChild( $graphml_ns, 'key' );
1053 $key->setAttribute( 'attr.name', $datum );
bbd064a9 1054 $key->setAttribute( 'attr.type', $reading_attributes{$datum} );
910a0a6d 1055 $key->setAttribute( 'for', 'node' );
1056 $key->setAttribute( 'id', $node_data_keys{$datum} );
8e1394aa 1057 }
1058
bbd064a9 1059 # Add the data keys for edges, that is, paths and relationships. Path
1060 # data does not come from a Moose class so is here manually.
ef9d481f 1061 my $edi = 0;
1062 my %edge_data_keys;
bbd064a9 1063 my %edge_attributes = (
3a2ebbf4 1064 witness => 'string', # ID/label for a path
3a2ebbf4 1065 extra => 'boolean', # Path key
3a2ebbf4 1066 );
bbd064a9 1067 my @path_attributes = keys %edge_attributes; # track our manual additions
1068 my $pmeta = Text::Tradition::Collation::Relationship->meta;
1069 foreach my $attr( $pmeta->get_all_attributes ) {
1070 next if $attr->name =~ /^_/;
bbd064a9 1071 next unless $save_types{$attr->type_constraint->name};
1072 $edge_attributes{$attr->name} = $save_types{$attr->type_constraint->name};
1073 }
1074 foreach my $datum ( sort keys %edge_attributes ) {
3a2ebbf4 1075 $edge_data_keys{$datum} = 'de'.$edi++;
910a0a6d 1076 my $key = $root->addNewChild( $graphml_ns, 'key' );
3a2ebbf4 1077 $key->setAttribute( 'attr.name', $datum );
bbd064a9 1078 $key->setAttribute( 'attr.type', $edge_attributes{$datum} );
910a0a6d 1079 $key->setAttribute( 'for', 'edge' );
3a2ebbf4 1080 $key->setAttribute( 'id', $edge_data_keys{$datum} );
8e1394aa 1081 }
3a2ebbf4 1082
cc31ebaa 1083 # Add the collation graph itself. First, sanitize the name to a valid XML ID.
1084 my $xmlidname = $self->tradition->name;
1085 $xmlidname =~ s/(?!$xml10_namechar_rx)./_/g;
1086 if( $xmlidname !~ /^$xml10_namestartchar_rx/ ) {
1087 $xmlidname = '_'.$xmlidname;
1088 }
2c669bca 1089 my $sgraph = $root->addNewChild( $graphml_ns, 'graph' );
1090 $sgraph->setAttribute( 'edgedefault', 'directed' );
cc31ebaa 1091 $sgraph->setAttribute( 'id', $xmlidname );
2c669bca 1092 $sgraph->setAttribute( 'parse.edgeids', 'canonical' );
cc31ebaa 1093 $sgraph->setAttribute( 'parse.edges', 0 ); # fill in later
2c669bca 1094 $sgraph->setAttribute( 'parse.nodeids', 'canonical' );
cc31ebaa 1095 $sgraph->setAttribute( 'parse.nodes', 0 ); # fill in later
2c669bca 1096 $sgraph->setAttribute( 'parse.order', 'nodesfirst' );
22222af9 1097
2a812726 1098 # Tradition/collation attribute data
bbd064a9 1099 foreach my $datum ( keys %graph_attributes ) {
1100 my $value;
1101 if( $datum eq 'version' ) {
2a812726 1102 $value = '3.2';
9fef629b 1103 } elsif( ref( $graph_attributes{$datum} ) ) {
1104 my $sub = $graph_attributes{$datum};
1105 $value = &$sub();
bbd064a9 1106 } elsif( $gattr_from{$datum} eq 'Tradition' ) {
1107 $value = $self->tradition->$datum;
1108 } else {
1109 $value = $self->$datum;
1110 }
2c669bca 1111 _add_graphml_data( $sgraph, $graph_data_keys{$datum}, $value );
e309421a 1112 }
8e1394aa 1113
1114 my $node_ctr = 0;
1115 my %node_hash;
22222af9 1116 # Add our readings to the graph
3a2ebbf4 1117 foreach my $n ( sort { $a->id cmp $b->id } $self->readings ) {
a30ca502 1118 next if $n->has_rank && $n ne $self->start && $n ne $self->end &&
1119 ( $n->rank < $start->rank || $n->rank > $end->rank );
1120 $use_readings{$n->id} = 1;
2c669bca 1121 # Add to the main graph
1122 my $node_el = $sgraph->addNewChild( $graphml_ns, 'node' );
910a0a6d 1123 my $node_xmlid = 'n' . $node_ctr++;
3a2ebbf4 1124 $node_hash{ $n->id } = $node_xmlid;
910a0a6d 1125 $node_el->setAttribute( 'id', $node_xmlid );
bbd064a9 1126 foreach my $d ( keys %reading_attributes ) {
255875b8 1127 my $nval = $n->$d;
7cd9f181 1128 # Custom serialization
1129 if( $d eq 'lexemes' ) {
1130 # If nval is a true value, we have lexemes so we need to
1131 # serialize them. Otherwise set nval to undef so that the
1132 # key is excluded from this reading.
1133 $nval = $nval ? $n->_serialize_lexemes : undef;
18c64d55 1134 } elsif( $d eq 'normal_form' && $n->normal_form eq $n->text ) {
1135 $nval = undef;
7cd9f181 1136 }
cc31ebaa 1137 if( $rankoffset && $d eq 'rank' && $n ne $self->start ) {
414cc046 1138 # Adjust the ranks within the subgraph.
cc31ebaa 1139 $nval = $n eq $self->end ? $end->rank - $rankoffset + 1
1140 : $nval - $rankoffset;
414cc046 1141 }
255875b8 1142 _add_graphml_data( $node_el, $node_data_keys{$d}, $nval )
1143 if defined $nval;
1144 }
b15511bf 1145 }
1146
2c669bca 1147 # Add the path edges to the sequence graph
df6d9812 1148 my $edge_ctr = 0;
3a2ebbf4 1149 foreach my $e ( sort { $a->[0] cmp $b->[0] } $self->sequence->edges() ) {
1150 # We add an edge in the graphml for every witness in $e.
a30ca502 1151 next unless( $use_readings{$e->[0]} || $use_readings{$e->[1]} );
1152 my @edge_wits = sort $self->path_witnesses( $e );
cc31ebaa 1153 $e->[0] = $self->start->id unless $use_readings{$e->[0]};
1154 $e->[1] = $self->end->id unless $use_readings{$e->[1]};
1155 # Skip any path from start to end; that witness is not in the subgraph.
1156 next if ( $e->[0] eq $self->start->id && $e->[1] eq $self->end->id );
a30ca502 1157 foreach my $wit ( @edge_wits ) {
3a2ebbf4 1158 my( $id, $from, $to ) = ( 'e'.$edge_ctr++,
1159 $node_hash{ $e->[0] },
1160 $node_hash{ $e->[1] } );
2c669bca 1161 my $edge_el = $sgraph->addNewChild( $graphml_ns, 'edge' );
3a2ebbf4 1162 $edge_el->setAttribute( 'source', $from );
1163 $edge_el->setAttribute( 'target', $to );
1164 $edge_el->setAttribute( 'id', $id );
3a2ebbf4 1165
1166 # It's a witness path, so add the witness
1167 my $base = $wit;
1168 my $key = $edge_data_keys{'witness'};
1169 # Is this an ante-corr witness?
1170 my $aclabel = $self->ac_label;
1171 if( $wit =~ /^(.*)\Q$aclabel\E$/ ) {
1172 # Keep the base witness
1173 $base = $1;
1174 # ...and record that this is an 'extra' reading path
1175 _add_graphml_data( $edge_el, $edge_data_keys{'extra'}, $aclabel );
1176 }
1177 _add_graphml_data( $edge_el, $edge_data_keys{'witness'}, $base );
1178 }
1179 }
1180
cc31ebaa 1181 # Report the actual number of nodes and edges that went in
1182 $sgraph->setAttribute( 'parse.edges', $edge_ctr );
1183 $sgraph->setAttribute( 'parse.nodes', $node_ctr );
1184
22222af9 1185 # Add the relationship graph to the XML
bbd064a9 1186 map { delete $edge_data_keys{$_} } @path_attributes;
826d8773 1187 $self->relations->_as_graphml( $graphml_ns, $root, \%node_hash,
1188 $node_data_keys{'id'}, \%edge_data_keys );
8e1394aa 1189
94c00c71 1190 # Save and return the thing
1191 my $result = decode_utf8( $graphml->toString(1) );
94c00c71 1192 return $result;
df6d9812 1193}
1194
b15511bf 1195sub _add_graphml_data {
1196 my( $el, $key, $value ) = @_;
b15511bf 1197 return unless defined $value;
c9bf3dbf 1198 my $data_el = $el->addNewChild( $el->namespaceURI, 'data' );
b15511bf 1199 $data_el->setAttribute( 'key', $key );
1200 $data_el->appendText( $value );
8e1394aa 1201}
1202
4e5a7b2c 1203=head2 as_csv
910a0a6d 1204
1205Returns a CSV alignment table representation of the collation graph, one
2c669bca 1206row per witness (or witness uncorrected.)
910a0a6d 1207
1208=cut
1209
1210sub as_csv {
3a2ebbf4 1211 my( $self ) = @_;
1dd07bda 1212 my $table = $self->alignment_table;
82fa4d57 1213 my $csv = Text::CSV->new( { binary => 1, quote_null => 0 } );
910a0a6d 1214 my @result;
2c669bca 1215 # Make the header row
1216 $csv->combine( map { $_->{'witness'} } @{$table->{'alignment'}} );
1217 push( @result, decode_utf8( $csv->string ) );
1218 # Make the rest of the rows
1219 foreach my $idx ( 0 .. $table->{'length'} - 1 ) {
566f4595 1220 my @rowobjs = map { $_->{'tokens'}->[$idx] } @{$table->{'alignment'}};
1dd07bda 1221 my @row = map { $_ ? $_->{'t'}->text : $_ } @rowobjs;
2c669bca 1222 $csv->combine( @row );
910a0a6d 1223 push( @result, decode_utf8( $csv->string ) );
1224 }
3a2ebbf4 1225 return join( "\n", @result );
910a0a6d 1226}
1227
1dd07bda 1228=head2 alignment_table( $use_refs, $include_witnesses )
2c669bca 1229
566f4595 1230Return a reference to an alignment table, in a slightly enhanced CollateX
1231format which looks like this:
1232
1233 $table = { alignment => [ { witness => "SIGIL",
4e5a7b2c 1234 tokens => [ { t => "TEXT" }, ... ] },
566f4595 1235 { witness => "SIG2",
4e5a7b2c 1236 tokens => [ { t => "TEXT" }, ... ] },
566f4595 1237 ... ],
1238 length => TEXTLEN };
1239
1240If $use_refs is set to 1, the reading object is returned in the table
1241instead of READINGTEXT; if not, the text of the reading is returned.
4e5a7b2c 1242
1243If $include_witnesses is set to a hashref, only the witnesses whose sigil
566f4595 1244keys have a true hash value will be included.
2c669bca 1245
1246=cut
9f3ba6f7 1247
1dd07bda 1248sub alignment_table {
1249 my( $self ) = @_;
c1915ab9 1250 $self->calculate_ranks() unless $self->_graphcalc_done;
1dd07bda 1251 return $self->cached_table if $self->has_cached_table;
1252
0ecb975c 1253 # Make sure we can do this
1254 throw( "Need a linear graph in order to make an alignment table" )
1255 unless $self->linear;
1256 $self->calculate_ranks unless $self->end->has_rank;
1257
2c669bca 1258 my $table = { 'alignment' => [], 'length' => $self->end->rank - 1 };
3a2ebbf4 1259 my @all_pos = ( 1 .. $self->end->rank - 1 );
68454b71 1260 foreach my $wit ( sort { $a->sigil cmp $b->sigil } $self->tradition->witnesses ) {
6771a1b1 1261 # say STDERR "Making witness row(s) for " . $wit->sigil;
1f7aa795 1262 my @wit_path = $self->reading_sequence( $self->start, $self->end, $wit->sigil );
1dd07bda 1263 my @row = _make_witness_row( \@wit_path, \@all_pos );
2c669bca 1264 push( @{$table->{'alignment'}},
1265 { 'witness' => $wit->sigil, 'tokens' => \@row } );
1f7aa795 1266 if( $wit->is_layered ) {
1267 my @wit_ac_path = $self->reading_sequence( $self->start, $self->end,
861c3e27 1268 $wit->sigil.$self->ac_label );
1dd07bda 1269 my @ac_row = _make_witness_row( \@wit_ac_path, \@all_pos );
2c669bca 1270 push( @{$table->{'alignment'}},
1271 { 'witness' => $wit->sigil.$self->ac_label, 'tokens' => \@ac_row } );
910a0a6d 1272 }
1273 }
1dd07bda 1274 $self->cached_table( $table );
1275 return $table;
910a0a6d 1276}
1277
1278sub _make_witness_row {
1dd07bda 1279 my( $path, $positions ) = @_;
910a0a6d 1280 my %char_hash;
1281 map { $char_hash{$_} = undef } @$positions;
2c669bca 1282 my $debug = 0;
910a0a6d 1283 foreach my $rdg ( @$path ) {
6771a1b1 1284 say STDERR "rank " . $rdg->rank if $debug;
1285 # say STDERR "No rank for " . $rdg->id unless defined $rdg->rank;
1dd07bda 1286 $char_hash{$rdg->rank} = { 't' => $rdg };
910a0a6d 1287 }
1288 my @row = map { $char_hash{$_} } @$positions;
eca16057 1289 # Fill in lacuna markers for undef spots in the row
1290 my $last_el = shift @row;
1291 my @filled_row = ( $last_el );
1292 foreach my $el ( @row ) {
0e476982 1293 # If we are using node reference, make the lacuna node appear many times
1294 # in the table. If not, use the lacuna tag.
1dd07bda 1295 if( $last_el && $last_el->{'t'}->is_lacuna && !defined $el ) {
1296 $el = $last_el;
eca16057 1297 }
1298 push( @filled_row, $el );
1299 $last_el = $el;
1300 }
1301 return @filled_row;
910a0a6d 1302}
1303
4e5a7b2c 1304=head1 NAVIGATION METHODS
910a0a6d 1305
4e5a7b2c 1306=head2 reading_sequence( $first, $last, $sigil, $backup )
e2902068 1307
1308Returns the ordered list of readings, starting with $first and ending
4e5a7b2c 1309with $last, for the witness given in $sigil. If a $backup sigil is
1310specified (e.g. when walking a layered witness), it will be used wherever
1311no $sigil path exists. If there is a base text reading, that will be
1312used wherever no path exists for $sigil or $backup.
e2902068 1313
1314=cut
1315
910a0a6d 1316# TODO Think about returning some lazy-eval iterator.
b0b4421a 1317# TODO Get rid of backup; we should know from what witness is whether we need it.
910a0a6d 1318
e2902068 1319sub reading_sequence {
861c3e27 1320 my( $self, $start, $end, $witness ) = @_;
e2902068 1321
930ff666 1322 $witness = $self->baselabel unless $witness;
e2902068 1323 my @readings = ( $start );
1324 my %seen;
1325 my $n = $start;
3a2ebbf4 1326 while( $n && $n->id ne $end->id ) {
1327 if( exists( $seen{$n->id} ) ) {
63778331 1328 throw( "Detected loop for $witness at " . $n->id );
910a0a6d 1329 }
3a2ebbf4 1330 $seen{$n->id} = 1;
910a0a6d 1331
861c3e27 1332 my $next = $self->next_reading( $n, $witness );
44771cf2 1333 unless( $next ) {
63778331 1334 throw( "Did not find any path for $witness from reading " . $n->id );
44771cf2 1335 }
910a0a6d 1336 push( @readings, $next );
1337 $n = $next;
e2902068 1338 }
1339 # Check that the last reading is our end reading.
1340 my $last = $readings[$#readings];
63778331 1341 throw( "Last reading found from " . $start->text .
1342 " for witness $witness is not the end!" ) # TODO do we get this far?
3a2ebbf4 1343 unless $last->id eq $end->id;
e2902068 1344
1345 return @readings;
1346}
1347
4e5a7b2c 1348=head2 next_reading( $reading, $sigil );
8e1394aa 1349
4a8828f0 1350Returns the reading that follows the given reading along the given witness
930ff666 1351path.
8e1394aa 1352
1353=cut
1354
4a8828f0 1355sub next_reading {
e2902068 1356 # Return the successor via the corresponding path.
8e1394aa 1357 my $self = shift;
3a2ebbf4 1358 my $answer = $self->_find_linked_reading( 'next', @_ );
2c669bca 1359 return undef unless $answer;
3a2ebbf4 1360 return $self->reading( $answer );
8e1394aa 1361}
1362
4e5a7b2c 1363=head2 prior_reading( $reading, $sigil )
8e1394aa 1364
4a8828f0 1365Returns the reading that precedes the given reading along the given witness
930ff666 1366path.
8e1394aa 1367
1368=cut
1369
4a8828f0 1370sub prior_reading {
e2902068 1371 # Return the predecessor via the corresponding path.
8e1394aa 1372 my $self = shift;
3a2ebbf4 1373 my $answer = $self->_find_linked_reading( 'prior', @_ );
1374 return $self->reading( $answer );
8e1394aa 1375}
1376
4a8828f0 1377sub _find_linked_reading {
861c3e27 1378 my( $self, $direction, $node, $path ) = @_;
1379
1380 # Get a backup if we are dealing with a layered witness
1381 my $alt_path;
1382 my $aclabel = $self->ac_label;
1383 if( $path && $path =~ /^(.*)\Q$aclabel\E$/ ) {
1384 $alt_path = $1;
1385 }
1386
e2902068 1387 my @linked_paths = $direction eq 'next'
3a2ebbf4 1388 ? $self->sequence->edges_from( $node )
1389 : $self->sequence->edges_to( $node );
e2902068 1390 return undef unless scalar( @linked_paths );
8e1394aa 1391
e2902068 1392 # We have to find the linked path that contains all of the
1393 # witnesses supplied in $path.
1394 my( @path_wits, @alt_path_wits );
4e5a7b2c 1395 @path_wits = sort( $self->_witnesses_of_label( $path ) ) if $path;
1396 @alt_path_wits = sort( $self->_witnesses_of_label( $alt_path ) ) if $alt_path;
e2902068 1397 my $base_le;
1398 my $alt_le;
1399 foreach my $le ( @linked_paths ) {
3a2ebbf4 1400 if( $self->sequence->has_edge_attribute( @$le, $self->baselabel ) ) {
910a0a6d 1401 $base_le = $le;
910a0a6d 1402 }
508fd430 1403 my @le_wits = sort $self->path_witnesses( $le );
3a2ebbf4 1404 if( _is_within( \@path_wits, \@le_wits ) ) {
1405 # This is the right path.
1406 return $direction eq 'next' ? $le->[1] : $le->[0];
1407 } elsif( _is_within( \@alt_path_wits, \@le_wits ) ) {
1408 $alt_le = $le;
1409 }
8e1394aa 1410 }
e2902068 1411 # Got this far? Return the alternate path if it exists.
3a2ebbf4 1412 return $direction eq 'next' ? $alt_le->[1] : $alt_le->[0]
910a0a6d 1413 if $alt_le;
e2902068 1414
1415 # Got this far? Return the base path if it exists.
3a2ebbf4 1416 return $direction eq 'next' ? $base_le->[1] : $base_le->[0]
910a0a6d 1417 if $base_le;
e2902068 1418
1419 # Got this far? We have no appropriate path.
2c669bca 1420 warn "Could not find $direction node from " . $node->id
910a0a6d 1421 . " along path $path";
8e1394aa 1422 return undef;
1423}
1424
4a8828f0 1425# Some set logic.
1426sub _is_within {
1427 my( $set1, $set2 ) = @_;
7854e12e 1428 my $ret = @$set1; # will be 0, i.e. false, if set1 is empty
4a8828f0 1429 foreach my $el ( @$set1 ) {
910a0a6d 1430 $ret = 0 unless grep { /^\Q$el\E$/ } @$set2;
4a8828f0 1431 }
1432 return $ret;
1433}
1434
4e5a7b2c 1435# Return the string that joins together a list of witnesses for
1436# display on a single path.
1437sub _witnesses_of_label {
1438 my( $self, $label ) = @_;
1439 my $regex = $self->wit_list_separator;
1440 my @answer = split( /\Q$regex\E/, $label );
1441 return @answer;
b0b4421a 1442}
1443
d4b75f44 1444=head2 common_readings
1445
1446Returns the list of common readings in the graph (i.e. those readings that are
1447shared by all non-lacunose witnesses.)
1448
1449=cut
1450
1451sub common_readings {
1452 my $self = shift;
1453 my @common = grep { $_->is_common } $self->readings;
1454 return @common;
1455}
1456
fae52efd 1457=head2 path_text( $sigil, [, $start, $end ] )
b0b4421a 1458
1459Returns the text of a witness (plus its backup, if we are using a layer)
1460as stored in the collation. The text is returned as a string, where the
1461individual readings are joined with spaces and the meta-readings (e.g.
1462lacunae) are omitted. Optional specification of $start and $end allows
1463the generation of a subset of the witness text.
4e5a7b2c 1464
b0b4421a 1465=cut
1466
1467sub path_text {
861c3e27 1468 my( $self, $wit, $start, $end ) = @_;
b0b4421a 1469 $start = $self->start unless $start;
1470 $end = $self->end unless $end;
861c3e27 1471 my @path = grep { !$_->is_meta } $self->reading_sequence( $start, $end, $wit );
629e27b0 1472 my $pathtext = '';
1473 my $last;
1474 foreach my $r ( @path ) {
6ad2ce78 1475 unless ( $r->join_prior || !$last || $last->join_next ) {
1476 $pathtext .= ' ';
1477 }
1478 $pathtext .= $r->text;
629e27b0 1479 $last = $r;
1480 }
1481 return $pathtext;
b0b4421a 1482}
4e5a7b2c 1483
1484=head1 INITIALIZATION METHODS
1485
1486These are mostly for use by parsers.
1487
1488=head2 make_witness_path( $witness )
1489
1490Link the array of readings contained in $witness->path (and in
1491$witness->uncorrected_path if it exists) into collation paths.
1492Clear out the arrays when finished.
de51424a 1493
4e5a7b2c 1494=head2 make_witness_paths
1495
1496Call make_witness_path for all witnesses in the tradition.
1497
1498=cut
930ff666 1499
7e450e44 1500# For use when a collation is constructed from a base text and an apparatus.
1501# We have the sequences of readings and just need to add path edges.
1f7aa795 1502# When we are done, clear out the witness path attributes, as they are no
1503# longer needed.
1504# TODO Find a way to replace the witness path attributes with encapsulated functions?
e2902068 1505
6a222840 1506sub make_witness_paths {
1507 my( $self ) = @_;
910a0a6d 1508 foreach my $wit ( $self->tradition->witnesses ) {
6771a1b1 1509 # say STDERR "Making path for " . $wit->sigil;
910a0a6d 1510 $self->make_witness_path( $wit );
7854e12e 1511 }
7854e12e 1512}
1513
6a222840 1514sub make_witness_path {
7854e12e 1515 my( $self, $wit ) = @_;
1516 my @chain = @{$wit->path};
15d2d3df 1517 my $sig = $wit->sigil;
fae52efd 1518 # Add start and end if necessary
1519 unshift( @chain, $self->start ) unless $chain[0] eq $self->start;
1520 push( @chain, $self->end ) unless $chain[-1] eq $self->end;
7854e12e 1521 foreach my $idx ( 0 .. $#chain-1 ) {
910a0a6d 1522 $self->add_path( $chain[$idx], $chain[$idx+1], $sig );
7854e12e 1523 }
1f7aa795 1524 if( $wit->is_layered ) {
d9e873d0 1525 @chain = @{$wit->uncorrected_path};
fae52efd 1526 unshift( @chain, $self->start ) unless $chain[0] eq $self->start;
1527 push( @chain, $self->end ) unless $chain[-1] eq $self->end;
d9e873d0 1528 foreach my $idx( 0 .. $#chain-1 ) {
1529 my $source = $chain[$idx];
1530 my $target = $chain[$idx+1];
1531 $self->add_path( $source, $target, $sig.$self->ac_label )
1532 unless $self->has_path( $source, $target, $sig );
1533 }
15d2d3df 1534 }
1f7aa795 1535 $wit->clear_path;
1536 $wit->clear_uncorrected_path;
e2902068 1537}
1538
4e5a7b2c 1539=head2 calculate_ranks
1540
1541Calculate the reading ranks (that is, their aligned positions relative
1542to each other) for the graph. This can only be called on linear collations.
1543
b365fbae 1544=begin testing
1545
1546use Text::Tradition;
1547
1548my $cxfile = 't/data/Collatex-16.xml';
1549my $t = Text::Tradition->new(
1550 'name' => 'inline',
1551 'input' => 'CollateX',
1552 'file' => $cxfile,
1553 );
1554my $c = $t->collation;
1555
1556# Make an svg
bfcbcecb 1557my $table = $c->alignment_table;
1558ok( $c->has_cached_table, "Alignment table was cached" );
1559is( $c->alignment_table, $table, "Cached table returned upon second call" );
b365fbae 1560$c->calculate_ranks;
bfcbcecb 1561is( $c->alignment_table, $table, "Cached table retained with no rank change" );
679f17e1 1562$c->add_relationship( 'n24', 'n23', { 'type' => 'spelling' } );
bfcbcecb 1563isnt( $c->alignment_table, $table, "Alignment table changed after relationship add" );
b365fbae 1564
1565=end testing
1566
4e5a7b2c 1567=cut
1568
910a0a6d 1569sub calculate_ranks {
1570 my $self = shift;
b365fbae 1571 # Save the existing ranks, in case we need to invalidate the cached SVG.
1572 my %existing_ranks;
ac4d7ac2 1573 map { $existing_ranks{$_} = $_->rank } $self->readings;
359944f7 1574
1575 # Do the rankings based on the relationship equivalence graph, starting
1576 # with the start node.
56772e8c 1577 my ( $node_ranks, $rank_nodes ) = $self->relations->equivalence_ranks();
1578
910a0a6d 1579 # Transfer our rankings from the topological graph to the real one.
1580 foreach my $r ( $self->readings ) {
cecbe56d 1581 if( defined $node_ranks->{$self->equivalence( $r->id )} ) {
359944f7 1582 $r->rank( $node_ranks->{$self->equivalence( $r->id )} );
67da8d6c 1583 } else {
63778331 1584 # Die. Find the last rank we calculated.
359944f7 1585 my @all_defined = sort { ( $node_ranks->{$self->equivalence( $a->id )}||-1 )
1586 <=> ( $node_ranks->{$self->equivalence( $b->id )}||-1 ) }
63778331 1587 $self->readings;
1588 my $last = pop @all_defined;
1589 throw( "Ranks not calculated after $last - do you have a cycle in the graph?" );
67da8d6c 1590 }
de51424a 1591 }
bfcbcecb 1592 # Do we need to invalidate the cached data?
be3af600 1593 if( $self->has_cached_table ) {
b365fbae 1594 foreach my $r ( $self->readings ) {
7c293912 1595 next if defined( $existing_ranks{$r} )
1596 && $existing_ranks{$r} == $r->rank;
c1915ab9 1597 # Something has changed, so clear the cache
bfcbcecb 1598 $self->_clear_cache;
c1915ab9 1599 # ...and recalculate the common readings.
1600 $self->calculate_common_readings();
b365fbae 1601 last;
1602 }
1603 }
c1915ab9 1604 # The graph calculation information is now up to date.
1605 $self->_graphcalc_done(1);
8e1394aa 1606}
3a1f2523 1607
c1915ab9 1608sub _clear_cache {
1609 my $self = shift;
c1915ab9 1610 $self->wipe_table if $self->has_cached_table;
1611}
1612
1613
4e5a7b2c 1614=head2 flatten_ranks
1615
1616A convenience method for parsing collation data. Searches the graph for readings
1617with the same text at the same rank, and merges any that are found.
1618
1619=cut
1620
0e476982 1621sub flatten_ranks {
1622 my $self = shift;
1623 my %unique_rank_rdg;
bf6e338d 1624 my $changed;
0e476982 1625 foreach my $rdg ( $self->readings ) {
1626 next unless $rdg->has_rank;
1627 my $key = $rdg->rank . "||" . $rdg->text;
1628 if( exists $unique_rank_rdg{$key} ) {
07e6765f 1629 # Make sure they don't have different grammatical forms
1630 my $ur = $unique_rank_rdg{$key};
1631 if( $rdg->disambiguated && $ur->disambiguated ) {
1632 my $rform = join( '//', map { $_->form->to_string } $rdg->lexemes );
1633 my $uform = join( '//', map { $_->form->to_string } $ur->lexemes );
1634 next unless $rform eq $uform;
1635 } elsif( $rdg->disambiguated xor $ur->disambiguated ) {
1636 next;
1637 }
0e476982 1638 # Combine!
6771a1b1 1639 #say STDERR "Combining readings at same rank: $key";
bf6e338d 1640 $changed = 1;
0e476982 1641 $self->merge_readings( $unique_rank_rdg{$key}, $rdg );
0ecb975c 1642 # TODO see if this now makes a common point.
0e476982 1643 } else {
1644 $unique_rank_rdg{$key} = $rdg;
1645 }
1646 }
bf6e338d 1647 # If we merged readings, the ranks are still fine but the alignment
1648 # table is wrong. Wipe it.
1649 $self->wipe_table() if $changed;
0e476982 1650}
4633f9e4 1651
1652
d4b75f44 1653=head2 calculate_common_readings
1654
1655Goes through the graph identifying the readings that appear in every witness
1656(apart from those with lacunae at that spot.) Marks them as common and returns
1657the list.
1658
1659=begin testing
1660
1661use Text::Tradition;
1662
1663my $cxfile = 't/data/Collatex-16.xml';
1664my $t = Text::Tradition->new(
1665 'name' => 'inline',
1666 'input' => 'CollateX',
1667 'file' => $cxfile,
1668 );
1669my $c = $t->collation;
1670
1671my @common = $c->calculate_common_readings();
1672is( scalar @common, 8, "Found correct number of common readings" );
1673my @marked = sort $c->common_readings();
1674is( scalar @common, 8, "All common readings got marked as such" );
679f17e1 1675my @expected = qw/ n1 n11 n16 n19 n20 n5 n6 n7 /;
d4b75f44 1676is_deeply( \@marked, \@expected, "Found correct list of common readings" );
1677
1678=end testing
1679
1680=cut
1681
1682sub calculate_common_readings {
1683 my $self = shift;
1684 my @common;
c1915ab9 1685 map { $_->is_common( 0 ) } $self->readings;
1686 # Implicitly calls calculate_ranks
1dd07bda 1687 my $table = $self->alignment_table;
d4b75f44 1688 foreach my $idx ( 0 .. $table->{'length'} - 1 ) {
7f52eac8 1689 my @row = map { $_->{'tokens'}->[$idx]
1690 ? $_->{'tokens'}->[$idx]->{'t'} : '' }
1691 @{$table->{'alignment'}};
d4b75f44 1692 my %hash;
1693 foreach my $r ( @row ) {
1694 if( $r ) {
1695 $hash{$r->id} = $r unless $r->is_meta;
1696 } else {
1697 $hash{'UNDEF'} = $r;
1698 }
1699 }
1700 if( keys %hash == 1 && !exists $hash{'UNDEF'} ) {
1701 my( $r ) = values %hash;
1702 $r->is_common( 1 );
1703 push( @common, $r );
1704 }
1705 }
1706 return @common;
1707}
1708
861c3e27 1709=head2 text_from_paths
1710
1711Calculate the text array for all witnesses from the path, for later consistency
1712checking. Only to be used if there is no non-graph-based way to know the
1713original texts.
1714
1715=cut
1716
1717sub text_from_paths {
1718 my $self = shift;
1719 foreach my $wit ( $self->tradition->witnesses ) {
5164a6f0 1720 my @readings = $self->reading_sequence( $self->start, $self->end, $wit->sigil );
1721 my @text;
1722 foreach my $r ( @readings ) {
1723 next if $r->is_meta;
1724 push( @text, $r->text );
1725 }
861c3e27 1726 $wit->text( \@text );
1727 if( $wit->is_layered ) {
5164a6f0 1728 my @ucrdgs = $self->reading_sequence( $self->start, $self->end,
1729 $wit->sigil.$self->ac_label );
1730 my @uctext;
1731 foreach my $r ( @ucrdgs ) {
1732 next if $r->is_meta;
1733 push( @uctext, $r->text );
1734 }
1735 $wit->layertext( \@uctext );
861c3e27 1736 }
1737 }
1738}
0e476982 1739
4e5a7b2c 1740=head1 UTILITY FUNCTIONS
1741
1742=head2 common_predecessor( $reading_a, $reading_b )
8e1394aa 1743
4e5a7b2c 1744Find the last reading that occurs in sequence before both the given readings.
414cc046 1745At the very least this should be $self->start.
4e5a7b2c 1746
1747=head2 common_successor( $reading_a, $reading_b )
1748
1749Find the first reading that occurs in sequence after both the given readings.
414cc046 1750At the very least this should be $self->end.
4e5a7b2c 1751
22222af9 1752=begin testing
1753
1754use Text::Tradition;
1755
1756my $cxfile = 't/data/Collatex-16.xml';
1757my $t = Text::Tradition->new(
1758 'name' => 'inline',
1759 'input' => 'CollateX',
1760 'file' => $cxfile,
1761 );
1762my $c = $t->collation;
1763
679f17e1 1764is( $c->common_predecessor( 'n24', 'n23' )->id,
22222af9 1765 'n20', "Found correct common predecessor" );
679f17e1 1766is( $c->common_successor( 'n24', 'n23' )->id,
10e4b1ac 1767 '__END__', "Found correct common successor" );
22222af9 1768
4e5a7b2c 1769is( $c->common_predecessor( 'n19', 'n17' )->id,
22222af9 1770 'n16', "Found correct common predecessor for readings on same path" );
679f17e1 1771is( $c->common_successor( 'n21', 'n10' )->id,
10e4b1ac 1772 '__END__', "Found correct common successor for readings on same path" );
22222af9 1773
1774=end testing
1775
1776=cut
1777
1778## Return the closest reading that is a predecessor of both the given readings.
1779sub common_predecessor {
1780 my $self = shift;
4e5a7b2c 1781 my( $r1, $r2 ) = $self->_objectify_args( @_ );
027d819c 1782 return $self->_common_in_path( $r1, $r2, 'predecessors' );
22222af9 1783}
1784
1785sub common_successor {
1786 my $self = shift;
4e5a7b2c 1787 my( $r1, $r2 ) = $self->_objectify_args( @_ );
027d819c 1788 return $self->_common_in_path( $r1, $r2, 'successors' );
22222af9 1789}
1790
414cc046 1791
1792# TODO think about how to do this without ranks...
027d819c 1793sub _common_in_path {
22222af9 1794 my( $self, $r1, $r2, $dir ) = @_;
414cc046 1795 my $iter = $self->end->rank;
22222af9 1796 my @candidates;
414cc046 1797 my @last_r1 = ( $r1 );
1798 my @last_r2 = ( $r2 );
1799 # my %all_seen = ( $r1 => 'r1', $r2 => 'r2' );
22222af9 1800 my %all_seen;
6771a1b1 1801 # say STDERR "Finding common $dir for $r1, $r2";
22222af9 1802 while( !@candidates ) {
414cc046 1803 last unless $iter--; # Avoid looping infinitely
1804 # Iterate separately down the graph from r1 and r2
1805 my( @new_lc1, @new_lc2 );
1806 foreach my $lc ( @last_r1 ) {
1807 foreach my $p ( $lc->$dir ) {
1808 if( $all_seen{$p->id} && $all_seen{$p->id} ne 'r1' ) {
6771a1b1 1809 # say STDERR "Path candidate $p from $lc";
414cc046 1810 push( @candidates, $p );
002e3600 1811 } elsif( !$all_seen{$p->id} ) {
414cc046 1812 $all_seen{$p->id} = 'r1';
1813 push( @new_lc1, $p );
1814 }
1815 }
1816 }
1817 foreach my $lc ( @last_r2 ) {
22222af9 1818 foreach my $p ( $lc->$dir ) {
414cc046 1819 if( $all_seen{$p->id} && $all_seen{$p->id} ne 'r2' ) {
6771a1b1 1820 # say STDERR "Path candidate $p from $lc";
22222af9 1821 push( @candidates, $p );
002e3600 1822 } elsif( !$all_seen{$p->id} ) {
414cc046 1823 $all_seen{$p->id} = 'r2';
1824 push( @new_lc2, $p );
22222af9 1825 }
1826 }
1827 }
414cc046 1828 @last_r1 = @new_lc1;
1829 @last_r2 = @new_lc2;
22222af9 1830 }
1831 my @answer = sort { $a->rank <=> $b->rank } @candidates;
1832 return $dir eq 'predecessors' ? pop( @answer ) : shift ( @answer );
1833}
1834
63778331 1835sub throw {
1836 Text::Tradition::Error->throw(
1837 'ident' => 'Collation error',
1838 'message' => $_[0],
1839 );
1840}
1841
dd3b58b0 1842no Moose;
1843__PACKAGE__->meta->make_immutable;
e867486f 1844
027d819c 1845=head1 LICENSE
e867486f 1846
027d819c 1847This package is free software and is provided "as is" without express
1848or implied warranty. You can redistribute it and/or modify it under
1849the same terms as Perl itself.
e867486f 1850
027d819c 1851=head1 AUTHOR
e867486f 1852
027d819c 1853Tara L Andrews E<lt>aurum@cpan.orgE<gt>