source: gli/trunk/src/org/greenstone/gatherer/GetOpt.java@ 14742

Last change on this file since 14742 was 14303, checked in by qq6, 17 years ago

Added parameter 'run_gsdl3' for the remote gs3

  • Property svn:keywords set to Author Date Id Revision
File size: 9.3 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 * Author: John Thompson and David Bainbridge,
9 * Greenstone Digital Library, University of Waikato
10 *
11 * Copyright (C) 1999 New Zealand Digital Library Project
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 *########################################################################
27 */
28package org.greenstone.gatherer;
29
30import java.io.*;
31import org.greenstone.gatherer.util.StaticStrings;
32import org.greenstone.gatherer.util.Utility;
33
34public class GetOpt
35{
36 public boolean debug = false;
37 public boolean feedback_enabled = false;
38 public boolean no_load = false;
39 public boolean use_remote_greenstone = false;
40 public boolean new_set = false;
41 public boolean run_gsdl3 = false;
42
43 public String client_operating_system = null;
44 public String collect_directory_path = null;
45 public String filename = null;
46 public String gliserver_url_string = null;
47 public String gsdl_path = null;
48 public String gsdl3_path = null;
49 public String gsdl3_src_path = null;
50 public String library_url_string = null;
51 public String local_library_path = null;
52 public String perl_path = null;
53 public String site_name = null; // for GS3
54 public String servlet_path = null;
55 public String metadata_path = null;
56
57 public GetOpt(String[] args)
58 {
59 // Default dictionary. Only used for starting error messages.
60 Dictionary dictionary = new Dictionary(null, null);
61
62 // Parse arguments
63 int argument_index = 0;
64 String next_token = null;
65
66 while(argument_index < args.length || next_token != null) {
67 // 1. We start by attempting to parse an argument name. An argument
68 // must start with a '-', and should not contain spaces. If
69 // anything else is encountered it is ignored.
70
71 String argument_name = null;
72 if(next_token == null) {
73 next_token = args[argument_index];
74 argument_index++;
75 }
76
77 if(next_token.startsWith(StaticStrings.MINUS_CHARACTER)) {
78 // Trim second '-' just to be kind to Unixy-type people
79 if(next_token.startsWith(StaticStrings.MINUS_CHARACTER + StaticStrings.MINUS_CHARACTER)) {
80 argument_name = next_token.substring(1);
81 }
82 else {
83 argument_name = next_token;
84 }
85 }
86 next_token = null;
87 // 2. If we now have an argument name we continue by attempting
88 // to parse a value. A value is taken to be the sequence of
89 // space seperated Strings between the last argument name
90 // and up to but not including the next argument name. Of
91 // course an argument needn't have any value (ie -debug,
92 // -help), in which case value will be null.
93 if(argument_name != null) {
94 String argument_value = null;
95 StringBuffer argument_value_buffer = new StringBuffer("");
96 while(argument_index < args.length && next_token == null) {
97 next_token = args[argument_index];
98 argument_index++;
99 // If we just parsed an arbitary String then append it to value, followed by a single space
100 if(!next_token.startsWith(StaticStrings.MINUS_CHARACTER)) {
101 argument_value_buffer.append(next_token);
102 argument_value_buffer.append(StaticStrings.SPACE_CHARACTER);
103 next_token = null;
104 }
105 // If the argument token retrieved is an argument name,
106 // then leave it in next_token, which will cause the
107 // argument parsing process to move onto the next step.
108 }
109 // If a value now exists in argument buffer, retrieve
110 // it. Remove the last character as it will be an erroneous
111 // space.
112 if(argument_value_buffer.length() > 0) {
113 argument_value = argument_value_buffer.substring(0, argument_value_buffer.length() - 1);
114 }
115
116 // 3. We now have the argument name, and any associated
117 // value. We are ready to store the data in the
118 // appropriate variables.
119 DebugStream.println("Parsed Argument: name=" + argument_name + (argument_value != null ? (", value=" + argument_value) : ", no value"));
120 // 3a. First those arguments that have no associated value
121 if(argument_value == null) {
122 if(argument_name.equals(StaticStrings.HELP_ARGUMENT)) {
123 System.out.println(Dictionary.get("General.Usage"));
124 System.exit(0);
125 }
126 // Run GLI in debug mode. Produces debug log plus extra
127 // messages.
128 else if(argument_name.equals(StaticStrings.DEBUG_ARGUMENT)) {
129 debug = true;
130 }
131 // Run GLI with feedback enabled.
132 else if(argument_name.equals(StaticStrings.FEEDBACK_ARGUMENT)) {
133 feedback_enabled = true;
134 }
135 // Forces no loading on previous collection.
136 else if(argument_name.equals(StaticStrings.NO_LOAD_ARGUMENT)) {
137 no_load = true;
138 filename = null;
139 }
140 // Use a remote Greenstone rather than a local one
141 else if (argument_name.equals(StaticStrings.USE_REMOTE_GREENSTONE_ARGUMENT)) {
142 use_remote_greenstone = true;
143 //Use a remote Greenstone
144
145 }else if (argument_name.equals(StaticStrings.GSDL3_ARGUMENT)){
146 //Use a remote Greenstone3
147 run_gsdl3=true;
148 }
149 else if (argument_name.equals(StaticStrings.NEW_METADATASET)) {
150 new_set = true;
151 }
152 }
153 // 3b. Now for those that do
154 else {
155 // Parse the path to the GSDL. Required argument.
156 if(argument_name.equals(StaticStrings.GSDL_ARGUMENT)) {
157 if(argument_value.endsWith(File.separator)) {
158 gsdl_path = argument_value;
159 }
160 else {
161 gsdl_path = argument_value + File.separator;
162 }
163 }
164 // GSDL3 path
165 if(argument_name.equals(StaticStrings.GSDL3_ARGUMENT)) {
166 if(argument_value.endsWith(File.separator)) {
167 gsdl3_path = argument_value;
168 }
169 else {
170 gsdl3_path = argument_value + File.separator;
171 }
172 }
173 // GSDL3 src path
174 if(argument_name.equals(StaticStrings.GSDL3_SRC_ARGUMENT)) {
175 if(argument_value.endsWith(File.separator)) {
176 gsdl3_src_path = argument_value;
177 }
178 else {
179 gsdl3_src_path = argument_value + File.separator;
180 }
181 }
182 // Client operating system
183 else if (argument_name.equals(StaticStrings.GSDLOS_ARGUMENT)) {
184 client_operating_system = argument_value;
185 }
186
187 else if (argument_name.equals(StaticStrings.SITE_ARGUMENT)) {
188 site_name = argument_value;
189 }
190 else if (argument_name.equals(StaticStrings.SERVLET_ARGUMENT)) {
191 servlet_path = argument_value;
192 }
193 // Specify a non-standard collect directory to use (for running one GLI in a network environment)
194 else if (argument_name.equals(StaticStrings.COLLECTDIR_ARGUMENT)) {
195 collect_directory_path = argument_value;
196 System.err.println("Non standard collect directory specified: " + collect_directory_path);
197 }
198 // Specify a collection to load initially. Could be used for file associations.
199 else if(argument_name.equals(StaticStrings.LOAD_ARGUMENT)) {
200 filename = argument_value;
201 no_load = false;
202 }
203 // Parse the file path of the local library server
204 else if (argument_name.equals(StaticStrings.LOCAL_LIBRARY_ARGUMENT)) {
205 local_library_path = argument_value;
206 }
207 // Manually specify the Greenstone library URL
208 else if (argument_name.equals(StaticStrings.LIBRARY_URL_ARGUMENT)) {
209 library_url_string = argument_value;
210 }
211 // Specify the URL to the gliserver CGI script for remote collection building
212 else if (argument_name.equals(StaticStrings.GLISERVER_URL_ARGUMENT)) {
213 gliserver_url_string = argument_value;
214 }
215 // Parse the path to PERL. If not provided it assumes
216 // perl should be availble on the PATH.
217 else if(argument_name.equals(StaticStrings.PERL_ARGUMENT)) {
218 perl_path = argument_value;
219 // Test whether this points to the Perl bin
220 // directory or the Perl executable itself.
221 File perl_file = new File(perl_path);
222 if(perl_file.isDirectory()) {
223 // If this is windows we create a child file
224 // perl.exe, otherwise we create perl
225 if(Utility.isWindows()) {
226 perl_file = new File(perl_file, Utility.PERL_EXECUTABLE_WINDOWS);
227 }
228 else {
229 perl_file = new File(perl_file, Utility.PERL_EXECUTABLE_UNIX);
230 }
231 // And store this new path.
232 perl_path = perl_file.getAbsolutePath();
233 perl_file = null;
234 }
235 // Otherwise it is fine as it is
236 }
237 else if(argument_name.equals(StaticStrings.METADATA_PATH)){
238 if (argument_value != null && !argument_value.equals("")) {
239 File metadata_file = new File(argument_value);
240 if (metadata_file.exists()) {
241 metadata_path = argument_value;
242 }
243 }
244 }
245
246 }
247 }
248 // Argument name was null, nothing to be done.
249 }
250 next_token = null;
251 // Arguments all parsed.
252 }
253}
Note: See TracBrowser for help on using the repository browser.