OSDN Git Service

Change DalvikRunner to use newly added OptionParser.
[android-x86/dalvik.git] / libcore / tools / runner / java / dalvik / runner / JavaVm.java
1 /*
2  * Copyright (C) 2009 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package dalvik.runner;
18
19 import java.io.File;
20 import java.util.List;
21
22 /**
23  * A local Java virtual machine like Harmony or the RI.
24  */
25 final class JavaVm extends Vm {
26
27     private final File javaHome;
28
29     JavaVm(Integer debugPort, long timeoutSeconds, File sdkJar, File localTemp,
30             File javaHome, List<String> additionalVmArgs, boolean clean) {
31         super(debugPort, timeoutSeconds, sdkJar, localTemp, additionalVmArgs, clean);
32         this.javaHome = javaHome;
33     }
34
35     @Override protected VmCommandBuilder newVmCommandBuilder(
36             File workingDirectory) {
37         String java = javaHome == null ? "java" : new File(javaHome, "bin/java").getPath();
38         return new VmCommandBuilder()
39                 .vmCommand(java)
40                 .workingDir(workingDirectory);
41     }
42 }