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