Reference.java 6.66 KB
Newer Older
1
/* java.lang.ref.Reference
2
   Copyright (C) 1999, 2002, 2003, 2006 Free Software Foundation, Inc.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17

This file is part of GNU Classpath.

GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
 
GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING.  If not, write to the
Kelley Cook committed
18 19
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.
20

21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
Linking this library statically or dynamically with other modules is
making a combined work based on this library.  Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.

As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module.  An independent module is a module which is not derived from
or based on this library.  If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so.  If you do not wish to do so, delete this
exception statement from your version. */
37 38 39 40 41 42


package java.lang.ref;

/**
 * This is the base class of all references.  A reference allows
43
 * refering to an object without preventing the garbage collector to
44 45 46 47 48 49 50 51 52 53 54
 * collect it.  The only way to get the referred object is via the
 * <code>get()</code>-method.  This method will return
 * <code>null</code> if the object was collected. <br>
 *
 * A reference may be registered with a queue.  When a referred
 * element gets collected the reference will be put on the queue, so
 * that you will be notified. <br>
 *
 * There are currently three types of references:  soft reference,
 * weak reference and phantom reference. <br>
 *
55
 * Soft references will be cleared if the garbage collector is told
56 57 58
 * to free some memory and there are no unreferenced or weakly referenced
 * objects.  It is useful for caches. <br>
 *
59
 * Weak references will be cleared as soon as the garbage collector
60 61 62 63 64 65 66 67 68 69 70 71 72
 * determines that the refered object is only weakly reachable.  They
 * are useful as keys in hashtables (see <code>WeakHashtable</code>) as
 * you get notified when nobody has the key anymore.
 *
 * Phantom references don't prevent finalization.  If an object is only
 * phantom reachable, it will be finalized, and the reference will be
 * enqueued, but not cleared.  Since you mustn't access an finalized
 * object, the <code>get</code> method of a phantom reference will never
 * work.  It is useful to keep track, when an object is finalized.
 *
 * @author Jochen Hoenicke
 * @see java.util.WeakHashtable
 */
73
public abstract class Reference<T>
74 75 76
{
  /**
   * The underlying object.  This field is handled in a special way by
77
   * the garbage collector.
78 79 80
   * GCJ LOCAL:
   * This is a RawData because it must be disguised from the GC.
   * END GCJ LOCAL
81
   */
82 83 84 85
  gnu.gcj.RawData referent;

  /**
   * This is like REFERENT but is not scanned by the GC.  We keep a
86 87
   * copy around so that we can clean up our internal data structure
   * even after clear() is called.
88
   * GCJ LOCAL:
89
   * This field doesn't exist in Classpath.
90 91 92
   * END GCJ LOCAL
   */
  gnu.gcj.RawData copy;
93 94

  /**
95 96 97 98 99 100 101 102 103 104
   * Set to true if {@link #clear()} is called.
   * GCJ LOCAL:
   * This field doesn't exist in Classpath.  It is used internally in
   * natReference.cc, which enqueues the reference unless it is true
   * (has been cleared).
   * END GCJ LOCAL
   */
  boolean cleared = false;

  /**
105 106 107
   * The queue this reference is registered on. This is null, if this
   * wasn't registered to any queue or reference was already enqueued.
   */
108
  ReferenceQueue<? super T> queue;
109 110 111 112 113 114 115 116 117 118 119

  /**
   * Link to the next entry on the queue.  If this is null, this
   * reference is not enqueued.  Otherwise it points to the next
   * reference.  The last reference on a queue will point to itself
   * (not to null, that value is used to mark a not enqueued
   * reference).  
   */
  Reference nextOnQueue;

  /**
120
   * This lock should be taken by the garbage collector, before
121 122 123 124 125 126 127 128 129 130 131
   * determining reachability.  It will prevent the get()-method to
   * return the reference so that reachability doesn't change.
   */
  static Object lock = new Object();

  /**
   * Creates a new reference that is not registered to any queue.
   * Since it is package private, it is not possible to overload this
   * class in a different package.  
   * @param referent the object we refer to.
   */
132
  Reference(T ref)
133
  {
134
    create (ref);
135 136 137 138 139 140 141 142 143 144
  }

  /**
   * Creates a reference that is registered to a queue.  Since this is
   * package private, it is not possible to overload this class in a
   * different package.  
   * @param referent the object we refer to.
   * @param q the reference queue to register on.
   * @exception NullPointerException if q is null.
   */
145
  Reference(T ref, ReferenceQueue<? super T> q)
146 147 148 149
  {
    if (q == null)
      throw new NullPointerException();
    queue = q;
150
    create (ref);
151 152 153
  }

  /**
154 155
   * Notifies the VM that a new Reference has been created.
   */
156
  private native void create (T o);
157 158

  /**
159 160 161 162
   * Returns the object, this reference refers to.
   * @return the object, this reference refers to, or null if the 
   * reference was cleared.
   */
163
  public native T get();
164 165 166 167

  /**
   * Clears the reference, so that it doesn't refer to its object
   * anymore.  For soft and weak references this is called by the
168
   * garbage collector.  For phantom references you should call 
169 170 171 172
   * this when enqueuing the reference.
   */
  public void clear()
  {
173 174 175 176 177 178
    // Must synchronize so changes are visible in finalizer thread.
    synchronized (lock)
      {
        referent = null;
        cleared = true;
      }
179 180 181 182 183 184 185 186 187 188 189 190 191
  }

  /**
   * Tells if the object is enqueued on a reference queue.
   * @return true if it is enqueued, false otherwise.
   */
  public boolean isEnqueued()
  {
    return nextOnQueue != null;
  }

  /**
   * Enqueue an object on a reference queue.  This is normally executed
192
   * by the garbage collector.
193 194 195
   */
  public boolean enqueue() 
  {
196
    if (queue != null && nextOnQueue == null)
197 198 199 200 201 202 203 204
      {
	queue.enqueue(this);
	queue = null;
	return true;
      }
    return false;
  }
}