source: main/trunk/greenstone2/bin/script/incremental-rebuild.pl

Last change on this file was 34158, checked in by ak19, 4 years ago

Fixing discovery of client-gli issues with previewing a different library (e.g. /default-library instead of /library). This commit adds to Kathy's recent work on supporting other libraries when previewing especially in the remote case, where Diego had detected problems. 1. First fixed a foolish copy paste error I made last time in full-rebuild.pl, commit 34128, when I was fixing up the script to accept the library_name parameter so it could pass this to buildcol.pl calling activate and/or to activate.pl directly. Only detected the problem when I was going to copy paste it into incremental-rebuild.pl. 2. Similar solution added to incremental-rebuild.pl and tested from commandline that this script too now accepts and passes on the library_name parameter to buildcol.pl to reach activate when needed. 3. GLI now passes library_name to building process, so activate can call the correct library to activate a collection. The library_name is obtained from client-gli, where the library (servlet_path) is set when configuring the site in use.

  • Property svn:executable set to *
File size: 5.9 KB
Line 
1#!/usr/bin/perl -w
2
3###########################################################################
4#
5# incremental-rebuild.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) 2009 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
28
29# This program will incrementally rebuild a collection
30# Runs: incremental-import.pl -incremental ...
31# Followed by: incremental-buildcol.pl -activate -incremental -builddir index ...
32# (assumming import.pl did not end with an error)
33
34
35BEGIN {
36 die "GSDLHOME not set\n" unless defined $ENV{'GSDLHOME'};
37 die "GSDLOS not set\n" unless defined $ENV{'GSDLOS'};
38 unshift (@INC, "$ENV{'GSDLHOME'}/perllib");
39}
40
41use strict;
42use util;
43
44sub main
45{
46 my ($argc,@argv) = @_;
47
48 if (($argc==0) || (($argc==1) && ($argv[0] =~ m/^--?h(elp)?$/))) {
49 my ($progname) = ($0 =~ m/^.*[\/|\\](.*?)$/);
50
51 print STDERR "\n";
52 print STDERR "This program runs -- incrementally where possible -- import.pl followed by buildcol.pl (retaining any\n";
53 print STDERR " previously generated files in 'archives' or 'index'). The import.pl script can always be run\n";
54 print STDERR " incrementally in Greenstone, however buildcol.pl will default to a full rebuild if the indexer\n";
55 print STDERR " the collection uses (such as mg, or mgpp) does not support incremental indexing.\n";
56 print STDERR "\n";
57 print STDERR "Usage: $progname [options]| collection\n";
58 print STDERR " If a minus option is shared between import.pl and buildcol.pl then it can appear\n";
59 print STDERR " as is, such as -verbosity 5. This value will be passed to both programs.\n";
60 print STDERR " If a minus option is specific to one of the programs in particular, then prefix\n";
61 print STDERR " it with 'import:' or 'buildcol:' respectively, as in '-import:OIDtype hash_on_full_filename'\n";
62 print STDERR " Run 'import.pl' or 'buildcol.pl' from the command line with no arguments to see the\n";
63 print STDERR " specific values they take.\n";
64 print STDERR "\n";
65
66 exit(-1);
67 }
68
69
70 my $collect = pop @argv;
71
72 my @import_argv = ();
73 my @buildcol_argv = ();
74
75 while (my $arg = shift @argv) {
76
77 if ($arg eq "-manifest") {
78 # only makes sense in import.pl
79 my $manifest = shift(@argv);
80 push(@import_argv,$arg,$manifest);
81 }
82 elsif ($arg eq "-importdir") {
83 # only makes sense in import.pl
84 my $import_dir = shift @argv;
85 push(@import_argv,$arg,$import_dir);
86 }
87 elsif ($arg eq "-builddir") {
88 # only makes sense in build.pl
89 my $build_dir = shift @argv;
90 push(@buildcol_argv,$arg,$build_dir);
91 }
92 elsif ($arg eq "-indexdir") {
93 # only makes sense in build.pl
94 my $index_dir = shift @argv;
95 push(@buildcol_argv,$arg,$index_dir);
96 }
97 elsif ($arg =~ /-import:(.*)$/) {
98 my $import_arg = "-".$1;
99 my $import_val = shift @argv;
100 push(@import_argv,$import_arg,$import_val);
101 }
102 elsif ($arg =~ /-buildcol:(.*)$/) {
103 my $buildcol_arg = "-".$1;
104 my $buildcol_val = shift @argv;
105 push(@buildcol_argv,$buildcol_arg,$buildcol_val);
106 }
107 elsif ($arg eq "-library_url" || $arg eq "-library_name") {
108 # only makes sense in buildcol.pl as -activate could
109 # have been passed in then. And if so, then activate.pl will be
110 # called by buildcol.pl which will pass on library_url/library_name
111 # to activate.pl
112 my $library_info = shift @argv;
113 push(@buildcol_argv,$arg,$library_info);
114 }
115 elsif ($arg =~ "-OIDtype") {
116 shift @argv; # skip OIDtype (don't pass OIDtype to buildcol.pl. It's not currently accepted.)
117 # this allows us to run full-rebuild.pl -OIDtype filename for instance
118 }
119 else {
120 push(@import_argv,$arg);
121 push(@buildcol_argv,$arg);
122 }
123
124 }
125
126 my $quoted_import_argv = join(" ", map { "\"$_\"" } @import_argv);
127 my $quoted_buildcol_argv = join(" ", map { "\"$_\"" } @buildcol_argv);
128
129 my $final_status = 0;
130
131 # need to ensure that the path to perl is quoted (in case there's spaces in it)
132 my $launch_cmd = "\"".&util::get_perl_exec()."\" -S ";
133
134 print STDERR "\n";
135 print STDERR "************************\n";
136 print STDERR "* Running Import Stage\n";
137 print STDERR "************************\n";
138
139 my $import_cmd = $launch_cmd . "incremental-import.pl $quoted_import_argv \"$collect\"";
140
141 my $import_status = system($import_cmd)/256;
142
143 if ($import_status == 0) {
144 print STDERR "\n";
145 print STDERR "************************\n";
146 print STDERR "* Running Buildcol Stage\n";
147 print STDERR "************************\n";
148
149 # run incremental buildcol with activate flag
150 my $buildcol_cmd = $launch_cmd . "incremental-buildcol.pl -activate $quoted_buildcol_argv \"$collect\"";
151 my $buildcol_status = system($buildcol_cmd)/256;
152 if ($buildcol_status != 0) {
153 $final_status = $buildcol_status;
154 }
155 }
156 else {
157 $final_status = $import_status;
158 }
159
160 exit($final_status);
161}
162
163&main(scalar(@ARGV),@ARGV);
164
Note: See TracBrowser for help on using the repository browser.