/******************************************************************************* * Copyright (c) 2004, 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.jface.resource; import java.util.Collection; import java.util.HashMap; import java.util.Iterator; import java.util.Map; /** * Abstract implementation of ResourceManager. Maintains reference counts for all previously * allocated SWT resources. Delegates to the abstract method allocate(...) the first time a resource * is referenced and delegates to the abstract method deallocate(...) the last time a reference is * removed. * * @since 1.0 */ abstract class AbstractResourceManager extends ResourceManager { /** * Map of ResourceDescriptor onto RefCount. (null when empty) */ private HashMap map = null; /** * Holds a reference count for a previously-allocated resource */ private static class RefCount { Object resource; int count = 1; RefCount(Object resource) { this.resource = resource; } } /** * Called the first time a resource is requested. Should allocate and return a resource * of the correct type. * * @since 1.0 * * @param descriptor identifier for the resource to allocate * @return the newly allocated resource * @throws DeviceResourceException Thrown when allocation of an SWT device resource fails */ protected abstract Object allocate(DeviceResourceDescriptor descriptor) throws DeviceResourceException; /** * Called the last time a resource is dereferenced. Should release any resources reserved by * allocate(...). * * @since 1.0 * * @param resource resource being deallocated * @param descriptor identifier for the resource */ protected abstract void deallocate(Object resource, DeviceResourceDescriptor descriptor); /* (non-Javadoc) * @see ResourceManager#create(DeviceResourceDescriptor) */ public final Object create(DeviceResourceDescriptor descriptor) throws DeviceResourceException { // Lazily allocate the map if (map == null) { map = new HashMap(); } // Get the current reference count RefCount count = (RefCount)map.get(descriptor); if (count != null) { // If this resource already exists, increment the reference count and return // the existing resource. count.count++; return count.resource; } // Allocate and return a new resource (with ref count = 1) Object resource = allocate(descriptor); count = new RefCount(resource); map.put(descriptor, count); return resource; } /* (non-Javadoc) * @see ResourceManager#destroy(DeviceResourceDescriptor) */ public final void destroy(DeviceResourceDescriptor descriptor) { // If the map is empty (null) then there are no resources to dispose if (map == null) { return; } // Find the existing resource RefCount count = (RefCount)map.get(descriptor); if (count != null) { // If the resource exists, decrement the reference count. count.count--; if (count.count == 0) { // If this was the last reference, deallocate it. deallocate(count.resource, descriptor); map.remove(descriptor); } } // Null out the map when empty to save a small amount of memory if (map.isEmpty()) { map = null; } } /** * Deallocates any resources allocated by this registry that have not yet been * deallocated. * * @since 1.0 */ public void dispose() { super.dispose(); if (map == null) { return; } Collection entries = map.entrySet(); for (Iterator iter = entries.iterator(); iter.hasNext();) { Map.Entry next = (Map.Entry) iter.next(); Object key = next.getKey(); RefCount val = (RefCount)next.getValue(); deallocate(val.resource, (DeviceResourceDescriptor)key); } map = null; } /* (non-Javadoc) * @see org.eclipse.jface.resource.ResourceManager#find(org.eclipse.jface.resource.DeviceResourceDescriptor) */ public Object find(DeviceResourceDescriptor descriptor) { if (map == null) { return null; } RefCount refCount = (RefCount)map.get(descriptor); if (refCount == null) return null; return refCount.resource; } }