SmartThings support
[jpf-core.git] / src / main / gov / nasa / jpf / vm / serialize / SmartThingsConfig.java
1 /*
2  * Copyright (C) 2014, United States Government, as represented by the
3  * Administrator of the National Aeronautics and Space Administration.
4  * All rights reserved.
5  *
6  * The Java Pathfinder core (jpf-core) platform is licensed under the
7  * Apache License, Version 2.0 (the "License"); you may not use this file except
8  * in compliance with the License. You may obtain a copy of the License at
9  * 
10  *        http://www.apache.org/licenses/LICENSE-2.0. 
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and 
16  * limitations under the License.
17  */
18
19 package gov.nasa.jpf.vm.serialize;
20
21 import gov.nasa.jpf.Config;
22 import gov.nasa.jpf.annotation.FilterField;
23 import gov.nasa.jpf.annotation.FilterFrame;
24 import gov.nasa.jpf.vm.AnnotationInfo;
25 import gov.nasa.jpf.vm.FieldInfo;
26 import gov.nasa.jpf.vm.ClassInfo;
27 import gov.nasa.jpf.vm.MethodInfo;
28 import gov.nasa.jpf.vm.serialize.AmmendableFilterConfiguration.FieldAmmendment;
29 import gov.nasa.jpf.vm.serialize.AmmendableFilterConfiguration.FrameAmmendment;
30
31 public class SmartThingsConfig
32   implements FieldAmmendment, FrameAmmendment {
33
34   boolean ignoreClass(ClassInfo ci) {
35     String pName = ci.getPackageName();
36     if (pName.startsWith("org.codehaus.groovy")) {
37       //      System.out.println("Ignoring "+pName);
38       return true;
39     }
40     if (pName.startsWith("groovy.lang")) {
41       //      System.out.println("Ignoring "+pName);
42       return true;
43     }
44     return false;
45   }
46   
47   @Override
48   public boolean ammendFieldInclusion(FieldInfo fi, boolean sofar) {
49     ClassInfo ci = fi.getClassInfo();
50     if (ignoreClass(ci))
51       return POLICY_IGNORE;
52     
53     return sofar;
54   }
55
56   @Override
57   public FramePolicy ammendFramePolicy(MethodInfo mi, FramePolicy sofar) {
58     ClassInfo ci = mi.getClassInfo();
59     if (ignoreClass(ci)) {
60       sofar.includeLocals = false;
61       sofar.includeOps = false;
62       sofar.includePC = false;
63     }
64
65     return sofar;
66   }
67
68   public static final SmartThingsConfig instance = new SmartThingsConfig();
69 }