Mir goes GPL
[mir.git] / source / mir / storage / DatabaseCache.java
1 /*
2  * Copyright (C) 2001, 2002  The Mir-coders group
3  *
4  * This file is part of Mir.
5  *
6  * Mir is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * Mir is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Mir; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  * In addition, as a special exception, The Mir-coders gives permission to link
21  * the code of this program with the com.oreilly.servlet library, any library
22  * licensed under the Apache Software License, The Sun (tm) Java Advanced
23  * Imaging library (JAI), The Sun JIMI library (or with modified versions of
24  * the above that use the same license as the above), and distribute linked
25  * combinations including the two.  You must obey the GNU General Public
26  * License in all respects for all of the code used other than the above
27  * mentioned libraries.  If you modify this file, you may extend this exception
28  * to your version of the file, but you are not obligated to do so.  If you do
29  * not wish to do so, delete this exception statement from your version.
30  */
31
32 package mir.storage;
33
34 import java.util.*;
35
36 public class DatabaseCache {
37   private final ArrayList _cache;
38   private int _counter;
39   private final int _max;
40   
41   public DatabaseCache(int i_max){
42     _counter = 0;
43     _max = i_max;
44     _cache = new ArrayList(_max);
45   }
46   
47   public DatabaseCache(){
48     _counter = -1;
49     _max = 100;
50     _cache = new ArrayList(_max);
51   }
52   
53   public synchronized void put(String key, Object value){
54     if(_counter >=_max){
55       _cache.remove(0);
56       _cache.trimToSize();
57       _counter --;
58       System.out.println("put: remove " + _counter);
59     }
60     _cache.add(new Entry(key,value));
61     _counter ++;
62     System.out.println("put: put " + _counter);
63   }
64   
65   public synchronized void clear(){
66     _cache.clear();
67   }
68       
69   public int containsKey(String key){
70     for(int i = 0; i<_cache.size(); i++){
71       if( _cache.get(i)!=null && ((Entry)_cache.get(i)).getKey().equals(key) )
72         return i;
73     }
74     return -1;
75   }
76   
77   public int containsValue(Object o){
78     for(int i = 0; i<_cache.size(); i++){
79       if( _cache.get(i)!=null && ((Entry)_cache.get(i)).getValue().equals(o) )
80         return i;
81     }
82     return -1;
83   }
84   
85   public Object get(String key){
86     for(int i = 0; i<_cache.size(); i++){
87       if( _cache.get(i) != null &&
88         ((Entry)_cache.get(i)).getKey(key) != null &&
89         ((Entry)_cache.get(i)).getKey(key).equals(key) ) {
90         System.out.println("test2: "+((Entry)_cache.get(i)).getKey(key));
91         return ((Entry)_cache.get(i)).getValue();
92       }
93     }
94     return null;
95   }
96   
97   public synchronized boolean remove(String key){
98     int i = containsKey(key);
99     if(i==-1){
100       return false;
101     }
102     _cache.remove(i);
103     _cache.trimToSize();
104     _counter --;
105     return true;
106   }
107   
108   public int size(){
109     return _counter;
110   }
111   
112   private class Entry {
113     private String _key;
114     private Object _value;
115     
116     public Entry(String i_key, Object i_value){
117       _key = i_key;
118       _value = i_value;
119     }
120         
121     public void put(String i_key, Object i_value){
122       _key = i_key;
123       _value = i_value;
124     }
125     
126     public Object getValue(String i_key){
127       if(i_key.equals(_key)){
128         return _value;
129       } else {
130         return null;
131       }
132     }
133     
134     public Object getValue(){
135       return _value;
136     }
137     
138     public String getKey(Object i_o){
139       if(i_o.equals(_value)){
140         return _key;
141       } else {
142         return null;
143       }
144     }
145
146     public String getKey(){
147         return _key;
148     }
149   }//Entry
150
151 }
152
153