123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- /*
- * 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 com.l2jserver.gameserver.scripting;
- import java.io.BufferedReader;
- import java.io.File;
- import java.io.FileInputStream;
- import java.io.FileNotFoundException;
- import java.io.FileOutputStream;
- import java.io.IOException;
- import java.io.InputStreamReader;
- import java.io.ObjectOutputStream;
- import java.io.Serializable;
- import java.util.Map;
- import java.util.logging.Logger;
- import javax.script.Compilable;
- import javax.script.CompiledScript;
- import javax.script.ScriptEngine;
- import javax.script.ScriptException;
- import javolution.util.FastMap;
- import com.l2jserver.Config;
- /**
- * Cache of Compiled Scripts
- *
- * @author KenM
- */
- public class CompiledScriptCache implements Serializable
- {
- /**
- * Version 1
- */
- private static final long serialVersionUID = 1L;
-
- private static final Logger LOG = Logger.getLogger(CompiledScriptCache.class.getName());
-
- private Map<String, CompiledScriptHolder> _compiledScriptCache = new FastMap<String, CompiledScriptHolder>();
- private transient boolean _modified = false;
-
- public CompiledScript loadCompiledScript(ScriptEngine engine, File file) throws FileNotFoundException, ScriptException
- {
- int len = L2ScriptEngineManager.SCRIPT_FOLDER.getPath().length() + 1;
- String relativeName = file.getPath().substring(len);
-
- CompiledScriptHolder csh = _compiledScriptCache.get(relativeName);
- if (csh != null && csh.matches(file))
- {
- if (Config.DEBUG)
- {
- LOG.fine("Reusing cached compiled script: "+file);
- }
- return csh.getCompiledScript();
- }
-
- if (Config.DEBUG)
- {
- LOG.info("Compiling script: "+file);
- }
- Compilable eng = (Compilable) engine;
- BufferedReader reader = new BufferedReader(new InputStreamReader(new FileInputStream(file)));
-
- // TODO lock file
- CompiledScript cs = eng.compile(reader);
- if (cs instanceof Serializable)
- {
- synchronized (_compiledScriptCache)
- {
- _compiledScriptCache.put(relativeName, new CompiledScriptHolder(cs, file));
- _modified = true;
- }
- }
- return cs;
- }
-
- public boolean isModified()
- {
- return _modified;
- }
-
- public void purge()
- {
- synchronized (_compiledScriptCache)
- {
- for (String path : _compiledScriptCache.keySet())
- {
- File file = new File(L2ScriptEngineManager.SCRIPT_FOLDER, path);
- if (!file.isFile())
- {
- _compiledScriptCache.remove(path);
- _modified = true;
- }
- }
- }
- }
-
- public void save() throws FileNotFoundException, IOException
- {
- synchronized (_compiledScriptCache)
- {
- ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream(new File(L2ScriptEngineManager.SCRIPT_FOLDER, "CompiledScripts.cache")));
- oos.writeObject(this);
- _modified = false;
- }
- }
- }
|