org.guvnor.ala.build.maven.executor.MavenBuildExecConfigExecutor.java Source code

Java tutorial

Introduction

Here is the source code for org.guvnor.ala.build.maven.executor.MavenBuildExecConfigExecutor.java

Source

/*
 * Copyright 2016 Red Hat, Inc. and/or its affiliates.
 *
 * 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.guvnor.ala.build.maven.executor;

import java.io.File;
import java.net.URI;
import java.util.List;
import java.util.Optional;
import java.util.Properties;
import javax.inject.Inject;

import org.apache.maven.project.MavenProject;
import org.appformer.maven.integration.embedder.MavenProjectLoader;
import org.guvnor.ala.build.Project;
import org.guvnor.ala.build.maven.config.MavenBuildExecConfig;
import org.guvnor.ala.build.maven.model.MavenBinary;
import org.guvnor.ala.build.maven.model.MavenBuild;
import org.guvnor.ala.build.maven.model.impl.MavenProjectBinaryImpl;
import org.guvnor.ala.config.BinaryConfig;
import org.guvnor.ala.config.Config;
import org.guvnor.ala.exceptions.BuildException;
import org.guvnor.ala.pipeline.BiFunctionConfigExecutor;
import org.guvnor.ala.registry.BuildRegistry;
import org.uberfire.java.nio.file.FileSystems;
import org.uberfire.java.nio.file.Path;

import static org.guvnor.ala.build.maven.util.MavenBuildExecutor.executeMaven;

public class MavenBuildExecConfigExecutor
        implements BiFunctionConfigExecutor<MavenBuild, MavenBuildExecConfig, BinaryConfig> {

    private final BuildRegistry buildRegistry;

    @Inject
    public MavenBuildExecConfigExecutor(final BuildRegistry buildRegistry) {
        this.buildRegistry = buildRegistry;
    }

    @Override
    public Optional<BinaryConfig> apply(final MavenBuild mavenBuild,
            final MavenBuildExecConfig mavenBuildExecConfig) {

        final Project project = mavenBuild.getProject();

        final MavenProject mavenProject = build(project, mavenBuild.getGoals(), mavenBuild.getProperties());

        final Path path = FileSystems.getFileSystem(URI.create("file://default"))
                .getPath(project.getTempDir() + "/target/" + project.getExpectedBinary());

        final MavenBinary binary = new MavenProjectBinaryImpl(path, project, mavenProject.getGroupId(),
                mavenProject.getArtifactId(), mavenProject.getVersion());

        buildRegistry.registerBinary(binary);
        return Optional.of(binary);
    }

    @Override
    public Class<? extends Config> executeFor() {
        return MavenBuildExecConfig.class;
    }

    @Override
    public String outputId() {
        return "binary";
    }

    @Override
    public String inputId() {
        return "maven-exec-config";
    }

    public MavenProject build(final Project project, final List<String> goals, final Properties properties)
            throws BuildException {
        final File pom = new File(project.getTempDir(), "pom.xml");
        executeMaven(pom, properties, goals.toArray(new String[] {}));
        return MavenProjectLoader.parseMavenPom(pom);
    }
}