diff options
author | Duarte Meneses <duarte.meneses@sonarsource.com> | 2015-07-21 13:34:15 +0200 |
---|---|---|
committer | Duarte Meneses <duarte.meneses@sonarsource.com> | 2015-07-24 13:14:57 +0200 |
commit | 01e9d5426116c86be015764ae5dfc277d9a09593 (patch) | |
tree | 5f5da298c7a2132c3d10c80a60a3c70f83cddb86 /sonar-home | |
parent | 8566436b507addd3b891cbe84a04e3e0225358ba (diff) | |
download | sonarqube-01e9d5426116c86be015764ae5dfc277d9a09593.tar.gz sonarqube-01e9d5426116c86be015764ae5dfc277d9a09593.zip |
Improve quality
Diffstat (limited to 'sonar-home')
-rw-r--r-- | sonar-home/src/main/java/org/sonar/home/cache/PersistentCache.java | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/sonar-home/src/main/java/org/sonar/home/cache/PersistentCache.java b/sonar-home/src/main/java/org/sonar/home/cache/PersistentCache.java index e4c8bd02912..97a96acfb9e 100644 --- a/sonar-home/src/main/java/org/sonar/home/cache/PersistentCache.java +++ b/sonar-home/src/main/java/org/sonar/home/cache/PersistentCache.java @@ -164,44 +164,44 @@ public class PersistentCache { } private void lock() throws IOException { - lock_raf = new RandomAccessFile(getLockPath().toFile(), "rw"); - lock_fc = lock_raf.getChannel(); - lock = lock_fc.lock(); + lockRandomAccessFile = new RandomAccessFile(getLockPath().toFile(), "rw"); + lockChannel = lockRandomAccessFile.getChannel(); + lockFile = lockChannel.lock(); } - private RandomAccessFile lock_raf; - private FileChannel lock_fc; - private FileLock lock; + private RandomAccessFile lockRandomAccessFile; + private FileChannel lockChannel; + private FileLock lockFile; private void unlock() { - if (lock != null) { + if (lockFile != null) { try { - lock.release(); + lockFile.release(); } catch (IOException e) { logger.error("Error releasing lock", e); } } - if (lock_fc != null) { + if (lockChannel != null) { try { - lock_fc.close(); + lockChannel.close(); } catch (IOException e) { logger.error("Error closing file channel", e); } } - if (lock_raf != null) { + if (lockRandomAccessFile != null) { try { - lock_raf.close(); + lockRandomAccessFile.close(); } catch (IOException e) { logger.error("Error closing file", e); } } - lock = null; - lock_raf = null; - lock_fc = null; + lockFile = null; + lockRandomAccessFile = null; + lockChannel = null; } - private String getKey(String uri) { + private static String getKey(String uri) { try { MessageDigest digest = MessageDigest.getInstance(DIGEST_ALGO); digest.update(uri.getBytes(StandardCharsets.UTF_8)); @@ -245,7 +245,7 @@ public class PersistentCache { }; } - private void putCache(String key, byte[] value) throws UnsupportedEncodingException, IOException { + private void putCache(String key, byte[] value) throws IOException { Path cachePath = getCacheEntryPath(key); Files.write(cachePath, value, CREATE, WRITE, TRUNCATE_EXISTING); } |