Main Page   Packages   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members  

ControlFlowAnnotation.java

00001 package edu.ksu.cis.bandera.annotation;
00002 
00003 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
00004  * Bandera, a Java(TM) analysis and transformation toolkit           *
00005  * Copyright (C) 1999, 2000   Robby (robby@cis.ksu.edu)              *
00006  * All rights reserved.                                              *
00007  *                                                                   *
00008  * This work was done as a project in the SAnToS Laboratory,         *
00009  * Department of Computing and Information Sciences, Kansas State    *
00010  * University, USA (http://www.cis.ksu.edu/santos).                  *
00011  * It is understood that any modification not identified as such is  *
00012  * not covered by the preceding statement.                           *
00013  *                                                                   *
00014  * This work is free software; you can redistribute it and/or        *
00015  * modify it under the terms of the GNU Library General Public       *
00016  * License as published by the Free Software Foundation; either      *
00017  * version 2 of the License, or (at your option) any later version.  *
00018  *                                                                   *
00019  * This work is distributed in the hope that it will be useful,      *
00020  * but WITHOUT ANY WARRANTY; without even the implied warranty of    *
00021  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU *
00022  * Library General Public License for more details.                  *
00023  *                                                                   *
00024  * You should have received a copy of the GNU Library General Public *
00025  * License along with this toolkit; if not, write to the             *
00026  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,      *
00027  * Boston, MA  02111-1307, USA.                                      *
00028  *                                                                   *
00029  * Java is a trademark of Sun Microsystems, Inc.                     *
00030  *                                                                   *
00031  * To submit a bug report, send a comment, or get the latest news on *
00032  * this project and other SAnToS projects, please visit the web-site *
00033  *                http://www.cis.ksu.edu/santos                      *
00034  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
00035 import edu.ksu.cis.bandera.jjjc.node.*;
00036 import ca.mcgill.sable.soot.jimple.*;
00037 import java.util.*;
00038 public abstract class ControlFlowAnnotation extends Annotation {
00039     // test exp is stored in annotation
00040     protected boolean indefinite = false;
00041     protected Annotation blockAnnotation = null;
00042 /**
00043  * 
00044  * @param node Node
00045  */
00046 public ControlFlowAnnotation(Node node) {
00047     super(node);
00048 }
00049 /**
00050  * 
00051  * @return ca.mcgill.sable.soot.jimple.Stmt
00052  */
00053 public abstract Stmt getBackpointStmt();
00054 /**
00055  * 
00056  * @return edu.ksu.cis.bandera.annotations.Annotation
00057  */
00058 public Annotation getBlockAnnotation() {
00059     return blockAnnotation;
00060 }
00061 /**
00062  * 
00063  * @return edu.ksu.cis.bandera.annotations.Annotation
00064  * @param stmt ca.mcgill.sable.soot.jimple.Stmt
00065  */
00066 public Annotation getContainingAnnotation(Stmt stmt) throws AnnotationException {
00067     Vector result = new Vector();
00068 
00069     Annotation a = super.getContainingAnnotation(stmt);
00070     if (a != null) result.addElement(a);
00071 
00072     if (blockAnnotation != null) {
00073         a = blockAnnotation.getContainingAnnotation(stmt);
00074         if (a != null) result.addElement(a);
00075     }
00076     
00077     int size = result.size();
00078     if (size == 0) return null;
00079     else if (size == 1) return (Annotation) result.elementAt(0);
00080     throw new AnnotationException("Statement " + stmt + " is contained in two or more annotations");
00081 }
00082 /**
00083  * 
00084  * @return ca.mcgill.sable.soot.jimple.Stmt[]
00085  */
00086 public Stmt[] getTestStatements() {
00087     return toArray();
00088 }
00089 /**
00090  * 
00091  * @return boolean
00092  */
00093 public boolean isIndefinite() {
00094     return indefinite;
00095 }
00096 /**
00097  * 
00098  * @return boolean
00099  * @param stmt ca.mcgill.sable.soot.jimple.Stmt
00100  */
00101 public boolean removeStmt(Stmt stmt) throws AnnotationException {
00102     Annotation a = getContainingAnnotation(stmt);
00103     if (a == null) return false;
00104     else if (a == this) return remove(stmt);
00105     else return a.removeStmt(stmt);
00106 }
00107 /**
00108  * 
00109  * @return boolean
00110  * @param stmt ca.mcgill.sable.soot.jimple.Stmt
00111  */
00112 public boolean removeStmtByMark(Stmt stmt) throws AnnotationException {
00113     Annotation a = getContainingAnnotation(stmt);
00114     if (a == null) return false;
00115     else if (a == this) return removeByMark(stmt);
00116     else return a.removeStmtByMark(stmt);
00117 }
00118 /**
00119  * 
00120  * @return boolean
00121  * @param oldStmt ca.mcgill.sable.soot.jimple.Stmt
00122  * @param newStmt ca.mcgill.sable.soot.jimple.Stmt
00123  */
00124 public boolean replaceStmt(Stmt oldStmt, Stmt newStmt) throws AnnotationException {
00125     Annotation a = getContainingAnnotation(oldStmt);
00126     if (a == null) return false;
00127     else if (a == this) return replace(oldStmt, newStmt);
00128     else return a.replaceStmt(oldStmt, newStmt);
00129 }
00130 /**
00131  * 
00132  * @return boolean
00133  * @param oldStmt ca.mcgill.sable.soot.jimple.Stmt
00134  * @param newStmt ca.mcgill.sable.soot.jimple.Stmt
00135  */
00136 public boolean replaceStmtByMark(Stmt oldStmt, Stmt newStmt) throws AnnotationException {
00137     Annotation a = getContainingAnnotation(oldStmt);
00138     if (a == null) return false;
00139     else if (a == this) return replaceByMark(oldStmt, newStmt);
00140     else return a.replaceStmtByMark(oldStmt, newStmt);
00141 }
00142 /**
00143  * 
00144  * @param annotation edu.ksu.cis.bandera.annotations.Annotation
00145  */
00146 public void setBlockAnnotation(Annotation annotation) {
00147     blockAnnotation = annotation;
00148     blockAnnotation.setParent(this);
00149 }
00150 /**
00151  * 
00152  * @param indefinite boolean
00153  */
00154 public void setIndefinite(boolean indefinite) {
00155     this.indefinite = indefinite;
00156 }
00157 /**
00158  * 
00159  * @param body ca.mcgill.sable.soot.jimple.JimpleBody
00160  */
00161 public void validate(JimpleBody body) {
00162     super.validate(body);
00163     if (blockAnnotation != null) blockAnnotation.validate(body);
00164 }
00165 }

Generated at Thu Feb 7 06:43:07 2002 for Bandera by doxygen1.2.10 written by Dimitri van Heesch, © 1997-2001