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

io.engineblock.activities.json.statements.YamlFileStatementLoader Maven / Gradle / Ivy

Go to download

A engineblock ActivityType (AT) driver module; Provides an activity capable of writing results out via JSON

There is a newer version: 1.0.65
Show newest version
package io.engineblock.activities.json.statements;

import io.engineblock.activityimpl.ActivityInitializationError;
import io.engineblock.util.EngineBlockFiles;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.yaml.snakeyaml.TypeDescription;
import org.yaml.snakeyaml.Yaml;
import org.yaml.snakeyaml.constructor.Constructor;

import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.function.Function;
import java.util.stream.Collectors;

@SuppressWarnings("ALL")
public class YamlFileStatementLoader {

    private final static Logger logger = LoggerFactory.getLogger(YamlFileStatementLoader.class);
    List> imageTransformers = new ArrayList<>();
    List> stringTransformers = new ArrayList<>();

    public YamlFileStatementLoader() {
    }

    public YamlFileStatementLoader(Function... stringTransformers) {
        this.stringTransformers.addAll(Arrays.asList(stringTransformers));
    }

    public FileStmtDocList load(String fromPath, String... searchPaths) {
        InputStream stream = EngineBlockFiles.findRequiredStreamOrFile(fromPath, "yaml", searchPaths);
        String data = "";

        try (BufferedReader buffer = new BufferedReader(new InputStreamReader(stream))) {
            data = buffer.lines().collect(Collectors.joining("\n"));
        } catch (Exception e) {
            throw new RuntimeException("Error while reading yaml stream data:" + e);
        }

        for (Function xform : stringTransformers) {
            try {
                logger.debug("Applying string transformer to yaml data:" + xform);
                data = xform.apply(data);
            } catch (Exception e) {
                RuntimeException t = new ActivityInitializationError("Error applying string transform to input", e);
                logger.error(t.getMessage(), t);
                throw t;
            }
        }

        Yaml yaml = getCustomYaml();

        try {
            Iterable objects = yaml.loadAll(data);
            List stmtListList = new ArrayList<>();
            for (Object object : objects) {
                FileStmtDoc tgsd = (FileStmtDoc) object;
                stmtListList.add(tgsd);
            }
            return new FileStmtDocList(stmtListList);
        } catch (Exception e) {
            logger.error("Error loading yaml from " + fromPath, e);
            throw e;
        }

    }


    private Yaml getCustomYaml() {
        Constructor constructor = new Constructor(FileStmtDoc.class);
        TypeDescription tds = new TypeDescription(FileStmtDoc.class);
        tds.putListPropertyType("blocks", FileStmtBlock.class);
        constructor.addTypeDescription(tds);
        return new Yaml(constructor);
    }

}