restore Directory deletion, albeit without garbage collection
[scpubgit/stemmatology.git] / lib / Text / Tradition / Directory.pm
CommitLineData
8d9a1cd8 1package Text::Tradition::Directory;
2
3use strict;
4use warnings;
5use Moose;
ad1291ee 6use KiokuDB::GC::Naive;
8d9a1cd8 7use KiokuDB::TypeMap;
8use KiokuDB::TypeMap::Entry::Naive;
861c3e27 9use Text::Tradition::Error;
8d9a1cd8 10
11extends 'KiokuX::Model';
12
12523041 13=head1 NAME
14
15Text::Tradition::Directory - a KiokuDB interface for storing and retrieving traditions
16
17=head1 SYNOPSIS
18
19 use Text::Tradition::Directory;
20 my $d = Text::Tradition::Directory->new(
21 'dsn' => 'dbi:SQLite:mytraditions.db',
22 'extra_args' => { 'create' => 1 },
23 );
24
25 my $tradition = Text::Tradition->new( @args );
9ba651b9 26 my $stemma = $tradition->add_stemma( dotfile => $dotfile );
12523041 27 $d->save_tradition( $tradition );
12523041 28
29 foreach my $id ( $d->traditions ) {
30 print $d->tradition( $id )->name;
12523041 31 }
32
33=head1 DESCRIPTION
34
35Text::Tradition::Directory is an interface for storing and retrieving text traditions and all their data, including an associated stemma hypothesis. It is an instantiation of a KiokuDB::Model, storing traditions and associated stemmas by UUID.
36
37=head1 METHODS
38
39=head2 new
40
56cf65bd 41Returns a Directory object.
12523041 42
43=head2 tradition_ids
44
45Returns the ID of all traditions in the database.
46
47=head2 tradition( $id )
48
49Returns the Text::Tradition object of the given ID.
50
56cf65bd 51=head2 save( $tradition )
12523041 52
56cf65bd 53Writes the given tradition to the database, returning its ID.
12523041 54
d7ba60b4 55=head2 delete( $tradition )
56
57Deletes the given tradition object from the database.
58WARNING!! Garbage collection does not yet work. Use this sparingly.
59
12523041 60=begin testing
61
861c3e27 62use TryCatch;
12523041 63use File::Temp;
64use Text::Tradition;
12523041 65use_ok 'Text::Tradition::Directory';
66
67my $fh = File::Temp->new();
68my $file = $fh->filename;
69$fh->close;
70my $dsn = "dbi:SQLite:dbname=$file";
861c3e27 71my $uuid;
12523041 72my $t = Text::Tradition->new(
56cf65bd 73 'name' => 'inline',
74 'input' => 'Tabular',
75 'file' => 't/data/simple.txt',
76 );
56cf65bd 77
861c3e27 78{
79 my $d = Text::Tradition::Directory->new( 'dsn' => $dsn,
80 'extra_args' => { 'create' => 1 } );
81 is( ref $d, 'Text::Tradition::Directory', "Got directory object" );
82
83 my $scope = $d->new_scope;
84 $uuid = $d->save( $t );
85 ok( $uuid, "Saved test tradition" );
86
9ba651b9 87 my $s = $t->add_stemma( dotfile => 't/data/simple.dot' );
861c3e27 88 ok( $d->save( $t ), "Updated tradition with stemma" );
89 is( $d->tradition( $uuid ), $t, "Correct tradition returned for id" );
e0d617e6 90 is( $d->tradition( $uuid )->stemma(0), $s, "...and it has the correct stemma" );
861c3e27 91 try {
92 $d->save( $s );
93 } catch( Text::Tradition::Error $e ) {
94 is( $e->ident, 'database error', "Got exception trying to save stemma directly" );
95 like( $e->message, qr/Cannot directly save non-Tradition object/,
96 "Exception has correct message" );
97 }
98}
99my $nt = Text::Tradition->new(
100 'name' => 'CX',
101 'input' => 'CollateX',
102 'file' => 't/data/Collatex-16.xml',
103 );
104is( ref( $nt ), 'Text::Tradition', "Made new tradition" );
105
106{
107 my $f = Text::Tradition::Directory->new( 'dsn' => $dsn );
108 my $scope = $f->new_scope;
109 is( scalar $f->tradition_ids, 1, "Directory index has our tradition" );
110 my $nuuid = $f->save( $nt );
111 ok( $nuuid, "Stored second tradition" );
112 is( scalar $f->tradition_ids, 2, "Directory index has both traditions" );
113 my $tf = $f->tradition( $uuid );
114 is( $tf->name, $t->name, "Retrieved the tradition from a new directory" );
e0d617e6 115 my $sid = $f->object_to_id( $tf->stemma(0) );
861c3e27 116 try {
117 $f->tradition( $sid );
118 } catch( Text::Tradition::Error $e ) {
119 is( $e->ident, 'database error', "Got exception trying to fetch stemma directly" );
120 like( $e->message, qr/not a Text::Tradition/, "Exception has correct message" );
121 }
122 try {
123 $f->delete( $sid );
124 } catch( Text::Tradition::Error $e ) {
125 is( $e->ident, 'database error', "Got exception trying to delete stemma directly" );
126 like( $e->message, qr/Cannot directly delete non-Tradition object/,
127 "Exception has correct message" );
128 }
129 $f->delete( $uuid );
130 ok( !$f->exists( $uuid ), "Object is deleted from DB" );
131 ok( !$f->exists( $sid ), "Object stemma also deleted from DB" );
132 is( scalar $f->tradition_ids, 1, "Object is deleted from index" );
133}
134
d7ba60b4 135{
861c3e27 136 my $g = Text::Tradition::Directory->new( 'dsn' => $dsn );
137 my $scope = $g->new_scope;
138 is( scalar $g->tradition_ids, 1, "Now one object in new directory index" );
139}
12523041 140
141=end testing
142
143=cut
144
12523041 145has +typemap => (
8d9a1cd8 146 is => 'rw',
147 isa => 'KiokuDB::TypeMap',
148 default => sub {
149 KiokuDB::TypeMap->new(
150 isa_entries => {
8d9a1cd8 151 "Graph" => KiokuDB::TypeMap::Entry::Naive->new,
152 "Graph::AdjacencyMap" => KiokuDB::TypeMap::Entry::Naive->new,
153 }
154 );
155 },
156);
157
861c3e27 158before [ qw/ store update insert delete / ] => sub {
8d9a1cd8 159 my $self = shift;
861c3e27 160 my @nontrad;
161 foreach my $obj ( @_ ) {
162 if( ref( $obj ) && ref( $obj ) ne 'Text::Tradition' ) {
163 # Is it an id => Tradition hash?
164 if( ref( $obj ) eq 'HASH' && keys( %$obj ) == 1 ) {
165 my( $k ) = keys %$obj;
166 next if ref( $obj->{$k} ) eq 'Text::Tradition';
8d9a1cd8 167 }
861c3e27 168 push( @nontrad, $obj );
8d9a1cd8 169 }
12523041 170 }
861c3e27 171 if( @nontrad ) {
172 throw( "Cannot directly save non-Tradition object of type "
173 . ref( $nontrad[0] ) );
174 }
175};
12523041 176
d7ba60b4 177# TODO Garbage collection doesn't work. Suck it up and live with the
178# inflated DB.
179# after delete => sub {
180# my $self = shift;
181# my $gc = KiokuDB::GC::Naive->new( backend => $self->directory->backend );
182# $self->directory->backend->delete( $gc->garbage->members );
183# };
56cf65bd 184
185sub save {
861c3e27 186 my $self = shift;
187 return $self->store( @_ );
12523041 188}
189
56cf65bd 190sub tradition {
191 my( $self, $id ) = @_;
192 my $obj = $self->lookup( $id );
193 unless( ref( $obj ) eq 'Text::Tradition' ) {
861c3e27 194 throw( "Retrieved object is a " . ref( $obj ) . ", not a Text::Tradition" );
12523041 195 }
56cf65bd 196 return $obj;
12523041 197}
8d9a1cd8 198
861c3e27 199sub tradition_ids {
200 my $self = shift;
201 my @ids;
202 $self->scan( sub { push( @ids, $self->object_to_id( @_ ) ) } );
203 return @ids;
204}
205
206sub throw {
207 Text::Tradition::Error->throw(
208 'ident' => 'database error',
209 'message' => $_[0],
210 );
211}
212
8d9a1cd8 2131;
12523041 214
027d819c 215=head1 LICENSE
216
217This package is free software and is provided "as is" without express
218or implied warranty. You can redistribute it and/or modify it under
219the same terms as Perl itself.
220
221=head1 AUTHOR
222
223Tara L Andrews E<lt>aurum@cpan.orgE<gt>