corrected analysis script that gives raw numbers
[scpubgit/stemmatology.git] / analysis / lib / Text / Tradition / Analysis.pm
CommitLineData
d71100ed 1package Text::Tradition::Analysis;
2
3use strict;
4use warnings;
428bcf0b 5use Algorithm::Diff; # for word similarity measure
03c0a7d7 6use Encode qw/ decode_utf8 encode_utf8 /;
d1348d38 7use Exporter 'import';
b4cb2d60 8use Graph;
a745c3d9 9use JSON qw/ to_json decode_json /;
03c0a7d7 10use LWP::UserAgent;
7e17346f 11use Set::Scalar;
7e17346f 12use Text::Tradition::Analysis::Result;
d71100ed 13use Text::Tradition::Stemma;
d120c995 14use TryCatch;
d71100ed 15
951ddfe8 16use vars qw/ @EXPORT_OK $VERSION /;
a2cf85dd 17@EXPORT_OK = qw/ run_analysis group_variants analyze_variant_location wit_stringify /;
37bf09f4 18$VERSION = "1.1";
951ddfe8 19
d1348d38 20
03c0a7d7 21my $SOLVER_URL = 'http://byzantini.st/cgi-bin/graphcalc.cgi';
7e17346f 22my $unsolved_problems = {};
5c44c598 23
7f52eac8 24=head1 NAME
25
26Text::Tradition::Analysis - functions for stemma analysis of a tradition
27
8943ff68 28=head1 DESCRIPTION
29
30Text::Tradition is a library for representation and analysis of collated
31texts, particularly medieval ones. Where the Collation is the central
32feature of a Tradition, it may also have one or more stemmata associated
33with it, and these stemmata may be analyzed. This package provides the
34following modules:
35
36=over 4
37
38=item * L<Text::Tradition::HasStemma> - a role that will be composed into
39Text::Tradition objects, providing the ability for Text::Tradition::Stemma
40objects to be associated with them.
41
42=item * L<Text::Tradition::Stemma> - an object class that represents stemma
43hypotheses, both rooted (with a single archetype) and unrooted (e.g.
44phylogenetic trees).
45
46=item * Text::Tradition::Analysis (this package). Provides functions for
47the analysis of a given stemma against the collation within a given
48Tradition.
49
50=back
51
7f52eac8 52=head1 SYNOPSIS
53
54 use Text::Tradition;
55 use Text::Tradition::Analysis qw/ run_analysis analyze_variant_location /;
56 my $t = Text::Tradition->new(
57 'name' => 'this is a text',
58 'input' => 'TEI',
59 'file' => '/path/to/tei_parallel_seg_file.xml' );
60 $t->add_stemma( 'dotfile' => $stemmafile );
61
62 my $variant_data = run_analysis( $tradition );
7f52eac8 63
7f52eac8 64=head1 SUBROUTINES
65
88a6bac5 66=head2 run_analysis( $tradition, %opts )
7f52eac8 67
88a6bac5 68Runs the analysis described in analyze_variant_location on every location in the
69collation of the given tradition, with the given options. These include:
7f52eac8 70
88a6bac5 71=over 4
72
73=item * stemma_id - Specify which of the tradition's stemmata to use. Default
74is 0 (i.e. the first).
75
76=item * ranks - Specify a list of location ranks to analyze; exclude the rest.
77
78=item * merge_types - Specify a list of relationship types, where related readings
79should be treated as identical for the purposes of analysis.
80
ffa22d6f 81=item * exclude_type1 - Exclude those ranks whose groupings have only type-1 variants.
82
88a6bac5 83=back
7f52eac8 84
85=begin testing
86
87use Text::Tradition;
88use Text::Tradition::Analysis qw/ run_analysis analyze_variant_location /;
89
90my $datafile = 't/data/florilegium_tei_ps.xml';
91my $tradition = Text::Tradition->new( 'input' => 'TEI',
92 'name' => 'test0',
93 'file' => $datafile );
94my $s = $tradition->add_stemma( 'dotfile' => 't/data/florilegium.dot' );
95is( ref( $s ), 'Text::Tradition::Stemma', "Added stemma to tradition" );
96
f00cefe8 97my %expected_genealogical = (
a44aaf2a 98 1 => 0,
f00cefe8 99 2 => 1,
a44aaf2a 100 3 => 0,
101 5 => 0,
102 7 => 0,
103 8 => 0,
104 10 => 0,
f00cefe8 105 13 => 1,
a44aaf2a 106 33 => 0,
107 34 => 0,
108 37 => 0,
109 60 => 0,
f00cefe8 110 81 => 1,
a44aaf2a 111 84 => 0,
112 87 => 0,
113 101 => 0,
114 102 => 0,
f00cefe8 115 122 => 1,
a44aaf2a 116 157 => 0,
f00cefe8 117 166 => 1,
118 169 => 1,
a44aaf2a 119 200 => 0,
f00cefe8 120 216 => 1,
121 217 => 1,
122 219 => 1,
123 241 => 1,
124 242 => 1,
125 243 => 1,
126);
127
7e17346f 128my $data = run_analysis( $tradition, calcdsn => 'dbi:SQLite:dbname=t/data/analysis.db' );
7234b01d 129my $c = $tradition->collation;
f00cefe8 130foreach my $row ( @{$data->{'variants'}} ) {
a44aaf2a 131 # Account for rows that used to be "not useful"
132 unless( exists $expected_genealogical{$row->{'id'}} ) {
133 $expected_genealogical{$row->{'id'}} = 1;
134 }
18f48b82 135 my $gen_bool = $row->{'genealogical'} ? 1 : 0;
136 is( $gen_bool, $expected_genealogical{$row->{'id'}},
f00cefe8 137 "Got correct genealogical flag for row " . $row->{'id'} );
7234b01d 138 # Check that we have the right row with the right groups
139 my $rank = $row->{'id'};
140 foreach my $rdghash ( @{$row->{'readings'}} ) {
141 # Skip 'readings' that aren't really
142 next unless $c->reading( $rdghash->{'readingid'} );
143 # Check the rank
144 is( $c->reading( $rdghash->{'readingid'} )->rank, $rank,
145 "Got correct reading rank" );
146 # Check the witnesses
147 my @realwits = sort $c->reading_witnesses( $rdghash->{'readingid'} );
148 my @sgrp = sort @{$rdghash->{'group'}};
149 is_deeply( \@sgrp, \@realwits, "Reading analyzed with correct groups" );
150 }
f00cefe8 151}
a44aaf2a 152is( $data->{'variant_count'}, 58, "Got right total variant number" );
b4cb2d60 153# TODO Make something meaningful of conflict count, maybe test other bits
7f52eac8 154
155=end testing
156
157=cut
158
d71100ed 159sub run_analysis {
88a6bac5 160 my( $tradition, %opts ) = @_;
f00cefe8 161 my $c = $tradition->collation;
7e17346f 162 my $aclabel = $c->ac_label;
88a6bac5 163
164 my $stemma_id = $opts{'stemma_id'} || 0;
1d73ecad 165 my @ranks = ref( $opts{'ranks'} ) eq 'ARRAY' ? @{$opts{'ranks'}} : ();
e23225e7 166 my $collapse = Set::Scalar->new();
167 if( $opts{'merge_types'} && ref( $opts{'merge_types'} ) eq 'ARRAY' ) {
168 $collapse->insert( @{$opts{'merge_types'}} );
169 } elsif( $opts{'merge_types'} ) {
170 $collapse->insert( $opts{'merge_types'} );
171 }
7e17346f 172
173 # Make sure we have a lookup DB for graph calculation results; this will die
174 # if calcdir or calcdsn isn't passed.
03c0a7d7 175 my $dir;
176 if( exists $opts{'calcdir'} ) {
177 $dir = delete $opts{'calcdir'}
178 } elsif ( exists $opts{'calcdsn'} ) {
8943ff68 179 eval { require Text::Tradition::Directory };
180 if( $@ ) {
181 throw( "Could not instantiate a directory for " . $opts{'calcdsn'}
182 . ": $@" );
183 }
03c0a7d7 184 $dir = Text::Tradition::Directory->new( dsn => $opts{'calcdsn'} );
185 }
88a6bac5 186
187 # Get the stemma
188 my $stemma = $tradition->stemma( $stemma_id );
b4cb2d60 189
4ce27d42 190 # Figure out which witnesses we are working with - that is, the ones that
191 # appear both in the stemma and in the tradition. All others are 'lacunose'
192 # for our purposes.
7e17346f 193 my $lacunose = Set::Scalar->new( $stemma->hypotheticals );
194 my $stemma_wits = Set::Scalar->new( $stemma->witnesses );
195 my $tradition_wits = Set::Scalar->new( map { $_->sigil } $tradition->witnesses );
196 $lacunose->insert( $stemma_wits->symmetric_difference( $tradition_wits )->members );
88a6bac5 197
198 # Find and mark 'common' ranks for exclusion, unless they were
199 # explicitly specified.
200 unless( @ranks ) {
201 my %common_rank;
a44aaf2a 202 foreach my $rdg ( $c->common_readings ) {
88a6bac5 203 $common_rank{$rdg->rank} = 1;
204 }
205 @ranks = grep { !$common_rank{$_} } ( 1 .. $c->end->rank-1 );
d71100ed 206 }
7f52eac8 207
88a6bac5 208 # Group the variants to send to the solver
209 my @groups;
f629cb3b 210 my @use_ranks;
a44aaf2a 211 my %lacunae;
94654e27 212 my $moved = {};
88a6bac5 213 foreach my $rank ( @ranks ) {
7e17346f 214 my $missing = $lacunose->clone();
e23225e7 215 my $rankgroup = group_variants( $tradition, $rank, $missing, $moved, $collapse );
94654e27 216 # Filter out any empty rankgroups
217 # (e.g. from the later rank for a transposition)
218 next unless keys %$rankgroup;
7e17346f 219 # Get the graph for this rankgroup
220 my $rankgraph = _graph_for_grouping( $stemma, $rankgroup, $missing, $aclabel );
ffa22d6f 221 if( $opts{'exclude_type1'} ) {
222 # Check to see whether this is a "useful" group.
7e17346f 223 next unless _useful_variant( $rankgroup, $rankgraph, $aclabel );
ffa22d6f 224 }
f629cb3b 225 push( @use_ranks, $rank );
7e17346f 226 push( @groups, { grouping => $rankgroup, graph => $rankgraph } );
a44aaf2a 227 $lacunae{$rank} = $missing;
d71100ed 228 }
4ce27d42 229 # Run the solver
b7bd7aa5 230 my $answer;
231 try {
232 $answer = solve_variants( $dir, @groups );
233 } catch ( Text::Tradition::Error $e ) {
234 if( $e->message =~ /IDP/ ) {
235 # Something is wrong with the solver; make the variants table anyway
236 $answer->{'variants'} = [];
237 map { push( @{$answer->{'variants'}}, _init_unsolved( $_, 'IDP error' ) ) }
238 @groups;
239 } else {
240 # Something else is wrong; error out.
241 $e->throw;
242 }
243 }
fae07016 244
88a6bac5 245 # Do further analysis on the answer
a44aaf2a 246 my $conflict_count = 0;
7e17346f 247 my $reversion_count = 0;
f629cb3b 248 foreach my $idx ( 0 .. $#use_ranks ) {
88a6bac5 249 my $location = $answer->{'variants'}->[$idx];
250 # Add the rank back in
94654e27 251 my $rank = $use_ranks[$idx];
252 $location->{'id'} = $rank;
7234b01d 253 # Note what our lacunae are
f629cb3b 254 my %lmiss;
7234b01d 255 map { $lmiss{$_} = 1 } @{$lacunae{$use_ranks[$idx]}};
7234b01d 256 $location->{'missing'} = [ keys %lmiss ];
257
88a6bac5 258 # Run the extra analysis we need.
428bcf0b 259 ## TODO We run through all the variants in this call, so
260 ## why not add the reading data there instead of here below?
7e17346f 261 my $graph = $groups[$idx]->{graph};
262 analyze_location( $tradition, $graph, $location, \%lmiss );
7234b01d 263
638e2a95 264 my @layerwits;
7234b01d 265 # Do the final post-analysis tidying up of the data.
a44aaf2a 266 foreach my $rdghash ( @{$location->{'readings'}} ) {
e23225e7 267 $conflict_count++ if $rdghash->{'is_conflict'};
268 $reversion_count++ if $rdghash->{'is_reverted'};
94654e27 269 # Add the reading text back in, setting display value as needed
a44aaf2a 270 my $rdg = $c->reading( $rdghash->{'readingid'} );
94654e27 271 if( $rdg ) {
272 $rdghash->{'text'} = $rdg->text .
273 ( $rdg->rank == $rank ? '' : ' [' . $rdg->rank . ']' );
a445ce40 274 if( $rdg->does( 'Text::Tradition::Morphology' ) ) {
275 $rdghash->{'is_ungrammatical'} = $rdg->grammar_invalid;
276 $rdghash->{'is_nonsense'} = $rdg->is_nonsense;
277 }
94654e27 278 }
f629cb3b 279 # Remove lacunose witnesses from this reading's list now that the
7234b01d 280 # analysis is done
f629cb3b 281 my @realgroup;
7234b01d 282 map { push( @realgroup, $_ ) unless $lmiss{$_} } @{$rdghash->{'group'}};
f629cb3b 283 $rdghash->{'group'} = \@realgroup;
638e2a95 284 # Note any layered witnesses that appear in this group
285 foreach( @realgroup ) {
286 if( $_ =~ /^(.*)\Q$aclabel\E$/ ) {
287 push( @layerwits, $1 );
288 }
289 }
a44aaf2a 290 }
638e2a95 291 $location->{'layerwits'} = \@layerwits if @layerwits;
88a6bac5 292 }
a44aaf2a 293 $answer->{'conflict_count'} = $conflict_count;
7e17346f 294 $answer->{'reversion_count'} = $reversion_count;
f00cefe8 295
88a6bac5 296 return $answer;
d71100ed 297}
298
e23225e7 299=head2 group_variants( $tradition, $rank, $lacunose, $transposed, $merge_relationship_types )
7f52eac8 300
301Groups the variants at the given $rank of the collation, treating any
e23225e7 302relationships in the set $merge_relationship_types as equivalent.
303$lacunose should be a reference to an array, to which the sigla of lacunose
304witnesses at this rank will be appended; $transposed should be a reference
305to a hash, wherein the identities of transposed readings and their
306relatives will be stored.
7f52eac8 307
ffa22d6f 308Returns a hash $group_readings where $rdg is attested by the witnesses listed
309in $group_readings->{$rdg}.
7f52eac8 310
311=cut
312
313# Return group_readings, groups, lacunose
d1348d38 314sub group_variants {
94654e27 315 my( $tradition, $rank, $lacunose, $transposed, $collapse ) = @_;
7f52eac8 316 my $c = $tradition->collation;
335a62ef 317 my $aclabel = $c->ac_label;
d120c995 318 my $table = $c->alignment_table;
7f52eac8 319 # Get the alignment table readings
320 my %readings_at_rank;
7e17346f 321 my $check_for_gaps = Set::Scalar->new();
94654e27 322 my %moved_wits;
d120c995 323 my $has_transposition;
608bbd95 324 my @transp_acgap;
d120c995 325 foreach my $tablewit ( @{$table->{'alignment'}} ) {
7f52eac8 326 my $rdg = $tablewit->{'tokens'}->[$rank-1];
fae07016 327 my $wit = $tablewit->{'witness'};
ffa22d6f 328 # Exclude the witness if it is "lacunose" which if we got here
329 # means "not in the stemma".
7e17346f 330 next if _is_lacunose( $wit, $lacunose, $aclabel );
94654e27 331 # Note if the witness is actually in a lacuna
7f52eac8 332 if( $rdg && $rdg->{'t'}->is_lacuna ) {
335a62ef 333 _add_to_witlist( $wit, $lacunose, $aclabel );
94654e27 334 # Otherwise the witness either has a positive reading...
7f52eac8 335 } elsif( $rdg ) {
94654e27 336 # If the reading has been counted elsewhere as a transposition, ignore it.
337 if( $transposed->{$rdg->{'t'}->id} ) {
d120c995 338 # TODO Does this cope with three-way transpositions?
94654e27 339 map { $moved_wits{$_} = 1 } @{$transposed->{$rdg->{'t'}->id}};
340 next;
341 }
342 # Otherwise, record it...
343 $readings_at_rank{$rdg->{'t'}->id} = $rdg->{'t'};
344 # ...and grab any transpositions, and their relations.
ee26c4d9 345 my @transp = grep { $_->rank != $rank } _all_related( $rdg->{'t'} );
94654e27 346 foreach my $trdg ( @transp ) {
d120c995 347 next if exists $readings_at_rank{$trdg->id};
348 $has_transposition = 1;
349 my @affected_wits = _table_witnesses(
608bbd95 350 $table, $trdg->rank, $trdg, $lacunose, $aclabel );
d120c995 351 next unless @affected_wits;
352 map { $moved_wits{$_} = 1 } @affected_wits;
608bbd95 353 my @thisloc_wits = _table_witnesses( $table, $rank, $rdg->{'t'},
f9595796 354 $lacunose, $aclabel );
355 # Check to see if our affected wits have layers that do something
356 # wacky.
357 my %transploc_gaps;
358 map { $transploc_gaps{$_} = 1 }
608bbd95 359 _table_witnesses( $table, $trdg->rank, undef, $lacunose, $aclabel );
f9595796 360 foreach my $aw ( @affected_wits ) {
608bbd95 361 if( $transploc_gaps{$aw.$aclabel} ) {
362 push( @thisloc_wits, $aw.$aclabel );
363 push( @transp_acgap, $aw.$aclabel );
364 }
f9595796 365 }
366 # Record which witnesses we should count as already analyzed when we
367 # get to the transposed reading's own rank.
368 $transposed->{$trdg->id} = \@thisloc_wits;
94654e27 369 $readings_at_rank{$trdg->id} = $trdg;
370 }
371 # ...or it is empty, ergo a gap.
7f52eac8 372 } else {
7e17346f 373 _add_to_witlist( $wit, $check_for_gaps, $aclabel );
7f52eac8 374 }
375 }
608bbd95 376 # Push all the transposition layer gaps onto our list
377 $check_for_gaps->insert( @transp_acgap );
378 # Now remove from our 'gaps' any witnesses known to have been dealt with elsewhere.
7e17346f 379 my $gap_wits = Set::Scalar->new();
380 map { _add_to_witlist( $_, $gap_wits, $aclabel )
381 unless $moved_wits{$_} } $check_for_gaps->members;
382
383 # Group the readings, collapsing groups by relationship if needed.
d120c995 384 my $grouped_readings = {};
4ce27d42 385 foreach my $rdg ( values %readings_at_rank ) {
7f52eac8 386 # Skip readings that have been collapsed into others.
d120c995 387 next if exists $grouped_readings->{$rdg->id}
388 && $grouped_readings->{$rdg->id} eq 'COLLAPSE';
4ce27d42 389 # Get the witness list, including from readings collapsed into this one.
608bbd95 390 my @wits = _table_witnesses( $table, $rdg->rank, $rdg, $lacunose, $aclabel );
e23225e7 391 if( $collapse && $collapse->size ) {
392 my $filter = sub { $collapse->has( $_[0]->type ) };
7f52eac8 393 foreach my $other ( $rdg->related_readings( $filter ) ) {
608bbd95 394 my @otherwits = _table_witnesses( $table, $other->rank, $other, $lacunose, $aclabel );
fae07016 395 push( @wits, @otherwits );
d120c995 396 $grouped_readings->{$other->id} = 'COLLAPSE';
d1348d38 397 }
398 }
7e17346f 399 $grouped_readings->{$rdg->id} = Set::Scalar->new( @wits );
7f52eac8 400 }
7e17346f 401 if( $gap_wits->members ) {
402 $grouped_readings->{'(omitted)'} = $gap_wits;
403 }
404
7f52eac8 405 # Get rid of our collapsed readings
7e17346f 406 map { delete $grouped_readings->{$_} if(
407 $grouped_readings->{$_} eq 'COLLAPSE'
408 || $grouped_readings->{$_}->is_empty ) }
409 keys %$grouped_readings;
d120c995 410
411 # If something was transposed, check the groups for doubled-up readings
412 if( $has_transposition ) {
62a39b8f 413 # print STDERR "Group for rank $rank:\n";
414 # map { print STDERR "\t$_: " . join( ' ' , @{$grouped_readings->{$_}} ) . "\n" }
415 # keys %$grouped_readings;
d120c995 416 _check_transposed_consistency( $c, $rank, $transposed, $grouped_readings );
417 }
7f52eac8 418
4ce27d42 419 # Return the result
d120c995 420 return $grouped_readings;
421}
422
ee26c4d9 423sub _all_related {
f9b9b580 424 # Except by repetition
ee26c4d9 425 my $rdg = shift;
426 my $c = $rdg->collation;
f9b9b580 427 my @check = ( $rdg );
428 my %seen;
429 while( @check ) {
430 my @next;
431 foreach my $ck ( @check ) {
432 $seen{"$ck"} = 1;
433 push( @next, grep { !$seen{"$_"} }
434 $ck->related_readings( sub { $_[0]->type ne 'repetition' } ) );
435 }
436 @check = @next;
437 }
438
439
440 my @all = map { $c->reading( $_ ) } keys %seen;
ee26c4d9 441 return @all;
442}
443
444
d120c995 445# Helper function to query the alignment table for all witnesses (a.c. included)
446# that have a given reading at its rank.
447sub _table_witnesses {
608bbd95 448 my( $table, $rank, $trdg, $lacunose, $aclabel ) = @_;
449 my $tableidx = $rank - 1;
7e17346f 450 my $has_reading = Set::Scalar->new();
d120c995 451 foreach my $row ( @{$table->{'alignment'}} ) {
452 my $wit = $row->{'witness'};
7e17346f 453 next if _is_lacunose( $wit, $lacunose, $aclabel );
d120c995 454 my $rdg = $row->{'tokens'}->[$tableidx];
f9595796 455 if( $trdg ) {
456 # We have some positive reading we want.
457 next unless exists $rdg->{'t'} && defined $rdg->{'t'};
458 if( $trdg->is_lacuna ) {
459 _add_to_witlist( $wit, $has_reading, $aclabel )
460 if $rdg->{'t'}->is_lacuna;
461 } else {
462 _add_to_witlist( $wit, $has_reading, $aclabel )
463 if $rdg->{'t'}->id eq $trdg->id;
464 }
465 } else {
466 # We want the omissions.
467 next if exists $rdg->{'t'} && defined $rdg->{'t'};
468 _add_to_witlist( $wit, $has_reading, $aclabel )
469 }
d120c995 470 }
7e17346f 471 return $has_reading->members;
472}
473
474# Helper function to see if a witness is lacunose even if we are asking about
475# the a.c. version
476sub _is_lacunose {
477 my ( $wit, $lac, $acstr ) = @_;
478 if( $wit =~ /^(.*)\Q$acstr\E$/ ) {
479 $wit = $1;
480 }
481 return $lac->has( $wit );
d1348d38 482}
483
335a62ef 484# Helper function to ensure that X and X a.c. never appear in the same list.
485sub _add_to_witlist {
486 my( $wit, $list, $acstr ) = @_;
335a62ef 487 if( $wit =~ /^(.*)\Q$acstr\E$/ ) {
7e17346f 488 # Don't add X a.c. if we already have X
489 return if $list->has( $1 );
335a62ef 490 } else {
7e17346f 491 # Delete X a.c. if we are about to add X
492 $list->delete( $wit.$acstr );
335a62ef 493 }
7e17346f 494 $list->insert( $wit );
335a62ef 495}
496
d120c995 497sub _check_transposed_consistency {
498 my( $c, $rank, $transposed, $groupings ) = @_;
499 my %seen_wits;
500 my %thisrank;
501 # Note which readings are actually at this rank, and which witnesses
502 # belong to which reading.
503 foreach my $rdg ( keys %$groupings ) {
504 my $rdgobj = $c->reading( $rdg );
505 # Count '(omitted)' as a reading at this rank
506 $thisrank{$rdg} = 1 if !$rdgobj || $rdgobj->rank == $rank;
507 map { push( @{$seen_wits{$_}}, $rdg ) } @{$groupings->{$rdg}};
508 }
509 # Our work is done if we have no witness belonging to more than one
510 # reading.
511 my @doubled = grep { scalar @{$seen_wits{$_}} > 1 } keys %seen_wits;
512 return unless @doubled;
513 # If we have a symmetric related transposition, drop the non-rank readings.
514 if( @doubled == scalar keys %seen_wits ) {
515 foreach my $rdg ( keys %$groupings ) {
516 if( !$thisrank{$rdg} ) {
517 my $groupstr = wit_stringify( $groupings->{$rdg} );
518 my ( $matched ) = grep { $groupstr eq wit_stringify( $groupings->{$_} ) }
519 keys %thisrank;
520 delete $groupings->{$rdg};
521 # If we found a group match, assume there is a symmetry happening.
522 # TODO think more about this
62a39b8f 523 # print STDERR "*** Deleting symmetric reading $rdg\n";
d120c995 524 unless( $matched ) {
525 delete $transposed->{$rdg};
526 warn "Found problem in evident symmetry with reading $rdg";
527 }
528 }
529 }
530 # Otherwise 'unhook' the transposed reading(s) that have duplicates.
531 } else {
532 foreach my $dup ( @doubled ) {
533 foreach my $rdg ( @{$seen_wits{$dup}} ) {
534 next if $thisrank{$rdg};
535 next unless exists $groupings->{$rdg};
62a39b8f 536 # print STDERR "*** Deleting asymmetric doubled-up reading $rdg\n";
d120c995 537 delete $groupings->{$rdg};
538 delete $transposed->{$rdg};
539 }
540 }
541 # and put any now-orphaned readings into an 'omitted' reading.
542 foreach my $wit ( keys %seen_wits ) {
543 unless( grep { exists $groupings->{$_} } @{$seen_wits{$wit}} ) {
7e17346f 544 $groupings->{'(omitted)'} = Set::Scalar->new()
545 unless exists $groupings->{'(omitted)'};
d120c995 546 _add_to_witlist( $wit, $groupings->{'(omitted)'}, $c->ac_label );
547 }
548 }
549 }
550}
551
7e17346f 552# For the given grouping, return its situation graph based on the stemma.
553sub _graph_for_grouping {
554 my( $stemma, $grouping, $lacunose, $aclabel ) = @_;
555 my $acwits = [];
556 my $extant = {};
557 foreach my $gs ( values %$grouping ) {
558 map {
559 if( $_ =~ /^(.*)\Q$aclabel\E$/ ) {
560 push( @$acwits, $1 ) unless $lacunose->has( $1 );
561 } else {
562 $extant->{$_} = 1 unless $lacunose->has( $_ );
563 }
564 } $gs->members;
565 }
566 my $graph;
567 try {
568 # contig contains all extant wits and all hypothetical wits
569 # needed to make up the groups.
ace5fce5 570 $graph = $stemma->situation_graph( $extant, $acwits, $aclabel );
7e17346f 571 } catch ( Text::Tradition::Error $e ) {
ee26c4d9 572 $DB::single = 1;
03c0a7d7 573 throw( "Could not extend graph with given extant and a.c. witnesses: "
574 . $e->message );
7e17346f 575 } catch {
03c0a7d7 576 throw( "Could not extend graph with a.c. witnesses @$acwits" );
7e17346f 577 }
578 return $graph;
579}
88a6bac5 580
7e17346f 581=head2 solve_variants( $calcdir, @groups )
582
583Looks up the set of groups in the answers provided by the external graph solver
584service and returns a cleaned-up answer, adding the rank IDs back where they belong.
88a6bac5 585
88a6bac5 586The answer has the form
587 { "variants" => [ array of variant location structures ],
588 "variant_count" => total,
589 "conflict_count" => number of conflicts detected,
590 "genealogical_count" => number of solutions found }
591
592=cut
593
594sub solve_variants {
03c0a7d7 595 my( @groups ) = @_;
596
a745c3d9 597 # Are we using a local result directory, or did we pass an empty value
598 # for the directory?
03c0a7d7 599 my $dir;
a745c3d9 600 unless( ref( $groups[0] ) eq 'HASH' ) {
03c0a7d7 601 $dir = shift @groups;
602 }
335a62ef 603
03c0a7d7 604 ## For each graph/group combo, make a Text::Tradition::Analysis::Result
605 ## object so that we can send it off for IDP lookup.
7e17346f 606 my $variants = [];
607 my $genealogical = 0; # counter
03c0a7d7 608 # TODO Optimize for unique graph problems
554e2e7d 609 my %problems;
7e17346f 610 foreach my $graphproblem ( @groups ) {
03c0a7d7 611 # Construct the calc result key and look up its answer
612 my $problem = Text::Tradition::Analysis::Result->new(
613 graph => $graphproblem->{'graph'},
614 setlist => [ values %{$graphproblem->{'grouping'}} ] );
554e2e7d 615 if( exists $problems{$problem->object_key} ) {
616 $problem = $problems{$problem->object_key};
617 } else {
618 $problems{$problem->object_key} = $problem;
619 }
620 $graphproblem->{'object'} = $problem;
03c0a7d7 621 }
622
554e2e7d 623 my %results;
03c0a7d7 624 if( $dir ) {
625 my $scope = $dir->new_scope;
554e2e7d 626 map { $results{$_} = $dir->lookup( $_ ) || $problems{$_} } keys %problems;
627 } else {
628 my $json = JSON->new->allow_blessed->convert_blessed->utf8->encode(
629 [ values %problems ] );
03c0a7d7 630 # Send it off and get the result
631 # print STDERR "Sending request: " . decode_utf8( $json ) . "\n";
632 my $ua = LWP::UserAgent->new();
633 my $resp = $ua->post( $SOLVER_URL, 'Content-Type' => 'application/json',
634 'Content' => $json );
a745c3d9 635 my $answer;
03c0a7d7 636 if( $resp->is_success ) {
a745c3d9 637 $answer = decode_json( $resp->content );
03c0a7d7 638 throw( "Unexpected answer from IDP: $answer" ) unless ref( $answer ) eq 'ARRAY';
639 } else {
640 throw( "IDP solver returned " . $resp->status_line . " / " . $resp->content
641 . "; cannot run graph analysis" );
642 }
643 # One more sanity check
644 throw( "Something went wrong with answer symmetricity" )
554e2e7d 645 unless keys( %problems ) == @$answer;
03c0a7d7 646 # Convert the results
554e2e7d 647 foreach my $a ( @$answer ) {
648 my $r = Text::Tradition::Analysis::Result->new( $a );
649 $results{$r->object_key} = $r;
650 }
03c0a7d7 651 }
652
653 # We now have a single JSON-encoded Result object per problem sent. Fold its
654 # answers into our variant info structure.
554e2e7d 655 foreach my $graphproblem ( @groups ) {
656 my $result = $results{$graphproblem->{'object'}->object_key}
657 || $graphproblem->{'object'};
03c0a7d7 658
7e17346f 659 # Initialize the result structure for this graph problem
b7bd7aa5 660 my $vstruct;
661 if( $result->status eq 'OK' ) {
662 $vstruct = { readings => [] };
663 push( @$variants, $vstruct );
664 } else {
665 push( @$variants, _init_unsolved( $graphproblem, $result->status ) );
7e17346f 666 next;
5c44c598 667 }
b7bd7aa5 668
7e17346f 669 # 1. Did the group evaluate as genealogical?
03c0a7d7 670 $vstruct->{genealogical} = $result->is_genealogical;
671 $genealogical++ if $result->is_genealogical;
7e17346f 672
673 # 2. What are the calculated minimum groupings for each variant loc?
674 foreach my $rid ( keys %{$graphproblem->{grouping}} ) {
675 my $inputset = $graphproblem->{grouping}->{$rid};
03c0a7d7 676 my $minset = $result->minimum_grouping_for( $inputset );
7e17346f 677 push( @{$vstruct->{readings}}, { readingid => $rid, group => $minset } );
6d25a3a0 678 }
7e17346f 679
680 # 3. What are the sources and classes calculated for each witness?
03c0a7d7 681 $vstruct->{witcopy_types} = { $result->classes };
7e17346f 682 $vstruct->{reading_roots} = {};
03c0a7d7 683 map { $vstruct->{reading_roots}->{$_} = 1 } $result->sources;
7e17346f 684
88a6bac5 685 }
686
687 return { 'variants' => $variants,
688 'variant_count' => scalar @$variants,
689 'genealogical_count' => $genealogical };
690}
691
b7bd7aa5 692sub _init_unsolved {
693 my( $graphproblem, $status ) = @_;
694 my $vstruct = { 'readings' => [] };
695 $vstruct->{'unsolved'} = $status;
696 foreach my $rid ( keys %{$graphproblem->{grouping}} ) {
697 push( @{$vstruct->{readings}}, { readingid => $rid,
698 group => [ $graphproblem->{grouping}->{$rid}->members ] } );
699 }
700 return $vstruct;
701}
702
fae07016 703=head2 analyze_location ( $tradition, $graph, $location_hash )
7f52eac8 704
fae07016 705Given the tradition, its stemma graph, and the solution from the graph solver,
706work out the rest of the information we want. For each reading we need missing,
5c44c598 707conflict, reading_parents, independent_occurrence, followed, not_followed,
708and follow_unknown. Alters the location_hash in place.
7f52eac8 709
710=cut
732152b1 711
fae07016 712sub analyze_location {
7e17346f 713 my ( $tradition, $graph, $variant_row, $lacunose ) = @_;
94654e27 714 my $c = $tradition->collation;
fae07016 715
03c0a7d7 716 if( exists $variant_row->{'unsolved'} ) {
717 return;
718 }
719 my $reading_roots = delete $variant_row->{'reading_roots'};
720 my $classinfo = delete $variant_row->{'witcopy_types'};
721
fae07016 722 # Make a hash of all known node memberships, and make the subgraphs.
723 my $contig = {};
fae07016 724 my $subgraph = {};
638e2a95 725 my $acstr = $c->ac_label;
726 my @acwits;
5c44c598 727
5c44c598 728 # Note which witnesses positively belong to which group. This information
729 # comes ultimately from the IDP solver.
730 # Also make a note of the reading's roots.
fae07016 731 foreach my $rdghash ( @{$variant_row->{'readings'}} ) {
732 my $rid = $rdghash->{'readingid'};
5c44c598 733 my @roots;
638e2a95 734 foreach my $wit ( @{$rdghash->{'group'}} ) {
735 $contig->{$wit} = $rid;
736 if( $wit =~ /^(.*)\Q$acstr\E$/ ) {
737 push( @acwits, $1 );
738 }
5c44c598 739 if( exists $reading_roots->{$wit} && $reading_roots->{$wit} ) {
740 push( @roots, $wit );
741 }
638e2a95 742 }
5c44c598 743 $rdghash->{'independent_occurrence'} = \@roots;
94654e27 744 }
7e17346f 745
fae07016 746 # Now that we have all the node group memberships, calculate followed/
bebec0e9 747 # non-followed/unknown values for each reading. Also figure out the
748 # reading's evident parent(s).
749 foreach my $rdghash ( @{$variant_row->{'readings'}} ) {
fae07016 750 my $rid = $rdghash->{'readingid'};
428bcf0b 751 my $rdg = $c->reading( $rid );
5c44c598 752 my @roots = @{$rdghash->{'independent_occurrence'}};
7e17346f 753 my @reversions;
754 if( $classinfo ) {
755 @reversions = grep { $classinfo->{$_} eq 'revert' }
756 $rdghash->{'group'}->members;
be590045 757 $rdghash->{'reversions'} = \@reversions;
7e17346f 758 }
5c44c598 759 my @group = @{$rdghash->{'group'}};
fae07016 760
761 # Start figuring things out.
7e17346f 762 $rdghash->{'followed'} = scalar( @group )
763 - ( scalar( @roots ) + scalar( @reversions ) );
bebec0e9 764 # Find the parent readings, if any, of this reading.
7e17346f 765 my $sourceparents = _find_reading_parents( $rid, $graph, $contig, @roots );
7e17346f 766 # Work out relationships between readings and their non-followed parent.
767 _resolve_parent_relationships( $c, $rid, $rdg, $sourceparents );
be590045 768 $rdghash->{'source_parents'} = $sourceparents;
e23225e7 769
770 if( @reversions ) {
771 my $revparents = _find_reading_parents( $rid, $graph, $contig, @reversions );
772 _resolve_parent_relationships( $c, $rid, $rdg, $revparents );
773 $rdghash->{'reversion_parents'} = $revparents;
774 }
bebec0e9 775
776 # Find the number of times this reading was altered, and the number of
777 # times we're not sure.
778 my( %nofollow, %unknownfollow );
5c44c598 779 foreach my $wit ( @{$rdghash->{'group'}} ) {
bebec0e9 780 foreach my $wchild ( $graph->successors( $wit ) ) {
5c44c598 781 if( $reading_roots->{$wchild} && $contig->{$wchild}
782 && $contig->{$wchild} ne $rid ) {
bebec0e9 783 # It definitely changed here.
784 $nofollow{$wchild} = 1;
785 } elsif( !($contig->{$wchild}) ) {
786 # The child is a hypothetical node not definitely in
787 # any group. Answer is unknown.
788 $unknownfollow{$wchild} = 1;
5c44c598 789 } # else it is either in our group, or it is a non-root node in a
790 # known group and therefore is presumed to have its reading from
791 # its group, not this link.
bebec0e9 792 }
793 }
794 $rdghash->{'not_followed'} = keys %nofollow;
795 $rdghash->{'follow_unknown'} = keys %unknownfollow;
fae07016 796
797 # Now say whether this reading represents a conflict.
798 unless( $variant_row->{'genealogical'} ) {
7e17346f 799 $rdghash->{'is_conflict'} = @roots != 1;
e23225e7 800 $rdghash->{'is_reverted'} = scalar @reversions;
7e17346f 801 }
802 }
803}
804
805sub _find_reading_parents {
806 my( $rid, $graph, $contig, @list ) = @_;
807 my $parenthash = {};
808 foreach my $wit ( @list ) {
809 # Look in the stemma graph to find this witness's extant or known-reading
810 # immediate ancestor(s), and look up the reading that each ancestor holds.
811 my @check = $graph->predecessors( $wit );
812 while( @check ) {
813 my @next;
814 foreach my $wparent( @check ) {
815 my $preading = $contig->{$wparent};
816 if( $preading && $preading ne $rid ) {
817 $parenthash->{$preading} = 1;
818 } else {
819 push( @next, $graph->predecessors( $wparent ) );
820 }
821 }
822 @check = @next;
823 }
824 }
825 return $parenthash;
826}
827
828sub _resolve_parent_relationships {
829 my( $c, $rid, $rdg, $rdgparents ) = @_;
830 foreach my $p ( keys %$rdgparents ) {
831 # Resolve the relationship of the parent to the reading, and
832 # save it in our hash.
833 my $pobj = $c->reading( $p );
834 my $prep = $pobj ? $pobj->id . ' (' . $pobj->text . ')' : $p;
835 my $phash = { 'label' => $prep };
836 if( $pobj ) {
837 my $rel = $c->get_relationship( $p, $rid );
838 if( $rel ) {
839 _add_to_hash( $rel, $phash );
840 } elsif( $rdg ) {
841 # First check for a transposed relationship
842 if( $rdg->rank != $pobj->rank ) {
843 foreach my $ti ( $rdg->related_readings( 'transposition' ) ) {
844 next unless $ti->text eq $rdg->text;
845 $rel = $c->get_relationship( $ti, $pobj );
846 if( $rel ) {
847 _add_to_hash( $rel, $phash, 1 );
848 last;
849 }
850 }
851 unless( $rel ) {
852 foreach my $ti ( $pobj->related_readings( 'transposition' ) ) {
853 next unless $ti->text eq $pobj->text;
854 $rel = $c->get_relationship( $ti, $rdg );
855 if( $rel ) {
856 _add_to_hash( $rel, $phash, 1 );
857 last;
858 }
859 }
5c44c598 860 }
861 }
7e17346f 862 unless( $rel ) {
863 # and then check for sheer word similarity.
864 my $rtext = $rdg->text;
865 my $ptext = $pobj->text;
866 if( similar( $rtext, $ptext ) ) {
867 # say STDERR "Words $rtext and $ptext judged similar";
868 $phash->{relation} = { type => 'wordsimilar' };
869 }
870 }
5c44c598 871 } else {
7e17346f 872 $phash->{relation} = { type => 'deletion' };
5c44c598 873 }
7e17346f 874 # Get the attributes of the parent object while we are here
875 $phash->{'text'} = $pobj->text if $pobj;
a445ce40 876 if( $pobj && $pobj->does('Text::Tradition::Morphology') ) {
877 $phash->{'is_nonsense'} = $pobj->is_nonsense;
878 $phash->{'is_ungrammatical'} = $pobj->grammar_invalid;
879 }
7e17346f 880 } elsif( $p eq '(omitted)' ) {
ee26c4d9 881 # Check to see if the reading in question is a repetition.
882 my @reps = $rdg->related_readings( 'repetition' );
883 if( @reps ) {
884 $phash->{relation} = { type => 'repetition',
885 annotation => "of reading @reps" };
886 } else {
887 $phash->{relation} = { type => 'addition' };
888 }
7e17346f 889 }
890 # Save it
891 $rdgparents->{$p} = $phash;
892 }
d71100ed 893}
894
428bcf0b 895sub _add_to_hash {
896 my( $rel, $phash, $is_transposed ) = @_;
897 $phash->{relation} = { type => $rel->type };
898 $phash->{relation}->{transposed} = 1 if $is_transposed;
899 $phash->{relation}->{annotation} = $rel->annotation
900 if $rel->has_annotation;
901}
902
903=head2 similar( $word1, $word2 )
904
905Use Algorithm::Diff to get a sense of how close the words are to each other.
906This will hopefully handle substitutions a bit more nicely than Levenshtein.
907
908=cut
909
910#!/usr/bin/env perl
911
912sub similar {
913 my( $word1, $word2 ) = sort { length($a) <=> length($b) } @_;
914 my @let1 = split( '', lc( $word1 ) );
915 my @let2 = split( '', lc( $word2 ) );
916 my $diff = Algorithm::Diff->new( \@let1, \@let2 );
917 my $mag = 0;
918 while( $diff->Next ) {
919 if( $diff->Same ) {
920 # Take off points for longer strings
921 my $cs = $diff->Range(1) - 2;
922 $cs = 0 if $cs < 0;
923 $mag -= $cs;
924 } elsif( !$diff->Items(1) ) {
925 $mag += $diff->Range(2);
926 } elsif( !$diff->Items(2) ) {
927 $mag += $diff->Range(1);
928 } else {
929 # Split the difference for substitutions
930 my $c1 = $diff->Range(1) || 1;
931 my $c2 = $diff->Range(2) || 1;
932 my $cd = ( $c1 + $c2 ) / 2;
933 $mag += $cd;
934 }
935 }
936 return ( $mag <= length( $word1 ) / 2 );
937}
938
5be0cdeb 939sub _useful_variant {
7e17346f 940 my( $rankgroup, $rankgraph, $acstr ) = @_;
5be0cdeb 941
942 # Sort by group size and return
943 my $is_useful = 0;
7e17346f 944 foreach my $rdg ( keys %$rankgroup ) {
945 my @wits = $rankgroup->{$rdg}->members;
946 if( @wits > 1 ) {
5be0cdeb 947 $is_useful++;
948 } else {
7e17346f 949 $is_useful++ unless( $rankgraph->is_sink_vertex( $wits[0] )
950 || $wits[0] =~ /\Q$acstr\E$/ );
5be0cdeb 951 }
952 }
7e17346f 953 return $is_useful > 1;
5be0cdeb 954}
955
7f52eac8 956=head2 wit_stringify( $groups )
957
958Takes an array of witness groupings and produces a string like
959['A','B'] / ['C','D','E'] / ['F']
d71100ed 960
7f52eac8 961=cut
d71100ed 962
963sub wit_stringify {
964 my $groups = shift;
965 my @gst;
966 # If we were passed an array of witnesses instead of an array of
967 # groupings, then "group" the witnesses first.
968 unless( ref( $groups->[0] ) ) {
969 my $mkgrp = [ $groups ];
970 $groups = $mkgrp;
971 }
972 foreach my $g ( @$groups ) {
973 push( @gst, '[' . join( ',', map { "'$_'" } @$g ) . ']' );
974 }
975 return join( ' / ', @gst );
976}
7f52eac8 977
7f52eac8 9781;
979
a745c3d9 980sub throw {
981 Text::Tradition::Error->throw(
982 'ident' => 'Analysis error',
983 'message' => $_[0],
984 );
985}
986
7f52eac8 987=head1 LICENSE
988
989This package is free software and is provided "as is" without express
990or implied warranty. You can redistribute it and/or modify it under
991the same terms as Perl itself.
992
993=head1 AUTHOR
994
995Tara L Andrews E<lt>aurum@cpan.orgE<gt>