/* * Copyright (C) 2004-2015 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 . */ package com.l2jserver.tools.dbinstaller; import java.io.File; import java.sql.SQLException; import javax.swing.JOptionPane; import com.l2jserver.tools.dbinstaller.util.mysql.DBDumper; import com.l2jserver.tools.dbinstaller.util.mysql.ScriptExecutor; /** * @author mrTJO */ public class RunTasks extends Thread { DBOutputInterface _frame; boolean _classicInstall; String _db; String _sqlDir; public RunTasks(DBOutputInterface frame, String db, String sqlDir, boolean classicInstall) { _frame = frame; _db = db; _classicInstall = classicInstall; _sqlDir = sqlDir; } @Override public void run() { new DBDumper(_frame, _db); ScriptExecutor exec = new ScriptExecutor(_frame); _frame.appendToProgressArea("Installing Database Content..."); exec.execSqlBatch(new File(_sqlDir)); if (_classicInstall) { File cusDir = new File(_sqlDir, "classic"); if (cusDir.exists()) { _frame.appendToProgressArea("Installing Classic Tables..."); exec.execSqlBatch(cusDir); } } _frame.appendToProgressArea("Database Installation Complete!"); try { _frame.getConnection().close(); } catch (SQLException e) { JOptionPane.showMessageDialog(null, "Cannot close MySQL Connection: " + e.getMessage(), "Connection Error", JOptionPane.ERROR_MESSAGE); } _frame.setFrameVisible(false); _frame.showMessage("Done!", "Database Installation Complete!", JOptionPane.INFORMATION_MESSAGE); System.exit(0); } }