source: main/trunk/gli/src/org/greenstone/gatherer/util/GS3ServerThread.java@ 24388

Last change on this file since 24388 was 24388, checked in by ak19, 13 years ago

Fixed bug in starting and stopping GS3 server on Windows.

File size: 2.6 KB
Line 
1/**
2 *#########################################################################
3 *
4 * A component of the Gatherer application, part of the Greenstone digital
5 * library suite from the New Zealand Digital Library Project at the
6 * University of Waikato, New Zealand.
7 *
8 * <BR><BR>
9 *
10 * Author: Sam McIntosh, Greenstone Digital Library, University of Waikato
11 *
12 * <BR><BR>
13 *
14 * Copyright (C) 2011 New Zealand Digital Library Project
15 *
16 * <BR><BR>
17 *
18 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation; either version 2 of the License, or
21 * (at your option) any later version.
22 *
23 * <BR><BR>
24 *
25 * This program is distributed in the hope that it will be useful,
26 * but WITHOUT ANY WARRANTY; without even the implied warranty of
27 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 * GNU General Public License for more details.
29 *
30 * <BR><BR>
31 *
32 * You should have received a copy of the GNU General Public License
33 * along with this program; if not, write to the Free Software
34 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
35 *########################################################################
36 */
37
38package org.greenstone.gatherer.util;
39import java.io.File;
40
41/** Class for GS3, for issuing ant commands from GLI */
42public class GS3ServerThread extends Thread
43{
44 String _gsdl3_src_path = "";
45 String _ant_command = "";
46
47 public GS3ServerThread(String gsdl3_src_path, String ant_command)
48 {
49 _gsdl3_src_path = gsdl3_src_path;
50 _ant_command = ant_command; // "restart"
51 }
52
53 public void run()
54 {
55 try
56 {
57 String shellCommand = null;
58 Process p = null;
59 if (Utility.isWindows())
60 {
61 if(_ant_command.indexOf("start") != -1) { // running an "ant (re)start" command on windows, run start
62 _ant_command = "start";
63 }
64 // The path in quotes, and the entire sequence of commands in quotes as well
65 // E.g. the following works: cmd /C "cd "C:\path\to\greenstone3" && ant stop"
66 // and it preserves any spaces in the path to GSDL3SRCHOME (_gsdl3_src_path).
67 p = Runtime.getRuntime().exec("cmd /C \"cd \"" + _gsdl3_src_path + File.separator + "\" && ant " + _ant_command + "\"");
68 }
69 else
70 {
71 if(_ant_command.indexOf("start") != -1) { // if running an "ant (re)start" command on non-Windows, run restart
72 _ant_command = "restart";
73 }
74 p = Runtime.getRuntime().exec(new String[]{"/bin/bash", "-c", "ant " + _ant_command + " -f \"" + _gsdl3_src_path + File.separator + "build.xml\""});
75 }
76 }
77 catch(Exception ex)
78 {
79 ex.printStackTrace();
80 }
81 }
82}
Note: See TracBrowser for help on using the repository browser.