Async LRU List : Cache « Development Class « Java

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. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Development Class » CacheScreenshots 
Async LRU List
   
// LRUList.java
// $Id: LRUList.java,v 1.7 2000/08/16 21:37:58 ylafon Exp $
// (c) COPYRIGHT MIT and INRIA, 1996.
// Please first read the full copyright statement in file COPYRIGHT.html
// AsyncLRUList.java
// $Id: AsyncLRUList.java,v 1.10 1998/01/22 14:24:58 bmahe Exp $
// (c) COPYRIGHT MIT and INRIA, 1996.
// Please first read the full copyright statement in file COPYRIGHT.html


// All locks allocated from left to right

public class AsyncLRUList extends LRUList {

    public final synchronized void toHead(LRUAble node) {
  _remove(node;
  if head.next != null ) {
      node.setNext(head.next;
      head.next.setPrev(node;
      node.setPrev(head;
      head.next = node ;
  else {
      node.setNext(head.next;
      // head.next.setPrev(node) ;
      node.setPrev(head;
      head.next = node ;
  }
    }
      
    public final synchronized void toTail(LRUAble node) {
  _remove(node;
  if tail.prev != null ) {
      node.setPrev(tail.prev;
      tail.prev.setNext(node;
      node.setNext(tail;
      tail.prev = node ;
  else {
      node.setPrev(tail.prev;
      // tail.prev.setNext(node) ;
      node.setNext(tail;
      tail.prev = node ;
  }
    }
      

    private final synchronized void _remove(LRUAble node) {
  LRUAble itsPrev = node.getPrev() ;
  if(itsPrev==null
      return ;
  LRUAble itsNext = node.getNext() ;
  node.setNext(null);
  node.setPrev(null);
  itsPrev.setNext(itsNext;
  if itsNext == null )
      return;
  itsNext.setPrev(itsPrev;
    }

    public final synchronized LRUAble remove(LRUAble node) {
  _remove(node;
  node.setNext((LRUAblenull;
  node.setPrev((LRUAblenull;
  return node ;
    }

    public final synchronized LRUAble getTail() {
  if tail.prev == null )
      return null;
  LRUAble prev = tail.prev ;
  return (prev == headnull : prev;
    }

    public final synchronized LRUAble getHead() {
  LRUAble next = head.next;
  return (next == tailnull : next;
    }

    public final synchronized LRUAble removeTail() {
  return (tail.prev != head? remove(tail.prevnull;
    }

    public final synchronized LRUAble getNext(LRUAble node) {
  LRUAble next = node.getNext();
  return ((next == tail|| (next == head)) null : next;
    }

    public final synchronized LRUAble getPrev(LRUAble node) {
  LRUAble prev = node.getPrev();
  return ((prev == tail|| (prev == head)) null : prev;
    }

    
}

 abstract class LRUList {
    protected LRUNode head ;
    protected LRUNode tail ;

    public LRUList()
    {
  this.head = new LRUNode() ;
  this.tail = new LRUNode() ;
  head.prev = null ;
  head.next = tail ;
  tail.prev = head ;
  tail.next = null ;
    }

    /**
     * Moves node to front of list. It can be a new node, or it can be 
     * an existing node.
     @param node the node
     */

    public abstract void toHead(LRUAble node;

    /**
     * Moves node to back of list. It can be a new node, or it can be
     * an existing node.
     @param node the node
     */

    public abstract void toTail(LRUAble node;

    /**
     * Removes node if it's in list.
     * Does nothing if it's not.
     * When a node is removed, both its links are set to null.
     @param node The node to remove
     @return the same node
     */

    public abstract LRUAble remove(LRUAble node;

    /**
     * Obtain the backmost node.
     @return the backmost node, or null if list is empty
     */

    public abstract LRUAble getTail() ;

    /**
     * Obtain the frontmost node.
     @return the frontmost node, or null if list is empty
     */

    public abstract LRUAble getHead() ;

    /**
     * Obtain the backmost node, and remove it from list too.
     @return the backmost node, or null if list is empty
     */

    public abstract LRUAble removeTail() ;

    /**
     * Get the next node of this list.
     @return The next node, or <strong>null</strong> if this one was
     * last.
     */

    abstract public LRUAble getNext(LRUAble node;

    /**
     * Get the previous node of this list.
     @return The previous node, or <strong>null</strong> if this one was
     * last.
     */

    abstract public LRUAble getPrev(LRUAble node;

}
//LRUNode.java
//$Id: LRUNode.java,v 1.4 2003/02/14 16:14:56 ylafon Exp $
//(c) COPYRIGHT MIT and INRIA, 1996.
//Please first read the full copyright statement in file COPYRIGHT.html

class LRUNode implements LRUAble {
  protected LRUAble prev ;
  protected LRUAble next ;

  public LRUNode() {
this.prev = null ;
this.next = null ;
  }

  public LRUNode(LRUAble prev,LRUAble next) {
this.prev = prev ;
this.next = next ;
  }

  public LRUAble getNext() {
return next ;
  }

  public LRUAble getPrev() {

return prev;
  }

  public void setPrev(LRUAble prev) {
this.prev = prev ;
  }

  public void setNext(LRUAble next) {
this.next = next ;
  }
}
//LRUAble.java
//$Id: LRUAble.java,v 1.3 1998/01/22 14:25:09 bmahe Exp $  
//(c) COPYRIGHT MIT and INRIA, 1997.
//Please first read the full copyright statement in file COPYRIGHT.html
interface LRUAble {
 public LRUAble getNext() ;
 public LRUAble getPrev() ;
 public void setNext(LRUAble next;
 public void setPrev(LRUAble prev;

}

   
    
    
  
Related examples in the same category
1. A LRU (Least Recently Used) cache replacement policy
2. A Map that is size-limited using an LRU algorithm
3. A random cache replacement policy
4. A second chance FIFO (First In First Out) cache replacement policy
5. An LRU (Least Recently Used) cache replacement policy
6. FIFO First In First Out cache replacement policy
7. Implementation of a Least Recently Used cache policy
8. Generic LRU Cache
9. LRU Cache
10. A Least Recently Used Cache
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.