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

org.antlr.v4.codegen.model.RuleFunction Maven / Gradle / Ivy

There is a newer version: 4.9.0
Show newest version
/*
 * [The "BSD license"]
 *  Copyright (c) 2012 Terence Parr
 *  Copyright (c) 2012 Sam Harwell
 *  All rights reserved.
 *
 *  Redistribution and use in source and binary forms, with or without
 *  modification, are permitted provided that the following conditions
 *  are met:
 *
 *  1. Redistributions of source code must retain the above copyright
 *     notice, this list of conditions and the following disclaimer.
 *  2. Redistributions in binary form must reproduce the above copyright
 *     notice, this list of conditions and the following disclaimer in the
 *     documentation and/or other materials provided with the distribution.
 *  3. The name of the author may not be used to endorse or promote products
 *     derived from this software without specific prior written permission.
 *
 *  THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 *  IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 *  OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 *  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
 *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 *  NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 *  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

package org.antlr.v4.codegen.model;

import org.antlr.runtime.RecognitionException;
import org.antlr.runtime.tree.CommonTreeNodeStream;
import org.antlr.runtime.tree.TreeNodeStream;
import org.antlr.v4.analysis.LeftFactoringRuleTransformer;
import org.antlr.v4.codegen.OutputModelFactory;
import org.antlr.v4.codegen.model.decl.AltLabelStructDecl;
import org.antlr.v4.codegen.model.decl.ContextRuleGetterDecl;
import org.antlr.v4.codegen.model.decl.ContextRuleListGetterDecl;
import org.antlr.v4.codegen.model.decl.ContextRuleListIndexedGetterDecl;
import org.antlr.v4.codegen.model.decl.ContextTokenGetterDecl;
import org.antlr.v4.codegen.model.decl.ContextTokenListGetterDecl;
import org.antlr.v4.codegen.model.decl.ContextTokenListIndexedGetterDecl;
import org.antlr.v4.codegen.model.decl.Decl;
import org.antlr.v4.codegen.model.decl.StructDecl;
import org.antlr.v4.misc.FrequencySet;
import org.antlr.v4.misc.MutableInt;
import org.antlr.v4.misc.Utils;
import org.antlr.v4.parse.GrammarASTAdaptor;
import org.antlr.v4.parse.GrammarTreeVisitor;
import org.antlr.v4.runtime.atn.ATNState;
import org.antlr.v4.runtime.misc.IntervalSet;
import org.antlr.v4.runtime.misc.OrderedHashSet;
import org.antlr.v4.runtime.misc.Tuple3;
import org.antlr.v4.tool.Attribute;
import org.antlr.v4.tool.ErrorType;
import org.antlr.v4.tool.Rule;
import org.antlr.v4.tool.ast.ActionAST;
import org.antlr.v4.tool.ast.AltAST;
import org.antlr.v4.tool.ast.GrammarAST;
import org.antlr.v4.tool.ast.TerminalAST;

import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Deque;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;

import static org.antlr.v4.parse.ANTLRParser.RULE_REF;
import static org.antlr.v4.parse.ANTLRParser.TOKEN_REF;
import org.antlr.v4.runtime.atn.ATNSimulator;
import org.antlr.v4.tool.ast.GrammarASTWithOptions;


/** */
public class RuleFunction extends OutputModelObject {
	public String name;
	public List modifiers;
	public String ctxType;
	public Collection ruleLabels;
	public Collection tokenLabels;
	public ATNState startState;
	public int index;
	public Collection args = null;
	public Rule rule;
	public AltLabelStructDecl[] altToContext;
	public boolean hasLookaheadBlock;
	public String variantOf;

	@ModelElement public List code;
	@ModelElement public OrderedHashSet locals; // TODO: move into ctx?
	@ModelElement public StructDecl ruleCtx;
	@ModelElement public Map altLabelCtxs;
	@ModelElement public Map namedActions;
	@ModelElement public Action finallyAction;
	@ModelElement public List exceptions;
	@ModelElement public List postamble;

