blob: e3ea7b513e5c263630ef2442903308ec3527e22f [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.harmony.luni.internal.io;
import java.util.HashMap;
import java.util.LinkedList;
/**
* A simple cache implementation for file's canonical path. The cache has fixed
* size <code> CACHE_SIZE </code> and cached elements would be expired. If
* <code>put<code> method is invoked when cache is full, the oldest element will be removed.
*
*/
public class FileCanonPathCache {
static private class CacheElement {
String canonicalPath;
long timestamp;
public CacheElement(String path) {
this.canonicalPath = path;
this.timestamp = System.currentTimeMillis();
}
}
/**
* Max elemnts could be hold in the cache.
*/
public static final int CACHE_SIZE = 256;
private static HashMap<String, CacheElement> cache = new HashMap<String, CacheElement>(
CACHE_SIZE);
/**
* FIFO queue for tracking age of elements.
*/
private static LinkedList<String> list = new LinkedList<String>();
private static Object lock = new Object();
/**
* Expired time.
*/
private static long timeout = 600000;
/**
* Retrieve element from cache.
*
* @param path
* absolute path.
* @return canonical path of <code>path</code> if it's in cache.
*
*/
public static String get(String path) {
CacheElement element = null;
synchronized (lock) {
element = cache.get(path);
}
if (element == null) {
return null;
}
long time = System.currentTimeMillis();
if (time - element.timestamp > timeout) {
// remove all elements older than this one
synchronized (lock) {
if (cache.get(path) != null) {
String oldest = null;
do {
oldest = list.removeFirst();
cache.remove(path);
} while (!path.equals(oldest));
}
}
return null;
}
return element.canonicalPath;
}
/**
* Put element to cache.
*
* @param path
* absolute path.
* @param canonicalPath
* the canonical path of <code>path</code>.
*/
public static void put(String path, String canonicalPath) {
CacheElement element = new CacheElement(canonicalPath);
synchronized (lock) {
if (cache.size() >= CACHE_SIZE) {
// cache is full
String oldest = list.removeFirst();
cache.remove(oldest);
}
cache.put(path, element);
list.addLast(path);
}
}
/**
* Remove all elements from cache.
*/
public static void clear() {
synchronized (lock) {
cache.clear();
list.clear();
}
}
public static long getTimeout() {
return timeout;
}
public static void setTimeout(long timeout) {
FileCanonPathCache.timeout = timeout;
}
}