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 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
|
/*
Derby - Class org.apache.derbyTesting.functionTests.harness.jvm
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.apache.derbyTesting.functionTests.harness;
import java.lang.reflect.InvocationTargetException;
import java.util.Enumeration;
import java.util.Properties;
import java.util.Vector;
import java.util.StringTokenizer;
import java.io.File;
import java.io.IOException;
import org.apache.derby.impl.tools.sysinfo.ZipInfoProperties;
import org.apache.derbyTesting.junit.SecurityManagerSetup;
/**
<p>This class provides the interface and mechanism
for plugging VMs into the system. Typically
you only need to add a new implementation if your
supported attributes or command line building are
different from those that exist.
<p>this class has fields for all options that a JDK VM can take,
that is the reference point for all others. Note some VMs (like jview)
don't take all options and will ignore them (like -mx). Defining
the system property "verbose" to 1 will give you warnings for ignored
properties in a properly implemented subclass.
<p> here is the canonical output from java -help for options we take:
<pre>
-noasyncgc don't allow asynchronous garbage collection
-verbosegc print a message when garbage collection occurs
-noclassgc disable class garbage collection
-ss<number> set the maximum native stack size for any thread
-oss<number> set the maximum Java stack size for any thread
-ms<number> set the initial Java heap size
-mx<number> set the maximum Java heap size
-classpath <directories separated by semicolons>
list directories in which to look for classes
-prof[:<file>] output profiling data to .\java.prof or .\<file>
-verify verify all classes when read in
-noverify do not verify any class
-nojit turn off the jit
-Dprop=name define property; can be specified more than once
</pre>
*/
public abstract class jvm {
// they all take their defaults as the initial value.
// -1, null, and false all will mean we won't include them
// in the command line.
// flags just take the whole string of flags as is
public String flags = null;
// -noasyncgc don't allow asynchronous garbage collection
public boolean noasyncgc = false;
// -verbosegc print a message when garbage collection occurs
public boolean verbosegc = false;
// -noclassgc disable class garbage collection
public boolean noclassgc = false;
// -ss<number> set the maximum native stack size for any thread
public long ss = -1;
// -oss<number> set the maximum Java stack size for any thread
public long oss = -1;
// -ms<number> set the initial Java heap size
public long ms = -1;
// -mx<number> set the maximum Java heap size
public long mx = -1;
// -classpath <directories separated by semicolons>
// list directories in which to look for classes
public String classpath = null;
// -prof[:<file>] output profiling data to .\java.prof or .\<file>
public String prof = null;
// -verify verify all classes when read in
// (remote verification is the default)
public boolean verify = false;
// -noverify do not verify any class
// (remote verification is the default)
public boolean noverify = false;
// -nojit turn off the jit
public boolean nojit = false;
// -Dprop=name define property; can be specified more than once
public Vector<String> D = null;
// java cmd (java, java_g)
public String javaCmd = "java";
// major and minor version
public String majorVersion = "";
public String minorVersion = "";
public int imajor = 0;
public int iminor = 0;
String hostName;
// security defaults relative to WS
// not used if jvmargs serverCodeBase are set
private static String DEFAULT_POLICY="util/derby_tests.policy";
private static String DEFAULT_CODEBASE="/classes";
// constructors
public jvm() { }
public jvm(boolean noasyncgc, boolean verbosegc, boolean noclassgc,
long ss, long oss, long ms, long mx, String classpath, String prof,
boolean verify, boolean noverify, boolean nojit, Vector<String> D) {
this.noasyncgc=noasyncgc;
this.noclassgc=noclassgc;
this.verbosegc=verbosegc;
this.ss=ss;
this.oss=oss;
this.ms=ms;
this.mx=mx;
this.classpath=classpath;
this.prof=prof;
this.verify=verify;
this.noverify=noverify;
this.nojit=nojit;
this.D=D;
}
// more typical use:
public jvm(String classpath, Vector<String> D) {
this.classpath=classpath;
this.D=D;
}
// more typical use:
public jvm(long ms, long mx, String classpath, Vector<String> D) {
this.ms=ms;
this.mx=mx;
this.classpath=classpath;
this.D=D;
}
/**
return the property definition introducer, with a space if a
separator is needed.
*/
public abstract String getDintro();
public abstract String getName();
public void setNoasyncgc(boolean noasyncgc) { this.noasyncgc=noasyncgc; }
public void setNoclassgc(boolean noclassgc) { this.noclassgc=noclassgc; }
public void setVerbosegc(boolean verbosegc) { this.verbosegc=verbosegc; }
public void setSs(long ss) { this.ss=ss; }
public void setOss(long oss) { this.oss=oss; }
public void setMs(long ms) { this.ms = ms; }
public void setMx(long mx) { this.mx = mx; }
public void setClasspath(String classpath) { this.classpath = classpath; }
public void setProf(String prof) { this.prof=prof; }
public void setVerify(boolean verify) { this.verify=verify; }
public void setNoverify(boolean noverify) { this.noverify=noverify; }
public void setNojit(boolean nojit) { this.nojit=nojit; }
public void setD(Vector<String> D) { this.D = D; }
public void setFlags(String flags) { this.flags = flags; }
public void setJavaCmd(String jcmd) { this.javaCmd = jcmd; }
public Vector<String> getCommandLine()
{
Vector<String> v = new Vector<String>();
v.addElement(javaCmd);
v.addElement("-Duser.language=en");
v.addElement("-Duser.country=US");
if ( (flags != null) && (flags.length()>0) )
{
StringTokenizer st = new StringTokenizer(flags);
while (st.hasMoreTokens())
{
v.addElement(st.nextToken());
}
}
return v;
}
// implementation, used by subclasses only
int verboselevel = -1;
public void warn(String msg) {
if (verboselevel == -1) {
try {
verboselevel = Integer.parseInt((String)(System.getProperty("verbose")));
} catch (Exception e) {
verboselevel = 0;
}
}
if (verboselevel >0)
System.out.println("jvm: "+msg);
}
// utility for locating a jvm.
/**
pass in class name for JVM. If we can't find it, try
also org.apache.derbyTesting.functionTests.harness.<jvmName>
*/
public static jvm getJvm(String jvmName) throws ClassNotFoundException, InstantiationException, IllegalAccessException, NoSuchMethodException, InvocationTargetException
{
jvm result = null;
Class<?> clazz;
try {
clazz = Class.forName(jvmName);
result = (jvm) clazz.getConstructor().newInstance();
} catch (ClassNotFoundException e)
{
clazz = Class.forName("org.apache.derbyTesting.functionTests.harness."+jvmName);
result = (jvm) clazz.getConstructor().newInstance();
}
return result;
}
/**
Get the current JVM using the normal test harness rules for finding
a JVM.
<OL>
<LI> If the sytem property 'jvm' use this name.
<LI> else if the java version starts with 1.2 use
"jdk12".
<LI> else use "currentjvm".
*/
public static jvm getCurrentJvm() throws Exception
{
String jvmName = System.getProperty("jvm");
if ( (jvmName == null) || (jvmName.length()==0) )
{
String javaVersion = System.getProperty("java.version");
if (javaVersion.startsWith("1.2"))
jvmName = "jdk12";
else
jvmName = "currentjvm";
}
return getJvm(jvmName);
}
/**
Return the major version number
*/
public int getMajorVersion()
{
return imajor;
}
/**
Return the major version number
*/
public int getMinorVersion()
{
return iminor;
}
/**
Get the current JVM using the normal test harness rules for finding
a JVM.
*/
public void setVersion() throws Exception
{
// check for jdk12 or higher
String javaVersion = System.getProperty("java.version");
int i = javaVersion.indexOf('.');
int j = javaVersion.indexOf('.', i+1);
majorVersion = javaVersion.substring(0, i);
minorVersion = javaVersion.substring(i+1, j);
Integer minor = Integer.valueOf(minorVersion);
iminor = minor.intValue();
Integer major = Integer.valueOf(majorVersion);
imajor = major.intValue();
String jvmName = System.getProperty("jvm");
if ( (jvmName == null) || (jvmName.length()==0) )
{
if (iminor < 2)
jvmName = "currentjvm";
else
jvmName = "jdk" + majorVersion + minorVersion;
}
}
/** Find $WS based on the assumption that JAVA_HOME is $WS/<jvm_name>
* or $WS/<jvm_name>/jre
* @return path of $WS
*/
protected static String guessWSHome()
{
String wshome="";
String jhome = System.getProperty("java.home");
String sep = System.getProperty("file.separator");
// need to strip off the java directory assuming it's something
// like ibm14/jre or ibm14
int havejre=jhome.indexOf(sep + "jre");
if (havejre > 0)
{
wshome = jhome.substring(0,jhome.indexOf(sep + "jre"));
if (wshome.lastIndexOf(sep) >= 0)
wshome = wshome.substring(0,wshome.lastIndexOf(sep));
}
{
if (jhome.lastIndexOf(sep) >= 0)
wshome = jhome.substring(0,jhome.lastIndexOf(sep));
}
return wshome;
}
public static String findCodeBase(boolean[] isJar)
{
String classpath = System.getProperty("java.class.path");
char sep = '/';
ZipInfoProperties zip[]=
org.apache.derby.impl.tools.sysinfo.Main.getAllInfo (classpath);
for (int i = 0; i < zip.length; i++)
{
// it's a url so should just have forward slashes
String location = zip[i].getLocation().replace('\\','/');
if (location.indexOf("derbynet.jar") != -1)
{
isJar[0] = true;
return location.substring(0,location.lastIndexOf(sep));
}
else if ((location.indexOf("classes") != -1) &&
location.indexOf(".jar") == -1)
{
isJar[0] = false;
return location;
}
}
return null;
}
/**
* set up security properties for server command line.
*/
protected void setSecurityProps() throws java.io.IOException, ClassNotFoundException
{
D = jvm.getSecurityProps(D);
}
static Vector<String> getSecurityProps(Vector<String> D)
throws ClassNotFoundException, IOException
{
if (D == null)
D = new Vector<String>();
String userDir = System.getProperty("user.dir");
String policyFile = userDir + baseName(DEFAULT_POLICY);
String serverCodeBase = System.getProperty("serverCodeBase");
boolean[] isJar = new boolean[1];
if (serverCodeBase == null)
serverCodeBase = findCodeBase(isJar);
if (serverCodeBase == null)
{
String ws = guessWSHome();
serverCodeBase = ws + DEFAULT_CODEBASE;
}
File pf = new File(policyFile);
File cb = new File(serverCodeBase);
if (!pf.exists())
{
System.out.println("WARNING: Running without Security manager." +
"policy File (" + policyFile +
") or serverCodeBase(" + serverCodeBase +
") not available");
return D;
}
D.addElement("java.security.manager");
D.addElement("java.security.policy=" + pf.getAbsolutePath());
Properties jusetup =
SecurityManagerSetup.getPolicyFilePropertiesForOldHarness();
// Take the definitions from the way JUnit tests
// set them up. This then supports the jar files being
// in different locations.
for (Enumeration p = jusetup.keys(); p.hasMoreElements(); )
{
String key = (String) p.nextElement();
D.addElement(key + "=" + jusetup.getProperty(key));
}
// file path to the codebase
D.addElement("derbyTesting.codedir=" + cb.getAbsolutePath());
String hostName = (System.getProperty("hostName"));
if (hostName == null)
hostName="localhost";
D.addElement("derbyTesting.serverhost=" + hostName);
// in the case of testing with a remote host, this is irrelevant,
// when testing 'normal' it is also localhost:
D.addElement("derbyTesting.clienthost=" + hostName);
return D;
}
/** Get the base file name from a resource name string
* @param resourceName (e.g. /org/apache/derbyTesting/functionTests/util/derby_tests.policy)
* @return short name (e.g. derby_tests.policy)
*/
private static String baseName(String resourceName)
{
return resourceName.substring(resourceName.lastIndexOf("/"),resourceName.length());
}
}
|