/* An interface for a visitor for parse trees of the expression language. Copyright (c) 2006-2009 The Regents of the University of California All rights reserved. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this software and its documentation for any purpose, provided that the above copyright notice and the following two paragraphs appear in all copies of this software. IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA OR RESEARCH IN MOTION LIMITED BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA OR RESEARCH IN MOTION LIMITED HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. THE UNIVERSITY OF CALIFORNIA AND RESEARCH IN MOTION LIMITED SPECIFICALLY DISCLAIM ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA AND RESEARCH IN MOTION LIMITED HAVE NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. */ package ptolemy.cg.kernel.generic; import ptolemy.data.expr.ASTPtRootNode; import ptolemy.data.expr.ParserScope; import ptolemy.kernel.util.IllegalActionException; ////////////////////////////////////////////////////////////////////////// //// ParseTreeCodeGenerator /** An interface to a parse tree. FIXME: More. @author Christopher Brooks @version $Id: ParseTreeCodeGenerator.java 67784 2013-10-26 16:53:27Z cxh $ @since Ptolemy II 10.0 @Pt.ProposedRating Red @Pt.AcceptedRating Red @see ptolemy.data.expr.ASTPtRootNode */ public interface ParseTreeCodeGenerator { /** Evaluate the parse tree with the specified root node using * the specified scope to resolve the values of variables. * @param node The root of the parse tree. * @param scope The scope for evaluation. * @return The result of evaluation. * @exception IllegalActionException If an error occurs during * evaluation. */ public ptolemy.data.Token evaluateParseTree(ASTPtRootNode node, ParserScope scope) throws IllegalActionException; /** Given a string, escape special characters as necessary for the * target language. * @param string The string to escape. * @return A new string with special characters replaced. */ public String escapeForTargetLanguage(String string); /** Generate code that corresponds with the fire() method. * @return The generated code. */ public String generateFireCode(); /** Trace the evaluation of the parse tree with the specified root * node using the specified scope to resolve the values of * variables. * @param node The root of the parse tree. * @param scope The scope for evaluation. * @return The trace of the evaluation. * @exception IllegalActionException If an error occurs during * evaluation. */ public String traceParseTreeEvaluation(ASTPtRootNode node, ParserScope scope) throws IllegalActionException; }