/* * GeoTools - The Open Source Java GIS Toolkit * http://geotools.org * * (C) 2003-2008, Open Source Geospatial Foundation (OSGeo) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License. * * This library 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 * Lesser General Public License for more details. */ package org.geotools.resources; import java.lang.reflect.Method; import java.nio.ByteBuffer; import java.security.AccessController; import java.security.PrivilegedAction; import java.util.logging.Level; import org.geotools.util.logging.Logging; /** * Utility class for managing memory mapped buffers. * * @since 2.0 * @source $URL$ * @version $Id$ * @author Andrea Aimes */ public final class NIOUtilities { /** * {@code true} if a warning has already been logged. */ private static boolean warned = false; /** * Do not allows instantiation of this class. */ private NIOUtilities() { } /** * Really closes a {@code MappedByteBuffer} without the need to wait for garbage * collection. Any problems with closing a buffer on Windows (the problem child in this * case) will be logged as {@code SEVERE} to the logger of the package name. To * force logging of errors, set the System property "org.geotools.io.debugBuffer" to "true". * * @param buffer The buffer to close. * @return true if the operation was successful, false otherwise. * * @see java.nio.MappedByteBuffer */ public static boolean clean(final ByteBuffer buffer) { if (buffer == null || ! buffer.isDirect() ) { return false; } Boolean b = AccessController.doPrivileged(new PrivilegedAction<Boolean>() { public Boolean run() { Boolean success = Boolean.FALSE; try { Method getCleanerMethod = buffer.getClass().getMethod("cleaner", (Class[])null); getCleanerMethod.setAccessible(true); Object cleaner = getCleanerMethod.invoke(buffer, (Object[])null); Method clean = cleaner.getClass().getMethod("clean", (Class[])null); clean.invoke(cleaner, (Object[])null); success = Boolean.TRUE; } catch (Exception e) { // This really is a show stopper on windows if (isLoggable()) { log(e, buffer); } } return success; } }); return b.booleanValue(); } /** * Checks if a warning message should be logged. */ private static synchronized boolean isLoggable() { try { return !warned && ( Boolean.getBoolean("org.geotools.io.debugBuffer") || System.getProperty("os.name").indexOf("Windows") >= 0 ); } catch (SecurityException exception) { // The utilities may be running in an Applet, in which case we // can't read properties. Assumes we are not in debugging mode. return false; } } /** * Logs a warning message. */ private static synchronized void log(final Exception e, final ByteBuffer buffer) { warned = true; String message = "Error attempting to close a mapped byte buffer : " + buffer.getClass().getName() + "\n JVM : " + System.getProperty("java.version") + ' ' + System.getProperty("java.vendor"); Logging.getLogger("org.geotools.io").log(Level.SEVERE, message, e); } }