/
tofu
/
l2interlude
Обзор
Документация
Войти
/
tofu
/
l2interlude
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/main/java/com/l2jserver/gameserver/cache/HtmCache.java
169 строк
5 KB
Zoey76
Copyright Update
01 янв 2025, 07:57
01 янв 2025, 07:57
16130a5
Код
Авторство
О чём код?
/* * Copyright © 2004-2025 L2J Server * * This file is part of L2J Server. * * L2J Server is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * L2J Server is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package com.l2jserver.gameserver.cache; import static com.l2jserver.gameserver.config.Configuration.general; import static com.l2jserver.gameserver.config.Configuration.server; import static java.nio.charset.StandardCharsets.UTF_8; import java.io.BufferedInputStream; import java.io.File; import java.io.FileInputStream; import java.util.HashMap; import java.util.Map; import java.util.Objects; import java.util.concurrent.ConcurrentHashMap; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.l2jserver.gameserver.util.file.filter.HTMLFilter; /** * HTML Cache. * @author Layane * @author Zoey76 */ public class HtmCache { private static final Logger LOG = LoggerFactory.getLogger(HtmCache.class); private static final HTMLFilter HTML_FILTER = new HTMLFilter(); private static final Map<String, String> HTML_CACHE = general().lazyCache() ? new ConcurrentHashMap<>() : new HashMap<>(); private int _loadedFiles; private long _bytesBuffLen; protected HtmCache() { reload(); } public void reload() { reload(server().getDatapackRoot()); } public void reload(File f) { if (!general().lazyCache()) { LOG.info("Html cache start..."); parseDir(f); LOG.info(String.format("%.3f", getMemoryUsage()) + " megabytes on " + getLoadedFiles() + " files loaded."); } else { HTML_CACHE.clear(); _loadedFiles = 0; _bytesBuffLen = 0; LOG.info("Running lazy cache."); } } public void reloadPath(File f) { parseDir(f); LOG.info("Reloaded specified path."); } public double getMemoryUsage() { return ((float) _bytesBuffLen / 1048576); } public int getLoadedFiles() { return _loadedFiles; } private void parseDir(File dir) { final File[] files = dir.listFiles(); if (files != null) { for (File file : files) { if (!file.isDirectory()) { loadFile(file); } else { parseDir(file); } } } } public String loadFile(File file) { if (!HTML_FILTER.accept(file)) { return null; } String content = null; try (var fis = new FileInputStream(file); var bis = new BufferedInputStream(fis)) { final int bytes = bis.available(); byte[] raw = new byte[bytes]; bis.read(raw); content = new String(raw, UTF_8); content = content.replaceAll("(?s)<!--.*?-->", ""); // Remove html comments String oldContent = HTML_CACHE.put(file.getCanonicalPath(), content); if (oldContent == null) { _bytesBuffLen += bytes; _loadedFiles++; } else { _bytesBuffLen = (_bytesBuffLen - oldContent.length()) + bytes; } } catch (Exception e) { LOG.warn("Problem with htm file {}!", file, e); } return content; } public String getHtm(String prefix, String path) { final var newPath = Objects.requireNonNullElse(prefix, "") + path; var content = HTML_CACHE.get(newPath); if (general().lazyCache() && (content == null)) { content = loadFile(new File(server().getDatapackRoot(), newPath)); if (content == null) { content = loadFile(new File(server().getScriptRoot(), newPath)); } // If multilanguage content is not present, try default location. if ((prefix != null) && (content == null)) { content = loadFile(new File(server().getDatapackRoot(), path)); if (content == null) { content = loadFile(new File(server().getScriptRoot(), path)); } } } return content; } public boolean contains(String path) { return HTML_CACHE.containsKey(path); } /** * @param path The path to the HTM * @return {@code true} if the path targets a HTM or HTML file, {@code false} otherwise. */ public boolean isLoadable(String path) { return HTML_FILTER.accept(new File(server().getDatapackRoot(), path)); } public static HtmCache getInstance() { return SingletonHolder.INSTANCE; } private static class SingletonHolder { protected static final HtmCache INSTANCE = new HtmCache(); } }