source: main/trunk/greenstone2/perllib/util.pm@ 24874

Last change on this file since 24874 was 24874, checked in by ak19, 12 years ago

Third set of commits to do with the migration of cgi-bin into common-src, so that upon make install, common-src\cgi-bin will be installed in cgi-bin\GSDLOS(GSDLARCH). The first commit was of changes to files in cgi-bin itself. The second commit was moving cgi-bin. This one involves changes to all the files referring to cgi-bin where this needs to be changed to cgi-bin\OS_and_ARCH.

  • Property svn:keywords set to Author Date Id Revision
File size: 44.8 KB
RevLine 
[537]1###########################################################################
2#
3# util.pm -- various useful utilities
4# A component of the Greenstone digital library software
5# from the New Zealand Digital Library Project at the
6# University of Waikato, New Zealand.
7#
8# Copyright (C) 1999 New Zealand Digital Library Project
9#
10# This program is free software; you can redistribute it and/or modify
11# it under the terms of the GNU General Public License as published by
12# the Free Software Foundation; either version 2 of the License, or
13# (at your option) any later version.
14#
15# This program is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18# GNU General Public License for more details.
19#
20# You should have received a copy of the GNU General Public License
21# along with this program; if not, write to the Free Software
22# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23#
24###########################################################################
[4]25
26package util;
27
[23362]28use strict;
29
30use Encode;
[4]31use File::Copy;
[619]32use File::Basename;
[24362]33# Config for getting the perlpath in the recommended way, though it uses paths that are
34# hard-coded into the Config file that's generated upon configuring and compiling perl.
35# $^X works better in some cases to return the path to perl used to launch the script,
36# but if launched with plain "perl" (no full-path), that will be just what it returns.
37use Config;
[4]38
39# removes files (but not directories)
40sub rm {
41 my (@files) = @_;
[18469]42
[4]43 my @filefiles = ();
44
45 # make sure the files we want to delete exist
46 # and are regular files
[10046]47 foreach my $file (@files) {
[4]48 if (!-e $file) {
49 print STDERR "util::rm $file does not exist\n";
[721]50 } elsif ((!-f $file) && (!-l $file)) {
51 print STDERR "util::rm $file is not a regular (or symbolic) file\n";
[4]52 } else {
53 push (@filefiles, $file);
54 }
55 }
56
57 # remove the files
58 my $numremoved = unlink @filefiles;
59
60 # check to make sure all of them were removed
61 if ($numremoved != scalar(@filefiles)) {
62 print STDERR "util::rm Not all files were removed\n";
63 }
64}
65
[23249]66# removes files (but not directories) - can rename this to the default
67# "rm" subroutine when debugging the deletion of individual files.
68sub rm_debug {
69 my (@files) = @_;
70 my @filefiles = ();
[4]71
[23249]72 # make sure the files we want to delete exist
73 # and are regular files
74 foreach my $file (@files) {
75 if (!-e $file) {
76 print STDERR "util::rm $file does not exist\n";
77 } elsif ((!-f $file) && (!-l $file)) {
78 print STDERR "util::rm $file is not a regular (or symbolic) file\n";
79 } else { # debug message
80 unlink($file) or warn "Could not delete file $file: $!\n";
81 }
82 }
83}
[10211]84
[23249]85
[4]86# recursive removal
[10211]87sub filtered_rm_r {
88 my ($files,$file_accept_re,$file_reject_re) = @_;
[4]89
[24291]90# my ($cpackage,$cfilename,$cline,$csubr,$chas_args,$cwantarray) = caller(2);
91# my ($lcfilename) = ($cfilename =~ m/([^\\\/]*)$/);
92# print STDERR "** Calling method (2): $lcfilename:$cline $cpackage->$csubr\n";
93
[10211]94 my @files_array = (ref $files eq "ARRAY") ? @$files : ($files);
95
[4]96 # recursively remove the files
[10211]97 foreach my $file (@files_array) {
[4]98 $file =~ s/[\/\\]+$//; # remove trailing slashes
99
100 if (!-e $file) {
[10211]101 print STDERR "util::filtered_rm_r $file does not exist\n";
[4]102
[721]103 } elsif ((-d $file) && (!-l $file)) { # don't recurse down symbolic link
[4]104 # get the contents of this directory
105 if (!opendir (INDIR, $file)) {
[10211]106 print STDERR "util::filtered_rm_r could not open directory $file\n";
[4]107 } else {
108 my @filedir = grep (!/^\.\.?$/, readdir (INDIR));
109 closedir (INDIR);
[10211]110
[4]111 # remove all the files in this directory
[10211]112 map {$_="$file/$_";} @filedir;
113 &filtered_rm_r (\@filedir,$file_accept_re,$file_reject_re);
[4]114
[10211]115 if (!defined $file_accept_re && !defined $file_reject_re) {
116 # remove this directory
117 if (!rmdir $file) {
118 print STDERR "util::filtered_rm_r couldn't remove directory $file\n";
119 }
[4]120 }
121 }
[10211]122 } else {
123 next if (defined $file_reject_re && ($file =~ m/$file_reject_re/));
[4]124
[10211]125 if ((!defined $file_accept_re) || ($file =~ m/$file_accept_re/)) {
126 # remove this file
127 &rm ($file);
128 }
[4]129 }
130 }
131}
132
[10211]133
134# recursive removal
135sub rm_r {
136 my (@files) = @_;
137
138 # use the more general (but reterospectively written function
139 # filtered_rm_r function()
140
141 filtered_rm_r(\@files,undef,undef); # no accept or reject expressions
142}
143
144
145
146
[721]147# moves a file or a group of files
148sub mv {
149 my $dest = pop (@_);
150 my (@srcfiles) = @_;
[4]151
[721]152 # remove trailing slashes from source and destination files
153 $dest =~ s/[\\\/]+$//;
154 map {$_ =~ s/[\\\/]+$//;} @srcfiles;
155
156 # a few sanity checks
157 if (scalar (@srcfiles) == 0) {
158 print STDERR "util::mv no destination directory given\n";
159 return;
160 } elsif ((scalar (@srcfiles) > 1) && (!-d $dest)) {
161 print STDERR "util::mv if multiple source files are given the ".
162 "destination must be a directory\n";
163 return;
164 }
165
166 # move the files
[8716]167 foreach my $file (@srcfiles) {
[721]168 my $tempdest = $dest;
169 if (-d $tempdest) {
170 my ($filename) = $file =~ /([^\\\/]+)$/;
171 $tempdest .= "/$filename";
172 }
173 if (!-e $file) {
174 print STDERR "util::mv $file does not exist\n";
175 } else {
176 rename ($file, $tempdest);
177 }
178 }
179}
180
181
[4]182# copies a file or a group of files
183sub cp {
184 my $dest = pop (@_);
185 my (@srcfiles) = @_;
186
187 # remove trailing slashes from source and destination files
188 $dest =~ s/[\\\/]+$//;
189 map {$_ =~ s/[\\\/]+$//;} @srcfiles;
190
191 # a few sanity checks
192 if (scalar (@srcfiles) == 0) {
193 print STDERR "util::cp no destination directory given\n";
194 return;
195 } elsif ((scalar (@srcfiles) > 1) && (!-d $dest)) {
196 print STDERR "util::cp if multiple source files are given the ".
197 "destination must be a directory\n";
198 return;
199 }
200
201 # copy the files
[8716]202 foreach my $file (@srcfiles) {
[4]203 my $tempdest = $dest;
204 if (-d $tempdest) {
205 my ($filename) = $file =~ /([^\\\/]+)$/;
206 $tempdest .= "/$filename";
207 }
208 if (!-e $file) {
209 print STDERR "util::cp $file does not exist\n";
210 } elsif (!-f $file) {
211 print STDERR "util::cp $file is not a plain file\n";
212 } else {
213 &File::Copy::copy ($file, $tempdest);
214 }
215 }
216}
217
218
[721]219
[4]220# recursively copies a file or group of files
[1454]221# syntax: cp_r (sourcefiles, destination directory)
222# destination must be a directory - to copy one file to
223# another use cp instead
[4]224sub cp_r {
225 my $dest = pop (@_);
226 my (@srcfiles) = @_;
227
228 # a few sanity checks
229 if (scalar (@srcfiles) == 0) {
[1454]230 print STDERR "util::cp_r no destination directory given\n";
[4]231 return;
[1454]232 } elsif (-f $dest) {
233 print STDERR "util::cp_r destination must be a directory\n";
[4]234 return;
235 }
236
[1454]237 # create destination directory if it doesn't exist already
238 if (! -d $dest) {
239 my $store_umask = umask(0002);
240 mkdir ($dest, 0777);
241 umask($store_umask);
242 }
243
[4]244 # copy the files
[8716]245 foreach my $file (@srcfiles) {
[4]246
247 if (!-e $file) {
[1454]248 print STDERR "util::cp_r $file does not exist\n";
[4]249
250 } elsif (-d $file) {
[1586]251 # make the new directory
252 my ($filename) = $file =~ /([^\\\/]*)$/;
253 $dest = &util::filename_cat ($dest, $filename);
254 my $store_umask = umask(0002);
255 mkdir ($dest, 0777);
256 umask($store_umask);
[836]257
[4]258 # get the contents of this directory
259 if (!opendir (INDIR, $file)) {
260 print STDERR "util::cp_r could not open directory $file\n";
261 } else {
[1454]262 my @filedir = readdir (INDIR);
[4]263 closedir (INDIR);
[8716]264 foreach my $f (@filedir) {
[1454]265 next if $f =~ /^\.\.?$/;
266 # copy all the files in this directory
267 my $ff = &util::filename_cat ($file, $f);
268 &cp_r ($ff, $dest);
269 }
[4]270 }
271
272 } else {
[1454]273 &cp($file, $dest);
[4]274 }
275 }
276}
[21762]277# recursively copies a file or group of files
278# syntax: cp_r (sourcefiles, destination directory)
279# destination must be a directory - to copy one file to
280# another use cp instead
281sub cp_r_nosvn {
282 my $dest = pop (@_);
283 my (@srcfiles) = @_;
[4]284
[21762]285 # a few sanity checks
286 if (scalar (@srcfiles) == 0) {
287 print STDERR "util::cp_r no destination directory given\n";
288 return;
289 } elsif (-f $dest) {
290 print STDERR "util::cp_r destination must be a directory\n";
291 return;
292 }
293
294 # create destination directory if it doesn't exist already
295 if (! -d $dest) {
296 my $store_umask = umask(0002);
297 mkdir ($dest, 0777);
298 umask($store_umask);
299 }
300
301 # copy the files
302 foreach my $file (@srcfiles) {
303
304 if (!-e $file) {
305 print STDERR "util::cp_r $file does not exist\n";
306
307 } elsif (-d $file) {
308 # make the new directory
309 my ($filename) = $file =~ /([^\\\/]*)$/;
310 $dest = &util::filename_cat ($dest, $filename);
311 my $store_umask = umask(0002);
312 mkdir ($dest, 0777);
313 umask($store_umask);
314
315 # get the contents of this directory
316 if (!opendir (INDIR, $file)) {
317 print STDERR "util::cp_r could not open directory $file\n";
318 } else {
319 my @filedir = readdir (INDIR);
320 closedir (INDIR);
321 foreach my $f (@filedir) {
322 next if $f =~ /^\.\.?$/;
323 next if $f =~ /^\.svn$/;
324 # copy all the files in this directory
325 my $ff = &util::filename_cat ($file, $f);
326 &cp_r ($ff, $dest);
327 }
328 }
329
330 } else {
331 &cp($file, $dest);
332 }
333 }
334}
335
[11179]336# copies a directory and its contents, excluding subdirectories, into a new directory
337sub cp_r_toplevel {
338 my $dest = pop (@_);
339 my (@srcfiles) = @_;
[4]340
[11179]341 # a few sanity checks
342 if (scalar (@srcfiles) == 0) {
343 print STDERR "util::cp_r no destination directory given\n";
344 return;
345 } elsif (-f $dest) {
346 print STDERR "util::cp_r destination must be a directory\n";
347 return;
348 }
349
350 # create destination directory if it doesn't exist already
351 if (! -d $dest) {
352 my $store_umask = umask(0002);
353 mkdir ($dest, 0777);
354 umask($store_umask);
355 }
356
357 # copy the files
358 foreach my $file (@srcfiles) {
359
360 if (!-e $file) {
361 print STDERR "util::cp_r $file does not exist\n";
362
363 } elsif (-d $file) {
364 # make the new directory
365 my ($filename) = $file =~ /([^\\\/]*)$/;
366 $dest = &util::filename_cat ($dest, $filename);
367 my $store_umask = umask(0002);
368 mkdir ($dest, 0777);
369 umask($store_umask);
370
371 # get the contents of this directory
372 if (!opendir (INDIR, $file)) {
373 print STDERR "util::cp_r could not open directory $file\n";
374 } else {
375 my @filedir = readdir (INDIR);
376 closedir (INDIR);
377 foreach my $f (@filedir) {
378 next if $f =~ /^\.\.?$/;
379
380 # copy all the files in this directory, but not directories
381 my $ff = &util::filename_cat ($file, $f);
382 if (-f $ff) {
383 &cp($ff, $dest);
384 #&cp_r ($ff, $dest);
385 }
386 }
387 }
388
389 } else {
390 &cp($file, $dest);
391 }
392 }
393}
394
[721]395sub mk_dir {
396 my ($dir) = @_;
397
[836]398 my $store_umask = umask(0002);
399 my $mkdir_ok = mkdir ($dir, 0777);
400 umask($store_umask);
401
402 if (!$mkdir_ok)
403 {
[721]404 print STDERR "util::mk_dir could not create directory $dir\n";
405 return;
406 }
407}
408
[1046]409# in case anyone cares - I did some testing (using perls Benchmark module)
410# on this subroutine against File::Path::mkpath (). mk_all_dir() is apparently
411# slightly faster (surprisingly) - Stefan.
[4]412sub mk_all_dir {
413 my ($dir) = @_;
414
415 # use / for the directory separator, remove duplicate and
416 # trailing slashes
417 $dir=~s/[\\\/]+/\//g;
418 $dir=~s/[\\\/]+$//;
419
420 # make sure the cache directory exists
421 my $dirsofar = "";
422 my $first = 1;
[8716]423 foreach my $dirname (split ("/", $dir)) {
[4]424 $dirsofar .= "/" unless $first;
425 $first = 0;
426
427 $dirsofar .= $dirname;
428
429 next if $dirname =~ /^(|[a-z]:)$/i;
[836]430 if (!-e $dirsofar)
431 {
432 my $store_umask = umask(0002);
433 my $mkdir_ok = mkdir ($dirsofar, 0777);
434 umask($store_umask);
435 if (!$mkdir_ok)
436 {
437 print STDERR "util::mk_all_dir could not create directory $dirsofar\n";
438 return;
439 }
440 }
[4]441 }
442}
443
[619]444# make hard link to file if supported by OS, otherwise copy the file
445sub hard_link {
[18463]446 my ($src, $dest, $verbosity) = @_;
[4]447
[619]448 # remove trailing slashes from source and destination files
449 $src =~ s/[\\\/]+$//;
450 $dest =~ s/[\\\/]+$//;
451
[23307]452## print STDERR "**** src = ", unicode::debug_unicode_string($src),"\n";
[619]453 # a few sanity checks
[812]454 if (-e $dest) {
455 # destination file already exists
456 return;
457 }
458 elsif (!-e $src) {
[23307]459 print STDERR "util::hard_link source file \"$src\" does not exist\n";
[3628]460 return 1;
[619]461 }
462 elsif (-d $src) {
[23307]463 print STDERR "util::hard_link source \"$src\" is a directory\n";
[3628]464 return 1;
[619]465 }
466
467 my $dest_dir = &File::Basename::dirname($dest);
468 mk_all_dir($dest_dir) if (!-e $dest_dir);
469
[14365]470
[22119]471 if (!link($src, $dest)) {
[18463]472 if ((!defined $verbosity) || ($verbosity>2)) {
473 print STDERR "util::hard_link: unable to create hard link. ";
474 print STDERR " Copying file: $src -> $dest\n";
475 }
[14365]476 &File::Copy::copy ($src, $dest);
[619]477 }
[3628]478 return 0;
[619]479}
480
[2193]481# make soft link to file if supported by OS, otherwise copy file
[721]482sub soft_link {
[15165]483 my ($src, $dest, $ensure_paths_absolute) = @_;
[619]484
[721]485 # remove trailing slashes from source and destination files
486 $src =~ s/[\\\/]+$//;
487 $dest =~ s/[\\\/]+$//;
[619]488
[15165]489 # Ensure file paths are absolute IF requested to do so
490 # Soft_linking didn't work for relative paths
491 if(defined $ensure_paths_absolute && $ensure_paths_absolute) {
492 # We need to ensure that the src file is the absolute path
493 # See http://perldoc.perl.org/File/Spec.html
494 if(!File::Spec->file_name_is_absolute( $src )) { # it's relative
495 $src = File::Spec->rel2abs($src); # make absolute
496 }
497 # Might as well ensure that the destination file's absolute path is used
498 if(!File::Spec->file_name_is_absolute( $dest )) {
499 $dest = File::Spec->rel2abs($dest); # make absolute
500 }
501 }
502
[721]503 # a few sanity checks
504 if (!-e $src) {
505 print STDERR "util::soft_link source file $src does not exist\n";
506 return 0;
507 }
[619]508
[721]509 my $dest_dir = &File::Basename::dirname($dest);
510 mk_all_dir($dest_dir) if (!-e $dest_dir);
[14365]511
[2193]512 if ($ENV{'GSDLOS'} =~ /^windows$/i) {
[23484]513
[14365]514 # symlink not supported on windows
515 &File::Copy::copy ($src, $dest);
[2193]516
517 } elsif (!eval {symlink($src, $dest)}) {
[2974]518 print STDERR "util::soft_link: unable to create soft link.\n";
[721]519 return 0;
520 }
521
522 return 1;
523}
524
[23362]525# Primarily for filenames generated by processing
526# content of HTML files (which are mapped to UTF-8 internally)
527#
528# To turn this into an octet string that really exists on the file
529# system:
530# 1. don't need to do anything special for Unix-based systems
531# (as underlying file system is byte-code)
532# 2. need to map to short DOS filenames for Windows
[721]533
[23362]534sub utf8_to_real_filename
535{
536 my ($utf8_filename) = @_;
[721]537
[23362]538 my $real_filename;
[721]539
[23362]540 if ($ENV{'GSDLOS'} =~ m/^windows$/i) {
541 require Win32;
[23388]542
543 print STDERR "***** utf8 filename = $utf8_filename\n\n\n";
544
[23362]545 my $unicode_filename = decode("utf8",$utf8_filename);
546 $real_filename = Win32::GetShortPathName($unicode_filename);
547 }
548 else {
549 $real_filename = $utf8_filename;
550 }
551
552 return $real_filename;
553}
554
555
556sub fd_exists
557{
558 my $filename_full_path = shift @_;
559 my $test_op = shift @_ || "-e";
560
561 # By default tests for existance of file or directory (-e)
562 # Can be made more specific by providing second parameter (e.g. -f or -d)
563
564 my $exists = 0;
565
566 if ($ENV{'GSDLOS'} =~ m/^windows$/i) {
567 require Win32;
568 my $filename_short_path = Win32::GetShortPathName($filename_full_path);
569 if (!defined $filename_short_path) {
570 # Was probably still in UTF8 form (not what is needed on Windows)
571 my $unicode_filename_full_path = eval "decode(\"utf8\",\$filename_full_path)";
572 if (defined $unicode_filename_full_path) {
573 $filename_short_path = Win32::GetShortPathName($unicode_filename_full_path);
574 }
575 }
576 $filename_full_path = $filename_short_path;
577 }
578
579 if (defined $filename_full_path) {
580 $exists = eval "($test_op \$filename_full_path)";
581 }
582
583 return $exists;
584}
585
586sub file_exists
587{
588 my ($filename_full_path) = @_;
589
590 return fd_exists($filename_full_path,"-f");
591}
592
593sub dir_exists
594{
595 my ($filename_full_path) = @_;
596
597 return fd_exists($filename_full_path,"-d");
598}
599
600
601
[4]602# updates a copy of a directory in some other part of the filesystem
603# verbosity settings are: 0=low, 1=normal, 2=high
604# both $fromdir and $todir should be absolute paths
605sub cachedir {
606 my ($fromdir, $todir, $verbosity) = @_;
607 $verbosity = 1 unless defined $verbosity;
608
609 # use / for the directory separator, remove duplicate and
610 # trailing slashes
611 $fromdir=~s/[\\\/]+/\//g;
612 $fromdir=~s/[\\\/]+$//;
613 $todir=~s/[\\\/]+/\//g;
614 $todir=~s/[\\\/]+$//;
615
616 &mk_all_dir ($todir);
617
618 # get the directories in ascending order
619 if (!opendir (FROMDIR, $fromdir)) {
620 print STDERR "util::cachedir could not read directory $fromdir\n";
621 return;
622 }
623 my @fromdir = grep (!/^\.\.?$/, sort(readdir (FROMDIR)));
624 closedir (FROMDIR);
625
626 if (!opendir (TODIR, $todir)) {
627 print STDERR "util::cacedir could not read directory $todir\n";
628 return;
629 }
630 my @todir = grep (!/^\.\.?$/, sort(readdir (TODIR)));
631 closedir (TODIR);
632
633 my $fromi = 0;
634 my $toi = 0;
635
636 while ($fromi < scalar(@fromdir) || $toi < scalar(@todir)) {
637# print "fromi: $fromi toi: $toi\n";
638
639 # see if we should delete a file/directory
640 # this should happen if the file/directory
641 # is not in the from list or if its a different
642 # size, or has an older timestamp
643 if ($toi < scalar(@todir)) {
644 if (($fromi >= scalar(@fromdir)) ||
645 ($todir[$toi] lt $fromdir[$fromi] ||
646 ($todir[$toi] eq $fromdir[$fromi] &&
647 &differentfiles("$fromdir/$fromdir[$fromi]","$todir/$todir[$toi]",
648 $verbosity)))) {
649
650 # the files are different
651 &rm_r("$todir/$todir[$toi]");
652 splice(@todir, $toi, 1); # $toi stays the same
653
654 } elsif ($todir[$toi] eq $fromdir[$fromi]) {
655 # the files are the same
656 # if it is a directory, check its contents
657 if (-d "$todir/$todir[$toi]") {
658 &cachedir ("$fromdir/$fromdir[$fromi]",
659 "$todir/$todir[$toi]", $verbosity);
660 }
661
662 $toi++;
663 $fromi++;
664 next;
665 }
666 }
667
668 # see if we should insert a file/directory
669 # we should insert a file/directory if there
670 # is no tofiles left or if the tofile does not exist
671 if ($fromi < scalar(@fromdir) && ($toi >= scalar(@todir) ||
672 $todir[$toi] gt $fromdir[$fromi])) {
673 &cp_r ("$fromdir/$fromdir[$fromi]", "$todir/$fromdir[$fromi]");
674 splice (@todir, $toi, 0, $fromdir[$fromi]);
675
676 $toi++;
677 $fromi++;
678 }
679 }
680}
681
682# this function returns -1 if either file is not found
683# assumes that $file1 and $file2 are absolute file names or
684# in the current directory
685# $file2 is allowed to be newer than $file1
686sub differentfiles {
687 my ($file1, $file2, $verbosity) = @_;
688 $verbosity = 1 unless defined $verbosity;
689
690 $file1 =~ s/\/+$//;
691 $file2 =~ s/\/+$//;
692
693 my ($file1name) = $file1 =~ /\/([^\/]*)$/;
694 my ($file2name) = $file2 =~ /\/([^\/]*)$/;
695
696 return -1 unless (-e $file1 && -e $file2);
697 if ($file1name ne $file2name) {
698 print STDERR "filenames are not the same\n" if ($verbosity >= 2);
699 return 1;
700 }
701
[8716]702 my @file1stat = stat ($file1);
703 my @file2stat = stat ($file2);
[4]704
705 if (-d $file1) {
706 if (! -d $file2) {
707 print STDERR "one file is a directory\n" if ($verbosity >= 2);
708 return 1;
709 }
710 return 0;
711 }
712
713 # both must be regular files
714 unless (-f $file1 && -f $file2) {
715 print STDERR "one file is not a regular file\n" if ($verbosity >= 2);
716 return 1;
717 }
718
719 # the size of the files must be the same
720 if ($file1stat[7] != $file2stat[7]) {
721 print STDERR "different sized files\n" if ($verbosity >= 2);
722 return 1;
723 }
724
725 # the second file cannot be older than the first
726 if ($file1stat[9] > $file2stat[9]) {
727 print STDERR "file is older\n" if ($verbosity >= 2);
728 return 1;
729 }
730
731 return 0;
732}
733
734
[16266]735sub get_tmp_filename
736{
737 my $file_ext = shift(@_) || undef;
738
[22438]739 my $opt_dot_file_ext = "";
740 if (defined $file_ext) {
741 if ($file_ext !~ m/\./) {
742 # no dot, so needs one added in at start
743 $opt_dot_file_ext = ".$file_ext"
744 }
745 else {
746 # allow for "extensions" such as _metadata.txt to be handled
747 # gracefully
748 $opt_dot_file_ext = $file_ext;
749 }
750 }
[16266]751
[2795]752 my $tmpdir = filename_cat($ENV{'GSDLHOME'}, "tmp");
[4]753 &mk_all_dir ($tmpdir) unless -e $tmpdir;
754
755 my $count = 1000;
756 my $rand = int(rand $count);
[16266]757 my $full_tmp_filename = &filename_cat($tmpdir, "F$rand$opt_dot_file_ext");
758
759 while (-e $full_tmp_filename) {
[4]760 $rand = int(rand $count);
[16266]761 $full_tmp_filename = &filename_cat($tmpdir, "F$rand$opt_dot_file_ext");
[4]762 $count++;
763 }
[16266]764
765 return $full_tmp_filename;
[4]766}
767
[22886]768sub get_timestamped_tmp_folder
[22873]769{
770
[22886]771 my $tmp_dirname;
[22873]772 if(defined $ENV{'GSDLCOLLECTDIR'}) {
773 $tmp_dirname = $ENV{'GSDLCOLLECTDIR'};
774 } elsif(defined $ENV{'GSDLHOME'}) {
775 $tmp_dirname = $ENV{'GSDLHOME'};
[22886]776 } else {
777 return undef;
[22873]778 }
779
780 $tmp_dirname = &util::filename_cat($tmp_dirname, "tmp");
781 &util::mk_dir($tmp_dirname) if (!-e $tmp_dirname);
782
783 # add the timestamp into the path otherwise we can run into problems
784 # if documents have the same name
785 my $timestamp = time;
786 my $time_tmp_dirname = &util::filename_cat($tmp_dirname, $timestamp);
787 $tmp_dirname = $time_tmp_dirname;
788 my $i = 1;
789 while (-e $tmp_dirname) {
790 $tmp_dirname = "$time_tmp_dirname$i";
791 $i++;
792 }
793 &util::mk_dir($tmp_dirname);
794
[22886]795 return $tmp_dirname;
796}
[22873]797
[22886]798sub get_timestamped_tmp_filename_in_collection
799{
800
801 my ($input_filename, $output_ext) = @_;
802 # derive tmp filename from input filename
803 my ($tailname, $dirname, $suffix)
804 = &File::Basename::fileparse($input_filename, "\\.[^\\.]+\$");
805
806 # softlink to collection tmp dir
807 my $tmp_dirname = &util::get_timestamped_tmp_folder();
808 $tmp_dirname = $dirname unless defined $tmp_dirname;
809
[22873]810 # following two steps copied from ConvertBinaryFile
[22886]811 # do we need them?? can't use them as is, as they use plugin methods.
812
[22873]813 #$tailname = $self->SUPER::filepath_to_utf8($tailname) unless &unicode::check_is_utf8($tailname);
814
815 # URLEncode this since htmls with images where the html filename is utf8 don't seem
816 # to work on Windows (IE or Firefox), as browsers are looking for filesystem-encoded
817 # files on the filesystem.
818 #$tailname = &util::rename_file($tailname, $self->{'file_rename_method'}, "without_suffix");
819 if (defined $output_ext) {
820 $output_ext = ".$output_ext"; # add the dot
821 } else {
822 $output_ext = $suffix;
823 }
824 $output_ext= lc($output_ext);
825 my $tmp_filename = &util::filename_cat($tmp_dirname, "$tailname$output_ext");
826
827 return $tmp_filename;
828}
829
[21218]830sub get_toplevel_tmp_dir
831{
832 return filename_cat($ENV{'GSDLHOME'}, "tmp");
833}
834
835
[17512]836sub filename_to_regex {
837 my $filename = shift (@_);
[4]838
[17512]839 # need to put single backslash back to double so that regex works
[24832]840 $filename =~ s/\\/\\\\/g; # if ($ENV{'GSDLOS'} =~ /^windows$/i);
[24829]841
[24832]842 # note that the first part of a substitution is a regex, so RE chars need to be escaped,
843 # the second part of a substitution is not a regex, so for e.g. full-stop can be specified literally
[24829]844 $filename =~ s/\./\\./g; # in case there are extensions/other full stops, escape them
845 $filename =~ s@\(@\\(@g; # escape brackets
846 $filename =~ s@\)@\\)@g; # escape brackets
847
[17512]848 return $filename;
849}
850
[24829]851sub unregex_filename {
852 my $filename = shift (@_);
853
854 # need to put doubled backslashes for regex back to single
855 $filename =~ s/\\\\/\\/g; # remove RE syntax for \
856 $filename =~ s/\\\./\./g; # remove RE syntax for .
857 $filename =~ s@\\\(@(@g; # remove RE syntax for ( => "\(" turns into "("
858 $filename =~ s@\\\)@)@g; # remove RE syntax for ) => "\)" turns into ")"
859 return $filename;
860}
861
[4]862sub filename_cat {
[7507]863 my $first_file = shift(@_);
[4]864 my (@filenames) = @_;
[10146]865
[16266]866# Useful for debugging
867# -- might make sense to call caller(0) rather than (1)??
868# my ($cpackage,$cfilename,$cline,$csubr,$chas_args,$cwantarray) = caller(1);
[22856]869# print STDERR "Calling method: $cfilename:$cline $cpackage->$csubr\n";
[18913]870
871 # If first_file is not null or empty, then add it back into the list
872 if (defined $first_file && $first_file =~ /\S/) {
[7507]873 unshift(@filenames, $first_file);
874 }
875
[4]876 my $filename = join("/", @filenames);
877
878 # remove duplicate slashes and remove the last slash
[488]879 if ($ENV{'GSDLOS'} =~ /^windows$/i) {
880 $filename =~ s/[\\\/]+/\\/g;
881 } else {
[836]882 $filename =~ s/[\/]+/\//g;
883 # DB: want a filename abc\de.html to remain like this
[488]884 }
885 $filename =~ s/[\\\/]$//;
[4]886
887 return $filename;
888}
889
[21413]890
891sub pathname_cat {
892 my $first_path = shift(@_);
893 my (@pathnames) = @_;
894
895 # If first_path is not null or empty, then add it back into the list
896 if (defined $first_path && $first_path =~ /\S/) {
897 unshift(@pathnames, $first_path);
898 }
899
[21425]900 my $join_char;
[21413]901 if ($ENV{'GSDLOS'} =~ /^windows$/i) {
902 $join_char = ";";
903 } else {
904 $join_char = ":";
905 }
906
907 my $pathname = join($join_char, @pathnames);
908
909 # remove duplicate slashes
910 if ($ENV{'GSDLOS'} =~ /^windows$/i) {
911 $pathname =~ s/[\\\/]+/\\/g;
912 } else {
913 $pathname =~ s/[\/]+/\//g;
914 # DB: want a pathname abc\de.html to remain like this
915 }
916
917 return $pathname;
918}
919
920
[19616]921sub tidy_up_oid {
922 my ($OID) = @_;
923 if ($OID =~ /\./) {
924 print STDERR "Warning, identifier $OID contains periods (.), removing them\n";
925 $OID =~ s/\.//g; #remove any periods
926 }
927 if ($OID =~ /^\s.*\s$/) {
928 print STDERR "Warning, identifier $OID starts or ends with whitespace. Removing it\n";
929 # remove starting and trailing whitespace
930 $OID =~ s/^\s+//;
931 $OID =~ s/\s+$//;
932 }
933 if ($OID =~ /^[\d]*$/) {
934 print STDERR "Warning, identifier $OID contains only digits. Prepending 'D'.\n";
935 $OID = "D" . $OID;
936 }
937
938 return $OID;
939}
[10212]940sub envvar_prepend {
941 my ($var,$val) = @_;
942
[16404]943 # do not prepend any value/path that's already in the environment variable
[24832]944
945 my $escaped_val = &filename_to_regex($val); # escape any backslashes and brackets for upcoming regex
946 if (!defined($ENV{$var})) {
947 $ENV{$var} = "$val";
[16442]948 }
[24832]949 elsif($ENV{$var} !~ m/$escaped_val/) {
950 $ENV{$var} = "$val;".$ENV{$var};
[10212]951 }
952}
953
954sub envvar_append {
955 my ($var,$val) = @_;
[24832]956
[16404]957 # do not append any value/path that's already in the environment variable
[24832]958
959 my $escaped_val = &filename_to_regex($val); # escape any backslashes and brackets for upcoming regex
960 if (!defined($ENV{$var})) {
961 $ENV{$var} = "$val";
[16442]962 }
[24832]963 elsif($ENV{$var} !~ m/$escaped_val/) {
964 $ENV{$var} .= ";$val";
965 }
[10212]966}
967
[16442]968
[16380]969# splits a filename into a prefix and a tail extension using the tail_re, or
970# if that fails, splits on the file_extension . (dot)
971sub get_prefix_and_tail_by_regex {
[10212]972
[16380]973 my ($filename,$tail_re) = @_;
974
975 my ($file_prefix,$file_ext) = ($filename =~ m/^(.*?)($tail_re)$/);
976 if ((!defined $file_prefix) || (!defined $file_ext)) {
977 ($file_prefix,$file_ext) = ($filename =~ m/^(.*)(\..*?)$/);
978 }
979
980 return ($file_prefix,$file_ext);
981}
982
983# get full path and file only path from a base_dir (which may be empty) and
984# file (which may contain directories)
985sub get_full_filenames {
986 my ($base_dir, $file) = @_;
987
988 my $filename_full_path = $file;
989 # add on directory if present
990 $filename_full_path = &util::filename_cat ($base_dir, $file) if $base_dir =~ /\S/;
991
992 my $filename_no_path = $file;
993
994 # remove directory if present
995 $filename_no_path =~ s/^.*[\/\\]//;
996 return ($filename_full_path, $filename_no_path);
997}
998
[8682]999# returns the path of a file without the filename -- ie. the directory the file is in
1000sub filename_head {
1001 my $filename = shift(@_);
1002
1003 if ($ENV{'GSDLOS'} =~ /^windows$/i) {
1004 $filename =~ s/[^\\\\]*$//;
1005 }
1006 else {
1007 $filename =~ s/[^\\\/]*$//;
1008 }
1009
1010 return $filename;
1011}
1012
1013
[23362]1014
[1454]1015# returns 1 if filename1 and filename2 point to the same
1016# file or directory
1017sub filenames_equal {
1018 my ($filename1, $filename2) = @_;
1019
1020 # use filename_cat to clean up trailing slashes and
1021 # multiple slashes
1022 $filename1 = filename_cat ($filename1);
[2516]1023 $filename2 = filename_cat ($filename2);
[1454]1024
1025 # filenames not case sensitive on windows
1026 if ($ENV{'GSDLOS'} =~ /^windows$/i) {
1027 $filename1 =~ tr/[A-Z]/[a-z]/;
1028 $filename2 =~ tr/[A-Z]/[a-z]/;
1029 }
1030 return 1 if $filename1 eq $filename2;
1031 return 0;
1032}
1033
[23362]1034
1035sub filename_within_directory
1036{
1037 my ($filename,$within_dir) = @_;
1038
[23371]1039 if ($within_dir !~ m/[\/\\]$/) {
1040 my $dirsep = &util::get_dirsep();
[23362]1041 $within_dir .= $dirsep;
1042 }
1043
[24829]1044 $within_dir = &filename_to_regex($within_dir); # escape DOS style file separator and brackets
[23362]1045 if ($filename =~ m/^$within_dir(.*)$/) {
1046 $filename = $1;
1047 }
1048
1049 return $filename;
1050}
1051
[10281]1052sub filename_within_collection
1053{
1054 my ($filename) = @_;
1055
1056 my $collect_dir = $ENV{'GSDLCOLLECTDIR'};
1057
1058 if (defined $collect_dir) {
[23362]1059
[15875]1060 # if from within GSDLCOLLECTDIR, then remove directory prefix
1061 # so source_filename is realative to it. This is done to aid
1062 # portability, i.e. the collection can be moved to somewhere
1063 # else on the file system and the archives directory will still
1064 # work. This is needed, for example in the applet version of
1065 # GLI where GSDLHOME/collect on the server will be different to
1066 # the collect directory of the remove user. Of course,
1067 # GSDLCOLLECTDIR subsequently needs to be put back on to turn
1068 # it back into a full pathname.
[23362]1069
1070 $filename = filename_within_directory($filename,$collect_dir);
[10281]1071 }
1072
1073 return $filename;
1074}
1075
[23362]1076sub prettyprint_file
1077{
[23484]1078 my ($base_dir,$file,$gli) = @_;
[23362]1079
1080 my $filename_full_path = &util::filename_cat($base_dir,$file);
1081
1082 if ($ENV{'GSDLOS'} =~ m/^windows$/i) {
1083 require Win32;
1084
1085 # For some reason base_dir in the form c:/a/b/c
1086 # This leads to confusion later on, so turn it back into
1087 # the more usual Windows form
1088 $base_dir =~ s/\//\\/g;
1089 my $long_base_dir = Win32::GetLongPathName($base_dir);
1090 my $long_full_path = Win32::GetLongPathName($filename_full_path);
1091
1092 $file = filename_within_directory($long_full_path,$long_base_dir);
[23484]1093 $file = encode("utf8",$file) if ($gli);
[23362]1094 }
1095
1096 return $file;
1097}
1098
1099
1100sub upgrade_if_dos_filename
1101{
[23371]1102 my ($filename_full_path,$and_encode) = @_;
[23362]1103
1104 if ($ENV{'GSDLOS'} =~ m/^windows$/i) {
1105 # Ensure any DOS-like filename, such as test~1.txt, has been upgraded
1106 # to its long (Windows) version
[23416]1107 my $long_filename = Win32::GetLongPathName($filename_full_path);
1108 if (defined $long_filename) {
1109 $filename_full_path = $long_filename;
1110 }
[23362]1111 # Make sure initial drive letter is lower-case (to fit in with rest of Greenstone)
[23483]1112 $filename_full_path =~ s/^(.):/\u$1:/;
[23371]1113 if ((defined $and_encode) && ($and_encode)) {
1114 $filename_full_path = encode("utf8",$filename_full_path);
1115 }
[23362]1116 }
1117
1118 return $filename_full_path;
1119}
1120
1121
[23388]1122sub downgrade_if_dos_filename
1123{
1124 my ($filename_full_path) = @_;
1125
1126 if ($ENV{'GSDLOS'} =~ m/^windows$/i) {
1127 require Win32;
1128
1129 # Ensure the given long Windows filename is in a form that can
1130 # be opened by Perl => convert it to a short DOS-like filename
1131
[23414]1132 my $short_filename = Win32::GetShortPathName($filename_full_path);
1133 if (defined $short_filename) {
1134 $filename_full_path = $short_filename;
1135 }
[23416]1136 # Make sure initial drive letter is lower-case (to fit in
1137 # with rest of Greenstone)
[23483]1138 $filename_full_path =~ s/^(.):/\u$1:/;
[23388]1139 }
1140
1141 return $filename_full_path;
1142}
1143
[23561]1144sub block_filename
1145{
1146 my ($block_hash,$filename) = @_;
1147
1148 if ($ENV{'GSDLOS'} =~ m/^windows$/) {
1149
1150 # lower case the entire thing, eg for cover.jpg when its actually cover.JPG
1151 my $lower_filename = lc($filename);
1152 $block_hash->{'file_blocks'}->{$lower_filename} = 1;
1153# my $lower_drive = $filename;
1154# $lower_drive =~ s/^([A-Z]):/\l$1:/i;
1155
1156# my $upper_drive = $filename;
1157# $upper_drive =~ s/^([A-Z]):/\u$1:/i;
1158#
1159# $block_hash->{'file_blocks'}->{$lower_drive} = 1;
1160# $block_hash->{'file_blocks'}->{$upper_drive} = 1;
1161 }
1162 else {
1163 $block_hash->{'file_blocks'}->{$filename} = 1;
1164 }
1165}
[23388]1166
[23561]1167
[18441]1168sub filename_is_absolute
1169{
1170 my ($filename) = @_;
1171
1172 if ($ENV{'GSDLOS'} =~ /^windows$/i) {
1173 return ($filename =~ m/^(\w:)?\\/);
1174 }
1175 else {
1176 return ($filename =~ m/^\//);
1177 }
1178}
1179
1180
[17572]1181## @method make_absolute()
1182#
1183# Ensure the given file path is absolute in respect to the given base path.
1184#
1185# @param $base_dir A string denoting the base path the given dir must be
1186# absolute to.
1187# @param $dir The directory to be made absolute as a string. Note that the
1188# dir may already be absolute, in which case it will remain
1189# unchanged.
1190# @return The now absolute form of the directory as a string.
1191#
1192# @author John Thompson, DL Consulting Ltd.
1193# @copy 2006 DL Consulting Ltd.
1194#
1195#used in buildcol.pl, doesn't work for all cases --kjdon
1196sub make_absolute {
1197
1198 my ($base_dir, $dir) = @_;
[18441]1199### print STDERR "dir = $dir\n";
[17572]1200 $dir =~ s/[\\\/]+/\//g;
1201 $dir = $base_dir . "/$dir" unless ($dir =~ m|^(\w:)?/|);
1202 $dir =~ s|^/tmp_mnt||;
1203 1 while($dir =~ s|/[^/]*/\.\./|/|g);
1204 $dir =~ s|/[.][.]?/|/|g;
1205 $dir =~ tr|/|/|s;
[18441]1206### print STDERR "dir = $dir\n";
[17572]1207
1208 return $dir;
1209}
1210## make_absolute() ##
[10281]1211
[7929]1212sub get_dirsep {
1213
1214 if ($ENV{'GSDLOS'} =~ /^windows$/i) {
1215 return "\\";
1216 } else {
1217 return "\/";
1218 }
1219}
1220
[619]1221sub get_os_dirsep {
[4]1222
[619]1223 if ($ENV{'GSDLOS'} =~ /^windows$/i) {
1224 return "\\\\";
1225 } else {
1226 return "\\\/";
1227 }
1228}
1229
1230sub get_re_dirsep {
1231
1232 return "\\\\|\\\/";
1233}
1234
1235
[15003]1236sub get_dirsep_tail {
1237 my ($filename) = @_;
1238
1239 # returns last part of directory or filename
1240 # On unix e.g. a/b.d => b.d
1241 # a/b/c => c
1242
[15088]1243 my $dirsep = get_re_dirsep();
1244 my @dirs = split (/$dirsep/, $filename);
1245 my $tail = pop @dirs;
[15003]1246
[15088]1247 # - caused problems under windows
1248 #my ($tail) = ($filename =~ m/^(?:.*?$dirsep)?(.*?)$/);
1249
[15003]1250 return $tail;
1251}
1252
1253
[4]1254# if this is running on windows we want binaries to end in
1255# .exe, otherwise they don't have to end in any extension
1256sub get_os_exe {
1257 return ".exe" if $ENV{'GSDLOS'} =~ /^windows$/i;
1258 return "";
1259}
1260
1261
[86]1262# test to see whether this is a big or little endian machine
[15713]1263sub is_little_endian
1264{
1265 # To determine the name of the operating system, the variable $^O is a cheap alternative to pulling it out of the Config module;
1266 # If it is a Macintosh machine (i.e. the Darwin operating system), regardless if it's running on the IBM power-pc cpu or the x86 Intel-based chip with a power-pc emulator running on top of it, it's big-endian
1267 # Otherwise, it's little endian
1268
1269 #return 0 if $^O =~ /^darwin$/i;
[17714]1270 #return 0 if $ENV{'GSDLOS'} =~ /^darwin$/i;
1271
1272 # Going back to stating exactly whether the machine is little endian
1273 # or big endian, without any special case for Macs. Since for rata it comes
1274 # back with little endian and for shuttle with bigendian.
[15713]1275 return (ord(substr(pack("s",1), 0, 1)) == 1);
[86]1276}
[4]1277
[86]1278
[135]1279# will return the collection name if successful, "" otherwise
1280sub use_collection {
[1454]1281 my ($collection, $collectdir) = @_;
[135]1282
[1454]1283 if (!defined $collectdir || $collectdir eq "") {
1284 $collectdir = &filename_cat ($ENV{'GSDLHOME'}, "collect");
1285 }
1286
[135]1287 # get and check the collection
1288 if (!defined($collection) || $collection eq "") {
1289 if (defined $ENV{'GSDLCOLLECTION'}) {
1290 $collection = $ENV{'GSDLCOLLECTION'};
1291 } else {
[2359]1292 print STDOUT "No collection specified\n";
[135]1293 return "";
1294 }
1295 }
1296
1297 if ($collection eq "modelcol") {
[2359]1298 print STDOUT "You can't use modelcol.\n";
[135]1299 return "";
1300 }
1301
1302 # make sure the environment variables GSDLCOLLECTION and GSDLCOLLECTDIR
1303 # are defined
[17204]1304 $ENV{'GSDLCOLLECTION'} = $collection;
[1454]1305 $ENV{'GSDLCOLLECTDIR'} = &filename_cat ($collectdir, $collection);
[135]1306
1307 # make sure this collection exists
1308 if (!-e $ENV{'GSDLCOLLECTDIR'}) {
[2359]1309 print STDOUT "Invalid collection ($collection).\n";
[135]1310 return "";
1311 }
1312
1313 # everything is ready to go
1314 return $collection;
1315}
1316
[21207]1317sub get_current_collection_name {
1318 return $ENV{'GSDLCOLLECTION'};
1319}
[14926]1320
1321
1322# will return the collection name if successful, "" otherwise.
1323# Like use_collection (above) but for greenstone 3 (taking account of site level)
1324
1325sub use_site_collection {
1326 my ($site, $collection, $collectdir) = @_;
1327
1328 if (!defined $collectdir || $collectdir eq "") {
1329 die "GSDL3HOME not set.\n" unless defined $ENV{'GSDL3HOME'};
1330 $collectdir = &filename_cat ($ENV{'GSDL3HOME'}, "sites", $site, "collect");
1331 }
1332
1333 # collectdir explicitly set by this point (using $site variable if required).
1334 # Can call "old" gsdl2 use_collection now.
1335
1336 return use_collection($collection,$collectdir);
1337}
1338
1339
1340
[15018]1341sub locate_config_file
1342{
1343 my ($file) = @_;
1344
1345 my $locations = locate_config_files($file);
1346
1347 return shift @$locations; # returns undef if 'locations' is empty
1348}
1349
1350
1351sub locate_config_files
1352{
1353 my ($file) = @_;
1354
1355 my @locations = ();
1356
1357 if (-e $file) {
1358 # Clearly specified (most likely full filename)
1359 # No need to hunt in 'etc' directories, return value unchanged
1360 push(@locations,$file);
1361 }
1362 else {
1363 # Check for collection specific one before looking in global GSDL 'etc'
[16969]1364 if (defined $ENV{'GSDLCOLLECTDIR'} && $ENV{'GSDLCOLLECTDIR'} ne "") {
1365 my $test_collect_etc_filename
1366 = &util::filename_cat($ENV{'GSDLCOLLECTDIR'},"etc", $file);
1367
1368 if (-e $test_collect_etc_filename) {
1369 push(@locations,$test_collect_etc_filename);
1370 }
[15018]1371 }
1372 my $test_main_etc_filename
1373 = &util::filename_cat($ENV{'GSDLHOME'},"etc", $file);
1374 if (-e $test_main_etc_filename) {
1375 push(@locations,$test_main_etc_filename);
1376 }
1377 }
1378
1379 return \@locations;
1380}
1381
1382
[9955]1383sub hyperlink_text
1384{
1385 my ($text) = @_;
1386
1387 $text =~ s/(http:\/\/[^\s]+)/<a href=\"$1\">$1<\/a>/mg;
1388 $text =~ s/(^|\s+)(www\.(\w|\.)+)/<a href=\"http:\/\/$2\">$2<\/a>/mg;
1389
1390 return $text;
1391}
1392
1393
[16436]1394# A method to check if a directory is empty (note that an empty directory still has non-zero size!!!)
1395# Code is from http://episteme.arstechnica.com/eve/forums/a/tpc/f/6330927813/m/436007700831
1396sub is_dir_empty
1397{
1398 my ($path) = @_;
1399 opendir DIR, $path;
1400 while(my $entry = readdir DIR) {
1401 next if($entry =~ /^\.\.?$/);
1402 closedir DIR;
1403 return 0;
1404 }
1405 closedir DIR;
1406 return 1;
1407}
1408
[18337]1409# Returns the given filename converted using either URL encoding or base64
1410# encoding, as specified by $rename_method. If the given filename has no suffix
[20413]1411# (if it is just the tailname), then $no_suffix should be some defined value.
1412# rename_method can be url, none, base64
[18319]1413sub rename_file {
[18337]1414 my ($filename, $rename_method, $no_suffix) = @_;
[18329]1415
[18337]1416 if(!$filename) { # undefined or empty string
[18329]1417 return $filename;
1418 }
[18319]1419
[20413]1420 if (!$rename_method) {
1421 print STDERR "WARNING: no file renaming method specified. Defaulting to using URL encoding...\n";
1422 # Debugging information
[22856]1423 # my ($cpackage,$cfilename,$cline,$csubr,$chas_args,$cwantarray) = caller(1);
1424 # print STDERR "Called from method: $cfilename:$cline $cpackage->$csubr\n";
[20413]1425 $rename_method = "url";
1426 } elsif($rename_method eq "none") {
1427 return $filename; # would have already been renamed
1428 }
1429
[19762]1430 # No longer replace spaces with underscores, since underscores mess with incremental rebuild
1431 ### Replace spaces with underscore. Do this first else it can go wrong below when getting tailname
1432 ###$filename =~ s/ /_/g;
[18337]1433
1434 my ($tailname,$dirname,$suffix);
1435 if($no_suffix) { # given a tailname, no suffix
1436 ($tailname,$dirname) = File::Basename::fileparse($filename);
1437 }
1438 else {
1439 ($tailname,$dirname,$suffix) = File::Basename::fileparse($filename, "\\.(?:[^\\.]+?)\$");
1440 }
[23388]1441 if (!$suffix) {
1442 $suffix = "";
1443 }
1444 else {
1445 $suffix = lc($suffix);
1446 }
[18337]1447
[20413]1448 if ($rename_method eq "url") {
[18319]1449 $tailname = &unicode::url_encode($tailname);
1450 }
1451 elsif ($rename_method eq "base64") {
[18341]1452 $tailname = &unicode::base64_encode($tailname);
[18319]1453 $tailname =~ s/\s*//sg; # for some reason it adds spaces not just at end but also in middle
1454 }
[18326]1455
[18319]1456 $filename = "$tailname$suffix";
[18326]1457 $filename = "$dirname$filename" if ($dirname ne "./" && $dirname ne ".\\");
[18319]1458
1459 return $filename;
1460}
1461
[21616]1462
1463# BACKWARDS COMPATIBILITY: Just in case there are old .ldb/.bdb files
[21664]1464sub rename_ldb_or_bdb_file {
[18657]1465 my ($filename_no_ext) = @_;
1466
1467 my $new_filename = "$filename_no_ext.gdb";
[21615]1468 return if (-f $new_filename); # if the file has the right extension, don't need to do anything
[18657]1469 # try ldb
1470 my $old_filename = "$filename_no_ext.ldb";
1471
1472 if (-f $old_filename) {
[19056]1473 print STDERR "Renaming $old_filename to $new_filename\n";
1474 rename ($old_filename, $new_filename)
1475 || print STDERR "Rename failed: $!\n";
[18657]1476 return;
1477 }
1478 # try bdb
1479 $old_filename = "$filename_no_ext.bdb";
1480 if (-f $old_filename) {
[19056]1481 print STDERR "Renaming $old_filename to $new_filename\n";
1482 rename ($old_filename, $new_filename)
1483 || print STDERR "Rename failed: $!\n";
[18657]1484 return;
1485 }
1486}
1487
[24874]1488sub os_dir() {
1489
1490 my $gsdlarch = "";
1491 if(defined $ENV{'GSDLARCH'}) {
1492 $gsdlarch = $ENV{'GSDLARCH'};
1493 }
1494 return $ENV{'GSDLOS'}.$gsdlarch;
1495}
[18657]1496
[21719]1497# Returns the greenstone URL prefix extracted from the appropriate GS2/GS3 config file.
1498# By default, /greenstone3 for GS3 or /greenstone for GS2.
1499sub get_greenstone_url_prefix() {
1500 # if already set on a previous occasion, just return that
1501 # (Don't want to keep repeating this: cost of re-opening and scanning files.)
1502 return $ENV{'GREENSTONE_URL_PREFIX'} if($ENV{'GREENSTONE_URL_PREFIX'});
[18657]1503
[21719]1504 my ($configfile, $urlprefix, $defaultUrlprefix);
1505 my @propertynames = ();
1506
1507 if($ENV{'GSDL3SRCHOME'}) {
1508 $defaultUrlprefix = "/greenstone3";
1509 $configfile = &util::filename_cat($ENV{'GSDL3SRCHOME'}, "packages", "tomcat", "conf", "Catalina", "localhost", "greenstone3.xml");
1510 push(@propertynames, qw/path\s*\=/);
1511 } else {
1512 $defaultUrlprefix = "/greenstone";
[24874]1513 $configfile = &util::filename_cat($ENV{'GSDLHOME'}, "cgi-bin", &os_dir(), "gsdlsite.cfg");
[21719]1514 push(@propertynames, (qw/\nhttpprefix/, qw/\ngwcgi/)); # inspect one property then the other
1515 }
1516
1517 $urlprefix = &extract_propvalue_from_file($configfile, \@propertynames);
1518
1519 if(!$urlprefix) { # no values found for URL prefix, use default values
1520 $urlprefix = $defaultUrlprefix;
1521 } else {
1522 #gwcgi can contain more than the wanted prefix, we split on / to get the first "directory" level
1523 $urlprefix =~ s/^\///; # remove the starting slash
1524 my @dirs = split(/(\\|\/)/, $urlprefix);
1525 $urlprefix = shift(@dirs);
1526
1527 if($urlprefix !~ m/^\//) { # in all cases: ensure the required forward slash is at the front
1528 $urlprefix = "/$urlprefix";
1529 }
1530 }
1531
1532 # set for the future
1533 $ENV{'GREENSTONE_URL_PREFIX'} = $urlprefix;
1534# print STDERR "*** in get_greenstone_url_prefix(): $urlprefix\n\n";
1535 return $urlprefix;
1536}
1537
1538
1539# Given a config file (xml or java properties file) and a list/array of regular expressions
1540# that represent property names to match on, this function will return the value for the 1st
1541# matching property name. If the return value is undefined, no matching property was found.
1542sub extract_propvalue_from_file() {
1543 my ($configfile, $propertynames) = @_;
1544
1545 my $value;
1546 unless(open(FIN, "<$configfile")) {
1547 print STDERR "extract_propvalue_from_file(): Unable to open $configfile. $!\n";
1548 return $value; # not initialised
1549 }
1550
1551 # Read the entire file at once, as one single line, then close it
1552 my $filecontents;
1553 {
1554 local $/ = undef;
1555 $filecontents = <FIN>;
1556 }
1557 close(FIN);
1558
1559 foreach my $regex (@$propertynames) {
1560 ($value) = $filecontents=~ m/$regex\s*(\S*)/s; # read value of the property given by regex up to the 1st space
1561 if($value) {
1562 $value =~ s/^\"//; # remove any startquotes
1563 $value =~ s/\".*$//; # remove the 1st endquotes (if any) followed by any xml
1564 last; # found value for a matching property, break from loop
1565 }
1566 }
1567
1568 return $value;
1569}
1570
[23306]1571# Subroutine that sources setup.bash, given GSDLHOME and GSDLOS and
1572# given that perllib is in @INC in order to invoke this subroutine.
1573# Call as follows -- after setting up INC to include perllib and
1574# after setting up GSDLHOME and GSDLOS:
1575#
1576# require util;
1577# &util::setup_greenstone_env($ENV{'GSDLHOME'}, $ENV{'GSDLOS'});
1578#
1579sub setup_greenstone_env() {
1580 my ($GSDLHOME, $GSDLOS) = @_;
1581
1582 #my %env_map = ();
1583 # Get the localised ENV settings of running a localised source setup.bash
[23314]1584 # and put it into the ENV here. Need to clear GSDLHOME before running setup
1585 #my $perl_command = "(cd $GSDLHOME; export GSDLHOME=; . ./setup.bash > /dev/null; env)";
1586 my $perl_command = "(cd $GSDLHOME; /bin/bash -c \"export GSDLHOME=; source setup.bash > /dev/null; env\")";
[23306]1587 if($GSDLOS =~ m/windows/i) {
[23314]1588 #$perl_command = "cmd /C \"cd $GSDLHOME&& set GSDLHOME=&& setup.bat > nul&& set\"";
1589 $perl_command = "(cd $GSDLHOME&& set GSDLHOME=&& setup.bat > nul&& set)";
[23306]1590 }
1591 if (!open(PIN, "$perl_command |")) {
1592 print STDERR ("Unable to execute command: $perl_command. $!\n");
[24563]1593 }
[23306]1594
1595 while (defined (my $perl_output_line = <PIN>)) {
1596 my($key,$value) = ($perl_output_line =~ m/^([^=]*)[=](.*)$/);
1597 #$env_map{$key}=$value;
1598 $ENV{$key}=$value;
1599 }
[24563]1600 close (PIN);
1601
[23306]1602 # If any keys in $ENV don't occur in Greenstone's localised env
1603 # (stored in $env_map), delete those entries from $ENV
1604 #foreach $key (keys %ENV) {
1605 # if(!defined $env_map{$key}) {
1606 # print STDOUT "**** DELETING ENV KEY: $key\tVALUE: $ENV{'$key'}\n";
1607 # delete $ENV{$key}; # del $ENV(key, value) pair
1608 # }
1609 #}
1610 #undef %env_map;
1611}
1612
[24362]1613sub get_perl_exec() {
1614 my $perl_exec = $^X; # may return just "perl"
1615
1616 if($ENV{'PERLPATH'}) {
1617 # OR: # $perl_exec = &util::filename_cat($ENV{'PERLPATH'},"perl");
1618 if($ENV{'GSDLOS'} =~ m/windows/) {
1619 $perl_exec = "$ENV{'PERLPATH'}\\Perl.exe";
1620 } else {
1621 $perl_exec = "$ENV{'PERLPATH'}/perl";
1622 }
1623 } else { # no PERLPATH, use Config{perlpath} else $^X: special variables
1624 # containing the full path to the current perl executable we're using
1625 $perl_exec = $Config{perlpath}; # configured path for perl
1626 if (!-e $perl_exec) { # may not point to location on this machine
1627 $perl_exec = $^X; # may return just "perl"
1628 if($perl_exec =~ m/^perl/i) { # warn if just perl or Perl.exe
1629 print STDERR "**** WARNING: Perl exec found contains no path: $perl_exec";
1630 }
1631 }
1632 }
1633
1634 return $perl_exec;
1635}
1636
1637
[4]16381;
Note: See TracBrowser for help on using the repository browser.