add support for alignment table input
[scpubgit/stemmatology.git] / lib / Text / Tradition.pm
CommitLineData
dd3b58b0 1package Text::Tradition;
2
4a8828f0 3use Module::Load;
dd3b58b0 4use Moose;
8e1394aa 5use Text::Tradition::Collation;
6use Text::Tradition::Witness;
dd3b58b0 7
8has 'collation' => (
8e1394aa 9 is => 'ro',
10 isa => 'Text::Tradition::Collation',
11 writer => '_save_collation',
12 );
dd3b58b0 13
14has 'witnesses' => (
8e1394aa 15 traits => ['Array'],
8e1394aa 16 isa => 'ArrayRef[Text::Tradition::Witness]',
17 handles => {
910a0a6d 18 witnesses => 'elements',
19 add_witness => 'push',
8e1394aa 20 },
4a8828f0 21 default => sub { [] },
8e1394aa 22 );
c5104dc0 23
df6d9812 24has 'name' => (
25 is => 'rw',
26 isa => 'Str',
27 default => 'Tradition',
28 );
910a0a6d 29
30around 'add_witness' => sub {
31 my $orig = shift;
32 my $self = shift;
33 my $new_wit = Text::Tradition::Witness->new( @_ );
34 $self->$orig( $new_wit );
35 return $new_wit;
36};
37
df6d9812 38
8e1394aa 39sub BUILD {
40 my( $self, $init_args ) = @_;
c5104dc0 41
8e1394aa 42 if( exists $init_args->{'witnesses'} ) {
910a0a6d 43 # We got passed an uncollated list of witnesses. Make a
44 # witness object for each witness, and then send them to the
45 # collator.
46 my $autosigil = 0;
47 foreach my $wit ( %{$init_args->{'witnesses'}} ) {
48 # Each item in the list is either a string or an arrayref.
49 # If it's a string, it is a filename; if it's an arrayref,
50 # it is a tuple of 'sigil, file'. Handle either case.
51 my $args;
52 if( ref( $wit ) eq 'ARRAY' ) {
53 $args = { 'sigil' => $wit->[0],
54 'file' => $wit->[1] };
55 } else {
56 $args = { 'sigil' => chr( $autosigil+65 ),
57 'file' => $wit };
58 $autosigil++;
59 }
60 $self->witnesses->add_witness( $args );
61 # TODO Now how to collate these?
62 }
c5104dc0 63 } else {
910a0a6d 64 # Else we need to parse some collation data. Make a Collation object
65 my $collation = Text::Tradition::Collation->new( %$init_args,
66 'tradition' => $self );
67 $self->_save_collation( $collation );
4a8828f0 68
910a0a6d 69 # Call the appropriate parser on the given data
d9e873d0 70 my @formats = grep { /^(Self|CollateX|CSV|CTE|KUL|TEI|Tabular)$/ } keys( %$init_args );
910a0a6d 71 my $format = shift( @formats );
72 unless( $format ) {
73 warn "No data given to create a collation; will initialize an empty one";
74 }
75 if( $format && $format =~ /^(KUL|CTE)$/ &&
76 !exists $init_args->{'base'} ) {
77 warn "Cannot make a collation from $format without a base text";
78 return;
79 }
4a8828f0 80
910a0a6d 81 # Start and end points for all texts
82 $collation->add_reading( '#START#' );
83 $collation->add_reading( '#END#' );
84
4a8828f0 85
910a0a6d 86 # Now do the parsing.
87 my @sigla;
88 if( $format ) {
89 my @parseargs;
90 if( $format =~ /^(KUL|CTE)$/ ) {
91 $init_args->{'data'} = $init_args->{$format};
92 $init_args->{'format'} = $format;
93 $format = 'BaseText';
94 @parseargs = %$init_args;
95 } else {
96 @parseargs = ( $init_args->{ $format } );
97 }
98 my $mod = "Text::Tradition::Parser::$format";
99 load( $mod );
100 $mod->can('parse')->( $self, @parseargs );
101 }
c5104dc0 102 }
8e1394aa 103}
c5104dc0 104
de51424a 105sub witness {
106 my( $self, $sigil ) = @_;
107 my $requested_wit;
910a0a6d 108 foreach my $wit ( $self->witnesses ) {
109 $requested_wit = $wit if $wit->sigil eq $sigil;
de51424a 110 }
e2902068 111 # We depend on an undef return value for no such witness.
112 # warn "No such witness $sigil" unless $requested_wit;
de51424a 113 return $requested_wit;
114}
910a0a6d 115
4a8828f0 116
dd3b58b0 117# The user will usually be instantiating a Tradition object, and
118# examining its collation. The information about the tradition can
119# come via several routes:
120# - graphML from CollateX or elsewhere, standalone
121# - TEI parallel segmentation
122# - Leuven-style spreadsheet of variants, converted to CSV, plus base text
123# - apparatus pulled from CTE, plus base text
124# From this we should be able to get basic witness information.
125#
126# Alternatively the user can just give us the uncollated texts. Then
127# instead of passing a collation, s/he is passing a set of witnesses
128# from which we will generate a collation. Those witnesses can be in
129# plaintext or in TEI with certain constraints adopted.
130
131# So the constructor for a tradition needs to take one of these infosets,
132# and construct the collation and the witness objects.
133
134no Moose;
135__PACKAGE__->meta->make_immutable;