source: main/trunk/greenstone2/perllib/DBDrivers/JDBM.pm@ 31210

Last change on this file since 31210 was 31210, checked in by ak19, 7 years ago

Forgot to remove an extra debug statement.

File size: 5.6 KB
Line 
1###############################################################################
2#
3# DBDrivers/JDBM.pm -- utility functions for writing to jdbm databases
4#
5# A component of the Greenstone digital library software from the New Zealand
6# Digital Library Project at the University of Waikato, New Zealand.
7#
8# Copyright (C) 1999-2015 New Zealand Digital Library Project
9#
10# This program is free software; you can redistribute it and/or modify it under
11# the terms of the GNU General Public License as published by the Free Software
12# Foundation; either version 2 of the License, or (at your option) any later
13# version.
14#
15# This program is distributed in the hope that it will be useful, but WITHOUT
16# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
18# more details.
19#
20# You should have received a copy of the GNU General Public License along with
21# this program; if not, write to the Free Software Foundation, Inc., 675 Mass
22# Ave, Cambridge, MA 02139, USA.
23#
24###############################################################################
25
26package DBDrivers::JDBM;
27
28# Pragma
29use strict;
30
31# Libraries
32use util;
33use FileUtils;
34use DBDrivers::70HyphenFormat;
35
36sub BEGIN
37{
38 if (!defined $ENV{'GSDLHOME'} || !defined $ENV{'GSDLOS'}) {
39 die("Error! Environment must be prepared by sourcing setup.bash\n");
40 }
41 @DBDrivers::JDBM::ISA = ('DBDrivers::70HyphenFormat');
42}
43
44
45## @function constructor
46#
47sub new
48{
49 my $class = shift(@_);
50 my $self = DBDrivers::70HyphenFormat->new(@_);
51 $self->{'default_file_extension'} = 'jdb';
52 $self->{'supports_concurrent_read_and_write'} = 1;
53
54 # Executables need a little extra work since we are using Java
55 # - we need to build up the classpath continue the Jar libraries to use
56 my $jdbmwrap_jar = &FileUtils::filenameConcatenate($ENV{'GSDLHOME'}, 'bin', 'java', 'JDBMWrapper.jar');
57 my $jdbm_jar = &FileUtils::filenameConcatenate($ENV{'GSDLHOME'}, 'lib', 'java', 'jdbm.jar');
58 my $classpath = &util::pathname_cat($jdbmwrap_jar,$jdbm_jar);
59 # Massage paths for Cygwin. Away to run a java program, using a binary that
60 # is native to Windows, so need Windows directory and path separators
61 # Note: this is done after the util::pathname_cat as that fuction can also
62 # (incorrectly) change file separators.
63 if ($^O eq "cygwin") {
64 $classpath = `cygpath -wp "$classpath"`;
65 chomp($classpath);
66 $classpath =~ s%\\%\\\\%g;
67 }
68 $self->{'executable_path'} = '';
69 $self->{'read_executable'} = 'java -cp "' . $classpath . '" Jdb2Txt';
70 $self->{'keyread_executable'} = 'java -cp "' . $classpath . '" JdbKeys';
71 $self->{'write_executable'} = 'java -cp "' . $classpath . '" Txt2Jdb';
72 # Support
73 $self->{'supports_set'} = 1;
74
75 bless($self, $class);
76 return $self;
77}
78## constructor() ##
79
80
81# jdb also creates .lg log files, that don't get removed on delete or move operations
82# Make sure to rename them to when performing a rename operation on the main db file.
83# dbutil::renameTo(src,dest) already took care of renaming the main db file.
84sub rename_db_file_to {
85 my $self = shift(@_);
86
87 $self->SUPER::rename_db_file_to(@_);
88 my ($srcpath, $destpath) = @_;
89
90 my ($srctailname, $srcdirname, $srcsuffix)
91 = &File::Basename::fileparse($srcpath, "\\.[^\\.]+\$");
92 my ($desttailname, $destdirname, $destsuffix)
93 = &File::Basename::fileparse($destpath, "\\.[^\\.]+\$");
94
95 # add in the lg extension
96 my $src_log_file = &FileUtils::filenameConcatenate($srcdirname, $srctailname.".lg");
97 my $dest_log_file = &FileUtils::filenameConcatenate($destdirname, $desttailname.".lg");
98
99 # finally, move/rename any log file belonging to the src db file
100 if(&FileUtils::fileExists($src_log_file)) {
101 &FileUtils::moveFiles($src_log_file, $dest_log_file);
102 }
103
104 # don't want to keep the log file for any files renamed to bak (backup file) though
105 if($destsuffix =~ m/bak$/) {
106 my $assoc_log_file = &FileUtils::filenameConcatenate($destdirname, $desttailname.".lg");
107 if(&FileUtils::fileExists($assoc_log_file)) {
108 &FileUtils::removeFiles($assoc_log_file);
109 }
110 }
111
112}
113
114sub remove_db_file {
115 my $self = shift(@_);
116
117 $self->SUPER::remove_db_file(@_);
118 my ($db_filepath) = @_;
119
120 # add in the lg extension to get the log file name
121 my ($tailname, $dirname, $suffix) = &File::Basename::fileparse($db_filepath, "\\.[^\\.]+\$");
122 my $assoc_log_file = &FileUtils::filenameConcatenate($dirname, $tailname.".lg");
123
124 # remove any log file associated with the db file
125 if(&FileUtils::fileExists($assoc_log_file)) {
126 &FileUtils::removeFiles($assoc_log_file);
127 }
128
129}
130
131
132
133# -----------------------------------------------------------------------------
134# JDBM IMPLEMENTATION
135# -----------------------------------------------------------------------------
136
137# When DBUtil::* is properly structured with inheritance, then
138# much of this code (along with GDBM and GDBM-TXT-GZ) can be grouped into
139# a shared base class. Really it is only the the command that needs to
140# be constructed that changes between much of the code that is used
141
142# Handled by BaseDBDriver
143# sub get_infodb_file_path {}
144
145# Handled by 70HyphenFormat
146# sub open_infodb_write_handle(string, string?) => filehandle
147# sub close_infodb_write_handle(filehandle) => void
148# sub read_infodb_file(string, hashmap) => void
149# sub read_infodb_keys(string, hashmap) => void
150# sub write_infodb_entry(filehandle, string, hashmap) => void
151# sub write_infodb_rawentry(filehandle, string, string) => void
152# sub set_infodb_entry(filehandle, string, string) => void
153# sub delete_infodb_entry(filehandle, string) => void
154
1551;
Note: See TracBrowser for help on using the repository browser.