	public RuleFunction(OutputModelFactory factory, Rule r) {
		super(factory);
		this.name = r.name;
		this.rule = r;
		if ( r.modifiers!=null && !r.modifiers.isEmpty() ) {
			this.modifiers = new ArrayList();
			for (GrammarAST t : r.modifiers) modifiers.add(t.getText());
		}
		modifiers = Utils.nodesToStrings(r.modifiers);

		index = r.index;
		int lfIndex = name.indexOf(ATNSimulator.RULE_VARIANT_DELIMITER);
		if (lfIndex >= 0) {
			variantOf = name.substring(0, lfIndex);
		}

		if (variantOf == null || true) {
			ruleCtx = new StructDecl(factory, r);
			altToContext = new AltLabelStructDecl[r.getOriginalNumberOfAlts()+1];
			addContextGetters(factory, r);

			if ( r.args!=null ) {
				ruleCtx.addDecls(r.args.attributes.values());
				args = r.args.attributes.values();
				ruleCtx.ctorAttrs = args;
			}
			if ( r.retvals!=null ) {
				ruleCtx.addDecls(r.retvals.attributes.values());
			}
			if ( r.locals!=null ) {
				ruleCtx.addDecls(r.locals.attributes.values());
			}
		}

		ruleLabels = r.getElementLabelNames();
		tokenLabels = r.getTokenRefs();
		if ( r.exceptions!=null ) {
			exceptions = new ArrayList();
			for (GrammarAST e : r.exceptions) {
				ActionAST catchArg = (ActionAST)e.getChild(0);
				ActionAST catchAction = (ActionAST)e.getChild(1);
				exceptions.add(new ExceptionClause(factory, catchArg, catchAction));
			}
		}

		startState = factory.getGrammar().atn.ruleToStartState[r.index];
	}

	public void addContextGetters(OutputModelFactory factory, Rule r) {
		// Add ctx labels for elements in alts with no -> label
		List altsNoLabels = r.getUnlabeledAltASTs();
		if ( altsNoLabels!=null ) {
			Set decls = getDeclsForAllElements(altsNoLabels);
			// we know to put in rule ctx, so do it directly
			for (Decl d : decls) ruleCtx.addDecl(d);
		}

		// make structs for -> labeled alts, define ctx labels for elements
		altLabelCtxs = new HashMap();
		List> labels = r.getAltLabels();
		if ( labels!=null ) {
			for (Tuple3 pair : labels) {
				Integer altNum = pair.getItem1();
				AltAST altAST = pair.getItem2();
				String label = pair.getItem3();
				altToContext[altNum] = new AltLabelStructDecl(factory, r, altNum, label);
				altLabelCtxs.put(label, altToContext[altNum]);
				Set decls = getDeclsForAltElements(altAST);
				// we know which ctx to put in, so do it directly
				for (Decl d : decls) altToContext[altNum].addDecl(d);
			}
		}
	}

	public void fillNamedActions(OutputModelFactory factory, Rule r) {
		if ( r.finallyAction!=null ) {
			finallyAction = new Action(factory, r.finallyAction);
		}

		namedActions = new HashMap();
		for (String name : r.namedActions.keySet()) {
			ActionAST ast = r.namedActions.get(name);
			namedActions.put(name, new Action(factory, ast));
		}
	}

	/** for all alts, find which ref X or r needs List
	   Must see across alts.  If any alt needs X or r as list, then
	   define as list.
	 */
	public Set getDeclsForAllElements(List altASTs) {
		Set needsList = new HashSet();
		Set suppress = new HashSet();
		List allRefs = new ArrayList();
		for (AltAST ast : altASTs) {
			IntervalSet reftypes = new IntervalSet(RULE_REF, TOKEN_REF);
			List refs = ast.getNodesWithType(reftypes);
			allRefs.addAll(refs);
			FrequencySet altFreq = getElementFrequenciesForAlt(ast);
			for (GrammarAST t : refs) {
				String refLabelName = t.getText();
				if (altFreq.count(refLabelName)==0) {
					suppress.add(refLabelName);
				}
				if ( altFreq.count(refLabelName)>1 ) {
					needsList.add(refLabelName);
				}
			}
		}
		Set decls = new HashSet();
		for (GrammarAST t : allRefs) {
			String refLabelName = t.getText();
			if (suppress.contains(refLabelName)) {
				continue;
			}
			List d = getDeclForAltElement(t,
												refLabelName,
												needsList.contains(refLabelName));
			decls.addAll(d);
		}
		return decls;
	}

