org.gradle.api.internal.tasks.DefaultClassDirectoryBinary.java Source code

Java tutorial

Introduction

Here is the source code for org.gradle.api.internal.tasks.DefaultClassDirectoryBinary.java

Source

/*
 * 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.api.internal.tasks;

import org.apache.commons.lang.StringUtils;
import org.gradle.api.DomainObjectCollection;
import org.gradle.api.Nullable;
import org.gradle.api.Task;
import org.gradle.api.internal.DefaultDomainObjectSet;
import org.gradle.api.tasks.*;
import org.gradle.api.tasks.compile.AbstractCompile;
import org.gradle.util.GUtil;

import java.io.File;

public class DefaultClassDirectoryBinary implements ClassDirectoryBinary {
    private final String name;
    private File classesDir;
    private File resourcesDir;
    private final DomainObjectCollection<LanguageSourceSet> source = new DefaultDomainObjectSet<LanguageSourceSet>(
            LanguageSourceSet.class);
    private Task classesTask;
    private Copy resourcesTask;
    private AbstractCompile compileTask;

    public DefaultClassDirectoryBinary(String name) {
        this.name = name;
    }

    public String getName() {
        return name;
    }

    public File getClassesDir() {
        return classesDir;
    }

    public void setClassesDir(File classesDir) {
        this.classesDir = classesDir;
    }

    public File getResourcesDir() {
        return resourcesDir;
    }

    public void setResourcesDir(File resourcesDir) {
        this.resourcesDir = resourcesDir;
    }

    public DomainObjectCollection<LanguageSourceSet> getSource() {
        return source;
    }

    public TaskDependency getBuildDependencies() {
        return null; //TODO
    }

    public Task getClassesTask() {
        return classesTask;
    }

    public void setClassesTask(Task classesTask) {
        this.classesTask = classesTask;
    }

    @Nullable
    public Copy getResourcesTask() {
        return resourcesTask;
    }

    public void setResourcesTask(Copy resourcesTask) {
        this.resourcesTask = resourcesTask;
    }

    @Nullable
    public AbstractCompile getCompileTask() {
        return compileTask;
    }

    public void setCompileTask(AbstractCompile compileTask) {
        this.compileTask = compileTask;
    }

    public String getTaskName(@Nullable String verb, @Nullable String target) {
        if (verb == null) {
            return StringUtils
                    .uncapitalize(String.format("%s%s", getTaskBaseName(), StringUtils.capitalize(target)));
        }
        if (target == null) {
            return StringUtils.uncapitalize(String.format("%s%s", verb, GUtil.toCamelCase(name)));
        }
        return StringUtils
                .uncapitalize(String.format("%s%s%s", verb, getTaskBaseName(), StringUtils.capitalize(target)));
    }

    public String getTaskBaseName() {
        return name.equals("main") ? "" : GUtil.toCamelCase(name);
    }
}