source: gsdl/trunk/bin/script/exportcol.pl@ 19625

Last change on this file since 19625 was 18660, checked in by kjdon, 15 years ago

we now use gdb instead of ldb/bdb for collection and archives-inf databases. We have a rename step to rename any legacy databases

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 11.7 KB
Line 
1#!/usr/bin/perl -w
2
3###########################################################################
4#
5# exportcol.pl --
6# A component of the Greenstone digital library software
7# from the New Zealand Digital Library Project at the
8# University of Waikato, New Zealand.
9#
10# Copyright (C) 1999 New Zealand Digital Library Project
11#
12# This program is free software; you can redistribute it and/or modify
13# it under the terms of the GNU General Public License as published by
14# the Free Software Foundation; either version 2 of the License, or
15# (at your option) any later version.
16#
17# This program is distributed in the hope that it will be useful,
18# but WITHOUT ANY WARRANTY; without even the implied warranty of
19# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20# GNU General Public License for more details.
21#
22# You should have received a copy of the GNU General Public License
23# along with this program; if not, write to the Free Software
24# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25#
26###########################################################################
27
28BEGIN {
29 die "GSDLHOME not set\n" unless defined $ENV{'GSDLHOME'};
30 unshift (@INC, "$ENV{'GSDLHOME'}/perllib");
31}
32
33use strict;
34no strict 'refs'; # allow filehandles to be variables and vice versa
35no strict 'subs'; # allow barewords (eg STDERR) as function arguments
36
37use util;
38use parse2;
39use printusage;
40
41my $arguments =
42 [
43 { 'name' => "cdname",
44 'desc' => "{exportcol.cdname}",
45 'type' => "string",
46 'deft' => "Greenstone Collections",
47 'reqd' => "no" },
48 { 'name' => "cddir",
49 'desc' => "{exportcol.cddir}",
50 'type' => "string",
51 'deft' => "exported_collections",
52 'reqd' => "no" },
53 { 'name' => "noinstall",
54 'desc' => "{exportcol.noinstall}",
55 'type' => "flag",
56 'reqd' => "no" },
57 { 'name' => "language",
58 'desc' => "{scripts.language}",
59 'type' => "string",
60 'reqd' => "no" },
61 { 'name' => "out",
62 'desc' => "{exportcol.out}",
63 'type' => "string",
64 'deft' => "STDERR",
65 'reqd' => "no" },
66 { 'name' => "xml",
67 'desc' => "{scripts.xml}",
68 'type' => "flag",
69 'reqd' => "no",
70 'hiddengli' => "yes" },
71 { 'name' => "gli",
72 'desc' => "",
73 'type' => "flag",
74 'reqd' => "no",
75 'hiddengli' => "yes" },
76
77 ];
78
79my $options = { 'name' => "exportcol.pl",
80 'desc' => "{exportcol.desc}",
81 'args' => $arguments };
82
83sub gsprintf
84{
85 return &gsprintf::gsprintf(@_);
86}
87
88
89&main();
90
91sub main {
92 my ($language, $out, $cdname, $cddir);
93
94 my $noinstall = 0;
95 my $xml = 0;
96 my $gli = 0;
97
98 my $hashParsingResult = {};
99
100 # parse options
101 my $intArgLeftinAfterParsing = parse2::parse(\@ARGV,$arguments,$hashParsingResult,"allow_extra_options");
102
103 # If parse returns -1 then something has gone wrong
104 if ($intArgLeftinAfterParsing == -1)
105 {
106 &PrintUsage::print_txt_usage($options, "{exportcol.params}");
107 die "\n";
108 }
109
110 foreach my $strVariable (keys %$hashParsingResult)
111 {
112 eval "\$$strVariable = \$hashParsingResult->{\"\$strVariable\"}";
113 }
114
115 # If $language has been specified, load the appropriate resource bundle
116 # (Otherwise, the default resource bundle will be loaded automatically)
117 if ($language && $language =~ /\S/) {
118 &gsprintf::load_language_specific_resource_bundle($language);
119 }
120
121 if ($xml) {
122 &PrintUsage::print_xml_usage($options);
123 print "\n";
124 return;
125 }
126
127 if ($gli) { # the gli wants strings to be in UTF-8
128 &gsprintf::output_strings_in_UTF8;
129 }
130
131 # can have more than one collection name,
132 # if the first extra option is -h, then output the help
133 if (scalar(@ARGV) == 0 || (@ARGV && $ARGV[0] =~ /^\-+h/)) {
134 &PrintUsage::print_txt_usage($options, "{exportcol.params}");
135 die "\n";
136 }
137
138 my @coll_list = @ARGV;
139
140 my $close_out = 0;
141 if ($out !~ /^(STDERR|STDOUT)$/i) {
142 open (OUT, ">$out") ||
143 (&gsprintf(STDERR, "{common.cannot_open_output_file}\n", $out) && die);
144 $out = 'main::OUT';
145 $close_out = 1;
146 }
147
148 # first we do a quick check to see if the export coll function has been
149 # installed
150 my $gssetupexe = &util::filename_cat ($ENV{'GSDLHOME'}, "bin", "windows", "gssetup.exe");
151 if (!-e $gssetupexe) {
152 &gsprintf($out, "{exportcol.fail} {exportcol.export_coll_not_installed}\n");
153 die "\n";
154 }
155
156 # check each collection
157 my @valid_coll_list = ();
158 foreach my $c (@coll_list) {
159 my $colldir = &util::filename_cat ($ENV{'GSDLHOME'}, "collect", $c);
160 if (! -d $colldir) {
161 &gsprintf($out, "{exportcol.coll_not_found}\n", $c, $colldir);
162 next;
163 }
164 my $colindexdir = &util::filename_cat ($colldir, "index");
165 my $coletcdir = &util::filename_cat ($colldir, "etc");
166 if ((!-d $colindexdir) || (!-d $coletcdir)) {
167 &gsprintf($out, "{exportcol.coll_dirs_not_found}\n", $c);
168 &gsprintf($out, " $colindexdir\n");
169 &gsprintf($out, " $coletcdir\n");
170 next;
171 }
172 # the collection seems ok, we add it to the valid coll list
173 push @valid_coll_list, $c;
174 }
175
176 if (not @valid_coll_list) {
177 # no valid colls left
178 &gsprintf($out, "{exportcol.fail} {exportcol.no_valid_colls}\n");
179 die "\n";
180 }
181
182 # create exported directory
183 my $topdir = &util::filename_cat ($ENV{'GSDLHOME'}, "tmp", $cddir);
184 &util::mk_all_dir ($topdir);
185 if (!-d $topdir) {
186 &gsprintf($out, "{exportcol.fail} {exportcol.couldnt_create_dir}\n", $topdir);
187 die "\n";
188 }
189
190 # we create either a self installing cd, or one that runs off the cd (and
191 # doesn't install anything
192
193 # create all the directories - we assume that if we created the top dir ok,
194 # then all the other mkdirs will go ok
195 my $gsdldir;
196 if ($noinstall) {
197 $gsdldir = $topdir;
198 }
199 else {
200 $gsdldir = &util::filename_cat ($topdir, "gsdl");
201 &util::mk_all_dir ($gsdldir);
202 }
203
204 my $collectdir = &util::filename_cat ($gsdldir, "collect");
205 &util::mk_all_dir ($collectdir);
206 my $etcdir = &util::filename_cat ($gsdldir, "etc");
207 &util::mk_all_dir ($etcdir);
208 my $binjavadir = &util::filename_cat ($gsdldir, "bin", "java");
209 &util::mk_all_dir ($binjavadir);
210
211 #create the config files
212 if (!$noinstall) {
213 # create the install.cfg file
214 my $installcfg = &util::filename_cat ($topdir, "install.cfg");
215 if (!open (INSTALLCFG, ">$installcfg")) {
216 &gsprintf($out, "{exportcol.fail} {exportcol.couldnt_create_file}\n", $installcfg);
217 die "\n";
218 }
219 print INSTALLCFG "CompanyName:New Zealand Digital Library\n";
220 print INSTALLCFG "CollectionName:$cdname\n";
221 print INSTALLCFG "CollectionDirName:$cdname\n";
222 print INSTALLCFG "CollectionVersion:1.0\n";
223 print INSTALLCFG "CollectionVolume:1\n";
224 print INSTALLCFG "ProgramGroupName:Greenstone\n";
225 close INSTALLCFG;
226
227 # create the manifest.cfg file
228 my $manifestcfg = &util::filename_cat ($topdir, "manifest.cfg");
229 if (!open (MANIFESTCFG, ">$manifestcfg")) {
230 &gsprintf($out, "{exportcol.fail} {exportcol.couldnt_create_file}\n", $manifestcfg);
231 die "\n";
232 }
233 print MANIFESTCFG "all:\n";
234 print MANIFESTCFG " {library} {collection}\n\n";
235 print MANIFESTCFG "library:\n";
236 print MANIFESTCFG " server.exe\n\n";
237 print MANIFESTCFG "database:\n";
238 print MANIFESTCFG ' etc ';
239 foreach my $c (@valid_coll_list) {
240 print MANIFESTCFG "collect\\$c\\index\\text\\$c.gdb ";
241 }
242 print MANIFESTCFG "\n\n";
243 print MANIFESTCFG "collection:\n";
244 print MANIFESTCFG " collect etc images macros mappings bin\n";
245 close MANIFESTCFG;
246
247 }
248
249 #create the autorun.inf file
250 my $autoruninf = &util::filename_cat ($topdir, "Autorun.inf");
251 if (!open (AUTORUNINF, ">$autoruninf")) {
252 &gsprintf($out, "{exportcol.fail} {exportcol.couldnt_create_file}\n", $autoruninf);
253 die "\n";
254 }
255
256 print AUTORUNINF "[autorun]\n";
257 if ($noinstall) {
258 print AUTORUNINF "OPEN=server.exe\n";
259 } else {
260 print AUTORUNINF "OPEN=Setup.exe\n";
261 }
262 close AUTORUNINF;
263
264 # copy the necessary stuff from GSDLHOME
265 my $imagesdir = &util::filename_cat ($ENV{'GSDLHOME'}, "images");
266 my $macrosdir = &util::filename_cat ($ENV{'GSDLHOME'}, "macros");
267 my $mappingsdir = &util::filename_cat ($ENV{'GSDLHOME'}, "mappings");
268 my $maincfg = &util::filename_cat ($ENV{'GSDLHOME'}, "etc", "main.cfg");
269 my $serverexe = &util::filename_cat ($ENV{'GSDLHOME'}, "bin", "windows", "server.exe");
270 my $setupexe = &util::filename_cat ($ENV{'GSDLHOME'}, "bin", "windows", "Setup.exe");
271 my $phindjar = &util::filename_cat ($ENV{'GSDLHOME'}, "bin", "java", "Phind.jar");
272 my $gsdlcollageappletjar = &util::filename_cat ($ENV{'GSDLHOME'}, "bin", "java", "GsdlCollageApplet.jar");
273
274 if ((!-d $imagesdir) || (!-d $macrosdir) || (!-d $mappingsdir) || (!-e $maincfg) ||
275 (!-e $serverexe) || (!-e $gssetupexe) || (!-e $setupexe) || (!-e $phindjar) ||
276 (!-e $gsdlcollageappletjar)) {
277 &gsprintf($out, "{exportcol.fail} {exportcol.non_exist_files}\n");
278 &gsprintf($out, " $imagesdir\n");
279 &gsprintf($out, " $macrosdir\n");
280 &gsprintf($out, " $mappingsdir\n");
281 &gsprintf($out, " $maincfg\n");
282 &gsprintf($out, " $serverexe\n");
283 &gsprintf($out, " $gssetupexe\n");
284 &gsprintf($out, " $setupexe\n");
285 &gsprintf($out, " $phindjar\n");
286 &gsprintf($out, " $gsdlcollageappletjar\n");
287 die "\n";
288 }
289
290 &util::cp_r ($imagesdir, $gsdldir);
291 &util::cp_r ($macrosdir, $gsdldir);
292 &util::cp_r ($mappingsdir, $gsdldir);
293 &util::cp ($maincfg, $etcdir);
294 &util::cp ($serverexe, $gsdldir);
295 &util::cp ($phindjar, $binjavadir);
296 &util::cp ($gsdlcollageappletjar, $binjavadir);
297
298 if (!$noinstall) {
299 &util::cp ($gssetupexe, $topdir);
300 &util::cp ($setupexe, $topdir);
301 }
302
303 # now change the home.dm macro file to a simple version
304 my $newmacrodir = &util::filename_cat ($gsdldir, "macros");
305 my $exporthome = &util::filename_cat ($newmacrodir, "exported_home.dm");
306 my $oldhome = &util::filename_cat ($newmacrodir, "home.dm");
307 if (-e $exporthome) {
308 &util::rm($oldhome);
309 &util::mv($exporthome, $oldhome);
310 }
311
312 # copy the collections over
313 foreach my $c (@valid_coll_list) {
314 #old directories
315 my $colldir = &util::filename_cat ($ENV{'GSDLHOME'}, "collect", $c);
316 my $colindexdir = &util::filename_cat ($colldir, "index");
317 my $coletcdir = &util::filename_cat ($colldir, "etc");
318 my $colimagesdir = &util::filename_cat ($colldir, "images");
319 my $colmacrosdir = &util::filename_cat ($colldir, "macros");
320 # new coll directory
321 my $newcoldir = &util::filename_cat ($collectdir, $c);
322
323 &util::mk_all_dir ($newcoldir);
324 &util::cp_r ($colindexdir, $newcoldir);
325 &util::rename_gdbm_file(&util::filename_cat ($newcoldir, "index", "text", $c));
326 &util::cp_r ($coletcdir, $newcoldir);
327 &util::cp_r ($colimagesdir, $newcoldir) if (-e $colimagesdir);
328 &util::cp_r ($colmacrosdir, $newcoldir) if (-e $colmacrosdir);
329
330 # now we need to check the collect.cfg file to make sure it's public
331 my $collectcfg = &util::filename_cat ($newcoldir, "etc", "collect.cfg");
332 open INFILE, "<$collectcfg";
333 open OUTFILE, ">$collectcfg.tmp";
334 my $line;
335 while ($line = <INFILE>) {
336 if ($line =~ /^\s*public\s+false/) {
337 print OUTFILE "public\ttrue\n";
338 last; # stop matching once we have found the line
339 } else {
340 print OUTFILE "$line";
341 }
342 }
343 # continue with no checking
344 while ($line = <INFILE>) {
345 print OUTFILE "$line";
346 }
347 close INFILE;
348 close OUTFILE;
349 &util::mv("$collectcfg.tmp", $collectcfg);
350 }
351 &gsprintf($out, "{exportcol.success}");
352
353 my $successcolls = "";
354 my $first = 1;
355 foreach my $c (@valid_coll_list) {
356 if ($first) {
357 $first=0;
358 } else {
359 $successcolls .=", ";
360 }
361 $successcolls .= "$c";
362 }
363
364 my $gsdl_home = $ENV{'GSDLHOME'};
365 my $portable_topdir = $topdir;
366 # Disabled this because it isn't currently useful (the GLI applet doesn't do exporting)
367 # It doesn't work on Windows, either
368 # $portable_topdir =~ s/$gsdl_home/\$GSDLHOME/g;
369
370 &gsprintf($out, "{exportcol.output_dir}\n", $successcolls, $portable_topdir);
371 &gsprintf($out, "exportcol.pl succeeded:{exportcol.instructions}\n");
372 close OUT if $close_out;
373}
374
Note: See TracBrowser for help on using the repository browser.