View Javadoc

1   package org_scala_tools_maven_executions;
2   
3   import java.io.File;
4   import java.util.ArrayList;
5   import java.util.List;
6   
7   import org.apache.maven.plugin.AbstractMojo;
8   import org.codehaus.plexus.util.StringUtils;
9   /**
10   * Abstract helper implementation for JavaMainCaller interface.
11   * @author josh
12   *
13   */
14  public abstract class JavaMainCallerSupport implements JavaMainCaller {
15  
16      protected AbstractMojo requester;
17      protected List<String> env  = new ArrayList<String>();
18      protected String mainClassName;
19      protected List<String> jvmArgs = new ArrayList<String>();
20      protected List<String> args = new ArrayList<String>();
21  
22  
23      protected JavaMainCallerSupport(AbstractMojo requester, String mainClassName, String classpath, String[] jvmArgs, String[] args) throws Exception {
24          this.requester = requester;
25          for (String key : System.getenv().keySet()) {
26              env.add(key + "=" + System.getenv(key));
27          }
28          this.mainClassName = mainClassName;
29          addJvmArgs("-classpath", classpath);
30          addJvmArgs(jvmArgs);
31          addArgs(args);
32      }
33  
34      public void addJvmArgs(String... args) {
35          if(args != null) {
36              for(String arg : args) {
37                  if (StringUtils.isNotEmpty(arg)) {
38                      this.jvmArgs.add(arg);
39                  }
40              }
41          }
42      }
43  
44      public void addToClasspath(File entry) throws Exception {
45          if ((entry == null) || !entry.exists()) {
46              return;
47          }
48          boolean isClasspath = false;
49          for (int i = 0; i < jvmArgs.size(); i++) {
50              String item = jvmArgs.get(i);
51              if (isClasspath) {
52                  item = item + File.pathSeparator + entry.getCanonicalPath();
53                  jvmArgs.set(i, item);
54                  isClasspath = false;
55                  break;
56              }
57              isClasspath = "-classpath".equals(item);
58          }
59      }
60  
61      public void addOption(String key, String value) {
62          if (StringUtils.isEmpty(value) || StringUtils.isEmpty(key)) {
63              return;
64          }
65          addArgs(key, value);
66      }
67  
68      public void addOption(String key, File value) {
69          if ( (value == null) || StringUtils.isEmpty(key)) {
70              return;
71          }
72          addArgs(key, value.getAbsolutePath());
73      }
74  
75      public void addOption(String key, boolean value) {
76          if ((!value) || StringUtils.isEmpty(key)) {
77              return;
78          }
79          addArgs(key);
80      }
81      public void addArgs(String... args) {
82          if(args != null) {
83              for(String arg : args) {
84                  if (StringUtils.isNotEmpty(arg)) {
85                      this.args.add(arg);
86                  }
87              }
88          }
89      }
90  
91      public void addEnvVar(String key, String value) {
92          this.env.add(key + "=" + value);
93  
94      }
95      public void run(boolean displayCmd) throws Exception {
96          run(displayCmd, true);
97      }
98  }