blob: 23422f7a2e518cf5781b96f2df9cc537fc247616 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
package GDBM_File;
require Carp;
require TieHash;
require Exporter;
require AutoLoader;
require DynaLoader;
@ISA = (TieHash, Exporter, AutoLoader, DynaLoader);
@EXPORT = qw(
GDBM_CACHESIZE
GDBM_FAST
GDBM_INSERT
GDBM_NEWDB
GDBM_READER
GDBM_REPLACE
GDBM_WRCREAT
GDBM_WRITER
);
sub AUTOLOAD {
if (@_ > 1) {
$AutoLoader::AUTOLOAD = $AUTOLOAD;
goto &AutoLoader::AUTOLOAD;
}
local($constname);
($constname = $AUTOLOAD) =~ s/.*:://;
$val = constant($constname, @_ ? $_[0] : 0);
if ($! != 0) {
if ($! =~ /Invalid/) {
$AutoLoader::AUTOLOAD = $AUTOLOAD;
goto &AutoLoader::AUTOLOAD;
}
else {
Carp::croak("Your vendor has not defined GDBM_File macro $constname, used");
}
}
eval "sub $AUTOLOAD { $val }";
goto &$AUTOLOAD;
}
bootstrap GDBM_File;
# Preloaded methods go here. Autoload methods go after __END__, and are
# processed by the autosplit program.
1;
__END__
|