com.github.gumtreediff.gen.antlr3.xml.XmlTreeGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gen.antlr3-xml Show documentation
Show all versions of gen.antlr3-xml Show documentation
GumTree tree generator for XML code (AntLR based).
/*
* 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 2011-2015 Jean-Rémy Falleri
* Copyright 2011-2015 Floréal Morandat
*/
package com.github.gumtreediff.gen.antlr3.xml;
import com.github.gumtreediff.gen.Register;
import com.github.gumtreediff.gen.antlr3.AbstractAntlr3TreeGenerator;
import com.github.gumtreediff.tree.ITree;
import com.github.gumtreediff.tree.TreeContext;
import org.antlr.runtime.*;
import java.io.IOException;
import java.io.Reader;
@Register(id = "xml-antlr", accept = {"\\.xml$", "\\.xsd$", "\\.wadl$"})
public class XmlTreeGenerator extends AbstractAntlr3TreeGenerator {
@Override
public TreeContext generate(Reader file) throws IOException {
TreeContext ctx = super.generate(file);
ITree t = ctx.getRoot();
for (ITree c: t.getTrees()) { // Prune top level empty pcdata
if (c.getType() == XMLParser.PCDATA && c.getLabel().trim().equals("") ) {
c.setParentAndUpdateChildren(null);
}
}
return ctx;
}
@Override
protected XMLLexer getLexer(ANTLRStringStream stream) {
return new XMLLexer(stream);
}
@Override
protected XMLParser getParser(TokenStream tokens) {
return new XMLParser(tokens);
}
@Override
protected RuleReturnScope getStartRule(XMLParser parser) throws RecognitionException {
return parser.document();
}
@Override
protected final String[] getTokenNames() {
return XMLParser.tokenNames;
}
}