All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.application.command.JavaCommand Maven / Gradle / Ivy

/*
 * SonarQube
 * Copyright (C) 2009-2018 SonarSource SA
 * mailto:info AT sonarsource DOT com
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */
package org.sonar.application.command;

import java.io.File;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import javax.annotation.Nullable;
import org.sonar.process.ProcessId;
import org.sonar.process.System2;

public class JavaCommand extends AbstractCommand> {
  // program arguments
  private final Map arguments = new LinkedHashMap<>();
  // entry point
  private String className;
  private JvmOptions jvmOptions;
  // relative path to JAR files
  private final List classpath = new ArrayList<>();
  private boolean readsArgumentsFromFile;

  public JavaCommand(ProcessId id, File workDir) {
    super(id, workDir, System2.INSTANCE);
  }

  public JvmOptions getJvmOptions() {
    return jvmOptions;
  }

  public JavaCommand setJvmOptions(JvmOptions jvmOptions) {
    this.jvmOptions = jvmOptions;

    return this;
  }

  public String getClassName() {
    return className;
  }

  public JavaCommand setClassName(String className) {
    this.className = className;
    return this;
  }

  public List getClasspath() {
    return classpath;
  }

  public JavaCommand addClasspath(String s) {
    classpath.add(s);
    return this;
  }

  public boolean getReadsArgumentsFromFile() {
    return readsArgumentsFromFile;
  }

  public JavaCommand setReadsArgumentsFromFile(boolean readsArgumentsFromFile) {
    this.readsArgumentsFromFile = readsArgumentsFromFile;
    return this;
  }

  public Map getArguments() {
    return arguments;
  }

  public JavaCommand setArgument(String key, @Nullable String value) {
    if (value == null) {
      arguments.remove(key);
    } else {
      arguments.put(key, value);
    }
    return this;
  }

  public JavaCommand setArguments(Properties args) {
    for (Map.Entry entry : args.entrySet()) {
      setArgument(entry.getKey().toString(), entry.getValue() != null ? entry.getValue().toString() : null);
    }
    return this;
  }

  @Override
  public String toString() {
    return "JavaCommand{" + "workDir=" + getWorkDir() +
      ", jvmOptions=" + jvmOptions +
      ", className='" + className + '\'' +
      ", classpath=" + classpath +
      ", arguments=" + getArguments() +
      ", envVariables=" + getEnvVariables() +
      ", suppressedEnvVariables=" + getSuppressedEnvVariables() +
      '}';
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy