|
@@ -0,0 +1,156 @@
|
|
|
+package org.jeecg.modules.system.service.impl;
|
|
|
+
|
|
|
+import cn.hutool.cache.file.LFUFileCache;
|
|
|
+import org.jeecg.modules.system.service.ISysFileCacheService;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+
|
|
|
+import java.io.File;
|
|
|
+import java.util.concurrent.ConcurrentHashMap;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author 王葆权
|
|
|
+ * @Title: 根据使用次数缓存文件
|
|
|
+ * @Package org.jeecg.modules.system.service.impl
|
|
|
+ * @Description: 当缓存满了时会移除使用次数最少的对象
|
|
|
+ * 建议只缓存频繁读取的静态文件
|
|
|
+ * @date 2023/12/7 15:44
|
|
|
+ */
|
|
|
+@Service
|
|
|
+public class SysFileCacheServiceImpl implements ISysFileCacheService {
|
|
|
+
|
|
|
+ public final static ConcurrentHashMap<String, LFUFileCache> fileCacheMap = new ConcurrentHashMap<String, LFUFileCache>();
|
|
|
+ private final LFUFileCache defaultLFUFileCache;
|
|
|
+
|
|
|
+ public final static String DEFAULT_CACHE_NAME = "DEF_FILE_CACHE";
|
|
|
+
|
|
|
+ // 最大文件大小,byte数,决定能缓存至少多少文件,大于这个值不被缓存直接读取
|
|
|
+ public final static Integer MAX_FILE_SIZE = 10 * 1024 * 1024; // 10MB
|
|
|
+ // 缓存容量,能容纳的byte数
|
|
|
+ public final static Integer CAPACITY = MAX_FILE_SIZE * 5;
|
|
|
+ // 默认超时时间,0表示无默认超时
|
|
|
+ public final static Integer TIMEOUT = 0;
|
|
|
+
|
|
|
+ public SysFileCacheServiceImpl() {
|
|
|
+ this.defaultLFUFileCache = new LFUFileCache(CAPACITY, MAX_FILE_SIZE, TIMEOUT);
|
|
|
+ fileCacheMap.put(DEFAULT_CACHE_NAME, this.defaultLFUFileCache);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 缓存文件
|
|
|
+ *
|
|
|
+ * @param filePath
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public byte[] getDefCacheFile(String filePath) {
|
|
|
+ return this.defaultLFUFileCache.getFileBytes(filePath);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 缓存文件
|
|
|
+ *
|
|
|
+ * @param file
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public byte[] getDefCacheFile(File file) {
|
|
|
+ return this.defaultLFUFileCache.getFileBytes(file);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 清理缓存
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public void clearDefCache() {
|
|
|
+ this.defaultLFUFileCache.clear();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取指定名称的缓存 如果存在
|
|
|
+ *
|
|
|
+ * @param cacheName
|
|
|
+ * @return 存在返回缓存类,不存在返回孔
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public LFUFileCache getCacheIfExists(String cacheName) {
|
|
|
+ return fileCacheMap.get(cacheName);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取指定名称的缓存,不存在则创建
|
|
|
+ * @param cacheName 缓存名
|
|
|
+ * @return 缓存对象
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public LFUFileCache getFileCache(String cacheName) {
|
|
|
+ LFUFileCache cacheIfExists = getCacheIfExists(cacheName);
|
|
|
+ if (cacheIfExists == null) {
|
|
|
+ createFileCache(cacheName);
|
|
|
+ }
|
|
|
+ return fileCacheMap.get(cacheName);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param cacheName 缓存名
|
|
|
+ * @param capacity 缓存容量
|
|
|
+ * @param maxFileSize 文件最大大小
|
|
|
+ * @param timeout 默认超时时间,0表示无默认超时
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public LFUFileCache createFileCache(String cacheName, int capacity, int maxFileSize, long timeout) {
|
|
|
+ LFUFileCache lfuFileCache = new LFUFileCache(capacity, maxFileSize, timeout);
|
|
|
+ fileCacheMap.put(cacheName, lfuFileCache);
|
|
|
+ return lfuFileCache;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 超时时间0
|
|
|
+ * @param cacheName 缓存名
|
|
|
+ * @param capacity 缓存容量
|
|
|
+ * @param maxFileSize 文件最大大小
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public LFUFileCache createFileCache(String cacheName, int capacity, int maxFileSize) {
|
|
|
+ return createFileCache(cacheName, capacity, maxFileSize, TIMEOUT);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 默认缓存大小10M,超时时间0
|
|
|
+ * @param cacheName 缓存名
|
|
|
+ * @param maxFileSize 文件最大大小
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public LFUFileCache createFileCache(String cacheName, int maxFileSize) {
|
|
|
+ return createFileCache(cacheName, CAPACITY/5, maxFileSize, TIMEOUT);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 默认缓存大小10M,最大文件大小1M,超时时间0
|
|
|
+ * @param cacheName 缓存名
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public LFUFileCache createFileCache(String cacheName) {
|
|
|
+ return createFileCache(cacheName, CAPACITY/5, MAX_FILE_SIZE/10, TIMEOUT);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 添加缓存类
|
|
|
+ * @param cacheName 缓存的名字
|
|
|
+ * @param fileCache 缓存类
|
|
|
+ * @return 缓存类
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public LFUFileCache putFileCache(String cacheName,LFUFileCache fileCache) {
|
|
|
+ fileCacheMap.put(cacheName, fileCache);
|
|
|
+ return fileCache;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public LFUFileCache getDefaultLFUFileCache() {
|
|
|
+ return defaultLFUFileCache;
|
|
|
+ }
|
|
|
+}
|