add some debug code for spotting apparatus double entries
[scpubgit/stemmatology.git] / lib / Text / Tradition / Witness.pm
1 package Text::Tradition::Witness;
2 use Moose;
3 use Moose::Util::TypeConstraints;
4
5 # Sigil. Required identifier for a witness.
6 has 'sigil' => (
7     is => 'ro',
8     isa => 'Str',
9     required => 1,
10     );
11
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.
15 has 'text' => (
16     is => 'rw',
17     isa => 'ArrayRef[Str]',
18     predicate => 'has_text',
19     );
20
21 # Source.  This is where we read in the witness, if not from a
22 # pre-prepared collation.  It is probably a filename.
23 has 'source' => (
24     is => 'ro',
25     isa => 'Str',
26     predicate => 'has_source',
27     );
28
29 has 'path' => (
30     is => 'rw',
31     isa => 'ArrayRef[Text::Tradition::Collation::Reading]',
32     predicate => 'has_path',
33     );         
34
35 has 'uncorrected_path' => (
36     is => 'rw',
37     isa => 'ArrayRef[Text::Tradition::Collation::Reading]',
38     predicate => 'has_ante_corr',
39     );
40     
41
42 sub BUILD {
43     my $self = shift;
44     if( $self->has_source ) {
45         # Read the file and initialize the text.
46         open( WITNESS, $self->source ) or die "Could not open " 
47             . $self->file . "for reading";
48         # TODO support TEI as well as plaintext, sometime
49         my @words;
50         while(<WITNESS>) {
51             chomp;
52             push( @words, split( /\s+/, $_ ) );
53         }
54         close WITNESS;
55         $self->text( \@words );
56     }
57 }
58
59 # If the text is not present, and the path is, and this is a 'get'
60 # request, generate text from path.
61 around text => sub {
62     my $orig = shift;
63     my $self = shift;
64
65     if( $self->has_path && !$self->has_text && !@_ ) {
66         my @words = map { $_->label } @{$self->path};
67         $self->$orig( \@words );
68     }
69     
70     $self->$orig( @_ );
71 };
72
73
74 no Moose;
75 __PACKAGE__->meta->make_immutable;