* @return the number of cleaned items
*/
public int clean(boolean onlyOld) {
- return clean(onlyOld, dir);
- }
-
- /**
- * Clean the cache (delete the cached items) in the given cache directory.
- *
- * @param onlyOld
- * only clean the files that are considered too old for stable
- * resources
- * @param cacheDir
- * the cache directory to clean
- *
- * @return the number of cleaned items
- */
- private int clean(boolean onlyOld, File cacheDir) {
long ms = System.currentTimeMillis();
tracer.trace("Cleaning cache from old files...");
- int num = doClean(onlyOld, cacheDir);
+ int num = clean(onlyOld, dir, -1);
- tracer.trace("Cache cleaned in " + (System.currentTimeMillis() - ms)
- + " ms");
+ tracer.trace(num + "cache items cleaned in "
+ + (System.currentTimeMillis() - ms) + " ms");
return num;
}
/**
- * Actual work done for {@link Cache#clean(boolean, File)}.
+ * Clean the cache (delete the cached items) in the given cache directory.
*
* @param onlyOld
* only clean the files that are considered too old for stable
* resources
* @param cacheDir
* the cache directory to clean
+ * @param limit
+ * stop after limit files deleted, or -1 for unlimited
*
* @return the number of cleaned items
*/
- private int doClean(boolean onlyOld, File cacheDir) {
+ private int clean(boolean onlyOld, File cacheDir, int limit) {
int num = 0;
File[] files = cacheDir.listFiles();
if (files != null) {
for (File file : files) {
+ if (limit >= 0 && num >= limit) {
+ return num;
+ }
+
if (file.isDirectory()) {
- num += doClean(onlyOld, file);
+ num += clean(onlyOld, file, limit);
+ file.delete(); // only if empty
} else {
if (!onlyOld || isOld(file, true)) {
if (file.delete()) {
* in case of I/O error
*/
private void save(InputStream in, File cached) throws IOException {
- clean(true);
+ clean(true, dir, 10);
IOUtils.write(in, cached);
}
if (cache != null) {
InputStream in = cache.load(originalUrl, false, stable);
if (in != null) {
- tracer.trace("Take from cache: " + url);
- tracer.trace("Original URL from cache: " + originalUrl);
+ tracer.trace("Use the cache: " + url);
+ tracer.trace("Original URL : " + originalUrl);
return in;
}
}
builder.append(';');
}
- // TODO: check if format is ok
builder.append(cookie.toString());
}