/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code 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
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
* This class is used for registering and disposing the native
* data associated with java objects.
*
* The object can register itself by calling one of the addRecord
* methods and providing either the pointer to the native disposal
* method or a descendant of the DisposerRecord class with overridden
* dispose() method.
*
* When the object becomes unreachable, the dispose() method
* of the associated DisposerRecord object will be called.
*
* @see DisposerRecord
*/
static {
initIDs();
} else {
}
}
disposerInstance = new Disposer();
/* The thread must be a member of a thread group
* which will not get GCed before VM exit.
* Make its parent the top-level thread group.
*/
Thread t =
t.setDaemon(true);
t.start();
return null;
}
}
);
}
/**
* Registers the object and the native data for later disposal.
* @param target Object to be registered
* @param disposeMethod pointer to the native disposal method
* @param pData pointer to the data to be passed to the
* native disposal method
*/
long disposeMethod, long pData)
{
}
/**
* Registers the object and the native data for later disposal.
* @param target Object to be registered
* @param rec the associated DisposerRecord object
* @see DisposerRecord
*/
}
/**
* Performs the actual registration of the target object to be disposed.
* @param target Object to be registered, or if target is an instance
* of DisposerTarget, its associated disposer referent
* will be the Object that is registered
* @param rec the associated DisposerRecord object
* @see DisposerRecord
*/
if (target instanceof DisposerTarget) {
}
} else {
}
}
public void run() {
while (true) {
try {
} catch (Exception e) {
e.printStackTrace();
}
}
}
/*
* This is a marker interface that, if implemented, means it
* doesn't acquire any special locks, and is safe to
* be disposed in the poll loop on whatever thread
* which happens to be the Toolkit thread, is in use.
*/
public static interface PollDisposable {
};
private static void clearDeferredRecords() {
return;
}
try {
} catch (Exception e) {
e.printStackTrace();
}
}
}
/*
* Set to indicate the queue is presently being polled.
*/
public static volatile boolean pollingQueue = false;
/*
* The pollRemove() method is called back from a dispose method
* that is running on the toolkit thread and wants to
* dispose any pending refs that are safe to be disposed
* on that thread.
*/
public static void pollRemove() {
/* This should never be called recursively, so this check
* is just a safeguard against the unexpected.
*/
if (pollingQueue) {
return;
}
pollingQueue = true;
int freed = 0;
int deferred = 0;
try {
freed++;
if (rec instanceof PollDisposable) {
} else {
continue;
}
deferred++;
if (deferredRecords == null) {
}
}
}
} catch (Exception e) {
e.printStackTrace();
} finally {
pollingQueue = false;
}
}
private static native void initIDs();
/*
* This was added for use by the 2D font implementation to avoid creation
* of an additional disposer thread.
* WARNING: this thread class monitors a specific queue, so a reference
* added here must have been created with this queue. Failure to do
* so will clutter the records hashmap and no one will be cleaning up
* the reference queue.
*/
}
}
/* This is intended for use in conjunction with addReference(..)
*/
return queue;
}
}