Blame view
circus/src/jcircus/classesdescompiladas/AltingBarrier.java
7.11 KB
8d0dc533f
![]() |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
// Decompiled by DJ v3.11.11.95 Copyright 2009 Atanas Neshkov Date: 26/10/2010 13:51:27 // Home Page: http://members.fortunecity.com/neshkov/dj.html http://www.neshkov.com/dj.html - Check often for new version! // Decompiler options: packimports(3) package jcircus.classesdescompiladas; // Referenced classes of package org.jcsp.lang: // Guard, AltingBarrierBase, AltingBarrierError, Alternative, // CSTimer, MultiwaySynchronisation public class AltingBarrier extends Guard implements MultiwaySynchronisation { AltingBarrier(AltingBarrierBase altingbarrierbase, AltingBarrier altingbarrier) { next = null; alt = null; myThread = null; enrolled = true; singleAlt = null; pollAlt = null; pollTime = null; base = altingbarrierbase; next = altingbarrier; } public static AltingBarrier[] create(int i) { if(i <= 0) throw new IllegalArgumentException(" *** An AltingBarrier must have at least one process enrolled, not " + i); else return (new AltingBarrierBase()).expand(i); } public static AltingBarrier create() { return (new AltingBarrierBase()).expand(); } public AltingBarrier[] expand(int i) { if(i <= 0) throw new IllegalArgumentException(" *** Expanding an AltingBarrier must be by at least one, not " + i); AltingBarrierBase altingbarrierbase = base; JVM INSTR monitorenter ; if(myThread == null) myThread = Thread.currentThread(); else if(myThread != Thread.currentThread()) throw new AltingBarrierError(" *** AltingBarrier expand attempted by non-owner."); if(!enrolled) throw new AltingBarrierError(" *** AltingBarrier expand attempted whilst resigned."); return base.expand(i); Exception exception; exception; throw exception; } public AltingBarrier expand() { AltingBarrierBase altingbarrierbase = base; JVM INSTR monitorenter ; if(myThread == null) myThread = Thread.currentThread(); else if(myThread != Thread.currentThread()) throw new AltingBarrierError(" *** AltingBarrier expand attempted by non-owner."); if(!enrolled) throw new AltingBarrierError(" *** AltingBarrier expand attempted whilst resigned."); return base.expand(); Exception exception; exception; throw exception; } public void contract(AltingBarrier aaltingbarrier[]) { if(aaltingbarrier == null) throw new IllegalArgumentException(" *** AltingBarrier contract given a null array."); if(aaltingbarrier.length == 0) throw new IllegalArgumentException(" *** AltingBarrier contract given an empty array."); synchronized(base) { if(myThread != Thread.currentThread()) throw new AltingBarrierError(" *** AltingBarrier contract attempted by non-owner."); if(!enrolled) throw new AltingBarrierError(" *** AltingBarrier contract attempted whilst resigned."); base.contract(aaltingbarrier); } } public void contract() { synchronized(base) { if(myThread != Thread.currentThread()) throw new AltingBarrierError(" *** AltingBarrier contract attempted by non-owner."); if(!enrolled) throw new AltingBarrierError(" *** AltingBarrier contract attempted whilst resigned."); base.contract(this); } } boolean enable(Alternative alternative) { AltingBarrierBase altingbarrierbase = base; JVM INSTR monitorenter ; if(myThread == null) myThread = Thread.currentThread(); else if(myThread != Thread.currentThread()) throw new AltingBarrierError(" *** AltingBarrier front-end enable by more than one Thread."); if(!enrolled) throw new AltingBarrierError(" *** AltingBarrier front-end enable whilst resigned."); if(alt != null) return false; if(!base.enable()) goto _L2; else goto _L1 _L1: alternative.setBarrierTrigger(); true; altingbarrierbase; JVM INSTR monitorexit ; return; _L2: alt = alternative; false; altingbarrierbase; JVM INSTR monitorexit ; return; Exception exception; exception; throw exception; } boolean disable() { AltingBarrierBase altingbarrierbase = base; JVM INSTR monitorenter ; if(alt == null) return false; if(!base.disable()) goto _L2; else goto _L1 _L1: alt.setBarrierTrigger(); alt = null; true; altingbarrierbase; JVM INSTR monitorexit ; return; _L2: alt = null; false; altingbarrierbase; JVM INSTR monitorexit ; return; Exception exception; exception; throw exception; } void schedule() { if(alt != null) alt.schedule(); } public void resign() { synchronized(base) { if(!enrolled) throw new AltingBarrierError(" *** AltingBarrier.resign() whilst not enrolled."); enrolled = false; base.resign(); } } public void enroll() { synchronized(base) { if(enrolled) throw new AltingBarrierError(" *** AltingBarrier.enroll() whilst not resigned."); enrolled = true; base.enroll(); } } public void mark() { synchronized(base) { if(!enrolled) throw new AltingBarrierError(" *** Attempt to AltingBarrier.mark() a resigned front-end."); myThread = Thread.currentThread(); } } public void reset() { synchronized(base) { if(!enrolled) { enrolled = true; base.enroll(); } myThread = null; } } public void sync() { if(singleAlt == null) singleAlt = new Alternative(new Guard[] { this }); singleAlt.priSelect(); } public boolean poll(long l) { if(pollAlt == null) { pollTime = new CSTimer(); pollAlt = new Alternative(new Guard[] { this, pollTime }); } pollTime.setAlarm(pollTime.read() + l); return pollAlt.priSelect() == 0; } AltingBarrierBase base; AltingBarrier next; private Alternative alt; private Thread myThread; boolean enrolled; private Alternative singleAlt; private Alternative pollAlt; private CSTimer pollTime; } |