some codeformatting, license for the new classes
[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 package mir.storage;
32
33 import java.util.ArrayList;
34
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
61     _cache.add(new Entry(key, value));
62     _counter++;
63     System.out.println("put: put " + _counter);
64   }
65
66   public synchronized void clear() {
67     _cache.clear();
68   }
69
70   public int containsKey(String key) {
71     for (int i = 0; i < _cache.size(); i++) {
72       if ((_cache.get(i) != null) &&
73           ((Entry) _cache.get(i)).getKey().equals(key)) {
74         return i;
75       }
76     }
77
78     return -1;
79   }
80
81   public int containsValue(Object o) {
82     for (int i = 0; i < _cache.size(); i++) {
83       if ((_cache.get(i) != null) &&
84           ((Entry) _cache.get(i)).getValue().equals(o)) {
85         return i;
86       }
87     }
88
89     return -1;
90   }
91
92   public Object get(String key) {
93     for (int i = 0; i < _cache.size(); i++) {
94       if ((_cache.get(i) != null) &&
95           (((Entry) _cache.get(i)).getKey(key) != null) &&
96           ((Entry) _cache.get(i)).getKey(key).equals(key)) {
97         System.out.println("test2: " + ((Entry) _cache.get(i)).getKey(key));
98
99         return ((Entry) _cache.get(i)).getValue();
100       }
101     }
102
103     return null;
104   }
105
106   public synchronized boolean remove(String key) {
107     int i = containsKey(key);
108
109     if (i == -1) {
110       return false;
111     }
112
113     _cache.remove(i);
114     _cache.trimToSize();
115     _counter--;
116
117     return true;
118   }
119
120   public int size() {
121     return _counter;
122   }
123
124   private class Entry {
125     private String _key;
126     private Object _value;
127
128     public Entry(String i_key, Object i_value) {
129       _key = i_key;
130       _value = i_value;
131     }
132
133     public void put(String i_key, Object i_value) {
134       _key = i_key;
135       _value = i_value;
136     }
137
138     public Object getValue(String i_key) {
139       if (i_key.equals(_key)) {
140         return _value;
141       } else {
142         return null;
143       }
144     }
145
146     public Object getValue() {
147       return _value;
148     }
149
150     public String getKey(Object i_o) {
151       if (i_o.equals(_value)) {
152         return _key;
153       } else {
154         return null;
155       }
156     }
157
158     public String getKey() {
159       return _key;
160     }
161   }
162    //Entry
163 }