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