blob: 7401d1bdc24702e052d1a038cf6244daf9081e3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
|
/**************************************************************************
* AbstractMain
*
* $Revision: 1.67 $
* $Date: 2004/10/25 15:27:35 $
*
* Copyright (C) 2001 CERN - European Organization for Nuclear Research
* All rights reserved.
**************************************************************************/
package com.c2kernel.process;
import java.io.File;
import java.io.FileOutputStream;
import java.io.PrintStream;
import com.c2kernel.utils.FileStringUtility;
import com.c2kernel.utils.Logger;
/**************************************************************************
*
* @author $Author: abranson $ $Date: 2004/10/25 15:27:35 $
* @version $Revision: 1.67 $
**************************************************************************/
abstract public class AbstractMain
{
public static boolean runningAsWrapper = false;
/**************************************************************************
*
**************************************************************************/
static protected void usage()
{
System.out.println();
System.out.println("USAGE: com.c2kernel.process.AbstractMain \n" +
" -config <server/client config file> \n" +
" [-connect <LC connect file> ] (or LocalCentre in conf)\n" +
" [-resURL c2kernel/resources] (or KernelResourceURL in conf)\n" +
" [-domResURL domain/resources] (or DomainResourceURL in conf)\n" +
" [-h] [-help] \n" +
" [-logLevel 0-19] \n" +
" [-logFile <path to log file>]");
Logger.die("Initialisation error");
}
/**************************************************************************
* reading and setting the standard c2k input paramaters
**************************************************************************/
static public java.util.Properties readC2KArgs( String[] args )
{
int i = 0;
String configPath = null;
String connectPath = null;
java.util.Properties c2kProps = null;
int logLevel = 0;
PrintStream logStream = System.out;
String centreId = null;
try
{
if( args != null )
{
while( i < args.length )
{
if( args[i].equals("-h") || args[i].equals("-help") )
{
usage();
}
else if(args[i].equals("-config"))
{
if( (i+1) >= args.length )
{
System.out.println("AbstractMain::readC2KArgs() - argument expected " +
"for -config");
usage();
}
System.out.println("Config file: "+args[i+1]);
configPath = args[++i];
}
else if(args[i].equals("-connect"))
{
if( (i+1) < args.length ) // batch file will have no arg if no cmd line arg
{
connectPath = args[++i];
}
}
else if(args[i].equals("-logLevel"))
{
if( (i+1) >= args.length )
{
System.out.println("AbstractMain::readC2KArgs() - argument expected " +
"for -logLevel");
usage();
}
logLevel = Integer.parseInt(args[++i]);
}
else if(args[i].equals("-logFile"))
{
if( (i+1) >= args.length )
{
System.out.println("AbstractMain::readC2KArgs() - argument expected " +
"for -logFile");
usage();
}
logStream = new PrintStream(new FileOutputStream(args[++i], true));
}
i++;
}
// Set up log stream
Logger.addLogStream(logStream, logLevel);
if (configPath == null) {
System.out.println("No config file specified");
usage();
}
// Load config & connect files into c2kprops
c2kProps = FileStringUtility.loadConfigFile( configPath );
if (connectPath == null) {
// see if LC is listed in the config
Logger.msg(6, "No connect file specified in arguments. Looking in config.");
centreId = c2kProps.getProperty("LocalCentre");
if (centreId!= null) connectPath = "connect/"+centreId+".clc";
}
if (connectPath != null) {
Logger.msg(6, "Connect file: "+connectPath);
if (centreId == null) {
String connectFileName = new File(connectPath).getName();
centreId = connectFileName.substring(0, connectFileName.lastIndexOf(".clc"));
c2kProps.setProperty("LocalCentre", centreId);
}
FileStringUtility.appendConfigFile( c2kProps, connectPath);
}
else {
System.out.println("No connect file specified in args nor config file. Cannot continue.");
usage();
}
}
else
{
System.out.println("AbstractMain::readC2KArgs() - no arguments!");
usage();
}
}
catch( Exception ex )
{
System.out.println("Main::readC2KArgs() - bad arguments! ");
ex.printStackTrace();
usage();
}
Logger.msg(7, "AbstractMain::standardSetUp() - readC2KArgs() DONE.");
return c2kProps;
}
}
|