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

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

There is a newer version: 2.4
Show newest version
/*
 * SonarQube Runner - Distribution
 * 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 org.sonar.runner.impl.Logs;

/**
 * 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 class Main { public static void main(String[] args) { Cli cli = new Cli().parse(args); Main main = new Main(new Exit(), cli, new Conf(cli), new RunnerFactory()); main.execute(); } private final Exit exit; private final Cli cli; private final Conf conf; private final RunnerFactory runnerFactory; Main(Exit exit, Cli cli, Conf conf, RunnerFactory runnerFactory) { this.exit = exit; this.cli = cli; this.conf = conf; this.runnerFactory = runnerFactory; } void execute() { SystemInfo.print(); if (!cli.isDisplayVersionOnly()) { int status = executeTask(); exit.exit(status); } } private int executeTask() { Stats stats = new Stats().start(); try { if (cli.isDisplayStackTrace()) { Logs.info("Error stacktraces are turned on."); } runnerFactory.create(conf.properties()).execute(); } catch (Exception e) { displayExecutionResult(stats, "FAILURE"); showError("Error during Sonar runner execution", e, cli.isDisplayStackTrace()); return Exit.ERROR; } displayExecutionResult(stats, "SUCCESS"); return Exit.SUCCESS; } private void displayExecutionResult(Stats stats, String resultMsg) { Logs.info("------------------------------------------------------------------------"); Logs.info("EXECUTION " + resultMsg); Logs.info("------------------------------------------------------------------------"); stats.stop(); Logs.info("------------------------------------------------------------------------"); } public void showError(String message, Throwable e, boolean showStackTrace) { if (showStackTrace) { Logs.error(message, e); if (!cli.isDebugMode()) { Logs.error(""); suggestDebugMode(); } } else { Logs.error(message); if (e != null) { Logs.error(e.getMessage()); String previousMsg = ""; for (Throwable cause = e.getCause(); cause != null && cause.getMessage() != null && !cause.getMessage().equals(previousMsg); cause = cause.getCause()) { Logs.error("Caused by: " + cause.getMessage()); previousMsg = cause.getMessage(); } } Logs.error(""); Logs.error("To see the full stack trace of the errors, re-run SonarQube Runner with the -e switch."); if (!cli.isDebugMode()) { suggestDebugMode(); } } } private void suggestDebugMode() { Logs.error("Re-run SonarQube Runner using the -X switch to enable full debug logging."); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy