1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439
|
/*
* 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.naming.resources;
import java.util.HashMap;
import java.util.Random;
/**
* Implements a special purpose cache.
*
* @author <a href="mailto:remm@apache.org">Remy Maucherat</a>
*/
public class ResourceCache {
// ----------------------------------------------------------- Constructors
public ResourceCache() {
// NO-OP
}
// ----------------------------------------------------- Instance Variables
/**
* Random generator used to determine elements to free.
*/
protected Random random = new Random();
/**
* Cache.
* Path -> Cache entry.
*/
protected CacheEntry[] cache = new CacheEntry[0];
/**
* Not found cache.
*/
protected HashMap<String,CacheEntry> notFoundCache =
new HashMap<String,CacheEntry>();
/**
* Max size of resources which will have their content cached.
*/
protected int cacheMaxSize = 10240; // 10 MB
/**
* Max amount of removals during a make space.
*/
protected int maxAllocateIterations = 20;
/**
* Entry hit ratio at which an entry will never be removed from the cache.
* Compared with entry.access / hitsCount
*/
protected long desiredEntryAccessRatio = 3;
/**
* Spare amount of not found entries.
*/
protected int spareNotFoundEntries = 500;
/**
* Current cache size in KB.
*/
protected int cacheSize = 0;
/**
* Number of accesses to the cache.
*/
protected long accessCount = 0;
/**
* Number of cache hits.
*/
protected long hitsCount = 0;
// ------------------------------------------------------------- Properties
/**
* Return the access count.
* Note: Update is not synced, so the number may not be completely
* accurate.
* TODO: Currently unused. Expose via JMX?
*/
public long getAccessCount() {
return accessCount;
}
/**
* Return the maximum size of the cache in KB.
* TODO: Currently unused. Expose via JMX?
*/
public int getCacheMaxSize() {
return cacheMaxSize;
}
/**
* Set the maximum size of the cache in KB.
*/
public void setCacheMaxSize(int cacheMaxSize) {
this.cacheMaxSize = cacheMaxSize;
}
/**
* Return the current cache size in KB.
* TODO: Currently unused. Expose via JMX?
*/
public int getCacheSize() {
return cacheSize;
}
/**
* Return desired entry access ratio.
* @deprecated - unused
*/
@Deprecated
public long getDesiredEntryAccessRatio() {
return desiredEntryAccessRatio;
}
/**
* Set the desired entry access ratio.
* @deprecated - unused
*/
@Deprecated
public void setDesiredEntryAccessRatio(long desiredEntryAccessRatio) {
this.desiredEntryAccessRatio = desiredEntryAccessRatio;
}
/**
* Return the number of cache hits.
* Note: Update is not synced, so the number may not be completely
* accurate.
* TODO: Currently unused. Expose via JMX?
*/
public long getHitsCount() {
return hitsCount;
}
/**
* Return the maximum amount of iterations during a space allocation.
* @deprecated - unused
*/
@Deprecated
public int getMaxAllocateIterations() {
return maxAllocateIterations;
}
/**
* Set the maximum amount of iterations during a space allocation.
* @deprecated - unused
*/
@Deprecated
public void setMaxAllocateIterations(int maxAllocateIterations) {
this.maxAllocateIterations = maxAllocateIterations;
}
/**
* Return the amount of spare not found entries.
* @deprecated - unused
*/
@Deprecated
public int getSpareNotFoundEntries() {
return spareNotFoundEntries;
}
/**
* Set the amount of spare not found entries.
* @deprecated - unused
*/
@Deprecated
public void setSpareNotFoundEntries(int spareNotFoundEntries) {
this.spareNotFoundEntries = spareNotFoundEntries;
}
// --------------------------------------------------------- Public Methods
public boolean allocate(int space) {
int toFree = space - (cacheMaxSize - cacheSize);
if (toFree <= 0) {
return true;
}
// Increase the amount to free so that allocate won't have to run right
// away again
toFree += (cacheMaxSize / 20);
int size = notFoundCache.size();
if (size > spareNotFoundEntries) {
notFoundCache.clear();
cacheSize -= size;
toFree -= size;
}
if (toFree <= 0) {
return true;
}
int attempts = 0;
int entriesFound = 0;
long totalSpace = 0;
int[] toRemove = new int[maxAllocateIterations];
while (toFree > 0) {
if (attempts == maxAllocateIterations) {
// Give up, no changes are made to the current cache
return false;
}
if (toFree > 0) {
// Randomly select an entry in the array
int entryPos = -1;
boolean unique = false;
while (!unique) {
unique = true;
entryPos = random.nextInt(cache.length) ;
// Guarantee uniqueness
for (int i = 0; i < entriesFound; i++) {
if (toRemove[i] == entryPos) {
unique = false;
}
}
}
long entryAccessRatio =
((cache[entryPos].accessCount * 100) / accessCount);
if (entryAccessRatio < desiredEntryAccessRatio) {
toRemove[entriesFound] = entryPos;
totalSpace += cache[entryPos].size;
toFree -= cache[entryPos].size;
entriesFound++;
}
}
attempts++;
}
// Now remove the selected entries
java.util.Arrays.sort(toRemove, 0, entriesFound);
CacheEntry[] newCache = new CacheEntry[cache.length - entriesFound];
int pos = 0;
int n = -1;
if (entriesFound > 0) {
n = toRemove[0];
for (int i = 0; i < cache.length; i++) {
if (i == n) {
if ((pos + 1) < entriesFound) {
n = toRemove[pos + 1];
pos++;
} else {
pos++;
n = -1;
}
} else {
newCache[i - pos] = cache[i];
}
}
}
cache = newCache;
cacheSize -= totalSpace;
return true;
}
public CacheEntry lookup(String name) {
CacheEntry cacheEntry = null;
CacheEntry[] currentCache = cache;
accessCount++;
int pos = find(currentCache, name);
if ((pos != -1) && (name.equals(currentCache[pos].name))) {
cacheEntry = currentCache[pos];
}
if (cacheEntry == null) {
try {
cacheEntry = notFoundCache.get(name);
} catch (Exception e) {
// Ignore: the reliability of this lookup is not critical
}
}
if (cacheEntry != null) {
hitsCount++;
}
return cacheEntry;
}
public void load(CacheEntry entry) {
if (entry.exists) {
if (insertCache(entry)) {
cacheSize += entry.size;
}
} else {
int sizeIncrement = (notFoundCache.get(entry.name) == null) ? 1 : 0;
notFoundCache.put(entry.name, entry);
cacheSize += sizeIncrement;
}
}
public boolean unload(String name) {
CacheEntry removedEntry = removeCache(name);
if (removedEntry != null) {
cacheSize -= removedEntry.size;
return true;
} else if (notFoundCache.remove(name) != null) {
cacheSize--;
return true;
}
return false;
}
/**
* Find a map element given its name in a sorted array of map elements.
* This will return the index for the closest inferior or equal item in the
* given array.
*/
private static final int find(CacheEntry[] map, String name) {
int a = 0;
int b = map.length - 1;
// Special cases: -1 and 0
if (b == -1) {
return -1;
}
if (name.compareTo(map[0].name) < 0) {
return -1;
}
if (b == 0) {
return 0;
}
int i = 0;
while (true) {
i = (b + a) >>> 1;
int result = name.compareTo(map[i].name);
if (result > 0) {
a = i;
} else if (result == 0) {
return i;
} else {
b = i;
}
if ((b - a) == 1) {
int result2 = name.compareTo(map[b].name);
if (result2 < 0) {
return a;
} else {
return b;
}
}
}
}
/**
* Insert into the right place in a sorted MapElement array, and prevent
* duplicates.
*/
private final boolean insertCache(CacheEntry newElement) {
CacheEntry[] oldCache = cache;
int pos = find(oldCache, newElement.name);
if ((pos != -1) && (newElement.name.equals(oldCache[pos].name))) {
return false;
}
CacheEntry[] newCache = new CacheEntry[cache.length + 1];
System.arraycopy(oldCache, 0, newCache, 0, pos + 1);
newCache[pos + 1] = newElement;
System.arraycopy
(oldCache, pos + 1, newCache, pos + 2, oldCache.length - pos - 1);
cache = newCache;
return true;
}
/**
* Insert into the right place in a sorted MapElement array.
*/
private final CacheEntry removeCache(String name) {
CacheEntry[] oldCache = cache;
int pos = find(oldCache, name);
if ((pos != -1) && (name.equals(oldCache[pos].name))) {
CacheEntry[] newCache = new CacheEntry[cache.length - 1];
System.arraycopy(oldCache, 0, newCache, 0, pos);
System.arraycopy(oldCache, pos + 1, newCache, pos,
oldCache.length - pos - 1);
cache = newCache;
return oldCache[pos];
}
return null;
}
}
|