Package com.l2jfrozen.gameserver.scripting

Source Code of com.l2jfrozen.gameserver.scripting.CompiledScriptCache

/*
* 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 2, 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*
* http://www.gnu.org/copyleft/gpl.html
*/
package com.l2jfrozen.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.l2jfrozen.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 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;
    FileInputStream fis = null;
   
    BufferedReader buff = null;
    InputStreamReader isr = null;
    CompiledScript cs = null;
   
    try{
     
      fis = new FileInputStream(file);
      isr = new InputStreamReader(fis);
      buff = new BufferedReader(isr);

      // TODO lock file
      cs = eng.compile(buff);
      if(cs instanceof Serializable)
      {
        synchronized (_compiledScriptCache)
        {
          _compiledScriptCache.put(relativeName, new CompiledScriptHolder(cs, file));
          _modified = true;
        }
      }
     
    }catch(IOException e){
     
      e.printStackTrace();
   
    }finally{
     
      if(buff != null)
        try
        {
          buff.close();
        }
        catch(IOException e)
        {
          e.printStackTrace();
        }
      if(isr != null)
        try
        {
          isr.close();
        }
        catch(IOException e)
        {
          e.printStackTrace();
        }
      if(fis != null)
        try
        {
          fis.close();
        }
        catch(IOException e)
        {
          e.printStackTrace();
        }
    }
   
    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()
  {
    synchronized (_compiledScriptCache)
    {
      File file = null;
      FileOutputStream out = null;
      ObjectOutputStream oos = null;
     
      try
      {
        file = new File(L2ScriptEngineManager.SCRIPT_FOLDER, "CompiledScripts.cache");
        out = new FileOutputStream(file);
        oos = new ObjectOutputStream(out);
        oos.writeObject(this);
        _modified = false;
      }
      catch(FileNotFoundException e)
      {
        e.printStackTrace();
      }
      catch(IOException e)
      {
        e.printStackTrace();
     
      }finally{
       
        if(oos != null)
          try
          {
            oos.close();
          }
          catch(IOException e)
          {
            e.printStackTrace();
          }
       
        if(out != null)
          try
          {
            out.close();
          }
          catch(IOException e)
          {
            e.printStackTrace();
          }
       
      }
     
    }
  }
}
TOP

Related Classes of com.l2jfrozen.gameserver.scripting.CompiledScriptCache

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.