Umesh Krishnaswamy | 345ee99 | 2012-12-13 20:29:48 -0800 | [diff] [blame] | 1 | /** |
| 2 | * Copyright 2011, Big Switch Networks, Inc. |
| 3 | * Originally created by David Erickson, Stanford University |
| 4 | * |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 6 | * not use this file except in compliance with the License. You may obtain |
| 7 | * a copy of the License at |
| 8 | * |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 13 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 14 | * License for the specific language governing permissions and limitations |
| 15 | * under the License. |
| 16 | **/ |
| 17 | |
| 18 | package net.floodlightcontroller.util; |
| 19 | |
| 20 | import com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap; |
| 21 | import java.util.concurrent.ConcurrentMap; |
| 22 | |
| 23 | /** |
| 24 | * The key is any object/hash-code |
| 25 | * The value is time-stamp in milliseconds |
| 26 | * The time interval denotes the interval for which the entry should remain in the hashmap. |
| 27 | * If an entry is present in the Linkedhashmap, it does not mean that it's valid (recently seen) |
| 28 | * |
| 29 | * @param <K> Type of the values in this cache |
| 30 | */ |
| 31 | public class TimedCache<K> { |
| 32 | private final long timeoutInterval; //specified in milliseconds. |
| 33 | private ConcurrentMap<K, Long> cache; |
| 34 | |
| 35 | /** |
| 36 | * |
| 37 | * @param capacity the maximum number of entries in the cache before the |
| 38 | * oldest entry is evicted. |
| 39 | * @param timeToLive specified in milliseconds |
| 40 | */ |
| 41 | public TimedCache(int capacity, int timeToLive) { |
| 42 | cache = new ConcurrentLinkedHashMap.Builder<K, Long>() |
| 43 | .maximumWeightedCapacity(capacity) |
| 44 | .build(); |
| 45 | this.timeoutInterval = timeToLive; |
| 46 | } |
| 47 | |
| 48 | public long getTimeoutInterval() { |
| 49 | return this.timeoutInterval; |
| 50 | } |
| 51 | |
| 52 | /** |
| 53 | * Always try to update the cache and set the last-seen value for this key. |
| 54 | * |
| 55 | * Return true, if a valid existing field was updated, else return false. |
| 56 | * (note: if multiple threads update simultaneously, one of them will succeed, |
| 57 | * other wills return false) |
| 58 | * |
| 59 | * @param key |
| 60 | * @return boolean |
| 61 | */ |
| 62 | public boolean update(K key) |
| 63 | { |
| 64 | Long curr = new Long(System.currentTimeMillis()); |
| 65 | Long prev = cache.putIfAbsent(key, curr); |
| 66 | |
| 67 | if (prev == null) { |
| 68 | return false; |
| 69 | } |
| 70 | |
| 71 | if (curr - prev > this.timeoutInterval) { |
| 72 | if (cache.replace(key, prev, curr)) { |
| 73 | return false; |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | return true; |
| 78 | } |
| 79 | } |