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

org.sonar.runner.Main Maven / Gradle / Ivy

The newest version!
/*
 * Sonar Runner
 * Copyright (C) 2011 SonarSource
 * [email protected]
 *
 * 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  02
 */
package org.sonar.runner;

import com.google.common.annotations.VisibleForTesting;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Locale;
import java.util.Properties;

/**
 * Arguments :
 * 
    *
  • runner.home: optional path to runner home (root directory with sub-directories bin, lib and conf)
  • *
  • runner.settings: optional path to runner global settings, usually ${runner.home}/conf/sonar-runner.properties. * This property is used only if ${runner.home} is not defined
  • *
  • project.home: path to project root directory. If not set, then it's supposed to be the directory where the runner is executed
  • *
  • project.settings: optional path to project settings. Default value is ${project.home}/sonar-project.properties.
  • *
* * @since 1.0 */ public final class Main { private static final String RUNNER_HOME = "runner.home"; private static final String RUNNER_SETTINGS = "runner.settings"; private static final String PROJECT_HOME = "project.home"; private static final String PROJECT_SETTINGS = "project.settings"; private boolean debugMode = false; /** * Entry point of the program. */ public static void main(String[] args) { new Main().execute(args); } @VisibleForTesting Main() { } private void execute(String[] args) { Stats stats = new Stats().start(); try { Properties props = loadProperties(args); Runner runner = Runner.create(props); Logs.info("Runner version: " + Version.getVersion()); Logs.info("Java version: " + System.getProperty("java.version", "") + ", vendor: " + System.getProperty("java.vendor", "")); Logs.info("OS name: \"" + System.getProperty("os.name") + "\", version: \"" + System.getProperty("os.version") + "\", arch: \"" + System.getProperty("os.arch") + "\""); Logs.info("Default locale: \"" + Locale.getDefault() + "\", source code encoding: \"" + runner.getSourceCodeEncoding() + "\"" + (runner.isEncodingPlatformDependant() ? " (analysis is platform dependent)" : "")); if (debugMode) { Logs.info("Other system properties:"); Logs.info(" - sun.arch.data.model: \"" + System.getProperty("sun.arch.data.model") + "\""); } Logs.info("Server: " + runner.getSonarServerURL()); try { Logs.info("Work directory: " + runner.getWorkDir().getCanonicalPath()); } catch (IOException e) { throw new RunnerException(e); } runner.execute(); } finally { stats.stop(); } } @VisibleForTesting Properties loadProperties(String[] args) { Properties commandLineProps = new Properties(); commandLineProps.putAll(System.getProperties()); commandLineProps.putAll(parseArguments(args)); Properties result = new Properties(); result.putAll(loadRunnerProperties(commandLineProps)); result.putAll(loadProjectProperties(commandLineProps)); result.putAll(commandLineProps); if (result.containsKey(PROJECT_HOME)) { // the real property of the Sonar Runner is "sonar.projectDir" String baseDir = result.getProperty(PROJECT_HOME); result.remove(PROJECT_HOME); result.put(Runner.PROPERTY_SONAR_PROJECT_BASEDIR, baseDir); } return result; } @VisibleForTesting Properties loadRunnerProperties(Properties props) { File settingsFile = locatePropertiesFile(props, RUNNER_HOME, "conf/sonar-runner.properties", RUNNER_SETTINGS); if (settingsFile != null && settingsFile.isFile() && settingsFile.exists()) { Logs.info("Runner configuration file: " + settingsFile.getAbsolutePath()); return toProperties(settingsFile); } Logs.info("Runner configuration file: NONE"); return new Properties(); } private Properties loadProjectProperties(Properties props) { File settingsFile = locatePropertiesFile(props, PROJECT_HOME, "sonar-project.properties", PROJECT_SETTINGS); if (settingsFile != null && settingsFile.isFile() && settingsFile.exists()) { Logs.info("Project configuration file: " + settingsFile.getAbsolutePath()); return toProperties(settingsFile); } Logs.info("Project configuration file: NONE"); return new Properties(); } private File locatePropertiesFile(Properties props, String homeKey, String relativePathFromHome, String settingsKey) { File settingsFile = null; String runnerHome = props.getProperty(homeKey); if (runnerHome != null && !"".equals(runnerHome)) { settingsFile = new File(runnerHome, relativePathFromHome); } if (settingsFile == null || !settingsFile.exists()) { String settingsPath = props.getProperty(settingsKey); if (settingsPath != null && !"".equals(settingsPath)) { settingsFile = new File(settingsPath); } } return settingsFile; } private Properties toProperties(File file) { InputStream in = null; Properties properties = new Properties(); try { in = new FileInputStream(file); properties.load(in); return properties; } catch (Exception e) { throw new IllegalStateException("Fail to load file: " + file.getAbsolutePath(), e); } finally { IOUtils.closeQuietly(in); } } @VisibleForTesting Properties parseArguments(String[] args) { Properties props = new Properties(); for (int i = 0; i < args.length; i++) { String arg = args[i]; if ("-h".equals(arg) || "--help".equals(arg)) { printUsage(); } else if ("-X".equals(arg) || "--debug".equals(arg)) { props.setProperty(Runner.PROPERTY_VERBOSE, "true"); debugMode = true; } else if ("-D".equals(arg) || "--define".equals(arg)) { i++; if (i >= args.length) { printError("Missing argument for option --define"); } arg = args[i]; appendPropertyTo(arg, props); } else if (arg.startsWith("-D")) { arg = arg.substring(2); appendPropertyTo(arg, props); } else { printError("Unrecognized option: " + arg); } } return props; } private void appendPropertyTo(String arg, Properties props) { final String key, value; int j = arg.indexOf('='); if (j == -1) { key = arg; value = "true"; } else { key = arg.substring(0, j); value = arg.substring(j + 1); } props.setProperty(key, value); } private void printError(String message) { Logs.info(""); Logs.info(message); printUsage(); } private void printUsage() { Logs.info(""); Logs.info("usage: sonar-runner [options]"); Logs.info(""); Logs.info("Options:"); Logs.info(" -h,--help Display help information"); Logs.info(" -X,--debug Produce execution debug output"); Logs.info(" -D,--define Define property"); System.exit(0); // NOSONAR } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy