more
[cdsspec-compiler.git] / src / edu / uci / eecs / specCompiler / codeGenerator / SemanticsChecker.java
index 60732306a12f2768f44109f57d4e9d1b49b1470d..cb5792a892eb0a37d7444503fc3419e0d79d222c 100644 (file)
@@ -6,7 +6,6 @@ import java.util.HashMap;
 import java.util.HashSet;
 
 import edu.uci.eecs.specCompiler.grammerParser.ParseException;
-import edu.uci.eecs.specCompiler.grammerParser.SpecParser;
 import edu.uci.eecs.specCompiler.specExtraction.CPDefineCheckConstruct;
 import edu.uci.eecs.specCompiler.specExtraction.CPDefineConstruct;
 import edu.uci.eecs.specCompiler.specExtraction.ClassBeginConstruct;
@@ -32,15 +31,19 @@ public class SemanticsChecker {
        public final HashMap<String, ArrayList<InterfaceConstruct>> CPLabel2InterfaceConstruct;
 
        public final HashMap<String, Integer> interface2Num;
+       public final HashMap<Integer, String> num2Interface;
        public final HashMap<String, Integer> hbLabel2Num;
+       public final HashMap<Integer, String> num2HBLabel;
        public final HashMap<String, Integer> commitPointLabel2Num;
+       public final HashMap<Integer, String> num2CommitPointLabel;
 
        private HashMap<String, String> options;
        private HashMap<ConditionalInterface, HashSet<ConditionalInterface>> hbConditions;
        private ArrayList<EntryPointConstruct> entryPointConstructs;
        private ClassBeginConstruct classBeginConstruct;
        private ClassEndConstruct classEndConstruct;
-       
+       private GlobalConstruct globalConstruct;
+
        private String templateStr;
        private String templateFullStr;
        private String className;
@@ -62,51 +65,61 @@ public class SemanticsChecker {
                this.classEndConstruct = null;
 
                this.interface2Num = new HashMap<String, Integer>();
+               this.num2Interface = new HashMap<Integer, String>();
                this.hbLabel2Num = new HashMap<String, Integer>();
+               this.num2HBLabel = new HashMap<Integer, String>();
                // Immediately init the true HB-condition to be 0
                hbLabel2Num.put("", 0);
+               num2HBLabel.put(0, "");
 
                this.commitPointLabel2Num = new HashMap<String, Integer>();
+               this.num2CommitPointLabel = new HashMap<Integer, String>();
 
                _interfaceNum = 0;
                _hbLabelNum = 0;
                _commitPointNum = 0;
-               
+
                templateStr = null;
                templateFullStr = null;
                className = null;
        }
-       
+
        public ClassBeginConstruct getClassBeginConstruct() {
                return this.classBeginConstruct;
        }
-       
+
        public ClassEndConstruct getClassEndConstruct() {
                return this.classEndConstruct;
        }
-       
+
        public String getTemplateFullStr() {
                return this.templateFullStr;
        }
-       
+
        public String getTemplateStr() {
                return this.templateStr;
        }
-       
+
        public String getClassName() {
                return this.className;
        }
 
+       public GlobalConstruct getGlobalConstruct() {
+               return this.globalConstruct;
+       }
+
        public HashMap<ConditionalInterface, HashSet<ConditionalInterface>> getHBConditions() {
                return this.hbConditions;
        }
-       
+
        /**
         * Check if the conditional interface is in the HB checking list
+        * 
         * @param condInterface
         * @return
         */
-       public boolean containsConditionalInterface(ConditionalInterface condInterface) {
+       public boolean containsConditionalInterface(
+                       ConditionalInterface condInterface) {
                if (hbConditions.containsKey(condInterface))
                        return true;
                for (ConditionalInterface key : hbConditions.keySet()) {
@@ -138,6 +151,7 @@ public class SemanticsChecker {
 
                        // Number the HB-condition label
                        hbLabel2Num.put(label, _hbLabelNum++);
+                       num2HBLabel.put(_hbLabelNum, label);
                }
        }
 
@@ -190,6 +204,7 @@ public class SemanticsChecker {
                                }
                                // Number the interface label
                                interface2Num.put(iConstruct.name, _interfaceNum++);
+                               num2Interface.put(_interfaceNum, iConstruct.name);
 
                                interfaceName2Construct.put(iConstruct.name,
                                                (InterfaceConstruct) constructs.get(i));
@@ -210,6 +225,7 @@ public class SemanticsChecker {
                        Construct construct = constructs.get(i);
                        if (construct instanceof GlobalConstruct) {
                                GlobalConstruct theConstruct = (GlobalConstruct) construct;
+                               globalConstruct = theConstruct;
                                if (!hasGlobalConstruct)
                                        hasGlobalConstruct = true;
                                else {
@@ -233,8 +249,9 @@ public class SemanticsChecker {
                                PotentialCPDefineConstruct theConstruct = (PotentialCPDefineConstruct) construct;
                                label = theConstruct.label;
                                checkLabelDuplication(construct, label);
-                               // Number the commit_point label
+                               // Number the commit point potential commit point label
                                commitPointLabel2Num.put(label, _commitPointNum++);
+                               num2CommitPointLabel.put(_commitPointNum, label);
 
                                potentialCPLabel2Construct.put(label,
                                                (PotentialCPDefineConstruct) construct);
@@ -242,16 +259,18 @@ public class SemanticsChecker {
                                CPDefineCheckConstruct theConstruct = (CPDefineCheckConstruct) construct;
                                label = theConstruct.label;
                                checkLabelDuplication(construct, label);
-                               // Number the commit_point label
+                               // Number the commit point define check label
                                commitPointLabel2Num.put(label, _commitPointNum++);
+                               num2CommitPointLabel.put(_commitPointNum, label);
 
                                CPLabel2Construct.put(label, construct);
                        } else if (construct instanceof CPDefineConstruct) {
                                CPDefineConstruct theConstruct = (CPDefineConstruct) construct;
                                label = theConstruct.label;
                                checkLabelDuplication(construct, label);
-                               // Number the commit_point label
+                               // Number the commit point define label
                                commitPointLabel2Num.put(label, _commitPointNum++);
+                               num2CommitPointLabel.put(_commitPointNum, label);
 
                                CPLabel2Construct.put(label, construct);
                        } else if (construct instanceof EntryPointConstruct) {
@@ -266,19 +285,23 @@ public class SemanticsChecker {
                                interfaceName2DefineConstruct.put(name, theConstruct);
                        } else if (construct instanceof ClassBeginConstruct) {
                                classBeginConstruct = (ClassBeginConstruct) construct;
-                               ArrayList<String> content = srcFilesInfo.get(classBeginConstruct.file).content;
-                               String firstLine = content.get(classBeginConstruct.beginLineNum), secondLine;
+                               ArrayList<String> content = srcFilesInfo
+                                               .get(classBeginConstruct.file).content;
+                               String firstLine = content
+                                               .get(classBeginConstruct.beginLineNum + 1), secondLine;
                                if (firstLine.startsWith("template")) {
-                                       secondLine = content.get(classBeginConstruct.beginLineNum + 1);
+                                       secondLine = content
+                                                       .get(classBeginConstruct.beginLineNum + 1);
                                        templateFullStr = firstLine;
                                        templateStr = ParserUtils.getTemplateStr(firstLine);
                                        className = ParserUtils.getClassName(secondLine);
                                } else {
                                        className = ParserUtils.getClassName(firstLine);
                                }
-                               
+
                        } else if (construct instanceof ClassEndConstruct) {
                                classEndConstruct = (ClassEndConstruct) construct;
+                               className = getOption("CLASS");
                        }
                }
        }