	/** Given list of X and r refs in alt, compute how many of each there are */
	protected FrequencySet getElementFrequenciesForAlt(AltAST ast) {
		try {
			ElementFrequenciesVisitor visitor = new ElementFrequenciesVisitor(new CommonTreeNodeStream(new GrammarASTAdaptor(), ast));
			visitor.outerAlternative();
			if (visitor.frequencies.size() != 1) {
				factory.getGrammar().tool.errMgr.toolError(ErrorType.INTERNAL_ERROR);
				return new FrequencySet();
			}

			return visitor.frequencies.peek();
		} catch (RecognitionException ex) {
			factory.getGrammar().tool.errMgr.toolError(ErrorType.INTERNAL_ERROR, ex);
			return new FrequencySet();
		}
	}

	/** Get list of decls for token/rule refs.
	 *  Single ref X becomes X() getter
	 *  Multiple refs to X becomes List X() method, X(int i) method.
	 *  Ref X in a loop then we get List X(), X(int i)
	 *
	 *  Does not gen labels for literals like '+', 'begin', ';', ...
 	 */
	public Set getDeclsForAltElements(AltAST altAST) {
		IntervalSet reftypes = new IntervalSet(RULE_REF,
											   TOKEN_REF);
		List refs = altAST.getNodesWithType(reftypes);
		Set decls = new HashSet();
		FrequencySet freq = getElementFrequenciesForAlt(altAST);
		for (GrammarAST t : refs) {
			String refLabelName = t.getText();
			if (freq.count(refLabelName)==0) {
				continue;
			}

			boolean needList = freq.count(refLabelName)>1;
			List d = getDeclForAltElement(t, refLabelName, needList);
			decls.addAll(d);
		}
		return decls;
	}

	public List getDeclForAltElement(GrammarAST t, String refLabelName, boolean needList) {
		int lfIndex = refLabelName.indexOf(ATNSimulator.RULE_VARIANT_DELIMITER);
		if (lfIndex >= 0) {
			refLabelName = refLabelName.substring(0, lfIndex);
		}

		List decls = new ArrayList();
		if ( t.getType()==RULE_REF ) {
			Rule rref = factory.getGrammar().getRule(t.getText());
			String ctxName = factory.getGenerator().target
							 .getRuleFunctionContextStructName(rref);
			if ( needList ) {
				decls.add( new ContextRuleListGetterDecl(factory, refLabelName, ctxName) );
				decls.add( new ContextRuleListIndexedGetterDecl(factory, refLabelName, ctxName) );
			}
			else {
				decls.add( new ContextRuleGetterDecl(factory, refLabelName, ctxName) );
			}
		}
		else {
			if ( needList ) {
				decls.add( new ContextTokenListGetterDecl(factory, refLabelName) );
				decls.add( new ContextTokenListIndexedGetterDecl(factory, refLabelName) );
			}
			else {
				decls.add( new ContextTokenGetterDecl(factory, refLabelName) );
			}
		}
		return decls;
	}

	/** Add local var decl */
	public void addLocalDecl(Decl d) {
		if ( locals ==null ) locals = new OrderedHashSet();
		locals.add(d);
		d.isLocal = true;
	}

	/** Add decl to struct ctx for rule or alt if labeled */
	public void addContextDecl(String altLabel, Decl d) {
		CodeBlockForOuterMostAlt alt = d.getOuterMostAltCodeBlock();
		// if we found code blk and might be alt label, try to add to that label ctx
		if ( alt!=null && altLabelCtxs!=null ) {
//			System.out.println(d.name+" lives in alt "+alt.alt.altNum);
			AltLabelStructDecl altCtx = altLabelCtxs.get(altLabel);
			if ( altCtx!=null ) { // we have an alt ctx
//				System.out.println("ctx is "+ altCtx.name);
				altCtx.addDecl(d);
				return;
			}
		}
		ruleCtx.addDecl(d); // stick in overall rule's ctx
	}

