Package org.opengrok.indexer.history
Class FileAnnotationCache
java.lang.Object
org.opengrok.indexer.history.AbstractCache
org.opengrok.indexer.history.FileAnnotationCache
- All Implemented Interfaces:
AnnotationCache
,Cache
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
clear
(RepositoryInfo repository) Clear the cache for a repository.Retrieve annotation from cache.getInfo()
Get a string with information about the cache.void
Create and initialize an empty cache if one doesn't exist already.boolean
isUpToDate
(File file) This is potentially expensive operation as the cache entry has to be retrieved from disk in order to tell whether it is stale or not.void
optimize()
Optimize how the history is stored on disk.void
store
(File file, Annotation annotation) Store annotation for file into cache.boolean
supportsRepository
(Repository repository) Check whether this cache implementation can store history for the given repository.Methods inherited from class org.opengrok.indexer.history.AbstractCache
clearCache, clearFile, hasCacheForFile
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.opengrok.indexer.history.AnnotationCache
clearFile
Methods inherited from interface org.opengrok.indexer.history.Cache
clearCache, hasCacheForFile
-
Constructor Details
-
FileAnnotationCache
public FileAnnotationCache()
-
-
Method Details
-
initialize
public void initialize()Description copied from interface:Cache
Create and initialize an empty cache if one doesn't exist already.- Specified by:
initialize
in interfaceCache
-
getCacheFileSuffix
- Specified by:
getCacheFileSuffix
in interfaceCache
- Overrides:
getCacheFileSuffix
in classAbstractCache
- Returns:
- suffix used for the cache files
-
isUpToDate
This is potentially expensive operation as the cache entry has to be retrieved from disk in order to tell whether it is stale or not.- Specified by:
isUpToDate
in interfaceCache
- Parameters:
file
- source file- Returns:
- indication whether the cache entry is fresh
-
get
Description copied from interface:AnnotationCache
Retrieve annotation from cache.- Specified by:
get
in interfaceAnnotationCache
- Parameters:
file
- file under source root to get the annotation forrev
- requested revision- Returns:
Annotation
object ornull
- Throws:
CacheException
- on error
-
store
Description copied from interface:AnnotationCache
Store annotation for file into cache.- Specified by:
store
in interfaceAnnotationCache
- Parameters:
file
- file under source root to store the annotation forannotation
-Annotation
object- Throws:
CacheException
- on error
-
clear
Description copied from interface:Cache
Clear the cache for a repository. -
optimize
public void optimize()Description copied from interface:Cache
Optimize how the history is stored on disk. This method is typically called after the cache has been populated, or after large modifications to the cache. The exact effect of this method is specific to each implementation, but it may for example include compressing, compacting or reordering the disk image of the cache in order to optimize performance or space usage. -
supportsRepository
Description copied from interface:Cache
Check whether this cache implementation can store history for the given repository.- Specified by:
supportsRepository
in interfaceCache
- Parameters:
repository
- the repository to check- Returns:
true
if this cache implementation can store history for the repository, orfalse
otherwise
-
getCacheDirName
- Specified by:
getCacheDirName
in interfaceCache
- Returns:
- directory name to be used to store cache files under data root
-
getInfo
Description copied from interface:Cache
Get a string with information about the cache.
-