add first-cut module for stemma analysis
[scpubgit/stemmatology.git] / lib / Text / Tradition / Witness.pm
CommitLineData
dd3b58b0 1package Text::Tradition::Witness;
2use Moose;
7854e12e 3use Moose::Util::TypeConstraints;
dd3b58b0 4
784877d9 5# Sigil. Required identifier for a witness.
dd3b58b0 6has 'sigil' => (
d047cd52 7 is => 'ro',
8 isa => 'Str',
9 required => 1,
10 );
dd3b58b0 11
d047cd52 12# Text. This is an array of strings (i.e. word tokens).
13# TODO Think about how to handle this for the case of pre-prepared
14# collations, where the tokens are in the graph already.
dd3b58b0 15has 'text' => (
d047cd52 16 is => 'rw',
17 isa => 'ArrayRef[Str]',
de51424a 18 predicate => 'has_text',
d047cd52 19 );
dd3b58b0 20
d047cd52 21# Source. This is where we read in the witness, if not from a
22# pre-prepared collation. It is probably a filename.
23has 'source' => (
24 is => 'ro',
25 isa => 'Str',
8e1394aa 26 predicate => 'has_source',
d047cd52 27 );
784877d9 28
1ed3973e 29# Path. This is an array of Reading nodes that should mirror the
30# text above.
4a8828f0 31has 'path' => (
32 is => 'rw',
33 isa => 'ArrayRef[Text::Tradition::Collation::Reading]',
de51424a 34 predicate => 'has_path',
4a8828f0 35 );
36
b15511bf 37has 'uncorrected_path' => (
6a222840 38 is => 'rw',
b15511bf 39 isa => 'ArrayRef[Text::Tradition::Collation::Reading]',
40 predicate => 'has_ante_corr',
7854e12e 41 );
e2902068 42
43
784877d9 44sub BUILD {
45 my $self = shift;
d047cd52 46 if( $self->has_source ) {
784877d9 47 # Read the file and initialize the text.
d047cd52 48 open( WITNESS, $self->source ) or die "Could not open "
784877d9 49 . $self->file . "for reading";
50 # TODO support TEI as well as plaintext, sometime
51 my @words;
52 while(<WITNESS>) {
53 chomp;
54 push( @words, split( /\s+/, $_ ) );
55 }
56 close WITNESS;
d047cd52 57 $self->text( \@words );
784877d9 58 }
59}
60
de51424a 61# If the text is not present, and the path is, and this is a 'get'
62# request, generate text from path.
63around text => sub {
64 my $orig = shift;
65 my $self = shift;
66
67 if( $self->has_path && !$self->has_text && !@_ ) {
68 my @words = map { $_->label } @{$self->path};
69 $self->$orig( \@words );
70 }
71
72 $self->$orig( @_ );
73};
74
dd3b58b0 75no Moose;
76__PACKAGE__->meta->make_immutable;