	protected static class ElementFrequenciesVisitor extends GrammarTreeVisitor {
		final Deque> frequencies;

		public ElementFrequenciesVisitor(TreeNodeStream input) {
			super(input);
			frequencies = new ArrayDeque>();
			frequencies.push(new FrequencySet());
		}

		/*
		 * Common
		 */

		protected static FrequencySet combineMax(FrequencySet a, FrequencySet b) {
			FrequencySet result = combineAndClip(a, b, 1);
			for (Map.Entry entry : a.entrySet()) {
				result.get(entry.getKey()).v = entry.getValue().v;
			}

			for (Map.Entry entry : a.entrySet()) {
				MutableInt slot = result.get(entry.getKey());
				slot.v = Math.max(slot.v, entry.getValue().v);
			}

			return result;
		}

		protected static FrequencySet combineAndClip(FrequencySet a, FrequencySet b, int clip) {
			FrequencySet result = new FrequencySet();
			for (Map.Entry entry : a.entrySet()) {
				for (int i = 0; i < entry.getValue().v; i++) {
					result.add(entry.getKey());
				}
			}

			for (Map.Entry entry : b.entrySet()) {
				for (int i = 0; i < entry.getValue().v; i++) {
					result.add(entry.getKey());
				}
			}

			for (Map.Entry entry : result.entrySet()) {
				entry.getValue().v = Math.min(entry.getValue().v, clip);
			}

			return result;
		}

		@Override
		public void tokenRef(TerminalAST ref) {
			frequencies.peek().add(ref.getText());
		}

		@Override
		public void ruleRef(GrammarAST ref, ActionAST arg) {
			if (ref instanceof GrammarASTWithOptions) {
				GrammarASTWithOptions grammarASTWithOptions = (GrammarASTWithOptions)ref;
				if (Boolean.parseBoolean(grammarASTWithOptions.getOptionString(LeftFactoringRuleTransformer.SUPPRESS_ACCESSOR))) {
					return;
				}
			}

			frequencies.peek().add(ref.getText());
		}

		/*
		 * Parser rules
		 */

		@Override
		protected void enterAlternative(AltAST tree) {
			frequencies.push(new FrequencySet());
		}

		@Override
		protected void exitAlternative(AltAST tree) {
			frequencies.push(combineMax(frequencies.pop(), frequencies.pop()));
		}

		@Override
		protected void enterElement(GrammarAST tree) {
			frequencies.push(new FrequencySet());
		}

		@Override
		protected void exitElement(GrammarAST tree) {
			frequencies.push(combineAndClip(frequencies.pop(), frequencies.pop(), 2));
		}

		@Override
		protected void exitSubrule(GrammarAST tree) {
			if (tree.getType() == CLOSURE || tree.getType() == POSITIVE_CLOSURE) {
				for (Map.Entry entry : frequencies.peek().entrySet()) {
					entry.getValue().v = 2;
				}
			}
		}

		/*
		 * Lexer rules
		 */

		@Override
		protected void enterLexerAlternative(GrammarAST tree) {
			frequencies.push(new FrequencySet());
		}

		@Override
		protected void exitLexerAlternative(GrammarAST tree) {
			frequencies.push(combineMax(frequencies.pop(), frequencies.pop()));
		}

		@Override
		protected void enterLexerElement(GrammarAST tree) {
			frequencies.push(new FrequencySet());
		}

		@Override
		protected void exitLexerElement(GrammarAST tree) {
			frequencies.push(combineAndClip(frequencies.pop(), frequencies.pop(), 2));
		}

		@Override
		protected void exitLexerSubrule(GrammarAST tree) {
			if (tree.getType() == CLOSURE || tree.getType() == POSITIVE_CLOSURE) {
				for (Map.Entry entry : frequencies.peek().entrySet()) {
					entry.getValue().v = 2;
				}
			}
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy