load extensions statically to avoid bad object wrapping interactions
[scpubgit/stemmatology.git] / base / lib / Text / Tradition.pm
CommitLineData
dd3b58b0 1package Text::Tradition;
2
65ed66b9 3use JSON qw / from_json /;
4a8828f0 4use Module::Load;
dd3b58b0 5use Moose;
951ddfe8 6use Moose::Util qw/ does_role apply_all_roles /;
8e1394aa 7use Text::Tradition::Collation;
951ddfe8 8use Text::Tradition::Error;
8e1394aa 9use Text::Tradition::Witness;
cf7e4e7b 10use Text::Tradition::User;
951ddfe8 11use TryCatch;
dd3b58b0 12
331c2dbf 13use vars qw( $VERSION );
37bf09f4 14$VERSION = "1.1";
15
16# Enable plugin(s) if available
17eval { with 'Text::Tradition::HasStemma'; };
18if( $@ ) {
19 warn "Text::Tradition::Analysis not found. Disabling stemma analysis functionality";
20};
331c2dbf 21
dd3b58b0 22has 'collation' => (
8e1394aa 23 is => 'ro',
24 isa => 'Text::Tradition::Collation',
25 writer => '_save_collation',
26 );
dd3b58b0 27
3b853983 28has 'witness_hash' => (
29 traits => ['Hash'],
30 isa => 'HashRef[Text::Tradition::Witness]',
8e1394aa 31 handles => {
3b853983 32 witness => 'get',
33 add_witness => 'set',
34 del_witness => 'delete',
35 has_witness => 'exists',
36 witnesses => 'values',
8e1394aa 37 },
3b853983 38 default => sub { {} },
8e1394aa 39 );
c5104dc0 40
df6d9812 41has 'name' => (
42 is => 'rw',
43 isa => 'Str',
44 default => 'Tradition',
45 );
56cf65bd 46
55bc8c78 47has 'language' => (
bbd064a9 48 is => 'rw',
55bc8c78 49 isa => 'Str',
fae52efd 50 predicate => 'has_language',
55bc8c78 51 );
52
3579c22b 53has '_initialized' => (
10943ab0 54 is => 'ro',
55 isa => 'Bool',
56 default => undef,
57 writer => '_init_done',
58 );
59
f54b1ba7 60has 'user' => (
61 is => 'rw',
62 isa => 'Text::Tradition::User',
63 required => 0,
64 predicate => 'has_user',
ec7ea4e6 65 clearer => 'clear_user',
d8a14401 66 weak_ref => 1
f54b1ba7 67 );
3724dfa7 68
69has 'public' => (
70 is => 'rw',
71 isa => 'Bool',
72 required => 0,
73 default => sub { 0; },
74 );
75
3b853983 76# Create the witness before trying to add it
910a0a6d 77around 'add_witness' => sub {
78 my $orig = shift;
79 my $self = shift;
331c2dbf 80 # TODO allow add of a Witness object?
fae52efd 81 my %args = @_ == 1 ? %{$_[0]} : @_;
82 $args{'tradition'} = $self;
83 $args{'language'} = $self->language
84 if( $self->language && !exists $args{'language'} );
85 my $new_wit = Text::Tradition::Witness->new( %args );
3b853983 86 $self->$orig( $new_wit->sigil => $new_wit );
910a0a6d 87 return $new_wit;
88};
331c2dbf 89
3b853983 90# Allow deletion of witness by object as well as by sigil
91around 'del_witness' => sub {
92 my $orig = shift;
93 my $self = shift;
94 my @key_args;
95 foreach my $arg ( @_ ) {
96 push( @key_args,
97 ref( $arg ) eq 'Text::Tradition::Witness' ? $arg->sigil : $arg );
98 }
99 return $self->$orig( @key_args );
100};
101
102# Don't allow an empty hash value
103around 'witness' => sub {
104 my( $orig, $self, $arg ) = @_;
105 return unless $self->has_witness( $arg );
106 return $self->$orig( $arg );
107};
108
331c2dbf 109=head1 NAME
110
111Text::Tradition - a software model for a set of collated texts
112
113=head1 SYNOPSIS
114
115 use Text::Tradition;
116 my $t = Text::Tradition->new(
117 'name' => 'this is a text',
118 'input' => 'TEI',
119 'file' => '/path/to/tei_parallel_seg_file.xml' );
120
121 my @text_wits = $t->witnesses();
122 my $manuscript_a = $t->witness( 'A' );
82fa4d57 123
124 $t = Text::Tradition->new();
125 $t->add_witness( 'sourcetype' => 'xmldesc',
126 'file' => '/path/to/teitranscription.xml' );
127 $t->add_witness( 'sourcetype => 'plaintext', 'sigil' => 'Q',
128 'string' => 'The quick brown fox jumped over the lazy dogs' );
129 ## TODO
130 $t->collate_texts;
331c2dbf 131
132 my $text_path_svg = $t->collation->as_svg();
133 ## See Text::Tradition::Collation for more on text collation itself
134
135=head1 DESCRIPTION
136
137Text::Tradition is a library for representation and analysis of collated
138texts, particularly medieval ones. A 'tradition' refers to the aggregation
139of surviving versions of a text, generally preserved in multiple
140manuscripts (or 'witnesses'). A Tradition object thus has one more more
141Witnesses, as well as a Collation that represents the unity of all versions
142of the text.
143
144=head1 METHODS
145
146=head2 new
147
148Creates and returns a new text tradition object. The following options are
149accepted.
150
151General options:
152
153=over 4
154
155=item B<name> - The name of the text.
156
157=back
158
159Initialization based on a collation file:
160
161=over 4
162
163=item B<input> - The input format of the collation file. Can be one of the
164following:
165
166=over 4
167
168=item * Self - a GraphML format produced by this module
169
170=item * CollateX - a GraphML format produced by CollateX
171
172=item * CTE - a TEI XML format produced by Classical Text Editor
173
a445ce40 174=item * JSON - an alignment table in JSON format, as produced by CollateX and
175other tools
331c2dbf 176
177=item * TEI - a TEI parallel segmentation format file
178
a445ce40 179=item * Tabular - a spreadsheet collation. See the documentation for
180L<Text::Tradition::Parser::Tabular> for an explanation of additional options.
331c2dbf 181
182=back
183
184=item B<file> - The name of the file that contains the data. One of 'file'
185or 'string' should be specified.
186
187=item B<string> - A text string that contains the data. One of 'file' or
188'string' should be specified.
189
331c2dbf 190=back
191
192Initialization based on a list of witnesses [NOT YET IMPLEMENTED]:
193
194=over 4
195
196=item B<witnesses> - A reference to an array of Text::Tradition::Witness
197objects that carry the text to be collated.
198
199=item B<collator> - A reference to a collation program that will accept
200Witness objects.
201
202=back
203
204=head2 B<witnesses>
205
206Return the Text::Tradition::Witness objects associated with this tradition,
207as an array.
208
044d1e45 209=head2 B<witness>( $sigil )
210
211Returns the Text::Tradition::Witness object whose sigil is $sigil, or undef
212if there is no such object within the tradition.
213
331c2dbf 214=head2 B<add_witness>( %opts )
215
216Instantiate a new witness with the given options (see documentation for
217Text::Tradition::Witness) and add it to the tradition.
218
044d1e45 219=head2 B<del_witness>( $sigil )
220
221Delete the witness with the given sigil from the tradition. Returns the
222witness object for the deleted witness.
223
331c2dbf 224=begin testing
225
226use_ok( 'Text::Tradition', "can use module" );
227
228my $t = Text::Tradition->new( 'name' => 'empty' );
229is( ref( $t ), 'Text::Tradition', "initialized an empty Tradition object" );
230is( $t->name, 'empty', "object has the right name" );
231is( scalar $t->witnesses, 0, "object has no witnesses" );
232
233my $simple = 't/data/simple.txt';
234my $s = Text::Tradition->new(
235 'name' => 'inline',
236 'input' => 'Tabular',
237 'file' => $simple,
238 );
239is( ref( $s ), 'Text::Tradition', "initialized a Tradition object" );
240is( $s->name, 'inline', "object has the right name" );
241is( scalar $s->witnesses, 3, "object has three witnesses" );
242
044d1e45 243my $wit_a = $s->witness('A');
244is( ref( $wit_a ), 'Text::Tradition::Witness', "Found a witness A" );
245if( $wit_a ) {
246 is( $wit_a->sigil, 'A', "Witness A has the right sigil" );
247}
248is( $s->witness('X'), undef, "There is no witness X" );
249ok( !exists $s->{'witnesses'}->{'X'}, "Witness key X not created" );
250
82fa4d57 251my $wit_d = $s->add_witness( 'sigil' => 'D', 'sourcetype' => 'collation' );
044d1e45 252is( ref( $wit_d ), 'Text::Tradition::Witness', "new witness created" );
253is( $wit_d->sigil, 'D', "witness has correct sigil" );
331c2dbf 254is( scalar $s->witnesses, 4, "object now has four witnesses" );
255
3b853983 256my $del = $s->del_witness( 'D' );
044d1e45 257is( $del, $wit_d, "Deleted correct witness" );
3b853983 258is( scalar $s->witnesses, 3, "object has three witnesses again" );
259
331c2dbf 260# TODO test initialization by witness list when we have it
261
262=end testing
263
264=cut
910a0a6d 265
df6d9812 266
8e1394aa 267sub BUILD {
268 my( $self, $init_args ) = @_;
fae52efd 269
270 # First, make a collation object. This will use only those arguments in
271 # init_args that apply to the collation.
272 my $collation = Text::Tradition::Collation->new( %$init_args,
273 'tradition' => $self );
274 $self->_save_collation( $collation );
c5104dc0 275
fae52efd 276 if( exists $init_args->{'input'} ) {
910a0a6d 277 # Call the appropriate parser on the given data
a731e73a 278 my @format_standalone = qw/ Self CollateText CollateX CTE JSON TEI Tabular /;
dfc37e38 279 my @format_basetext = qw/ KUL /;
280 my $use_base;
281 my $format = $init_args->{'input'};
dfc37e38 282 if( $format && !( grep { $_ eq $format } @format_standalone )
283 && !( grep { $_ eq $format } @format_basetext ) ) {
284 warn "Unrecognized input format $format; not parsing";
910a0a6d 285 return;
286 }
dfc37e38 287 if( $format && grep { $_ eq $format } @format_basetext ) {
288 $use_base = 1;
289 if( !exists $init_args->{'base'} ) {
290 warn "Cannot make a collation from $format without a base text";
291 return;
292 }
293 }
4a8828f0 294
910a0a6d 295 # Now do the parsing.
910a0a6d 296 if( $format ) {
dfc37e38 297 if( $use_base ) {
298 $format = 'BaseText'; # Use the BaseText module for parsing,
299 # but retain the original input arg.
910a0a6d 300 }
301 my $mod = "Text::Tradition::Parser::$format";
302 load( $mod );
dfc37e38 303 $mod->can('parse')->( $self, $init_args );
910a0a6d 304 }
c5104dc0 305 }
10943ab0 306 $self->_init_done( 1 );
fae52efd 307 return $self;
308}
309
310=head2 add_json_witnesses( $jsonstring, $options )
311
312Adds a set of witnesses from a JSON array specification. This is a wrapper
313to parse the JSON and call add_witness (with the specified $options) for
314each element therein.
315
316=cut
317
318sub add_json_witnesses {
319 my( $self, $jsonstr, $extraopts ) = @_;
65ed66b9 320 my $witarray = from_json( $jsonstr );
321 foreach my $witspec ( @{$witarray->{witnesses}} ) {
fae52efd 322 my $opts = $extraopts || {};
323 $opts->{'sourcetype'} = 'json';
324 $opts->{'object'} = $witspec;
325 $self->add_witness( $opts );
326 }
8e1394aa 327}
c5104dc0 328
a445ce40 329=head2 lemmatize
330
331Calls the appropriate lemmatization function for the language of the
37bf09f4 332tradition. Will throw an error if the Morphology package is not installed.
a445ce40 333
334=cut
335
336# TODO find a better way to hook this
d3e7842a 337sub lemmatize {
338 my $self = shift;
339 unless( $self->has_language ) {
340 warn "Please set a language to lemmatize a tradition";
341 return;
342 }
343 my $mod = "Text::Tradition::Language::" . $self->language;
344 load( $mod );
345 $mod->can( 'lemmatize' )->( $self );
346}
347
951ddfe8 348sub throw {
349 Text::Tradition::Error->throw(
350 'ident' => 'Tradition error',
351 'message' => $_[0],
352 );
353}
354
dd3b58b0 355no Moose;
356__PACKAGE__->meta->make_immutable;
331c2dbf 357
358
359=head1 BUGS / TODO
360
361=over
362
363=item * Allow tradition to be initialized via passing to a collator.
364
365=back
366
367=head1 LICENSE
368
369This package is free software and is provided "as is" without express
370or implied warranty. You can redistribute it and/or modify it under
371the same terms as Perl itself.
372
373=head1 AUTHOR
374
375Tara L Andrews E<lt>aurum@cpan.orgE<gt>