source: gs3-extensions/pharos/trunk/bin/script/pharos-imageis-query.pl@ 21298

Last change on this file since 21298 was 21298, checked in by davidb, 14 years ago

Switch to using -classpath rather than -jar, so can control where imageis.ImageIS looks for its VSprop.properities file

File size: 4.2 KB
Line 
1#!/usr/bin/perl -w
2
3###########################################################################
4#
5# pharos-imageis-query.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 die "GSDLOS not set\n" unless defined $ENV{'GSDLOS'};
31 die "PHAROSIS_SRC_HOME not set\n" unless defined $ENV{'PHAROSIS_SRC_HOME'};
32 unshift (@INC, "$ENV{'GSDLHOME'}/perllib");
33}
34
35
36use strict;
37no strict 'refs'; # allow filehandles to be variables and vice versa
38no strict 'subs'; # allow barewords (eg STDERR) as function arguments
39
40use util;
41
42sub main
43{
44
45 my $ARGC = scalar(@ARGV);
46
47
48 if ($ARGC != 2) {
49 my ($progname) = ($0 =~ m/^.*[\/|\\](.*?)$/);
50 print STDERR "Usage: $progname collection doc-id\n";
51 exit 1;
52 }
53
54 my ($col,$id) = @ARGV;
55
56 my $docid = $id;
57 if ( $col ne "" ) {
58 $docid="$col:$docid";
59 }
60
61 my $tmp_dir = &util::get_toplevel_tmp_dir();
62 $tmp_dir = &util::filename_cat($tmp_dir,"pharos-imageis");
63
64 print "Generating query_id.xml\n";
65
66 my $query_template_filename
67 = &util::filename_cat($ENV{'PHAROSIS_SRC_HOME'},"resources","templates","query_id.xml");
68 my $query_this_filename = &util::filename_cat($tmp_dir,"query_id.xml");
69
70 if (open(FIN,"<$query_template_filename")) {
71
72 my $query_this_file_content = "";
73
74 my $line;
75 while (defined ($line=<FIN>)) {
76 $line =~ s@\*\*docid\*\*@$docid@g;
77
78 $query_this_file_content .= $line;
79 }
80
81 close(FIN);
82
83 if (open(FOUT,">$query_this_filename")) {
84 print FOUT $query_this_file_content;
85 close(FOUT);
86 }
87 else {
88 print STDERR "Error: failed to write out $query_this_filename\n";
89 print STDERR "$!\n";
90 }
91 }
92 else {
93 print STDERR "Error: failed to read $query_template_filename\n";
94 print STDERR "$!\n";
95 }
96
97
98 my $jar_filename = &util::filename_cat($ENV{'PHAROSIS_SRC_HOME'},"pharos-imageis.jar");
99
100 my $prop_dir = &util::filename_cat($ENV{'PHAROSIS_SRC_HOME'},"classes");
101
102 &util::envvar_append("CLASSPATH",$prop_dir);
103 &util::envvar_append("CLASSPATH",$jar_filename);
104
105 my $java_cmd = "java imageis.ImageIS \"$query_this_filename\"";
106
107 # print STDERR "java_cmd = $java_cmd\n";
108
109 print "Querying $docid\n";
110
111 chdir($tmp_dir);
112 my $status = system($java_cmd);
113
114 if ($status == 0 ) {
115 #&util::rm($query_this_filename);
116 }
117 else {
118 print STDERR "Error: Failed to run:\n";
119 print STDERR "$!\n";
120 exit 1;
121 }
122
123 my $result_filename = &util::filename_cat($tmp_dir,"image_cbs_result.xml");
124
125 if ( ! -f $result_filename ) {
126 print STDERR "\n";
127 print STDERR "Error: Failed to generate $result_filename.xml\n";
128 print STDERR " Check Tomcat's catalina.out for server-side error messages\n";
129 print STDERR "\n";
130 exit 1;
131 }
132 elsif ( -s $result_filename == 0) {
133 print STDERR "\n";
134 print STDERR "Warning: Server returned zero sized file image_cbs_result.xml\n";
135 print STDERR " Check that the doc-id used is valid\n";
136 print STDERR "\n";
137 &util::rm($result_filename);
138 }
139 else {
140
141 if (open(FIN,"<$result_filename")) {
142
143 my $line;
144 while (defined ($line=<FIN>)) {
145 print $line;
146 }
147
148 close(FIN);
149 }
150 else {
151 print STDERR "Error: failed to read $result_filename\n";
152 print STDERR "$!\n";
153 }
154
155 print "\n";
156 &util::rm($result_filename);
157 }
158}
159
160
161main();
162
163
164
165
Note: See TracBrowser for help on using the repository browser.