new position logic for the lemmatizer and toggler; still need non-linear positions
[scpubgit/stemmatology.git] / lib / Text / Tradition / Collation.pm
CommitLineData
dd3b58b0 1package Text::Tradition::Collation;
d047cd52 2
3use Graph::Easy;
8e1394aa 4use IPC::Run qw( run binary );
3265b0ce 5use Text::Tradition::Collation::Path;
4cdd82f1 6use Text::Tradition::Collation::Position;
b15511bf 7use Text::Tradition::Collation::Reading;
8use Text::Tradition::Collation::Relationship;
9use Text::Tradition::Collation::Segment;
df6d9812 10use XML::LibXML;
dd3b58b0 11use Moose;
12
13has 'graph' => (
d047cd52 14 is => 'ro',
15 isa => 'Graph::Easy',
16 handles => {
8e1394aa 17 add_reading => 'add_node',
18 del_reading => 'del_node',
19 add_path => 'add_edge',
20 del_path => 'del_edge',
21 reading => 'node',
22 path => 'edge',
23 readings => 'nodes',
b15511bf 24 segments => 'nodes',
8e1394aa 25 paths => 'edges',
df6d9812 26 relationships => 'edges',
d047cd52 27 },
28 default => sub { Graph::Easy->new( undirected => 0 ) },
29 );
784877d9 30
dd3b58b0 31
dd3b58b0 32has 'tradition' => (
8e1394aa 33 is => 'rw',
d047cd52 34 isa => 'Text::Tradition',
35 );
dd3b58b0 36
8e1394aa 37has 'svg' => (
38 is => 'ro',
39 isa => 'Str',
40 writer => '_save_svg',
41 predicate => 'has_svg',
42 );
43
8e1394aa 44has 'graphml' => (
45 is => 'ro',
df6d9812 46 isa => 'Str',
8e1394aa 47 writer => '_save_graphml',
48 predicate => 'has_graphml',
49 );
50
3a1f2523 51# Keeps track of the lemmas within the collation. At most one lemma
52# per position in the graph.
53has 'lemmata' => (
54 is => 'ro',
55 isa => 'HashRef[Maybe[Str]]',
56 default => sub { {} },
57 );
58
4a8828f0 59has 'wit_list_separator' => (
7854e12e 60 is => 'rw',
61 isa => 'Str',
62 default => ', ',
63 );
64
65has 'baselabel' => (
66 is => 'rw',
67 isa => 'Str',
68 default => 'base text',
69 );
4a8828f0 70
1f563ac3 71has 'collapsed' => (
15d2d3df 72 is => 'rw',
73 isa => 'Bool',
74 );
75
76has 'linear' => (
77 is => 'rw',
78 isa => 'Bool',
79 default => 1,
80 );
1f563ac3 81
ef9d481f 82has 'ac_label' => (
83 is => 'rw',
84 isa => 'Str',
85 default => ' (a.c.)',
86 );
87
1f563ac3 88
dd3b58b0 89# The collation can be created two ways:
90# 1. Collate a set of witnesses (with CollateX I guess) and process
91# the results as in 2.
92# 2. Read a pre-prepared collation in one of a variety of formats,
93# and make the graph from that.
94
95# The graph itself will (for now) be immutable, and the positions
96# within the graph will also be immutable. We need to calculate those
97# positions upon graph construction. The equivalences between graph
98# nodes will be mutable, entirely determined by the user (or possibly
99# by some semantic pre-processing provided by the user.) So the
100# constructor should just make an empty equivalences object. The
101# constructor will also need to make the witness objects, if we didn't
102# come through option 1.
103
d047cd52 104sub BUILD {
105 my( $self, $args ) = @_;
8e1394aa 106 $self->graph->use_class('node', 'Text::Tradition::Collation::Reading');
3265b0ce 107 $self->graph->use_class('edge', 'Text::Tradition::Collation::Path');
d047cd52 108
4a8828f0 109 # Pass through any graph-specific options.
110 my $shape = exists( $args->{'shape'} ) ? $args->{'shape'} : 'ellipse';
111 $self->graph->set_attribute( 'node', 'shape', $shape );
d047cd52 112}
784877d9 113
7854e12e 114# Wrapper around add_path
115
116around add_path => sub {
117 my $orig = shift;
118 my $self = shift;
119
120 # Make sure there are three arguments
121 unless( @_ == 3 ) {
122 warn "Call add_path with args source, target, witness";
123 return;
124 }
125 # Make sure the proposed path does not yet exist
b15511bf 126 # NOTE 'reading' will currently return readings and segments
7854e12e 127 my( $source, $target, $wit ) = @_;
128 $source = $self->reading( $source )
129 unless ref( $source ) eq 'Text::Tradition::Collation::Reading';
130 $target = $self->reading( $target )
131 unless ref( $target ) eq 'Text::Tradition::Collation::Reading';
132 foreach my $path ( $source->edges_to( $target ) ) {
ef9d481f 133 if( $path->label eq $wit && $path->class eq 'edge.path' ) {
7854e12e 134 return;
135 }
136 }
137 # Do the deed
138 $self->$orig( @_ );
139};
140
3265b0ce 141# Wrapper around paths
142around paths => sub {
143 my $orig = shift;
144 my $self = shift;
145
b15511bf 146 my @result = grep { $_->sub_class eq 'path' } $self->$orig( @_ );
df6d9812 147 return @result;
148};
149
150around relationships => sub {
151 my $orig = shift;
152 my $self = shift;
b15511bf 153 my @result = grep { $_->sub_class eq 'relationship' } $self->$orig( @_ );
154 return @result;
155};
156
157around readings => sub {
158 my $orig = shift;
159 my $self = shift;
160 my @result = grep { $_->sub_class ne 'segment' } $self->$orig( @_ );
161 return @result;
162};
163
164around segments => sub {
165 my $orig = shift;
166 my $self = shift;
167 my @result = grep { $_->sub_class eq 'segment' } $self->$orig( @_ );
3265b0ce 168 return @result;
169};
170
7854e12e 171# Wrapper around merge_nodes
784877d9 172
173sub merge_readings {
174 my $self = shift;
175 my $first_node = shift;
176 my $second_node = shift;
177 $first_node->merge_from( $second_node );
178 unshift( @_, $first_node, $second_node );
179 return $self->graph->merge_nodes( @_ );
180}
181
15d2d3df 182# Extra graph-alike utility
183sub has_path {
184 my( $self, $source, $target, $label ) = @_;
185 my @paths = $source->edges_to( $target );
186 my @relevant = grep { $_->label eq $label } @paths;
b15511bf 187 return scalar @relevant;
188}
189
190## Dealing with groups of readings, i.e. segments.
191
192sub add_segment {
193 my( $self, @items ) = @_;
194 my $segment = Text::Tradition::Collation::Segment->new( 'members' => \@items );
195 return $segment;
15d2d3df 196}
197
3265b0ce 198## Dealing with relationships between readings. This is a different
4cdd82f1 199## sort of graph edge. Return a success/failure value and a list of
200## node pairs that have been linked.
3265b0ce 201
202sub add_relationship {
b15511bf 203 my( $self, $source, $target, $options ) = @_;
ef9d481f 204
205 # Make sure there is not another relationship between these two
b15511bf 206 # readings or segments already
ef9d481f 207 $source = $self->reading( $source )
b15511bf 208 unless ref( $source ) && $source->isa( 'Graph::Easy::Node' );
ef9d481f 209 $target = $self->reading( $target )
b15511bf 210 unless ref( $target ) && $target->isa( 'Graph::Easy::Node' );
4cdd82f1 211 foreach my $rel ( $source->edges_to( $target ), $target->edges_to( $source ) ) {
212 if( $rel->class eq 'edge.relationship' ) {
213 return ( undef, "Relationship already exists between these readings" );
214 } else {
215 return ( undef, "There is a witness path between these readings" );
216 }
217 }
218
219 if( $source->has_position && $target->has_position ) {
220 unless( grep { $_ eq $target } $self->same_position_as( $source ) ) {
221 return( undef, "Cannot set relationship at different positions" );
ef9d481f 222 }
223 }
224
4cdd82f1 225 my @joined = ( [ $source->name, $target->name ] ); # Keep track of the nodes we join.
226
227 $options->{'this_relation'} = [ $source, $target ];
b15511bf 228 my $rel = Text::Tradition::Collation::Relationship->new( %$options );
3265b0ce 229 $self->graph->add_edge( $source, $target, $rel );
b15511bf 230 if( $options->{'global'} ) {
3265b0ce 231 # Look for all readings with the source label, and if there are
232 # colocated readings with the target label, join them too.
4cdd82f1 233 foreach my $r ( grep { $_->label eq $source->label } $self->readings() ) {
234 next if $r->name eq $source->name;
3265b0ce 235 my @colocated = grep { $_->label eq $target->label }
236 $self->same_position_as( $r );
237 if( @colocated ) {
238 warn "Multiple readings with same label at same position!"
239 if @colocated > 1;
4cdd82f1 240 my $colo = $colocated[0];
241 next if $colo->edges_to( $r ) || $r->edges_to( $colo );
242 $options->{'primary_relation'} = $options->{'this_relation'};
243 $options->{'this_relation'} = [ $r, $colocated[0] ];
b15511bf 244 my $dup_rel = Text::Tradition::Collation::Relationship->new( %$options );
3265b0ce 245 $self->graph->add_edge( $r, $colocated[0], $dup_rel );
4cdd82f1 246 push( @joined, [ $r->name, $colocated[0]->name ] );
3265b0ce 247 }
248 }
249 }
4cdd82f1 250 return( 1, @joined );
3265b0ce 251}
252
8e1394aa 253=head2 Output method(s)
254
255=over
256
257=item B<as_svg>
258
259print $graph->as_svg( $recalculate );
260
261Returns an SVG string that represents the graph. Uses GraphViz to do
4a8828f0 262this, because Graph::Easy doesn\'t cope well with long graphs. Unless
8e1394aa 263$recalculate is passed (and is a true value), the method will return a
264cached copy of the SVG after the first call to the method.
265
266=cut
267
268sub as_svg {
269 my( $self, $recalc ) = @_;
270 return $self->svg if $self->has_svg;
271
3265b0ce 272 $self->collapse_graph_paths();
8e1394aa 273
274 my @cmd = qw/dot -Tsvg/;
275 my( $svg, $err );
df6d9812 276 my $in = $self->as_dot();
8e1394aa 277 run( \@cmd, \$in, ">", binary(), \$svg );
df6d9812 278 $self->_save_svg( $svg );
3265b0ce 279 $self->expand_graph_paths();
8e1394aa 280 return $svg;
281}
282
df6d9812 283=item B<as_dot>
284
285print $graph->as_dot( $view, $recalculate );
286
287Returns a string that is the collation graph expressed in dot
288(i.e. GraphViz) format. The 'view' argument determines what kind of
289graph is produced.
290 * 'path': a graph of witness paths through the collation (DEFAULT)
291 * 'relationship': a graph of how collation readings relate to
292 each other
293
294=cut
295
296sub as_dot {
297 my( $self, $view ) = @_;
298 $view = 'path' unless $view;
299 # TODO consider making some of these things configurable
300 my $dot = sprintf( "digraph %s {\n", $self->tradition->name );
301 $dot .= "\tedge [ arrowhead=open ];\n";
302 $dot .= "\tgraph [ rankdir=LR ];\n";
303 $dot .= sprintf( "\tnode [ fontsize=%d, fillcolor=%s, style=%s, shape=%s ];\n",
304 11, "white", "filled", $self->graph->get_attribute( 'node', 'shape' ) );
305
306 foreach my $reading ( $self->readings ) {
b15511bf 307 # Need not output nodes without separate labels
df6d9812 308 next if $reading->name eq $reading->label;
b15511bf 309 # TODO output readings or segments, but not both
310 next if $reading->class eq 'node.segment';
df6d9812 311 $dot .= sprintf( "\t\"%s\" [ label=\"%s\" ]\n", $reading->name, $reading->label );
312 }
313
314 my @edges = $view eq 'relationship' ? $self->relationships : $self->paths;
315 foreach my $edge ( @edges ) {
316 $dot .= sprintf( "\t\"%s\" -> \"%s\" [ color=\"%s\", fontcolor=\"%s\", label=\"%s\" ]\n",
317 $edge->from->name, $edge->to->name, '#000000', '#000000', $edge->label );
318 }
319
320 $dot .= "}\n";
321 return $dot;
322}
323
8e1394aa 324=item B<as_graphml>
325
326print $graph->as_graphml( $recalculate )
327
328Returns a GraphML representation of the collation graph, with
329transposition information and position information. Unless
330$recalculate is passed (and is a true value), the method will return a
331cached copy of the SVG after the first call to the method.
332
333=cut
334
335sub as_graphml {
336 my( $self, $recalc ) = @_;
337 return $self->graphml if $self->has_graphml;
338
339 # Some namespaces
340 my $graphml_ns = 'http://graphml.graphdrawing.org/xmlns';
341 my $xsi_ns = 'http://www.w3.org/2001/XMLSchema-instance';
342 my $graphml_schema = 'http://graphml.graphdrawing.org/xmlns ' .
343 'http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd';
344
345 # Create the document and root node
346 my $graphml = XML::LibXML->createDocument( "1.0", "UTF-8" );
347 my $root = $graphml->createElementNS( $graphml_ns, 'graphml' );
348 $graphml->setDocumentElement( $root );
349 $root->setNamespace( $xsi_ns, 'xsi', 0 );
350 $root->setAttributeNS( $xsi_ns, 'schemaLocation', $graphml_schema );
351
352 # Add the data keys for nodes
ef9d481f 353 my %node_data_keys;
354 my $ndi = 0;
b15511bf 355 foreach my $datum ( qw/ name reading identical position class / ) {
ef9d481f 356 $node_data_keys{$datum} = 'dn'.$ndi++;
8e1394aa 357 my $key = $root->addNewChild( $graphml_ns, 'key' );
ef9d481f 358 $key->setAttribute( 'attr.name', $datum );
8e1394aa 359 $key->setAttribute( 'attr.type', 'string' );
360 $key->setAttribute( 'for', 'node' );
ef9d481f 361 $key->setAttribute( 'id', $node_data_keys{$datum} );
8e1394aa 362 }
363
df6d9812 364 # Add the data keys for edges, i.e. witnesses
ef9d481f 365 my $edi = 0;
366 my %edge_data_keys;
b15511bf 367 foreach my $edge_key( qw/ witness_main witness_ante_corr relationship class / ) {
ef9d481f 368 $edge_data_keys{$edge_key} = 'de'.$edi++;
8e1394aa 369 my $key = $root->addNewChild( $graphml_ns, 'key' );
ef9d481f 370 $key->setAttribute( 'attr.name', $edge_key );
8e1394aa 371 $key->setAttribute( 'attr.type', 'string' );
372 $key->setAttribute( 'for', 'edge' );
ef9d481f 373 $key->setAttribute( 'id', $edge_data_keys{$edge_key} );
8e1394aa 374 }
ef9d481f 375
8e1394aa 376 # Add the graph, its nodes, and its edges
377 my $graph = $root->addNewChild( $graphml_ns, 'graph' );
378 $graph->setAttribute( 'edgedefault', 'directed' );
379 $graph->setAttribute( 'id', 'g0' ); # TODO make this meaningful
380 $graph->setAttribute( 'parse.edgeids', 'canonical' );
df6d9812 381 $graph->setAttribute( 'parse.edges', scalar($self->paths) );
8e1394aa 382 $graph->setAttribute( 'parse.nodeids', 'canonical' );
df6d9812 383 $graph->setAttribute( 'parse.nodes', scalar($self->readings) );
8e1394aa 384 $graph->setAttribute( 'parse.order', 'nodesfirst' );
385
386 my $node_ctr = 0;
387 my %node_hash;
b15511bf 388 # Add our readings to the graph
b5054ca9 389 foreach my $n ( sort { $a->name cmp $b->name } $self->readings ) {
8e1394aa 390 my $node_el = $graph->addNewChild( $graphml_ns, 'node' );
391 my $node_xmlid = 'n' . $node_ctr++;
392 $node_hash{ $n->name } = $node_xmlid;
393 $node_el->setAttribute( 'id', $node_xmlid );
b15511bf 394 _add_graphml_data( $node_el, $node_data_keys{'name'}, $n->name );
395 _add_graphml_data( $node_el, $node_data_keys{'reading'}, $n->label );
396 _add_graphml_data( $node_el, $node_data_keys{'position'}, $n->position );
397 _add_graphml_data( $node_el, $node_data_keys{'class'}, $n->sub_class );
398 _add_graphml_data( $node_el, $node_data_keys{'identical'}, $n->primary->name )
399 if $n->has_primary;
8e1394aa 400 }
401
b15511bf 402 # Add any segments we have
403 foreach my $n ( sort { $a->name cmp $b->name } $self->segments ) {
404 my $node_el = $graph->addNewChild( $graphml_ns, 'node' );
405 my $node_xmlid = 'n' . $node_ctr++;
406 $node_hash{ $n->name } = $node_xmlid;
407 $node_el->setAttribute( 'id', $node_xmlid );
408 _add_graphml_data( $node_el, $node_data_keys{'class'}, $n->sub_class );
409 _add_graphml_data( $node_el, $node_data_keys{'name'}, $n->name );
410 }
411
412 # Add the path, relationship, and segment edges
df6d9812 413 my $edge_ctr = 0;
ef9d481f 414 foreach my $e ( sort { $a->from->name cmp $b->from->name } $self->graph->edges() ) {
df6d9812 415 my( $name, $from, $to ) = ( 'e'.$edge_ctr++,
b5054ca9 416 $node_hash{ $e->from->name() },
417 $node_hash{ $e->to->name() } );
8e1394aa 418 my $edge_el = $graph->addNewChild( $graphml_ns, 'edge' );
419 $edge_el->setAttribute( 'source', $from );
420 $edge_el->setAttribute( 'target', $to );
421 $edge_el->setAttribute( 'id', $name );
b15511bf 422 # Add the edge class
423 _add_graphml_data( $edge_el, $edge_data_keys{'class'}, $e->sub_class );
424 if( $e->sub_class eq 'path' ) {
ef9d481f 425 # It's a witness path, so add the witness
426 my $base = $e->label;
427 my $key = $edge_data_keys{'witness_main'};
428 # TODO kind of hacky
429 if( $e->label =~ /^(.*?)\s+(\(a\.c\.\))$/ ) {
430 $base = $1;
431 $key = $edge_data_keys{'witness_ante_corr'};
432 }
b15511bf 433 _add_graphml_data( $edge_el, $key, $base );
434 } elsif( $e->sub_class eq 'relationship' ) {
ef9d481f 435 # It's a relationship
b15511bf 436 _add_graphml_data( $edge_el, $edge_data_keys{'relationship'}, $e->label );
437 } # else a segment, nothing to record but source, target, class
8e1394aa 438 }
439
440 # Return the thing
df6d9812 441 $self->_save_graphml( $graphml->toString(1) );
442 return $graphml->toString(1);
443}
444
b15511bf 445sub _add_graphml_data {
446 my( $el, $key, $value ) = @_;
447 my $data_el = $el->addNewChild( $el->namespaceURI, 'data' );
448 return unless defined $value;
449 $data_el->setAttribute( 'key', $key );
450 $data_el->appendText( $value );
8e1394aa 451}
452
3265b0ce 453sub collapse_graph_paths {
1f563ac3 454 my $self = shift;
3265b0ce 455 # Our collation graph has an path per witness. This is great for
1f563ac3 456 # calculation purposes, but terrible for display. Thus we want to
3265b0ce 457 # display only one path between any two nodes.
1f563ac3 458
459 return if $self->collapsed;
460
3265b0ce 461 print STDERR "Collapsing witness paths in graph...\n";
1f563ac3 462
463 # Don't list out every witness if we have more than half to list.
464 my $majority = int( scalar( @{$self->tradition->witnesses} ) / 2 ) + 1;
a0093bf2 465 # But don't compress if there are only a few witnesses.
466 $majority = 4 if $majority < 4;
b15511bf 467 foreach my $node ( $self->readings ) {
1f563ac3 468 my $newlabels = {};
469 # We will visit each node, so we only look ahead.
df6d9812 470 foreach my $edge ( $node->outgoing() ) {
471 next unless $edge->class eq 'edge.path';
472 add_hash_entry( $newlabels, $edge->to->name, $edge->name );
473 $self->del_path( $edge );
1f563ac3 474 }
475
476 foreach my $newdest ( keys %$newlabels ) {
477 my $label;
478 my @compressed_wits = ();
479 if( @{$newlabels->{$newdest}} < $majority ) {
a0093bf2 480 $label = join( ', ', sort( @{$newlabels->{$newdest}} ) );
1f563ac3 481 } else {
482 ## TODO FIX THIS HACK
6a222840 483 my @aclabels;
1f563ac3 484 foreach my $wit ( @{$newlabels->{$newdest}} ) {
6a222840 485 if( $wit =~ /^(.*?)(\s*\(?a\.\s*c\.\)?)$/ ) {
486 push( @aclabels, $wit );
1f563ac3 487 } else {
488 push( @compressed_wits, $wit );
489 }
490 }
a0093bf2 491 $label = join( ', ', 'majority', sort( @aclabels ) );
1f563ac3 492 }
493
3265b0ce 494 my $newpath =
1f563ac3 495 $self->add_path( $node, $self->reading( $newdest ), $label );
496 if( @compressed_wits ) {
3265b0ce 497 $newpath->hidden_witnesses( \@compressed_wits );
1f563ac3 498 }
499 }
500 }
501
502 $self->collapsed( 1 );
503}
504
3265b0ce 505sub expand_graph_paths {
1f563ac3 506 my $self = shift;
3265b0ce 507 # Our collation graph has only one path between any two nodes.
1f563ac3 508 # This is great for display, but not so great for analysis.
3265b0ce 509 # Expand this so that each witness has its own path between any
1f563ac3 510 # two reading nodes.
511 return unless $self->collapsed;
512
3265b0ce 513 print STDERR "Expanding witness paths in graph...\n";
3265b0ce 514 foreach my $path( $self->paths ) {
515 my $from = $path->from;
516 my $to = $path->to;
517 my @wits = split( /, /, $path->label );
518 if( $path->has_hidden_witnesses ) {
519 push( @wits, @{$path->hidden_witnesses} );
1f563ac3 520 }
3265b0ce 521 $self->del_path( $path );
1f563ac3 522 foreach ( @wits ) {
523 $self->add_path( $from, $to, $_ );
524 }
525 }
526 $self->collapsed( 0 );
527}
528
8e1394aa 529=back
530
de51424a 531=head2 Navigation methods
532
533=over
534
8e1394aa 535=item B<start>
536
537my $beginning = $collation->start();
538
539Returns the beginning of the collation, a meta-reading with label '#START#'.
540
541=cut
542
543sub start {
4a8828f0 544 # Return the beginning reading of the graph.
8e1394aa 545 my $self = shift;
546 my( $new_start ) = @_;
547 if( $new_start ) {
548 $self->del_reading( '#START#' );
549 $self->graph->rename_node( $new_start, '#START#' );
550 }
551 return $self->reading('#START#');
552}
553
e2902068 554=item B<reading_sequence>
555
556my @readings = $graph->reading_sequence( $first, $last, $path[, $alt_path] );
557
558Returns the ordered list of readings, starting with $first and ending
559with $last, along the given witness path. If no path is specified,
560assume that the path is that of the base text (if any.)
561
562=cut
563
564sub reading_sequence {
565 my( $self, $start, $end, $witness, $backup ) = @_;
566
930ff666 567 $witness = $self->baselabel unless $witness;
e2902068 568 my @readings = ( $start );
569 my %seen;
570 my $n = $start;
930ff666 571 while( $n && $n ne $end ) {
e2902068 572 if( exists( $seen{$n->name()} ) ) {
573 warn "Detected loop at " . $n->name();
574 last;
575 }
576 $seen{$n->name()} = 1;
577
578 my $next = $self->next_reading( $n, $witness, $backup );
579 warn "Did not find any path for $witness from reading " . $n->name
580 unless $next;
581 push( @readings, $next );
582 $n = $next;
583 }
584 # Check that the last reading is our end reading.
585 my $last = $readings[$#readings];
586 warn "Last reading found from " . $start->label() .
587 " for witness $witness is not the end!"
588 unless $last eq $end;
589
590 return @readings;
591}
592
4a8828f0 593=item B<next_reading>
8e1394aa 594
4a8828f0 595my $next_reading = $graph->next_reading( $reading, $witpath );
8e1394aa 596
4a8828f0 597Returns the reading that follows the given reading along the given witness
930ff666 598path.
8e1394aa 599
600=cut
601
4a8828f0 602sub next_reading {
e2902068 603 # Return the successor via the corresponding path.
8e1394aa 604 my $self = shift;
4a8828f0 605 return $self->_find_linked_reading( 'next', @_ );
8e1394aa 606}
607
4a8828f0 608=item B<prior_reading>
8e1394aa 609
4a8828f0 610my $prior_reading = $graph->prior_reading( $reading, $witpath );
8e1394aa 611
4a8828f0 612Returns the reading that precedes the given reading along the given witness
930ff666 613path.
8e1394aa 614
615=cut
616
4a8828f0 617sub prior_reading {
e2902068 618 # Return the predecessor via the corresponding path.
8e1394aa 619 my $self = shift;
4a8828f0 620 return $self->_find_linked_reading( 'prior', @_ );
8e1394aa 621}
622
4a8828f0 623sub _find_linked_reading {
e2902068 624 my( $self, $direction, $node, $path, $alt_path ) = @_;
625 my @linked_paths = $direction eq 'next'
8e1394aa 626 ? $node->outgoing() : $node->incoming();
e2902068 627 return undef unless scalar( @linked_paths );
8e1394aa 628
e2902068 629 # We have to find the linked path that contains all of the
630 # witnesses supplied in $path.
631 my( @path_wits, @alt_path_wits );
632 @path_wits = $self->witnesses_of_label( $path ) if $path;
633 @alt_path_wits = $self->witnesses_of_label( $alt_path ) if $alt_path;
634 my $base_le;
635 my $alt_le;
636 foreach my $le ( @linked_paths ) {
930ff666 637 if( $le->name eq $self->baselabel ) {
e2902068 638 $base_le = $le;
639 } else {
640 my @le_wits = $self->witnesses_of_label( $le->name );
641 if( _is_within( \@path_wits, \@le_wits ) ) {
642 # This is the right path.
643 return $direction eq 'next' ? $le->to() : $le->from();
644 } elsif( _is_within( \@alt_path_wits, \@le_wits ) ) {
645 $alt_le = $le;
646 }
8e1394aa 647 }
648 }
e2902068 649 # Got this far? Return the alternate path if it exists.
650 return $direction eq 'next' ? $alt_le->to() : $alt_le->from()
651 if $alt_le;
652
653 # Got this far? Return the base path if it exists.
654 return $direction eq 'next' ? $base_le->to() : $base_le->from()
655 if $base_le;
656
657 # Got this far? We have no appropriate path.
8e1394aa 658 warn "Could not find $direction node from " . $node->label
e2902068 659 . " along path $path";
8e1394aa 660 return undef;
661}
662
4a8828f0 663# Some set logic.
664sub _is_within {
665 my( $set1, $set2 ) = @_;
7854e12e 666 my $ret = @$set1; # will be 0, i.e. false, if set1 is empty
4a8828f0 667 foreach my $el ( @$set1 ) {
668 $ret = 0 unless grep { /^\Q$el\E$/ } @$set2;
669 }
670 return $ret;
671}
672
de51424a 673
674## INITIALIZATION METHODS - for use by parsers
4a8828f0 675# Walk the paths for each witness in the graph, and return the nodes
e2902068 676# that the graph has in common. If $using_base is true, some
677# different logic is needed.
4a8828f0 678
679sub walk_witness_paths {
680 my( $self, $end ) = @_;
681 # For each witness, walk the path through the graph.
682 # Then we need to find the common nodes.
683 # TODO This method is going to fall down if we have a very gappy
684 # text in the collation.
685 my $paths = {};
3a1f2523 686 my @common_readings;
4a8828f0 687 foreach my $wit ( @{$self->tradition->witnesses} ) {
688 my $curr_reading = $self->start;
e2902068 689 my @wit_path = $self->reading_sequence( $self->start, $end,
690 $wit->sigil );
4a8828f0 691 $wit->path( \@wit_path );
e2902068 692
693 # Detect the common readings.
930ff666 694 @common_readings = _find_common( \@common_readings, \@wit_path );
4a8828f0 695 }
696
697 # Mark all the nodes as either common or not.
3a1f2523 698 foreach my $cn ( @common_readings ) {
e2902068 699 print STDERR "Setting " . $cn->name . " / " . $cn->label
700 . " as common node\n";
4a8828f0 701 $cn->make_common;
702 }
703 foreach my $n ( $self->readings() ) {
704 $n->make_variant unless $n->is_common;
705 }
3a1f2523 706 # Return an array of the common nodes in order.
707 return @common_readings;
4a8828f0 708}
709
930ff666 710sub _find_common {
711 my( $common_readings, $new_path ) = @_;
712 my @cr;
713 if( @$common_readings ) {
714 foreach my $n ( @$new_path ) {
715 push( @cr, $n ) if grep { $_ eq $n } @$common_readings;
716 }
717 } else {
718 push( @cr, @$new_path );
719 }
720 return @cr;
721}
722
723sub _remove_common {
724 my( $common_readings, $divergence ) = @_;
725 my @cr;
726 my %diverged;
727 map { $diverged{$_->name} = 1 } @$divergence;
728 foreach( @$common_readings ) {
729 push( @cr, $_ ) unless $diverged{$_->name};
730 }
731 return @cr;
732}
733
734
e2902068 735# An alternative to walk_witness_paths, for use when a collation is
6a222840 736# constructed from a base text and an apparatus. We have the
737# sequences of readings and just need to add path edges.
e2902068 738
6a222840 739sub make_witness_paths {
740 my( $self ) = @_;
e2902068 741
930ff666 742 my @common_readings;
e2902068 743 foreach my $wit ( @{$self->tradition->witnesses} ) {
15d2d3df 744 print STDERR "Making path for " . $wit->sigil . "\n";
6a222840 745 $self->make_witness_path( $wit );
746 @common_readings = _find_common( \@common_readings, $wit->path );
15d2d3df 747 @common_readings = _find_common( \@common_readings, $wit->uncorrected_path );
7854e12e 748 }
b15511bf 749 map { $_->make_common } @common_readings;
6a222840 750 return @common_readings;
7854e12e 751}
752
6a222840 753sub make_witness_path {
7854e12e 754 my( $self, $wit ) = @_;
755 my @chain = @{$wit->path};
15d2d3df 756 my $sig = $wit->sigil;
7854e12e 757 foreach my $idx ( 0 .. $#chain-1 ) {
6a222840 758 $self->add_path( $chain[$idx], $chain[$idx+1], $sig );
7854e12e 759 }
15d2d3df 760 @chain = @{$wit->uncorrected_path};
761 foreach my $idx( 0 .. $#chain-1 ) {
762 my $source = $chain[$idx];
763 my $target = $chain[$idx+1];
b15511bf 764 $self->add_path( $source, $target, $sig.$self->ac_label )
15d2d3df 765 unless $self->has_path( $source, $target, $sig );
766 }
e2902068 767}
768
4a8828f0 769sub common_readings {
770 my $self = shift;
771 my @common = grep { $_->is_common } $self->readings();
4cdd82f1 772 return sort { $a->position->cmp_with( $b->position ) } @common;
4a8828f0 773}
774
775# Calculate the relative positions of nodes in the graph, if they
776# were not given to us.
777sub calculate_positions {
3a1f2523 778 my( $self, @ordered_common ) = @_;
4a8828f0 779
4cdd82f1 780 # First assign positions to all the common nodes.
781 my $l = 1;
782 foreach my $oc ( @ordered_common ) {
783 $oc->position( $l++, 1 );
4a8828f0 784 }
3a1f2523 785
4cdd82f1 786 if( $self->linear ) {
787 # For the space between each common node, we have to find all the chains
788 # from all the witnesses. The longest chain gives us our max, and the
789 # others get min/max ranges to fit.
790 my $first = shift @ordered_common;
791 while( @ordered_common ) {
792 my %paths;
793 my $next = shift @ordered_common;
794 my $longest = 0;
795 foreach my $wit ( @{$self->tradition->witnesses} ) {
796 # Key to the path is not important; we just have to get
797 # all unique paths.
798 my $length = $self->_track_paths( \%paths, $first, $next, $wit->sigil );
799 $longest = $length unless $longest > $length;
800 if( $wit->has_ante_corr ) {
801 my $length = $self->_track_paths( \%paths, $first, $next,
802 $wit->sigil.$self->ac_label, $wit->sigil );
803 $longest = $length unless $longest > $length;
804 }
805 }
806
807 # Transform the path values from unique strings to arrays.
808 foreach my $k ( keys %paths ) {
809 my @v = split( /\s+/, $paths{$k} );
810 $paths{$k} = \@v;
811 }
812
813 # Now %paths has all the unique paths, and we know how long the
814 # longest of these is. Assign positions, starting with the
815 # longest. All non-common positions start at 2.
816 foreach my $path ( sort { scalar @$b <=> scalar @$a } values %paths ) {
817 my $range = $longest - scalar @$path;
818 foreach my $i ( 0 .. $#{$path} ) {
819 my $min = $i+2;
820 my $rdg = $self->reading( $path->[$i] );
821 unless( $rdg->has_position ) {
822 $rdg->position( $first->position->common, $min, $min+$range );
823 }
824 }
825 }
826
827 $first = $next;
930ff666 828 }
4cdd82f1 829 } else {
830
831 # Non-linear positions are pretty much impossible to pin down.
832 # Any reading might appear anywhere in the graph. I guess we
833 # can do positions where there aren't transpositions...
930ff666 834
de51424a 835 }
4cdd82f1 836
837 $self->init_lemmata();
8e1394aa 838}
3a1f2523 839
4cdd82f1 840# Helper function for the guts of calculate_positions.
841sub _track_paths {
842 my $self = shift;
843 my $track_hash = shift;
844 # Args are first, last, wit, backup
845 my @path = $self->reading_sequence( @_ );
846 # Top and tail the array
847 shift @path;
848 pop @path;
849 $track_hash->{$_[2]} = join( ' ', map { $_->name } @path )
850 if @path;
851 return @path;
852}
853
854sub possible_positions {
3a1f2523 855 my $self = shift;
4cdd82f1 856 my @answer;
3a1f2523 857 my %positions = ();
4cdd82f1 858 foreach my $r ( $self->readings ) {
859 next unless $r->has_position;
860 $positions{$r->position->maxref} = 1;
861 }
862 @answer = keys %positions;
de51424a 863 return @answer;
3a1f2523 864}
865
4cdd82f1 866# TODO think about indexing this.
3a1f2523 867sub readings_at_position {
4cdd82f1 868 my( $self, $position, $strict ) = @_;
869 unless( ref( $position ) eq 'Text::Tradition::Collation::Position' ) {
870 $position = Text::Tradition::Collation::Position->new( $position );
871 }
872 my @answer;
873 foreach my $r ( $self->readings ) {
874 push( @answer, $r ) if $r->is_at_position( $position, $strict );
875 }
3a1f2523 876 return @answer;
877}
878
879## Lemmatizer functions
880
881sub init_lemmata {
882 my $self = shift;
4cdd82f1 883
884 foreach my $position ( $self->possible_positions ) {
3a1f2523 885 $self->lemmata->{$position} = undef;
886 }
887
888 foreach my $cr ( $self->common_readings ) {
4cdd82f1 889 $self->lemmata->{$cr->position->maxref} = $cr->name;
3a1f2523 890 }
891}
892
893=item B<lemma_readings>
894
895my @state = $graph->lemma_readings( @readings_delemmatized );
896
897Takes a list of readings that have just been delemmatized, and returns
898a set of tuples of the form ['reading', 'state'] that indicates what
899changes need to be made to the graph.
900
901=over
902
903=item *
904
905A state of 1 means 'lemmatize this reading'
906
907=item *
908
909A state of 0 means 'delemmatize this reading'
910
911=item *
912
913A state of undef means 'an ellipsis belongs in the text here because
914no decision has been made / an earlier decision was backed out'
915
916=back
917
918=cut
919
920sub lemma_readings {
921 my( $self, @toggled_off_nodes ) = @_;
922
923 # First get the positions of those nodes which have been
924 # toggled off.
925 my $positions_off = {};
4cdd82f1 926 map { $positions_off->{ $_->position->reference } = $_->name }
927 @toggled_off_nodes;
de51424a 928
3a1f2523 929 # Now for each position, we have to see if a node is on, and we
4cdd82f1 930 # have to see if a node has been turned off. The lemmata hash
931 # should contain fixed positions, range positions whose node was
932 # just turned off, and range positions whose node is on.
3a1f2523 933 my @answer;
4cdd82f1 934 my %fixed_positions;
935 # TODO One of these is probably redundant.
936 map { $fixed_positions{$_} = 0 } keys %{$self->lemmata};
937 map { $fixed_positions{$_} = 0 } keys %{$positions_off};
938 map { $fixed_positions{$_} = 1 } $self->possible_positions;
939 foreach my $pos ( sort { Text::Tradition::Collation::Position::str_cmp( $a, $b ) } keys %fixed_positions ) {
3a1f2523 940 # Find the state of this position. If there is an active node,
941 # its name will be the state; otherwise the state will be 0
942 # (nothing at this position) or undef (ellipsis at this position)
4cdd82f1 943 my $active = undef;
944 $active = $self->lemmata->{$pos} if exists $self->lemmata->{$pos};
3a1f2523 945
946 # Is there a formerly active node that was toggled off?
947 if( exists( $positions_off->{$pos} ) ) {
948 my $off_node = $positions_off->{$pos};
949 if( $active && $active ne $off_node) {
950 push( @answer, [ $off_node, 0 ], [ $active, 1 ] );
951 } else {
4cdd82f1 952 unless( $fixed_positions{$pos} ) {
953 $active = 0;
954 delete $self->lemmata->{$pos};
955 }
3a1f2523 956 push( @answer, [ $off_node, $active ] );
957 }
958
959 # No formerly active node, so we just see if there is a currently
960 # active one.
961 } elsif( $active ) {
962 # Push the active node, whatever it is.
963 push( @answer, [ $active, 1 ] );
964 } else {
965 # Push the state that is there. Arbitrarily use the first node
966 # at that position.
967 my @pos_nodes = $self->readings_at_position( $pos );
de51424a 968 push( @answer, [ $pos_nodes[0]->name, $self->lemmata->{$pos} ] );
4cdd82f1 969 delete $self->lemmata->{$pos} unless $fixed_positions{$pos};
3a1f2523 970 }
971 }
4cdd82f1 972
3a1f2523 973 return @answer;
974}
975
de51424a 976=item B<toggle_reading>
977
978my @readings_delemmatized = $graph->toggle_reading( $reading_name );
979
980Takes a reading node name, and either lemmatizes or de-lemmatizes
981it. Returns a list of all readings that are de-lemmatized as a result
982of the toggle.
983
984=cut
985
986sub toggle_reading {
987 my( $self, $rname ) = @_;
988
989 return unless $rname;
990 my $reading = $self->reading( $rname );
991 if( !$reading || $reading->is_common() ) {
992 # Do nothing, it's a common node.
993 return;
994 }
995
996 my $pos = $reading->position;
4cdd82f1 997 my $fixed = $reading->position->fixed;
998 my $old_state = $self->lemmata->{$pos->reference};
999
de51424a 1000 my @readings_off;
1001 if( $old_state && $old_state eq $rname ) {
1002 # Turn off the node. We turn on no others by default.
1003 push( @readings_off, $reading );
1004 } else {
1005 # Turn on the node.
4cdd82f1 1006 $self->lemmata->{$pos->reference} = $rname;
1007 # Any other 'on' readings in the same position should be off
1008 # if we have a fixed position.
1009 push( @readings_off, $self->same_position_as( $reading, 1 ) )
1010 if $pos->fixed;
de51424a 1011 # Any node that is an identical transposed one should be off.
1012 push( @readings_off, $reading->identical_readings );
1013 }
1014 @readings_off = unique_list( @readings_off );
4cdd82f1 1015
de51424a 1016 # Turn off the readings that need to be turned off.
1017 my @readings_delemmatized;
1018 foreach my $n ( @readings_off ) {
4cdd82f1 1019 my $npos = $n->position;
1020 my $state = undef;
1021 $state = $self->lemmata->{$npos->reference}
1022 if defined $self->lemmata->{$npos->reference};
de51424a 1023 if( $state && $state eq $n->name ) {
1024 # this reading is still on, so turn it off
1025 push( @readings_delemmatized, $n );
1026 my $new_state = undef;
4cdd82f1 1027 if( $npos->fixed && $n eq $reading ) {
de51424a 1028 # This is the reading that was clicked, so if there are no
4cdd82f1 1029 # other readings there and this is a fixed position, turn off
1030 # the position. In all other cases, restore the ellipsis.
1031 my @other_n = $self->same_position_as( $n ); # TODO do we need strict?
de51424a 1032 $new_state = 0 unless @other_n;
1033 }
4cdd82f1 1034 $self->lemmata->{$npos->reference} = $new_state;
de51424a 1035 } elsif( $old_state && $old_state eq $n->name ) {
1036 # another reading has already been turned on here
1037 push( @readings_delemmatized, $n );
1038 } # else some other reading was on anyway, so pass.
1039 }
1040 return @readings_delemmatized;
1041}
1042
1043sub same_position_as {
4cdd82f1 1044 my( $self, $reading, $strict ) = @_;
de51424a 1045 my $pos = $reading->position;
4cdd82f1 1046 my %onpath = ( $reading->name => 1 );
1047 # TODO This might not always be sufficient. We really want to
1048 # exclude all readings on this one's path between its two
1049 # common points.
1050 map { $onpath{$_->name} = 1 } $reading->neighbor_readings;
1051 my @same = grep { !$onpath{$_->name} }
1052 $self->readings_at_position( $reading->position, $strict );
de51424a 1053 return @same;
1054}
3a1f2523 1055
4a8828f0 1056# Return the string that joins together a list of witnesses for
1057# display on a single path.
1058sub path_label {
1059 my $self = shift;
1060 return join( $self->wit_list_separator, @_ );
1061}
1062
1063sub witnesses_of_label {
de51424a 1064 my( $self, $label ) = @_;
4a8828f0 1065 my $regex = $self->wit_list_separator;
de51424a 1066 my @answer = split( /\Q$regex\E/, $label );
1067 return @answer;
4a8828f0 1068}
8e1394aa 1069
de51424a 1070sub unique_list {
1071 my( @list ) = @_;
1072 my %h;
1073 map { $h{$_->name} = $_ } @list;
1074 return values( %h );
1075}
1076
1f563ac3 1077sub add_hash_entry {
1078 my( $hash, $key, $entry ) = @_;
1079 if( exists $hash->{$key} ) {
1080 push( @{$hash->{$key}}, $entry );
1081 } else {
1082 $hash->{$key} = [ $entry ];
1083 }
1084}
1085
dd3b58b0 1086no Moose;
1087__PACKAGE__->meta->make_immutable;