FS: re-order fields and use all uppercase for true constants

Change-Id: I49fb77d6a12ae9083b5bf5779dc74a3dc49d7594
Signed-off-by: Thomas Wolf <thomas.wolf@paranor.ch>
This commit is contained in:
Thomas Wolf 2020-01-27 17:01:27 +01:00 committed by Matthias Sohn
parent 64715a189f
commit af05850485
1 changed files with 15 additions and 15 deletions

View File

@ -204,20 +204,7 @@ public final static class FileStoreAttributes {
public static final FileStoreAttributes FALLBACK_FILESTORE_ATTRIBUTES = new FileStoreAttributes(
FALLBACK_TIMESTAMP_RESOLUTION);
private static final Map<FileStore, FileStoreAttributes> attributeCache = new ConcurrentHashMap<>();
private static final SimpleLruCache<Path, FileStoreAttributes> attrCacheByPath = new SimpleLruCache<>(
100, 0.2f);
private static AtomicBoolean background = new AtomicBoolean();
private static Map<FileStore, Lock> locks = new ConcurrentHashMap<>();
private static void setBackground(boolean async) {
background.set(async);
}
private static final String javaVersionPrefix = SystemReader
private static final String JAVA_VERSION_PREFIX = SystemReader
.getInstance().getHostname() + '|'
+ System.getProperty("java.vendor") + '|' //$NON-NLS-1$
+ System.getProperty("java.version") + '|'; //$NON-NLS-1$
@ -225,6 +212,15 @@ private static void setBackground(boolean async) {
private static final Duration FALLBACK_MIN_RACY_INTERVAL = Duration
.ofMillis(10);
private static final Map<FileStore, FileStoreAttributes> attributeCache = new ConcurrentHashMap<>();
private static final SimpleLruCache<Path, FileStoreAttributes> attrCacheByPath = new SimpleLruCache<>(
100, 0.2f);
private static final AtomicBoolean background = new AtomicBoolean();
private static final Map<FileStore, Lock> locks = new ConcurrentHashMap<>();
private static final AtomicInteger threadNumber = new AtomicInteger(1);
/**
@ -250,6 +246,10 @@ private static void setBackground(boolean async) {
return t;
});
private static void setBackground(boolean async) {
background.set(async);
}
/**
* Configures size and purge factor of the path-based cache for file
* system attributes. Caching of file system attributes avoids recurring
@ -628,7 +628,7 @@ private static String getConfigKey(FileStore s) {
} else {
storeKey = s.name();
}
return javaVersionPrefix + storeKey;
return JAVA_VERSION_PREFIX + storeKey;
}
private static TimeUnit getUnit(long nanos) {