Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * SonarQube Runner - Distribution
  3. * Copyright (C) 2011 SonarSource
  4. * dev@sonar.codehaus.org
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 3 of the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
  19. */
  20. package org.sonar.runner;
  21. import org.sonar.runner.api.EmbeddedRunner;
  22. import org.sonar.runner.api.ForkedRunner;
  23. import org.sonar.runner.api.Runner;
  24. import java.util.Properties;
  25. class RunnerFactory {
  26. Runner create(Properties props) {
  27. Runner<?> runner;
  28. if ("fork".equals(props.getProperty("sonarRunner.mode"))) {
  29. runner = ForkedRunner.create();
  30. String jvmArgs = props.getProperty("sonarRunner.fork.jvmArgs", "");
  31. if (!"".equals(jvmArgs)) {
  32. ((ForkedRunner) runner).addJvmArguments(jvmArgs.split(" "));
  33. }
  34. } else {
  35. runner = EmbeddedRunner.create();
  36. }
  37. runner.addGlobalProperties(props);
  38. return runner;
  39. }
  40. }