source: gs3-extensions/solr/trunk/src/perllib/solrutil.pm@ 24501

Last change on this file since 24501 was 24501, checked in by davidb, 13 years ago

Relocation of files to make solr.solr.home more natural. Plus, more carefully control the order in which the build_dir/index_dir folder is deleted in. For solr we need to do this earlier than lucene

File size: 2.7 KB
Line 
1###########################################################################
2#
3# solrutil.pm -- support module for Solr extension
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###########################################################################
25
26package solrutil;
27
28use strict;
29
30sub locate_file
31{
32 my ($search_path,$suffix) = @_;
33
34 foreach my $sp (@$search_path) {
35 my $full_path = &util::filename_cat($sp,$suffix);
36
37 if (-f $full_path) {
38 return $full_path;
39 }
40 }
41
42 # if get to here, then failed to find match
43
44 print STDERR "Error: Failed to find '$suffix'\n";
45 print STDERR " Looked in: ", join(", ", @$search_path), "\n";
46 exit -1;
47}
48
49
50sub get_search_path
51{
52 my $search_path = [];
53
54 push(@$search_path,$ENV{'GSDLCOLLECTDIR'}) if defined $ENV{'GSDLCOLLECTDIR'};
55 push(@$search_path,$ENV{'GSDLHOME'}) if defined $ENV{'GSDLHOME'};
56 push(@$search_path,$ENV{'GEXT_SOLR'}) if defined $ENV{'GEXT_SOLR'};
57
58 return $search_path;
59}
60
61
62
63sub open_post_pipe
64{
65 my ($core) = @_;
66
67 my $search_path = get_search_path();
68
69 chdir($ENV{'GEXT_SOLR'});
70
71 my $post_jar = &util::filename_cat("lib","java","solr-post.jar");
72 my $full_post_jar = solrutil::locate_file($search_path,$post_jar);
73
74 my $jetty_port = $ENV{'SOLR_JETTY_PORT'};
75
76 # Now run solr-post command
77 my $post_props = "-Durl=http://localhost:$jetty_port/solr/$core/update";
78 $post_props .= " -Ddata=stdin";
79 $post_props .= " -Dcommit=yes";
80
81 my $post_java_cmd = "java $post_props -jar \"$full_post_jar\"";
82
83## print STDERR "**** post cmd = $post_java_cmd\n";
84
85 open (PIPEOUT, "| $post_java_cmd")
86 || die "Error in solr_passes.pl: Failed to run $post_java_cmd\n!$\n";
87
88}
89
90sub print_to_post_pipe
91{
92 my ($line) = @_;
93
94 print PIPEOUT $line;
95}
96
97sub close_post_pipe
98{
99 # closing the pipe has the effect of shutting down solr-post.jar
100 close(PIPEOUT);
101}
102
1031;
Note: See TracBrowser for help on using the repository browser.