123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354 |
- /*
- * This program 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.
- *
- * This program 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 net.sf.l2j.gameserver.cache;
- import java.io.File;
- import java.io.FileFilter;
- import java.io.FileOutputStream;
- import java.io.IOException;
- import java.io.RandomAccessFile;
- import java.sql.PreparedStatement;
- import java.sql.SQLException;
- import java.util.logging.Level;
- import java.util.logging.Logger;
- import javolution.util.FastMap;
- import net.sf.l2j.Config;
- import net.sf.l2j.L2DatabaseFactory;
- import net.sf.l2j.gameserver.datatables.ClanTable;
- import net.sf.l2j.gameserver.idfactory.IdFactory;
- import net.sf.l2j.gameserver.model.L2Clan;
- /**
- * @author Layane
- *
- */
- public class CrestCache
- {
- private static Logger _log = Logger.getLogger(CrestCache.class.getName());
- private static CrestCache _instance;
- private FastMRUCache<Integer, byte[]> _cachePledge = new FastMRUCache<Integer, byte[]>();
- private FastMRUCache<Integer, byte[]> _cachePledgeLarge = new FastMRUCache<Integer, byte[]>();
- private FastMRUCache<Integer, byte[]> _cacheAlly = new FastMRUCache<Integer, byte[]>();
- private int _loadedFiles;
- private long _bytesBuffLen;
- public static CrestCache getInstance()
- {
- if (_instance == null)
- {
- _instance = new CrestCache();
- }
- return _instance;
- }
- public CrestCache()
- {
- convertOldPedgeFiles();
- reload();
- }
- public void reload()
- {
- FileFilter filter = new BmpFilter();
- File dir = new File(Config.DATAPACK_ROOT, "data/crests/");
- File[] files = dir.listFiles(filter);
- byte[] content;
- synchronized (this)
- {
- _loadedFiles = 0;
- _bytesBuffLen = 0;
- _cachePledge.clear();
- _cachePledgeLarge.clear();
- _cacheAlly.clear();
- }
- FastMap<Integer, byte[]> _mapPledge = _cachePledge.getContentMap();
- FastMap<Integer, byte[]> _mapPledgeLarge = _cachePledgeLarge
- .getContentMap();
- FastMap<Integer, byte[]> _mapAlly = _cacheAlly.getContentMap();
- for (File file : files)
- {
- RandomAccessFile f = null;
- synchronized (this)
- {
- try
- {
- f = new RandomAccessFile(file, "r");
- content = new byte[(int) f.length()];
- f.readFully(content);
- if (file.getName().startsWith("Crest_Large_"))
- {
- _mapPledgeLarge.put(Integer.valueOf(file.getName()
- .substring(12, file.getName().length() - 4)),
- content);
- } else if (file.getName().startsWith("Crest_"))
- {
- _mapPledge.put(Integer.valueOf(file.getName()
- .substring(6, file.getName().length() - 4)),
- content);
- } else if (file.getName().startsWith("AllyCrest_"))
- {
- _mapAlly.put(Integer.valueOf(file.getName().substring(
- 10, file.getName().length() - 4)), content);
- }
- _loadedFiles++;
- _bytesBuffLen += content.length;
- } catch (Exception e)
- {
- _log.warning("problem with crest bmp file " + e);
- } finally
- {
- try
- {
- f.close();
- } catch (Exception e1)
- {
- }
- }
- }
- }
- _log.info("Cache[Crest]: " + String.format("%.3f", getMemoryUsage())
- + "MB on " + getLoadedFiles() + " files loaded. (Forget Time: "
- + (_cachePledge.getForgetTime() / 1000) + "s , Capacity: "
- + _cachePledge.capacity() + ")");
- }
- public void convertOldPedgeFiles()
- {
- File dir = new File(Config.DATAPACK_ROOT, "data/crests/");
- File[] files = dir.listFiles(new OldPledgeFilter());
- for (File file : files)
- {
- int clanId = Integer.parseInt(file.getName().substring(7,
- file.getName().length() - 4));
- _log.info("Found old crest file \"" + file.getName()
- + "\" for clanId " + clanId);
- int newId = IdFactory.getInstance().getNextId();
- L2Clan clan = ClanTable.getInstance().getClan(clanId);
- if (clan != null)
- {
- removeOldPledgeCrest(clan.getCrestId());
- file.renameTo(new File(Config.DATAPACK_ROOT,
- "data/crests/Crest_" + newId + ".bmp"));
- _log.info("Renamed Clan crest to new format: Crest_" + newId
- + ".bmp");
- java.sql.Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = con
- .prepareStatement("UPDATE clan_data SET crest_id = ? WHERE clan_id = ?");
- statement.setInt(1, newId);
- statement.setInt(2, clan.getClanId());
- statement.executeUpdate();
- statement.close();
- } catch (SQLException e)
- {
- _log.warning("could not update the crest id:"
- + e.getMessage());
- } finally
- {
- try
- {
- con.close();
- } catch (Exception e)
- {
- }
- }
- clan.setCrestId(newId);
- clan.setHasCrest(true);
- } else
- {
- _log.info("Clan Id: " + clanId
- + " does not exist in table.. deleting.");
- file.delete();
- }
- }
- }
- public float getMemoryUsage()
- {
- return ((float) _bytesBuffLen / 1048576);
- }
- public int getLoadedFiles()
- {
- return _loadedFiles;
- }
- public byte[] getPledgeCrest(int id)
- {
- return _cachePledge.get(id);
- }
- public byte[] getPledgeCrestLarge(int id)
- {
- return _cachePledgeLarge.get(id);
- }
- public byte[] getAllyCrest(int id)
- {
- return _cacheAlly.get(id);
- }
- public void removePledgeCrest(int id)
- {
- File crestFile = new File(Config.DATAPACK_ROOT, "data/crests/Crest_"
- + id + ".bmp");
- _cachePledge.remove(id);
- try
- {
- crestFile.delete();
- } catch (Exception e)
- {
- }
- }
- public void removePledgeCrestLarge(int id)
- {
- File crestFile = new File(Config.DATAPACK_ROOT,
- "data/crests/Crest_Large_" + id + ".bmp");
- _cachePledgeLarge.remove(id);
- try
- {
- crestFile.delete();
- } catch (Exception e)
- {
- }
- }
- public void removeOldPledgeCrest(int id)
- {
- File crestFile = new File(Config.DATAPACK_ROOT, "data/crests/Pledge_"
- + id + ".bmp");
- try
- {
- crestFile.delete();
- } catch (Exception e)
- {
- }
- }
- public void removeAllyCrest(int id)
- {
- File crestFile = new File(Config.DATAPACK_ROOT,
- "data/crests/AllyCrest_" + id + ".bmp");
- _cacheAlly.remove(id);
- try
- {
- crestFile.delete();
- } catch (Exception e)
- {
- }
- }
- public boolean savePledgeCrest(int newId, byte[] data)
- {
- File crestFile = new File(Config.DATAPACK_ROOT, "data/crests/Crest_"
- + newId + ".bmp");
- try
- {
- FileOutputStream out = new FileOutputStream(crestFile);
- out.write(data);
- out.close();
- _cachePledge.getContentMap().put(newId, data);
- return true;
- } catch (IOException e)
- {
- _log.log(Level.INFO, "Error saving pledge crest" + crestFile + ":",
- e);
- return false;
- }
- }
- public boolean savePledgeCrestLarge(int newId, byte[] data)
- {
- File crestFile = new File(Config.DATAPACK_ROOT,
- "data/crests/Crest_Large_" + newId + ".bmp");
- try
- {
- FileOutputStream out = new FileOutputStream(crestFile);
- out.write(data);
- out.close();
- _cachePledgeLarge.getContentMap().put(newId, data);
- return true;
- } catch (IOException e)
- {
- _log.log(Level.INFO, "Error saving Large pledge crest" + crestFile
- + ":", e);
- return false;
- }
- }
- public boolean saveAllyCrest(int newId, byte[] data)
- {
- File crestFile = new File(Config.DATAPACK_ROOT,
- "data/crests/AllyCrest_" + newId + ".bmp");
- try
- {
- FileOutputStream out = new FileOutputStream(crestFile);
- out.write(data);
- out.close();
- _cacheAlly.getContentMap().put(newId, data);
- return true;
- } catch (IOException e)
- {
- _log
- .log(Level.INFO, "Error saving ally crest" + crestFile
- + ":", e);
- return false;
- }
- }
- class BmpFilter implements FileFilter
- {
- public boolean accept(File file)
- {
- return (file.getName().endsWith(".bmp"));
- }
- }
- class OldPledgeFilter implements FileFilter
- {
- public boolean accept(File file)
- {
- return (file.getName().startsWith("Pledge_"));
- }
- }
- }
|