Soft HashMap : Soft Map « Collections Data Structure « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JavaFX
25.JDK 6
26.JDK 7
27.JNDI LDAP
28.JPA
29.JSP
30.JSTL
31.Language Basics
32.Network Protocol
33.PDF RTF
34.Reflection
35.Regular Expressions
36.Scripting
37.Security
38.Servlets
39.Spring
40.Swing Components
41.Swing JFC
42.SWT JFace Eclipse
43.Threads
44.Tiny Application
45.Velocity
46.Web Services SOA
47.XML
Java » Collections Data Structure » Soft Map 




Soft HashMap
 


/*
 * dbXML - Native XML Database
 * Copyright (C) 1999-2004  The dbXML Group, L.L.C.
 *
 * This program 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
 * of the License, or (at your option) any later version.
 *
 * This program 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 this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 *
 * $Id: SoftHashMap.java,v 1.2 2004/02/12 00:17:58 bradford Exp $
 */

import java.lang.ref.ReferenceQueue;
import java.lang.ref.SoftReference;
import java.util.AbstractMap;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;

/**
 * SoftHashMap
 */

public final class SoftHashMap extends AbstractMap {
   private Map hash = new HashMap();
   private final ReferenceQueue queue = new ReferenceQueue();

   public SoftHashMap() {
   }

   public Object get(Object key) {
      Object res = null;
      SoftReference sr = (SoftReference)hash.get(key);
      if sr != null ) {
         res = sr.get();
         if res == null )
            hash.remove(key);
      }
      return res;
   }

   private void processQueue() {
      for ;; ) {
         SoftValue sv = (SoftValue)queue.poll();
         if sv != null )
            hash.remove(sv.key);
         else
            return;
      }
   }

   public Object put(Object key, Object value) {
      processQueue();
      return hash.put(key, new SoftValue(value, key, queue));
   }

   public Object remove(Object key) {
      processQueue();
      return hash.remove(key);
   }

   public void clear() {
      processQueue();
      hash.clear();
   }

   public int size() {
      processQueue();
      return hash.size();
   }

   public Set entrySet() {
      /** @todo Figure this out */
      throw new UnsupportedOperationException();
   }


   /**
    * SoftValue
    */

   private static class SoftValue extends SoftReference {
      private final Object key;

      private SoftValue(Object k, Object key, ReferenceQueue q) {
         super(k, q);
         this.key = key;
      }
   }
}

   
  














Related examples in the same category
1.Soft Valued HashMap
2.A java.util.Map implementation with soft values
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.