Class DiskCache
Note that when a file in the cache is accessed, its lastModified date is set, which is used for the LRU scouring.
The cdm library sometimes needs to write files, eg to uncompress them, or for grib index files, etc. The first choice is to write these files in the same directory that the original file lives in. However, that directory may not be writeable, so we need to find a place to write them to. We also want to use the file if it already exists.
A writeable cache "root directory" is set:
- explicitly by setRootDirectory()
- through the system property "nj22.cache" if it exists
- by appending "/nj22/cache" to the system property "user.home" if it exists
- by appending "/nj22/cache" to the system property "user.dir" if it exists
- use "./nj22/cache" if none of the above
Scenario 1: want to uncompress a file; check to see if already have done so, otherwise get a File that can be written to.
// see if already uncompressed
File uncompressedFile = FileCache.getFile(uncompressedFilename, false);
if (!uncompressedFile.exists()) {
// nope, uncompress it
UncompressInputStream.uncompress(uriString, uncompressedFile);
}
doSomething(uncompressedFile);
Scenario 2: want to write a derived file always in the cache.
File derivedFile = FileCache.getCacheFile(derivedFilename);
if (!derivedFile.exists()) {
createDerivedFile(derivedFile);
}
doSomething(derivedFile);
Scenario 3: same as scenario 1, but use the default Cache policy:
File wf = FileCache.getFileStandardPolicy(uncompressedFilename);
if (!wf.exists()) {
writeToFile(wf);
wf.close();
}
doSomething(wf);
TODO will move in ver 6-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic voidcleanCache(long maxBytes, StringBuilder sbuff) Remove files if needed to make cache have less than maxBytes bytes file sizes.static voidcleanCache(long maxBytes, Comparator<File> fileComparator, StringBuilder sbuff) Remove files if needed to make cache have less than maxBytes bytes file sizes.static voidcleanCache(Date cutoff, StringBuilder sbuff) Remove all files with date < cutoff.static FilegetCacheFile(String fileLocation) Get a file in the cache.static FileGet a File if it exists.static FilegetFileStandardPolicy(String fileLocation) Get a File if it exists.static StringGet the name of the root directorystatic voidMake sure that the current root directory exists.static voidsetCachePolicy(boolean alwaysInCache) Set the standard policy used in getWriteableFileStandardPolicy().static voidsetRootDirectory(String cacheDir) Set the cache root directory.static voidshowCache(PrintStream pw)
-
Field Details
-
simulateUnwritableDir
public static boolean simulateUnwritableDirdebug only
-
-
Constructor Details
-
DiskCache
public DiskCache()
-
-
Method Details
-
setRootDirectory
Set the cache root directory. Create it if it doesnt exist.- Parameters:
cacheDir- the cache directory
-
makeRootDirectory
public static void makeRootDirectory()Make sure that the current root directory exists. -
getRootDirectory
Get the name of the root directory- Returns:
- name of the root directory
-
setCachePolicy
public static void setCachePolicy(boolean alwaysInCache) Set the standard policy used in getWriteableFileStandardPolicy(). Default is to try to create the file in the same directory as the original. Setting alwaysInCache to true means to always create it in the cache directory.- Parameters:
alwaysInCache- make this the default policy
-
getFileStandardPolicy
Get a File if it exists. If not, get a File that can be written to. Use the standard policy to decide where to place it.Things are a bit complicated, because in order to guarantee a file in an arbitrary location can be written to, we have to try to open it as a FileOutputStream. If we do, we don't want to open it twice, so we return a WriteableFile that contains an opened FileOutputStream. If it already exists, or we get it from cache, we don't need to open it.
In any case, you must call WriteableFile.close() to make sure its closed.
- Parameters:
fileLocation- normal file location- Returns:
- WriteableFile holding the writeable File and a possibly opened FileOutputStream (append false)
-
getFile
Get a File if it exists. If not, get a File that can be written to. If alwaysInCache, look only in the cache, otherwise, look in the "normal" location first, then in the cache.- Parameters:
fileLocation- normal file locationalwaysInCache- true if you want to look only in the cache- Returns:
- a File that either exists or is writeable.
-
getCacheFile
Get a file in the cache. File may or may not exist. We assume its always writeable. If it does exist, set its LastModifiedDate to current time.- Parameters:
fileLocation- normal file location- Returns:
- equivalent File in the cache.
-
showCache
-
cleanCache
Remove all files with date < cutoff.- Parameters:
cutoff- earliest date to allowsbuff- write results here, null is ok.
-
cleanCache
Remove files if needed to make cache have less than maxBytes bytes file sizes. This will remove oldest files first.- Parameters:
maxBytes- max number of bytes in cache.sbuff- write results here, null is ok.
-
cleanCache
Remove files if needed to make cache have less than maxBytes bytes file sizes. This will remove files in sort order defined by fileComparator. The first files in the sort order are kept, until the max bytes is exceeded, then they are deleted.- Parameters:
maxBytes- max number of bytes in cache.fileComparator- sort files first with thissbuff- write results here, null is ok.
-