00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 package org.objectweb.proactive.core.gc;
00032
00033 import java.lang.ref.WeakReference;
00034
00035 import org.objectweb.proactive.core.body.proxy.UniversalBodyProxy;
00036
00037
00038 public class Proxy {
00039 private final WeakReference<UniversalBodyProxy> weak;
00040 private UniversalBodyProxy strong;
00041 private int strongCount;
00042
00043 public Proxy(UniversalBodyProxy proxy) {
00044 this.weak = new WeakReference<UniversalBodyProxy>(proxy);
00045 this.strong = null;
00046 this.strongCount = 0;
00047 }
00048
00054 public boolean setStrong() {
00055 this.strong = this.weak.get();
00056 if (this.strong != null) {
00057 this.strongCount++;
00058 } else if (this.strongCount != 0) {
00059 throw new IllegalStateException("A strong proxy was GCed");
00060 }
00061 return this.strong != null;
00062 }
00063
00067 public void setWeak() {
00068 if (this.strong == null) {
00069 throw new IllegalStateException("A strong proxy was GCed");
00070 }
00071 if (this.strongCount <= 0) {
00072 throw new IllegalStateException("Proxy reference was not strong");
00073 }
00074 if (--this.strongCount == 0) {
00075 this.strong = null;
00076 }
00077 }
00078
00079 public UniversalBodyProxy getStrong() {
00080 return this.strong;
00081 }
00082 }