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

com.github.gumtreediff.gen.yaml.YamlTreeGenerator Maven / Gradle / Ivy

/*
 * This file is part of GumTree.
 *
 * GumTree is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * GumTree is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with GumTree.  If not, see .
 *
 * Copyright 2023 Jean-Rémy Falleri 
 */

package com.github.gumtreediff.gen.yaml;

import com.github.gumtreediff.gen.Register;
import com.github.gumtreediff.utils.Registry;
import com.github.gumtreediff.gen.SyntaxException;
import com.github.gumtreediff.gen.TreeGenerator;
import com.github.gumtreediff.tree.Tree;
import com.github.gumtreediff.tree.TreeContext;
import org.yaml.snakeyaml.LoaderOptions;
import org.yaml.snakeyaml.error.YAMLException;
import org.yaml.snakeyaml.events.*;
import org.yaml.snakeyaml.parser.Parser;
import org.yaml.snakeyaml.parser.ParserImpl;
import org.yaml.snakeyaml.reader.StreamReader;

import java.io.IOException;
import java.io.Reader;
import java.util.Stack;

import static com.github.gumtreediff.tree.TypeSet.type;

@Register(id = "yaml-snakeyaml", accept = {"\\.yml$", "\\.yaml$"}, priority = Registry.Priority.MAXIMUM)
public class YamlTreeGenerator extends TreeGenerator {
    @Override
    public TreeContext generate(Reader r) throws IOException {
        TreeContext ctx = new TreeContext();
        try {
            LoaderOptions opts = new LoaderOptions();
            Parser p = new ParserImpl(new StreamReader(r), opts);
            Tree root = ctx.createTree(type("YamlDocument"));
            Stack stack = new Stack<>();
            stack.push(root);
            ctx.setRoot(root);
            while (p.peekEvent() != null) {
                Event e = p.getEvent();
                if (e.is(Event.ID.DocumentStart)) {
                    DocumentStartEvent de = (DocumentStartEvent) e;
                    root.setPos(de.getStartMark().getIndex());
                } else if (e.is(Event.ID.DocumentEnd)) {
                    stack.peek().setLength(e.getEndMark().getIndex() - stack.peek().getPos());
                    stack.pop();
                } else if (e.is(Event.ID.MappingStart)) {
                    MappingStartEvent me = (MappingStartEvent) e;
                    Tree mappingNode = ctx.createTree(type("YamlHash"));
                    mappingNode.setPos(me.getStartMark().getIndex());
                    mappingNode.setParentAndUpdateChildren(stack.peek());
                    stack.push(mappingNode);
                } else if (e.is(Event.ID.MappingEnd)) {
                    stack.peek().setLength(e.getEndMark().getIndex() - stack.peek().getPos());
                    stack.pop();
                    if (stack.peek().getType() == type("YamlTuple")) {
                        stack.peek().setLength(e.getEndMark().getIndex() - stack.peek().getPos());
                        stack.pop();
                    }
                } else if (e.is(Event.ID.SequenceStart)) {
                    SequenceStartEvent se = (SequenceStartEvent) e;
                    Tree sequenceNode = ctx.createTree(type("YamlSequence"));
                    sequenceNode.setPos(se.getStartMark().getIndex());
                    sequenceNode.setParentAndUpdateChildren(stack.peek());
                    stack.push(sequenceNode);
                } else if (e.is(Event.ID.SequenceEnd)) {
                    stack.peek().setLength(e.getEndMark().getIndex() - stack.peek().getPos());
                    stack.pop();
                    if (stack.peek().getType() == type("YamlTuple")) {
                        stack.peek().setLength(e.getEndMark().getIndex() - stack.peek().getPos());
                        stack.pop();
                    }
                } else if (e.is(Event.ID.Scalar)) {
                    ScalarEvent se = (ScalarEvent) e;
                    if (stack.peek().getType() == type("YamlHash")) {
                        Tree tupleNode = ctx.createTree(type("YamlTuple"));
                        tupleNode.setParentAndUpdateChildren(stack.peek());
                        tupleNode.setPos(se.getStartMark().getIndex());
                        stack.push(tupleNode);
                        Tree keyNode = ctx.createTree(type("YamlTupleKey"));
                        keyNode.setPos(se.getStartMark().getIndex());
                        keyNode.setLength(se.getEndMark().getIndex() - se.getStartMark().getIndex());
                        keyNode.setLabel(se.getValue());
                        keyNode.setParentAndUpdateChildren(stack.peek());
                    }
                    else {
                        Tree scalarNode = ctx.createTree(type("YamlValue"));
                        scalarNode.setPos(se.getStartMark().getIndex());
                        scalarNode.setLength(se.getEndMark().getIndex() - se.getStartMark().getIndex());
                        scalarNode.setLabel(se.getValue());
                        scalarNode.setParentAndUpdateChildren(stack.peek());
                        if (stack.peek().getType() == type("YamlTuple")) {
                            stack.peek().setLength(e.getEndMark().getIndex() - stack.peek().getPos());
                            stack.pop();
                        }
                    }
                }
            }
        }
        catch (YAMLException e) {
            throw new SyntaxException(this, r, e);
        }
        return ctx;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy