All Downloads are FREE. Search and download functionalities are using the official Maven repository.

uk.co.szmg.jsonbuildergenerator.JsonBuilderGenerator Maven / Gradle / Ivy

package uk.co.szmg.jsonbuildergenerator;

/*-
 * #%L
 * domain-generator-maven-plugin
 * %%
 * Copyright (C) 2017 Mate Gabor Szvoboda
 * %%
 * 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.
 * #L%
 */


import com.fasterxml.jackson.databind.MappingIterator;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.dataformat.yaml.YAMLFactory;
import org.apache.maven.model.FileSet;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.apache.maven.project.MavenProject;
import org.codehaus.plexus.util.DirectoryScanner;
import org.codehaus.plexus.util.StringUtils;

import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

/**
 * In fact it doesn't build anything like Json. It's a bad name.
 *
 * Not thread-safe.
 */
@Mojo(name = "generate", defaultPhase = LifecyclePhase.GENERATE_SOURCES)
public class JsonBuilderGenerator extends AbstractMojo {

    @Parameter(defaultValue = "${project}", required = true)
    protected MavenProject project;

    @Parameter(defaultValue = "${project.build.directory}/generated-sources/jsonbuilder", required = true)
    protected File outputJavaDirectory;

    @Parameter(required = true)
    protected List descriptors;

    @Parameter
    protected String packageName;

    private CodeGenerator codeGenerator = new CodeGenerator();

    private List generatedDomains = new ArrayList<>();

    @Override
    public void execute() throws MojoExecutionException, MojoFailureException {
        if (this.project != null) {
            this.project.addCompileSourceRoot(this.outputJavaDirectory.getAbsolutePath());
        }
        if (!this.outputJavaDirectory.mkdirs()) {
            getLog().error("Could not create source directory! (it might already exist)");
        } else {
            try {
                generateDomains();
                generateFactories();
            } catch (IOException e) {
                throw new MojoExecutionException("Could not generate Java source code!", e);
            }
        }
    }

    private void generateFactories() throws MojoFailureException {
        String code = codeGenerator.generateFactories(generatedDomains, packageName);
        File f = createPackageDirsAndGetJavaFile("DomainFactories");
        writeToFile(f, code);
    }

    private void generateDomains() throws IOException, MojoExecutionException, MojoFailureException {

        for (FileSet descriptor : descriptors) {
            DirectoryScanner scanner = new DirectoryScanner();
            scanner.setBasedir(descriptor.getDirectory());
            scanner.setIncludes(toArrayOrNull(descriptor.getIncludes()));
            scanner.setExcludes(toArrayOrNull(descriptor.getExcludes()));
            scanner.scan();
            for (String yamlPath : scanner.getIncludedFiles()) {
                generateJavaCodeFor(new File(scanner.getBasedir(), yamlPath));
            }
        }
    }

    private void generateJavaCodeFor(File yamlPath) throws MojoExecutionException, MojoFailureException {
        ObjectMapper mapper = new ObjectMapper(new YAMLFactory());
        try {
            MappingIterator iterator = mapper.readerFor(DomainDescription.class).readValues(yamlPath);
            while (iterator.hasNextValue()) {
                generateJavaCodeFor(iterator.next());
            }
        } catch (IOException e) {
            getLog().error(String.format("Cannot parse descriptor [%s]", yamlPath), e);
            throw new MojoExecutionException(String.format("Cannot parse descriptor [%s]", yamlPath), e);
        }
    }

    private void generateJavaCodeFor(DomainDescription domain) throws MojoFailureException {
        getLog().info(String.format("Generating %s", domain.getName()));
        generatedDomains.add(domain); // :(

        String code = codeGenerator.generateJavaCodeFor(domain, packageName);
        File javaFile = createPackageDirsAndGetJavaFile(domain.getName());
        writeToFile(javaFile, code);
    }

    private void writeToFile(File file, String content) throws MojoFailureException {
        try (FileWriter writer = new FileWriter(file)) {
            writer.write(content);
        } catch (IOException e) {
            throw new MojoFailureException("Could not write source file", e);
        }
    }

    private File createPackageDirsAndGetJavaFile(String name) {
        File dir = new File(outputJavaDirectory.getAbsolutePath());
        if (StringUtils.isNotBlank(packageName)) {
            dir = new File(dir, packageName.replaceAll("\\.", File.separator));
        }
        dir.mkdirs();

        return new File(dir, name + ".java");
    }

    private static String[] toArrayOrNull(List list) {
        String[] result = null;
        if (list != null && !list.isEmpty()) {
            result = list.toArray(new String[list.size()]);
        }
        return result;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy