123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432 |
- /*
- * 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.taskmanager;
- import static com.l2jserver.gameserver.taskmanager.TaskTypes.TYPE_NONE;
- import static com.l2jserver.gameserver.taskmanager.TaskTypes.TYPE_SHEDULED;
- import static com.l2jserver.gameserver.taskmanager.TaskTypes.TYPE_TIME;
- import java.sql.Connection;
- import java.sql.PreparedStatement;
- import java.sql.ResultSet;
- import java.sql.SQLException;
- import java.text.DateFormat;
- import java.util.Calendar;
- import java.util.Date;
- import java.util.concurrent.ScheduledFuture;
- import java.util.logging.Level;
- import java.util.logging.Logger;
- import javolution.util.FastList;
- import javolution.util.FastMap;
- import com.l2jserver.L2DatabaseFactory;
- import com.l2jserver.gameserver.ThreadPoolManager;
- import com.l2jserver.gameserver.taskmanager.tasks.TaskBirthday;
- import com.l2jserver.gameserver.taskmanager.tasks.TaskCleanUp;
- import com.l2jserver.gameserver.taskmanager.tasks.TaskDailyQuestClean;
- import com.l2jserver.gameserver.taskmanager.tasks.TaskDailySkillReuseClean;
- import com.l2jserver.gameserver.taskmanager.tasks.TaskGlobalVariablesSave;
- import com.l2jserver.gameserver.taskmanager.tasks.TaskJython;
- import com.l2jserver.gameserver.taskmanager.tasks.TaskOlympiadSave;
- import com.l2jserver.gameserver.taskmanager.tasks.TaskRaidPointsReset;
- import com.l2jserver.gameserver.taskmanager.tasks.TaskRecom;
- import com.l2jserver.gameserver.taskmanager.tasks.TaskRestart;
- import com.l2jserver.gameserver.taskmanager.tasks.TaskScript;
- import com.l2jserver.gameserver.taskmanager.tasks.TaskSevenSignsUpdate;
- import com.l2jserver.gameserver.taskmanager.tasks.TaskShutdown;
- /**
- * @author Layane
- *
- */
- public final class TaskManager
- {
- protected static final Logger _log = Logger.getLogger(TaskManager.class.getName());
-
- protected static final String[] SQL_STATEMENTS = {
- "SELECT id,task,type,last_activation,param1,param2,param3 FROM global_tasks",
- "UPDATE global_tasks SET last_activation=? WHERE id=?", "SELECT id FROM global_tasks WHERE task=?",
- "INSERT INTO global_tasks (task,type,last_activation,param1,param2,param3) VALUES(?,?,?,?,?,?)"
- };
-
- private final FastMap<Integer, Task> _tasks = new FastMap<Integer, Task>();
- protected final FastList<ExecutedTask> _currentTasks = new FastList<ExecutedTask>();
-
- public class ExecutedTask implements Runnable
- {
- int id;
- long lastActivation;
- Task task;
- TaskTypes type;
- String[] params;
- ScheduledFuture<?> scheduled;
-
- public ExecutedTask(Task ptask, TaskTypes ptype, ResultSet rset) throws SQLException
- {
- task = ptask;
- type = ptype;
- id = rset.getInt("id");
- lastActivation = rset.getLong("last_activation");
- params = new String[] { rset.getString("param1"), rset.getString("param2"), rset.getString("param3") };
- }
-
- @Override
- public void run()
- {
- task.onTimeElapsed(this);
- lastActivation = System.currentTimeMillis();
-
- Connection con = null;
-
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = con.prepareStatement(SQL_STATEMENTS[1]);
- statement.setLong(1, lastActivation);
- statement.setInt(2, id);
- statement.executeUpdate();
- statement.close();
- }
- catch (SQLException e)
- {
- _log.log(Level.WARNING, "Cannot updated the Global Task " + id + ": " + e.getMessage(), e);
- }
- finally
- {
- L2DatabaseFactory.close(con);
- }
-
- if (type == TYPE_SHEDULED || type == TYPE_TIME)
- {
- stopTask();
- }
- }
-
- @Override
- public boolean equals(Object object)
- {
- return object == null ? false : id == ((ExecutedTask) object).id;
- }
-
- public Task getTask()
- {
- return task;
- }
-
- public TaskTypes getType()
- {
- return type;
- }
-
- public int getId()
- {
- return id;
- }
-
- public String[] getParams()
- {
- return params;
- }
-
- public long getLastActivation()
- {
- return lastActivation;
- }
-
- public void stopTask()
- {
- task.onDestroy();
-
- if (scheduled != null)
- scheduled.cancel(true);
-
- _currentTasks.remove(this);
- }
-
- }
-
- public static TaskManager getInstance()
- {
- return SingletonHolder._instance;
- }
-
- private TaskManager()
- {
- initializate();
- startAllTasks();
- }
-
- private void initializate()
- {
- registerTask(new TaskCleanUp());
- registerTask(new TaskScript());
- registerTask(new TaskJython());
- registerTask(new TaskGlobalVariablesSave());
- registerTask(new TaskOlympiadSave());
- registerTask(new TaskRaidPointsReset());
- registerTask(new TaskRecom());
- registerTask(new TaskRestart());
- registerTask(new TaskSevenSignsUpdate());
- registerTask(new TaskShutdown());
- registerTask(new TaskDailyQuestClean());
- registerTask(new TaskDailySkillReuseClean());
- registerTask(new TaskBirthday());
- }
-
- public void registerTask(Task task)
- {
- int key = task.getName().hashCode();
- if (!_tasks.containsKey(key))
- {
- _tasks.put(key, task);
- task.initializate();
- }
- }
-
- private void startAllTasks()
- {
- Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = con.prepareStatement(SQL_STATEMENTS[0]);
- ResultSet rset = statement.executeQuery();
-
- while (rset.next())
- {
- Task task = _tasks.get(rset.getString("task").trim().toLowerCase().hashCode());
-
- if (task == null)
- continue;
-
- TaskTypes type = TaskTypes.valueOf(rset.getString("type"));
-
- if (type != TYPE_NONE)
- {
- ExecutedTask current = new ExecutedTask(task, type, rset);
- if (launchTask(current))
- _currentTasks.add(current);
- }
-
- }
-
- rset.close();
- statement.close();
-
- }
- catch (Exception e)
- {
- _log.log(Level.SEVERE, "Error while loading Global Task table: " + e.getMessage(), e);
- }
- finally
- {
- try
- {
- L2DatabaseFactory.close(con);
- }
- catch (Exception e)
- {
- }
- }
- }
-
- private boolean launchTask(ExecutedTask task)
- {
- final ThreadPoolManager scheduler = ThreadPoolManager.getInstance();
- final TaskTypes type = task.getType();
- long delay, interval;
-
- switch(type)
- {
- case TYPE_STARTUP:
- task.run();
- return false;
- case TYPE_SHEDULED:
- delay = Long.valueOf(task.getParams()[0]);
- task.scheduled = scheduler.scheduleGeneral(task, delay);
- return true;
- case TYPE_FIXED_SHEDULED:
- delay = Long.valueOf(task.getParams()[0]);
- interval = Long.valueOf(task.getParams()[1]);
- task.scheduled = scheduler.scheduleGeneralAtFixedRate(task, delay, interval);
- return true;
- case TYPE_TIME:
- try
- {
- Date desired = DateFormat.getInstance().parse(task.getParams()[0]);
- long diff = desired.getTime() - System.currentTimeMillis();
- if (diff >= 0)
- {
- task.scheduled = scheduler.scheduleGeneral(task, diff);
- return true;
- }
- _log.info("Task " + task.getId() + " is obsoleted.");
- }
- catch (Exception e)
- {
- }
- break;
- case TYPE_SPECIAL:
- ScheduledFuture<?> result = task.getTask().launchSpecial(task);
- if (result != null)
- {
- task.scheduled = result;
- return true;
- }
- break;
- case TYPE_GLOBAL_TASK:
- interval = Long.valueOf(task.getParams()[0]) * 86400000L;
- String[] hour = task.getParams()[1].split(":");
-
- if (hour.length != 3)
- {
- _log.warning("Task " + task.getId() + " has incorrect parameters");
- return false;
- }
-
- Calendar check = Calendar.getInstance();
- check.setTimeInMillis(task.getLastActivation() + interval);
-
- Calendar min = Calendar.getInstance();
- try
- {
- min.set(Calendar.HOUR_OF_DAY, Integer.parseInt(hour[0]));
- min.set(Calendar.MINUTE, Integer.parseInt(hour[1]));
- min.set(Calendar.SECOND, Integer.parseInt(hour[2]));
- }
- catch (Exception e)
- {
- _log.log(Level.WARNING, "Bad parameter on task " + task.getId() + ": " + e.getMessage(), e);
- return false;
- }
-
- delay = min.getTimeInMillis() - System.currentTimeMillis();
-
- if (check.after(min) || delay < 0)
- {
- delay += interval;
- }
-
- task.scheduled = scheduler.scheduleGeneralAtFixedRate(task, delay, interval);
-
- return true;
-
- default:
- return false;
- }
-
- return false;
- }
-
- public static boolean addUniqueTask(String task, TaskTypes type, String param1, String param2, String param3)
- {
- return addUniqueTask(task, type, param1, param2, param3, 0);
- }
-
- public static boolean addUniqueTask(String task, TaskTypes type, String param1, String param2, String param3, long lastActivation)
- {
- Connection con = null;
-
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = con.prepareStatement(SQL_STATEMENTS[2]);
- statement.setString(1, task);
- ResultSet rset = statement.executeQuery();
-
- if (!rset.next())
- {
- statement = con.prepareStatement(SQL_STATEMENTS[3]);
- statement.setString(1, task);
- statement.setString(2, type.toString());
- statement.setLong(3, lastActivation);
- statement.setString(4, param1);
- statement.setString(5, param2);
- statement.setString(6, param3);
- statement.execute();
- }
-
- rset.close();
- statement.close();
-
- return true;
- }
- catch (SQLException e)
- {
- _log.log(Level.WARNING, "Cannot add the unique task: " + e.getMessage(), e);
- }
- finally
- {
- try
- {
- L2DatabaseFactory.close(con);
- }
- catch (Exception e)
- {
- }
- }
-
- return false;
- }
-
- public static boolean addTask(String task, TaskTypes type, String param1, String param2, String param3)
- {
- return addTask(task, type, param1, param2, param3, 0);
- }
-
- public static boolean addTask(String task, TaskTypes type, String param1, String param2, String param3, long lastActivation)
- {
- Connection con = null;
-
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = con.prepareStatement(SQL_STATEMENTS[3]);
- statement.setString(1, task);
- statement.setString(2, type.toString());
- statement.setLong(3, lastActivation);
- statement.setString(4, param1);
- statement.setString(5, param2);
- statement.setString(6, param3);
- statement.execute();
-
- statement.close();
- return true;
- }
- catch (SQLException e)
- {
- _log.log(Level.WARNING, "Cannot add the task: " + e.getMessage(), e);
- }
- finally
- {
- try
- {
- L2DatabaseFactory.close(con);
- }
- catch (Exception e)
- {
- }
- }
-
- return false;
- }
-
- @SuppressWarnings("synthetic-access")
- private static class SingletonHolder
- {
- protected static final TaskManager _instance = new TaskManager();
- }
- }
|