
org.grails.cli.gradle.commands.GradleTaskCommandAdapter.groovy Maven / Gradle / Ivy
/*
* Copyright 2014 original 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.grails.cli.gradle.commands
import grails.util.Described
import grails.util.GrailsNameUtils
import grails.util.Named
import groovy.transform.CompileDynamic
import groovy.transform.CompileStatic
import org.grails.cli.gradle.GradleInvoker
import org.grails.cli.profile.CommandDescription
import org.grails.cli.profile.ExecutionContext
import org.grails.cli.profile.Profile
import org.grails.cli.profile.ProfileCommand
/**
* Adapts a {@link Named} command into a Gradle task execution
*
* @author Graeme Rocher
* @since 3.0
*/
@CompileStatic
class GradleTaskCommandAdapter implements ProfileCommand {
Profile profile
final Named adapted
GradleTaskCommandAdapter(Profile profile, Named adapted) {
this.profile = profile
this.adapted = adapted
}
@Override
CommandDescription getDescription() {
String description
if(adapted instanceof Described) {
description = ((Described)adapted).description
}
else {
description = ""
}
return new CommandDescription(adapted.name, description)
}
@Override
@CompileDynamic
boolean handle(ExecutionContext executionContext) {
GradleInvoker invoker = new GradleInvoker(executionContext)
def commandLine = executionContext.commandLine
if (commandLine.remainingArgs || commandLine.undeclaredOptions) {
invoker."${GrailsNameUtils.getPropertyNameForLowerCaseHyphenSeparatedName(adapted.name)}"("-Pargs=${commandLine.remainingArgsWithOptionsString}")
} else {
invoker."${GrailsNameUtils.getPropertyNameForLowerCaseHyphenSeparatedName(adapted.name)}"()
}
return true
}
@Override
String getName() {
return adapted.name
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy