blob: c363f8e44203a5a49cad07b260dec5e4dd4f2622 [file] [log] [blame]
duke6e45e102007-12-01 00:00:00 +00001/*
smarksf351c0a2013-01-07 18:09:07 -08002 * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
duke6e45e102007-12-01 00:00:00 +00003 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
ohair2283b9d2010-05-25 15:58:33 -070019 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
duke6e45e102007-12-01 00:00:00 +000022 */
23
smarksf34bec82012-12-20 20:11:45 -080024import java.io.File;
25import java.io.IOException;
26import java.io.OutputStream;
duke6e45e102007-12-01 00:00:00 +000027import java.util.Arrays;
duke6e45e102007-12-01 00:00:00 +000028import java.util.StringTokenizer;
29
30/**
31 * RMI regression test utility class that uses Runtime.exec to spawn a
32 * java process that will run a named java class.
33 */
34public class JavaVM {
35
duke6e45e102007-12-01 00:00:00 +000036 protected Process vm = null;
37
38 private String classname = "";
39 private String args = "";
40 private String options = "";
41 private OutputStream outputStream = System.out;
42 private OutputStream errorStream = System.err;
43 private String policyFileName = null;
smarksf351c0a2013-01-07 18:09:07 -080044 private StreamPipe outPipe;
45 private StreamPipe errPipe;
duke6e45e102007-12-01 00:00:00 +000046
47 private static void mesg(Object mesg) {
48 System.err.println("JAVAVM: " + mesg.toString());
49 }
50
51 /** string name of the program execd by JavaVM */
52 private static String javaProgram = "java";
53
54 static {
55 try {
56 javaProgram = TestLibrary.getProperty("java.home", "") +
57 File.separator + "bin" + File.separator + javaProgram;
58 } catch (SecurityException se) {
59 }
60 }
61
62 public JavaVM(String classname) {
63 this.classname = classname;
64 }
65 public JavaVM(String classname,
66 String options, String args) {
67 this.classname = classname;
68 this.options = options;
69 this.args = args;
70 }
71
72 public JavaVM(String classname,
73 String options, String args,
74 OutputStream out, OutputStream err) {
75 this(classname, options, args);
76 this.outputStream = out;
77 this.errorStream = err;
78 }
79
olagneaub58eaf42012-05-11 14:13:29 -070080 // Prepends passed opts array to current options
duke6e45e102007-12-01 00:00:00 +000081 public void addOptions(String[] opts) {
82 String newOpts = "";
83 for (int i = 0 ; i < opts.length ; i ++) {
84 newOpts += " " + opts[i];
85 }
86 newOpts += " ";
87 options = newOpts + options;
88 }
olagneaub58eaf42012-05-11 14:13:29 -070089
90 // Prepends passed arguments array to current args
duke6e45e102007-12-01 00:00:00 +000091 public void addArguments(String[] arguments) {
92 String newArgs = "";
93 for (int i = 0 ; i < arguments.length ; i ++) {
94 newArgs += " " + arguments[i];
95 }
96 newArgs += " ";
97 args = newArgs + args;
98 }
99
100 public void setPolicyFile(String policyFileName) {
101 this.policyFileName = policyFileName;
102 }
103
104 /**
105 * This method is used for setting VM options on spawned VMs.
106 * It returns the extra command line options required
107 * to turn on jcov code coverage analysis.
108 */
109 protected static String getCodeCoverageOptions() {
110 return TestLibrary.getExtraProperty("jcov.options","");
111 }
112
113
114 /**
115 * Exec the VM as specified in this object's constructor.
116 */
117 public void start() throws IOException {
118
smarksf34bec82012-12-20 20:11:45 -0800119 if (vm != null)
120 throw new IllegalStateException("JavaVM already started");
duke6e45e102007-12-01 00:00:00 +0000121
122 /*
123 * If specified, add option for policy file
124 */
125 if (policyFileName != null) {
126 String option = "-Djava.security.policy=" + policyFileName;
127 addOptions(new String[] { option });
128 }
129
130 addOptions(new String[] { getCodeCoverageOptions() });
131
132 StringTokenizer optionsTokenizer = new StringTokenizer(options);
133 StringTokenizer argsTokenizer = new StringTokenizer(args);
134 int optionsCount = optionsTokenizer.countTokens();
135 int argsCount = argsTokenizer.countTokens();
136
137 String javaCommand[] = new String[optionsCount + argsCount + 2];
138 int count = 0;
139
140 javaCommand[count++] = JavaVM.javaProgram;
141 while (optionsTokenizer.hasMoreTokens()) {
142 javaCommand[count++] = optionsTokenizer.nextToken();
143 }
144 javaCommand[count++] = classname;
145 while (argsTokenizer.hasMoreTokens()) {
146 javaCommand[count++] = argsTokenizer.nextToken();
147 }
148
149 mesg("command = " + Arrays.asList(javaCommand).toString());
duke6e45e102007-12-01 00:00:00 +0000150
151 vm = Runtime.getRuntime().exec(javaCommand);
152
153 /* output from the execed process may optionally be captured. */
smarksf351c0a2013-01-07 18:09:07 -0800154 outPipe = StreamPipe.plugTogether(vm.getInputStream(), this.outputStream);
155 errPipe = StreamPipe.plugTogether(vm.getErrorStream(), this.errorStream);
duke6e45e102007-12-01 00:00:00 +0000156 }
157
158 public void destroy() {
159 if (vm != null) {
160 vm.destroy();
161 }
162 vm = null;
163 }
164
smarksf351c0a2013-01-07 18:09:07 -0800165 /**
166 * Waits for the subprocess to exit, joins the pipe threads to ensure that
167 * all output is collected, and returns its exit status.
168 */
169 public int waitFor() throws InterruptedException {
170 if (vm == null)
171 throw new IllegalStateException("can't wait for JavaVM that hasn't started");
172
173 int status = vm.waitFor();
174 outPipe.join();
175 errPipe.join();
176 return status;
177 }
178
179 /**
180 * Starts the subprocess, waits for it to exit, and returns its exit status.
181 */
182 public int execute() throws IOException, InterruptedException {
183 start();
184 return waitFor();
duke6e45e102007-12-01 00:00:00 +0000185 }
186}