/* * Copyright 2013 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.gradle.launcher.cli.converter; import org.gradle.cli.AbstractCommandLineConverter; import org.gradle.cli.CommandLineArgumentException; import org.gradle.cli.CommandLineParser; import org.gradle.cli.ParsedCommandLine; import org.gradle.launcher.daemon.configuration.DaemonParameters; public class DaemonCommandLineConverter extends AbstractCommandLineConverter<DaemonParameters> { private static final String DAEMON = "daemon"; private static final String NO_DAEMON = "no-daemon"; private static final String FOREGROUND = "foreground"; private static final String STOP = "stop"; private static final String STATUS = "status"; public DaemonParameters convert(ParsedCommandLine args, DaemonParameters target) throws CommandLineArgumentException { if (args.hasOption(FOREGROUND)) { target.setForeground(true); } if (args.hasOption(STOP)) { target.setStop(true); } if (args.hasOption(STATUS)) { target.setStatus(true); } if (args.hasOption(NO_DAEMON)) { target.setEnabled(false); } else if (args.hasOption(DAEMON)) { target.setEnabled(true); } return target; } public void configure(CommandLineParser parser) { parser.option(FOREGROUND).hasDescription("Starts the Gradle Daemon in the foreground.").incubating(); parser.option(STOP).hasDescription("Stops the Gradle Daemon if it is running."); parser.option(STATUS).hasDescription("Shows status of running and recently stopped Gradle Daemon(s)."); parser.option(DAEMON).hasDescription("Uses the Gradle Daemon to run the build. Starts the Daemon if not running."); parser.option(NO_DAEMON).hasDescription("Do not use the Gradle Daemon to run the build."); parser.allowOneOf(DAEMON, NO_DAEMON); } }