Moved _close() into the engine
[dbsrgits/DBM-Deep.git] / lib / DBM / Deep / Engine.pm
CommitLineData
a20d9a3f 1package DBM::Deep::Engine;
2
3use strict;
4
5use Fcntl qw( :DEFAULT :flock :seek );
6
7sub open {
8 ##
9 # Open a fh to the database, create if nonexistent.
10 # Make sure file signature matches DBM::Deep spec.
11 ##
a20d9a3f 12 my $self = shift;
cd59cad8 13 my $obj = shift;
a20d9a3f 14
cd59cad8 15 if (defined($obj->_fh)) { $self->close( $obj ); }
a20d9a3f 16
17 eval {
18 local $SIG{'__DIE__'};
19 # Theoretically, adding O_BINARY should remove the need for the binmode
20 # Of course, testing it is going to be ... interesting.
21 my $flags = O_RDWR | O_CREAT | O_BINARY;
22
23 my $fh;
cd59cad8 24 sysopen( $fh, $obj->_root->{file}, $flags )
a20d9a3f 25 or $fh = undef;
cd59cad8 26 $obj->_root->{fh} = $fh;
27 }; if ($@ ) { $obj->_throw_error( "Received error: $@\n" ); }
28 if (! defined($obj->_fh)) {
29 return $obj->_throw_error("Cannot sysopen file: " . $obj->_root->{file} . ": $!");
a20d9a3f 30 }
31
cd59cad8 32 my $fh = $obj->_fh;
a20d9a3f 33
34 #XXX Can we remove this by using the right sysopen() flags?
35 # Maybe ... q.v. above
36 binmode $fh; # for win32
37
cd59cad8 38 if ($obj->_root->{autoflush}) {
a20d9a3f 39 my $old = select $fh;
40 $|=1;
41 select $old;
42 }
43
cd59cad8 44 seek($fh, 0 + $obj->_root->{file_offset}, SEEK_SET);
a20d9a3f 45
46 my $signature;
47 my $bytes_read = read( $fh, $signature, length(DBM::Deep->SIG_FILE));
48
49 ##
50 # File is empty -- write signature and master index
51 ##
52 if (!$bytes_read) {
cd59cad8 53 seek($fh, 0 + $obj->_root->{file_offset}, SEEK_SET);
a20d9a3f 54 print( $fh DBM::Deep->SIG_FILE);
cd59cad8 55 $obj->_create_tag($obj->_base_offset, $obj->_type, chr(0) x $DBM::Deep::INDEX_SIZE);
a20d9a3f 56
57 my $plain_key = "[base]";
58 print( $fh pack($DBM::Deep::DATA_LENGTH_PACK, length($plain_key)) . $plain_key );
59
60 # Flush the filehandle
61 my $old_fh = select $fh;
62 my $old_af = $|; $| = 1; $| = $old_af;
63 select $old_fh;
64
65 my @stats = stat($fh);
cd59cad8 66 $obj->_root->{inode} = $stats[1];
67 $obj->_root->{end} = $stats[7];
a20d9a3f 68
69 return 1;
70 }
71
72 ##
73 # Check signature was valid
74 ##
75 unless ($signature eq DBM::Deep->SIG_FILE) {
cd59cad8 76 $self->close( $obj );
77 return $obj->_throw_error("Signature not found -- file is not a Deep DB");
a20d9a3f 78 }
79
80 my @stats = stat($fh);
cd59cad8 81 $obj->_root->{inode} = $stats[1];
82 $obj->_root->{end} = $stats[7];
a20d9a3f 83
84 ##
85 # Get our type from master index signature
86 ##
cd59cad8 87 my $tag = $obj->_load_tag($obj->_base_offset);
a20d9a3f 88
89#XXX We probably also want to store the hash algorithm name and not assume anything
90#XXX The cool thing would be to allow a different hashing algorithm at every level
91
92 if (!$tag) {
cd59cad8 93 return $obj->_throw_error("Corrupted file, no master index record");
a20d9a3f 94 }
cd59cad8 95 if ($obj->{type} ne $tag->{signature}) {
96 return $obj->_throw_error("File type mismatch");
a20d9a3f 97 }
98
99 return 1;
100}
101
cd59cad8 102sub close {
103 my $self = shift;
104 my $obj = shift;
105
106 if ( my $fh = $obj->_root->{fh} ) {
107 close $fh;
108 }
109 $obj->_root->{fh} = undef;
110
111 return 1;
112}
113
a20d9a3f 1141;
115__END__