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