1 19 20 25 26 package soot; 27 28 import java.util.*; 29 import soot.util.*; 30 31 35 public class PatchingChain extends AbstractCollection implements Chain 36 { 37 protected Chain innerChain; 38 39 40 public PatchingChain(Chain aChain) 41 { 42 innerChain = aChain; 43 } 44 45 52 public Chain getNonPatchingChain() 53 { 54 return innerChain; 55 } 56 57 58 public boolean add(Object o) 59 { 60 return innerChain.add(o); 61 } 62 63 64 public void swapWith(Object out, Object in) 65 { 66 insertBefore(in, out); 67 remove(out); 68 } 69 70 71 public void insertAfter(Object toInsert, Object point) 72 { 73 innerChain.insertAfter(toInsert, point); 74 } 75 76 77 public void insertAfter(List toInsert, Object point) 78 { 79 innerChain.insertAfter(toInsert, point); 80 } 81 82 public void insertAfter(Chain toInsert, Object point) 83 { 84 innerChain.insertAfter(toInsert, point); 85 } 86 87 88 public void insertBefore(List toInsert, Object point) 89 { 90 LinkedList backwardList = new LinkedList(); 91 { 93 Iterator it = toInsert.iterator(); 94 95 while(it.hasNext()) 96 backwardList.addFirst(it.next()); 97 } 98 99 Object previousPoint = point; 100 Iterator it = backwardList.iterator(); 101 while (it.hasNext()) 102 { 103 Object o = it.next(); 104 insertBefore(o, previousPoint); 105 previousPoint = o; 106 } 107 } 108 109 110 public void insertBefore(Chain toInsert, Object point) 111 { 112 LinkedList backwardList = new LinkedList(); 113 { 115 Iterator it = toInsert.iterator(); 116 117 while(it.hasNext()) 118 backwardList.addFirst(it.next()); 119 } 120 121 Object previousPoint = point; 122 Iterator it = backwardList.iterator(); 123 while (it.hasNext()) 124 { 125 Object o = it.next(); 126 insertBefore(o, previousPoint); 127 previousPoint = o; 128 } 129 } 130 131 132 public void insertBefore(Object toInsert, Object point) 133 { 134 ((Unit) point).redirectJumpsToThisTo((Unit) toInsert); 135 innerChain.insertBefore(toInsert, point); 136 } 137 138 139 public boolean follows(Object a, Object b) 140 { 141 return innerChain.follows(a,b); 142 } 143 144 145 public boolean remove(Object obj) 146 { 147 boolean res = false; 148 149 if(contains(obj)) 150 { 151 Unit successor; 152 153 if((successor = (Unit)getSuccOf(obj)) == null) 154 successor = (Unit)getPredOf(obj); 155 165 res = innerChain.remove(obj); 166 167 ((Unit)obj).redirectJumpsToThisTo(successor); 168 } 169 170 return res; 171 } 172 173 174 public boolean contains(Object u) 175 { 176 return innerChain.contains(u); 177 } 178 179 180 public void addFirst(Object u) 181 { 182 innerChain.addFirst(u); 183 } 184 185 186 public void addLast(Object u) 187 { 188 innerChain.addLast(u); 189 } 190 191 192 public void removeFirst() 193 { 194 remove(innerChain.getFirst()); 195 } 196 197 198 public void removeLast() 199 { 200 remove(innerChain.getLast()); 201 } 202 203 204 public Object getFirst() { return innerChain.getFirst(); } 205 206 207 public Object getLast() { return innerChain.getLast(); } 208 209 210 public Object getSuccOf(Object point){return innerChain.getSuccOf(point);} 211 212 213 public Object getPredOf(Object point){return innerChain.getPredOf(point);} 214 215 protected class PatchingIterator implements Iterator 216 { 217 protected Iterator innerIterator = null; 218 protected Object lastObject; 219 protected boolean state = false; 220 221 protected PatchingIterator (Chain innerChain) { innerIterator = innerChain.iterator(); } 222 protected PatchingIterator (Chain innerChain, Object u) { innerIterator = innerChain.iterator(u); } 223 protected PatchingIterator (Chain innerChain, Object head, Object tail) { innerIterator = innerChain.iterator(head, tail); } 224 225 public boolean hasNext() { return innerIterator.hasNext(); } 226 public Object next() { lastObject = innerIterator.next(); state = true; return lastObject; } 227 public void remove() 228 { 229 if (!state) 230 throw new IllegalStateException ("remove called before first next() call"); 231 232 Unit successor; 233 234 if((successor = (Unit)getSuccOf(lastObject)) == null) 235 successor = (Unit)getPredOf(lastObject); 236 246 innerIterator.remove(); 247 248 ((Unit)lastObject).redirectJumpsToThisTo(successor); 249 } 250 } 251 252 257 public Iterator snapshotIterator() 258 { 259 List l = new ArrayList(); l.addAll(this); 260 return l.iterator(); 261 } 262 263 264 public Iterator iterator() { return new PatchingIterator(innerChain); } 265 266 267 public Iterator iterator(Object u) { return new PatchingIterator(innerChain, u); } 268 269 270 public Iterator iterator(Object head, Object tail) { return new PatchingIterator(innerChain, head, tail); } 271 272 273 public int size(){return innerChain.size(); } 274 } 275
| Popular Tags
|