This commit is contained in:
@ -0,0 +1,166 @@
|
||||
/*
|
||||
* Copyright (C) 2004-2014 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 <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package com.l2jserver.gameserver.idfactory;
|
||||
|
||||
import java.util.BitSet;
|
||||
import java.util.concurrent.atomic.AtomicInteger;
|
||||
|
||||
import com.l2jserver.gameserver.ThreadPoolManager;
|
||||
import com.l2jserver.util.PrimeFinder;
|
||||
|
||||
/**
|
||||
* This class ..
|
||||
* @version $Revision: 1.2 $ $Date: 2004/06/27 08:12:59 $
|
||||
*/
|
||||
public class BitSetIDFactory extends IdFactory
|
||||
{
|
||||
private BitSet _freeIds;
|
||||
private AtomicInteger _freeIdCount;
|
||||
private AtomicInteger _nextFreeId;
|
||||
|
||||
protected class BitSetCapacityCheck implements Runnable
|
||||
{
|
||||
@Override
|
||||
public void run()
|
||||
{
|
||||
synchronized (BitSetIDFactory.this)
|
||||
{
|
||||
if (reachingBitSetCapacity())
|
||||
{
|
||||
increaseBitSetCapacity();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
protected BitSetIDFactory()
|
||||
{
|
||||
super();
|
||||
|
||||
synchronized (BitSetIDFactory.class)
|
||||
{
|
||||
ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(new BitSetCapacityCheck(), 30000, 30000);
|
||||
initialize();
|
||||
}
|
||||
_log.info(getClass().getSimpleName() + ": " + _freeIds.size() + " id's available.");
|
||||
}
|
||||
|
||||
public void initialize()
|
||||
{
|
||||
try
|
||||
{
|
||||
_freeIds = new BitSet(PrimeFinder.nextPrime(100000));
|
||||
_freeIds.clear();
|
||||
_freeIdCount = new AtomicInteger(FREE_OBJECT_ID_SIZE);
|
||||
|
||||
for (int usedObjectId : extractUsedObjectIDTable())
|
||||
{
|
||||
int objectID = usedObjectId - FIRST_OID;
|
||||
if (objectID < 0)
|
||||
{
|
||||
_log.warning(getClass().getSimpleName() + ": Object ID " + usedObjectId + " in DB is less than minimum ID of " + FIRST_OID);
|
||||
continue;
|
||||
}
|
||||
_freeIds.set(usedObjectId - FIRST_OID);
|
||||
_freeIdCount.decrementAndGet();
|
||||
}
|
||||
|
||||
_nextFreeId = new AtomicInteger(_freeIds.nextClearBit(0));
|
||||
_initialized = true;
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
_initialized = false;
|
||||
_log.severe(getClass().getSimpleName() + ": Could not be initialized properly: " + e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public synchronized void releaseId(int objectID)
|
||||
{
|
||||
if ((objectID - FIRST_OID) > -1)
|
||||
{
|
||||
_freeIds.clear(objectID - FIRST_OID);
|
||||
_freeIdCount.incrementAndGet();
|
||||
}
|
||||
else
|
||||
{
|
||||
_log.warning(getClass().getSimpleName() + ": Release objectID " + objectID + " failed (< " + FIRST_OID + ")");
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public synchronized int getNextId()
|
||||
{
|
||||
int newID = _nextFreeId.get();
|
||||
_freeIds.set(newID);
|
||||
_freeIdCount.decrementAndGet();
|
||||
|
||||
int nextFree = _freeIds.nextClearBit(newID);
|
||||
|
||||
if (nextFree < 0)
|
||||
{
|
||||
nextFree = _freeIds.nextClearBit(0);
|
||||
}
|
||||
if (nextFree < 0)
|
||||
{
|
||||
if (_freeIds.size() < FREE_OBJECT_ID_SIZE)
|
||||
{
|
||||
increaseBitSetCapacity();
|
||||
}
|
||||
else
|
||||
{
|
||||
throw new NullPointerException("Ran out of valid Id's.");
|
||||
}
|
||||
}
|
||||
|
||||
_nextFreeId.set(nextFree);
|
||||
|
||||
return newID + FIRST_OID;
|
||||
}
|
||||
|
||||
@Override
|
||||
public synchronized int size()
|
||||
{
|
||||
return _freeIdCount.get();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
protected synchronized int usedIdCount()
|
||||
{
|
||||
return (size() - FIRST_OID);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
protected synchronized boolean reachingBitSetCapacity()
|
||||
{
|
||||
return PrimeFinder.nextPrime((usedIdCount() * 11) / 10) > _freeIds.size();
|
||||
}
|
||||
|
||||
protected synchronized void increaseBitSetCapacity()
|
||||
{
|
||||
BitSet newBitSet = new BitSet(PrimeFinder.nextPrime((usedIdCount() * 11) / 10));
|
||||
newBitSet.or(_freeIds);
|
||||
_freeIds = newBitSet;
|
||||
}
|
||||
}
|
@ -0,0 +1,157 @@
|
||||
/*
|
||||
* Copyright (C) 2004-2014 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 <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package com.l2jserver.gameserver.idfactory;
|
||||
|
||||
import java.sql.Connection;
|
||||
import java.sql.PreparedStatement;
|
||||
import java.sql.ResultSet;
|
||||
import java.sql.SQLException;
|
||||
|
||||
import com.l2jserver.Config;
|
||||
import com.l2jserver.L2DatabaseFactory;
|
||||
|
||||
/**
|
||||
* 18.8.2010 - JIV: Disabling until someone update it
|
||||
*/
|
||||
@Deprecated
|
||||
public class CompactionIDFactory extends IdFactory
|
||||
{
|
||||
private int _curOID;
|
||||
private final int _freeSize;
|
||||
|
||||
protected CompactionIDFactory()
|
||||
{
|
||||
super();
|
||||
_curOID = FIRST_OID;
|
||||
_freeSize = 0;
|
||||
|
||||
try (Connection con = L2DatabaseFactory.getInstance().getConnection())
|
||||
{
|
||||
Integer[] tmp_obj_ids = extractUsedObjectIDTable();
|
||||
|
||||
int N = tmp_obj_ids.length;
|
||||
for (int idx = 0; idx < N; idx++)
|
||||
{
|
||||
N = insertUntil(tmp_obj_ids, idx, N, con);
|
||||
}
|
||||
_curOID++;
|
||||
_log.info(getClass().getSimpleName() + ": Next usable Object ID is: " + _curOID);
|
||||
_initialized = true;
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
_log.severe(getClass().getSimpleName() + ": Could not initialize properly: " + e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
private int insertUntil(Integer[] tmp_obj_ids, int idx, int N, Connection con) throws SQLException
|
||||
{
|
||||
int id = tmp_obj_ids[idx];
|
||||
if (id == _curOID)
|
||||
{
|
||||
_curOID++;
|
||||
return N;
|
||||
}
|
||||
// check these IDs not present in DB
|
||||
if (Config.BAD_ID_CHECKING)
|
||||
{
|
||||
for (String check : ID_CHECKS)
|
||||
{
|
||||
try (PreparedStatement ps = con.prepareStatement(check))
|
||||
{
|
||||
ps.setInt(1, _curOID);
|
||||
ps.setInt(2, id);
|
||||
try (ResultSet rs = ps.executeQuery())
|
||||
{
|
||||
while (rs.next())
|
||||
{
|
||||
int badId = rs.getInt(1);
|
||||
_log.severe(getClass().getSimpleName() + ": Bad ID " + badId + " in DB found by: " + check);
|
||||
throw new RuntimeException();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
int hole = id - _curOID;
|
||||
if (hole > (N - idx))
|
||||
{
|
||||
hole = N - idx;
|
||||
}
|
||||
for (int i = 1; i <= hole; i++)
|
||||
{
|
||||
id = tmp_obj_ids[N - i];
|
||||
_log.info(getClass().getSimpleName() + ": Compacting DB object ID=" + id + " into " + (_curOID));
|
||||
for (String update : ID_UPDATES)
|
||||
{
|
||||
try (PreparedStatement ps = con.prepareStatement(update))
|
||||
{
|
||||
ps.setInt(1, _curOID);
|
||||
ps.setInt(2, id);
|
||||
ps.execute();
|
||||
}
|
||||
}
|
||||
_curOID++;
|
||||
}
|
||||
if (hole < (N - idx))
|
||||
{
|
||||
_curOID++;
|
||||
}
|
||||
return N - hole;
|
||||
}
|
||||
|
||||
@Override
|
||||
public synchronized int getNextId()
|
||||
{
|
||||
// @formatter:off
|
||||
/*
|
||||
* if (_freeSize == 0)
|
||||
*/
|
||||
return _curOID++;
|
||||
/*
|
||||
* else
|
||||
* return _freeOIDs[--_freeSize];
|
||||
*/
|
||||
// @formatter:on
|
||||
}
|
||||
|
||||
@Override
|
||||
public synchronized void releaseId(int id)
|
||||
{
|
||||
// Don't release Ids until we are sure it isn't messing up
|
||||
// @formatter:off
|
||||
/*
|
||||
if (_freeSize >= _freeOIDs.length)
|
||||
{
|
||||
int[] tmp = new int[_freeSize + STACK_SIZE_INCREMENT];
|
||||
System.arraycopy(_freeOIDs, 0, tmp, 0, _freeSize);
|
||||
_freeOIDs = tmp;
|
||||
}
|
||||
_freeOIDs[_freeSize++] = id;
|
||||
*/
|
||||
// @formatter:on
|
||||
}
|
||||
|
||||
@Override
|
||||
public int size()
|
||||
{
|
||||
return (_freeSize + LAST_OID) - FIRST_OID;
|
||||
}
|
||||
}
|
391
trunk/java/com/l2jserver/gameserver/idfactory/IdFactory.java
Normal file
391
trunk/java/com/l2jserver/gameserver/idfactory/IdFactory.java
Normal file
@ -0,0 +1,391 @@
|
||||
/*
|
||||
* Copyright (C) 2004-2014 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 <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package com.l2jserver.gameserver.idfactory;
|
||||
|
||||
import java.sql.Connection;
|
||||
import java.sql.PreparedStatement;
|
||||
import java.sql.ResultSet;
|
||||
import java.sql.SQLException;
|
||||
import java.sql.Statement;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
import com.l2jserver.Config;
|
||||
import com.l2jserver.L2DatabaseFactory;
|
||||
|
||||
/**
|
||||
* This class ...
|
||||
* @version $Revision: 1.3.2.1.2.7 $ $Date: 2005/04/11 10:06:12 $
|
||||
*/
|
||||
public abstract class IdFactory
|
||||
{
|
||||
protected final Logger _log = Logger.getLogger(getClass().getName());
|
||||
|
||||
@Deprecated
|
||||
protected static final String[] ID_UPDATES =
|
||||
{
|
||||
"UPDATE items SET owner_id = ? WHERE owner_id = ?",
|
||||
"UPDATE items SET object_id = ? WHERE object_id = ?",
|
||||
"UPDATE character_quests SET charId = ? WHERE charId = ?",
|
||||
"UPDATE character_contacts SET charId = ? WHERE charId = ?",
|
||||
"UPDATE character_contacts SET friendId = ? WHERE contactId = ?",
|
||||
"UPDATE character_friends SET charId = ? WHERE charId = ?",
|
||||
"UPDATE character_friends SET friendId = ? WHERE friendId = ?",
|
||||
"UPDATE character_hennas SET charId = ? WHERE charId = ?",
|
||||
"UPDATE character_recipebook SET charId = ? WHERE charId = ?",
|
||||
"UPDATE character_recipeshoplist SET charId = ? WHERE charId = ?",
|
||||
"UPDATE character_shortcuts SET charId = ? WHERE charId = ?",
|
||||
"UPDATE character_shortcuts SET shortcut_id = ? WHERE shortcut_id = ? AND type = 1", // items
|
||||
"UPDATE character_macroses SET charId = ? WHERE charId = ?",
|
||||
"UPDATE character_skills SET charId = ? WHERE charId = ?",
|
||||
"UPDATE character_skills_save SET charId = ? WHERE charId = ?",
|
||||
"UPDATE character_subclasses SET charId = ? WHERE charId = ?",
|
||||
"UPDATE character_ui_actions SET charId = ? WHERE charId = ?",
|
||||
"UPDATE character_ui_categories SET charId = ? WHERE charId = ?",
|
||||
"UPDATE characters SET charId = ? WHERE charId = ?",
|
||||
"UPDATE characters SET clanid = ? WHERE clanid = ?",
|
||||
"UPDATE clan_data SET clan_id = ? WHERE clan_id = ?",
|
||||
"UPDATE siege_clans SET clan_id = ? WHERE clan_id = ?",
|
||||
"UPDATE clan_data SET ally_id = ? WHERE ally_id = ?",
|
||||
"UPDATE clan_data SET leader_id = ? WHERE leader_id = ?",
|
||||
"UPDATE pets SET item_obj_id = ? WHERE item_obj_id = ?",
|
||||
"UPDATE character_hennas SET charId = ? WHERE charId = ?",
|
||||
"UPDATE itemsonground SET object_id = ? WHERE object_id = ?",
|
||||
"UPDATE auction_bid SET bidderId = ? WHERE bidderId = ?",
|
||||
"UPDATE auction_watch SET charObjId = ? WHERE charObjId = ?",
|
||||
"UPDATE olympiad_fights SET charOneId = ? WHERE charOneId = ?",
|
||||
"UPDATE olympiad_fights SET charTwoId = ? WHERE charTwoId = ?",
|
||||
"UPDATE heroes_diary SET charId = ? WHERE charId = ?",
|
||||
"UPDATE olympiad_nobles SET charId = ? WHERE charId = ?",
|
||||
"UPDATE character_offline_trade SET charId = ? WHERE charId = ?",
|
||||
"UPDATE character_offline_trade_items SET charId = ? WHERE charId = ?",
|
||||
"UPDATE clanhall SET ownerId = ? WHERE ownerId = ?"
|
||||
};
|
||||
|
||||
protected static final String[] ID_CHECKS =
|
||||
{
|
||||
"SELECT owner_id FROM items WHERE object_id >= ? AND object_id < ?",
|
||||
"SELECT object_id FROM items WHERE object_id >= ? AND object_id < ?",
|
||||
"SELECT charId FROM character_quests WHERE charId >= ? AND charId < ?",
|
||||
"SELECT charId FROM character_contacts WHERE charId >= ? AND charId < ?",
|
||||
"SELECT contactId FROM character_contacts WHERE contactId >= ? AND contactId < ?",
|
||||
"SELECT charId FROM character_friends WHERE charId >= ? AND charId < ?",
|
||||
"SELECT charId FROM character_friends WHERE friendId >= ? AND friendId < ?",
|
||||
"SELECT charId FROM character_hennas WHERE charId >= ? AND charId < ?",
|
||||
"SELECT charId FROM character_recipebook WHERE charId >= ? AND charId < ?",
|
||||
"SELECT charId FROM character_recipeshoplist WHERE charId >= ? AND charId < ?",
|
||||
"SELECT charId FROM character_shortcuts WHERE charId >= ? AND charId < ?",
|
||||
"SELECT charId FROM character_macroses WHERE charId >= ? AND charId < ?",
|
||||
"SELECT charId FROM character_skills WHERE charId >= ? AND charId < ?",
|
||||
"SELECT charId FROM character_skills_save WHERE charId >= ? AND charId < ?",
|
||||
"SELECT charId FROM character_subclasses WHERE charId >= ? AND charId < ?",
|
||||
"SELECT charId FROM character_ui_actions WHERE charId >= ? AND charId < ?",
|
||||
"SELECT charId FROM character_ui_categories WHERE charId >= ? AND charId < ?",
|
||||
"SELECT charId FROM characters WHERE charId >= ? AND charId < ?",
|
||||
"SELECT clanid FROM characters WHERE clanid >= ? AND clanid < ?",
|
||||
"SELECT clan_id FROM clan_data WHERE clan_id >= ? AND clan_id < ?",
|
||||
"SELECT clan_id FROM siege_clans WHERE clan_id >= ? AND clan_id < ?",
|
||||
"SELECT ally_id FROM clan_data WHERE ally_id >= ? AND ally_id < ?",
|
||||
"SELECT leader_id FROM clan_data WHERE leader_id >= ? AND leader_id < ?",
|
||||
"SELECT item_obj_id FROM pets WHERE item_obj_id >= ? AND item_obj_id < ?",
|
||||
"SELECT object_id FROM itemsonground WHERE object_id >= ? AND object_id < ?"
|
||||
};
|
||||
|
||||
//@formatter:off
|
||||
private static final String[][] ID_EXTRACTS =
|
||||
{
|
||||
{"characters","charId"},
|
||||
{"items","object_id"},
|
||||
{"clan_data","clan_id"},
|
||||
{"itemsonground","object_id"},
|
||||
{"messages","messageId"}
|
||||
};
|
||||
//@formatter:on
|
||||
|
||||
private static final String[] TIMESTAMPS_CLEAN =
|
||||
{
|
||||
"DELETE FROM character_instance_time WHERE time <= ?",
|
||||
"DELETE FROM character_skills_save WHERE restore_type = 1 AND systime <= ?"
|
||||
};
|
||||
|
||||
protected boolean _initialized;
|
||||
|
||||
public static final int FIRST_OID = 0x10000000;
|
||||
public static final int LAST_OID = 0x7FFFFFFF;
|
||||
public static final int FREE_OBJECT_ID_SIZE = LAST_OID - FIRST_OID;
|
||||
|
||||
protected static final IdFactory _instance;
|
||||
|
||||
protected IdFactory()
|
||||
{
|
||||
setAllCharacterOffline();
|
||||
if (Config.DATABASE_CLEAN_UP)
|
||||
{
|
||||
if (Config.L2JMOD_ALLOW_WEDDING)
|
||||
{
|
||||
cleanInvalidWeddings();
|
||||
}
|
||||
cleanUpDB();
|
||||
}
|
||||
cleanUpTimeStamps();
|
||||
}
|
||||
|
||||
static
|
||||
{
|
||||
switch (Config.IDFACTORY_TYPE)
|
||||
{
|
||||
case Compaction:
|
||||
throw new UnsupportedOperationException("Compaction IdFactory is disabled.");
|
||||
// _instance = new CompactionIDFactory();
|
||||
// break;
|
||||
case BitSet:
|
||||
_instance = new BitSetIDFactory();
|
||||
break;
|
||||
case Stack:
|
||||
_instance = new StackIDFactory();
|
||||
break;
|
||||
default:
|
||||
_instance = null;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets all character offline
|
||||
*/
|
||||
private void setAllCharacterOffline()
|
||||
{
|
||||
try (Connection con = L2DatabaseFactory.getInstance().getConnection();
|
||||
Statement s = con.createStatement())
|
||||
{
|
||||
s.executeUpdate("UPDATE characters SET online = 0");
|
||||
_log.info("Updated characters online status.");
|
||||
}
|
||||
catch (SQLException e)
|
||||
{
|
||||
_log.log(Level.WARNING, "Could not update characters online status: " + e.getMessage(), e);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Cleans up Database
|
||||
*/
|
||||
private void cleanUpDB()
|
||||
{
|
||||
try (Connection con = L2DatabaseFactory.getInstance().getConnection();
|
||||
Statement stmt = con.createStatement())
|
||||
{
|
||||
long cleanupStart = System.currentTimeMillis();
|
||||
int cleanCount = 0;
|
||||
// Misc/Account Related
|
||||
// Please read the descriptions above each before uncommenting them. If you are still
|
||||
// unsure of what exactly it does, leave it commented out. This is for those who know
|
||||
// what they are doing. :)
|
||||
|
||||
// Deletes only accounts that HAVE been logged into and have no characters associated
|
||||
// with the account.
|
||||
// cleanCount +=
|
||||
// stmt.executeUpdate("DELETE FROM accounts WHERE accounts.lastactive > 0 AND accounts.login NOT IN (SELECT account_name FROM characters);");
|
||||
|
||||
// Deletes any accounts that don't have characters. Whether or not the player has ever
|
||||
// logged into the account.
|
||||
// cleanCount +=
|
||||
// stmt.executeUpdate("DELETE FROM accounts WHERE accounts.login NOT IN (SELECT account_name FROM characters);");
|
||||
|
||||
// Deletes banned accounts that have not been logged into for xx amount of days
|
||||
// (specified at the end of the script, default is set to 90 days). This prevents
|
||||
// accounts from being deleted that were accidentally or temporarily banned.
|
||||
// cleanCount +=
|
||||
// stmt.executeUpdate("DELETE FROM accounts WHERE accounts.accessLevel < 0 AND DATEDIFF(CURRENT_DATE( ) , FROM_UNIXTIME(`lastactive`/1000)) > 90;");
|
||||
// cleanCount +=
|
||||
// stmt.executeUpdate("DELETE FROM characters WHERE characters.account_name NOT IN (SELECT login FROM accounts);");
|
||||
|
||||
// If the character does not exist...
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM account_gsdata WHERE account_gsdata.account_name NOT IN (SELECT account_name FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM character_contacts WHERE character_contacts.charId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM character_contacts WHERE character_contacts.contactId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM character_friends WHERE character_friends.charId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM character_friends WHERE character_friends.friendId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM character_hennas WHERE character_hennas.charId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM character_macroses WHERE character_macroses.charId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM character_quests WHERE character_quests.charId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM character_recipebook WHERE character_recipebook.charId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM character_recipeshoplist WHERE character_recipeshoplist.charId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM character_shortcuts WHERE character_shortcuts.charId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM character_skills WHERE character_skills.charId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM character_skills_save WHERE character_skills_save.charId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM character_subclasses WHERE character_subclasses.charId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM character_raid_points WHERE character_raid_points.charId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM character_instance_time WHERE character_instance_time.charId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM character_ui_actions WHERE character_ui_actions.charId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM character_ui_categories WHERE character_ui_categories.charId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM items WHERE items.owner_id NOT IN (SELECT charId FROM characters) AND items.owner_id NOT IN (SELECT clan_id FROM clan_data) AND items.owner_id != -1;");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM items WHERE items.owner_id = -1 AND loc LIKE 'MAIL' AND loc_data NOT IN (SELECT messageId FROM messages WHERE senderId = -1);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM item_auction_bid WHERE item_auction_bid.playerObjId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM item_attributes WHERE item_attributes.itemId NOT IN (SELECT object_id FROM items);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM item_elementals WHERE item_elementals.itemId NOT IN (SELECT object_id FROM items);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM cursed_weapons WHERE cursed_weapons.charId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM heroes WHERE heroes.charId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM olympiad_nobles WHERE olympiad_nobles.charId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM olympiad_nobles_eom WHERE olympiad_nobles_eom.charId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM pets WHERE pets.item_obj_id NOT IN (SELECT object_id FROM items);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM merchant_lease WHERE merchant_lease.player_id NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM character_reco_bonus WHERE character_reco_bonus.charId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM clan_data WHERE clan_data.leader_id NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM clan_data WHERE clan_data.clan_id NOT IN (SELECT clanid FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM olympiad_fights WHERE olympiad_fights.charOneId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM olympiad_fights WHERE olympiad_fights.charTwoId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM heroes_diary WHERE heroes_diary.charId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM character_offline_trade WHERE character_offline_trade.charId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM character_offline_trade_items WHERE character_offline_trade_items.charId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM character_quest_global_data WHERE character_quest_global_data.charId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM character_tpbookmark WHERE character_tpbookmark.charId NOT IN (SELECT charId FROM characters);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM character_variables WHERE character_variables.charId NOT IN (SELECT charId FROM characters);");
|
||||
|
||||
// If the clan does not exist...
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM clan_privs WHERE clan_privs.clan_id NOT IN (SELECT clan_id FROM clan_data);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM clan_skills WHERE clan_skills.clan_id NOT IN (SELECT clan_id FROM clan_data);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM clan_subpledges WHERE clan_subpledges.clan_id NOT IN (SELECT clan_id FROM clan_data);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM clan_wars WHERE clan_wars.clan1 NOT IN (SELECT clan_id FROM clan_data);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM clan_wars WHERE clan_wars.clan2 NOT IN (SELECT clan_id FROM clan_data);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM clanhall_functions WHERE clanhall_functions.hall_id NOT IN (SELECT id FROM clanhall WHERE ownerId <> 0);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM siege_clans WHERE siege_clans.clan_id NOT IN (SELECT clan_id FROM clan_data);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM clan_notices WHERE clan_notices.clan_id NOT IN (SELECT clan_id FROM clan_data);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM auction_bid WHERE auction_bid.bidderId NOT IN (SELECT clan_id FROM clan_data);");
|
||||
// Untested, leaving commented out until confirmation that it's safe/works properly. Was
|
||||
// initially removed because of a bug. Search for idfactory.java changes in the trac for
|
||||
// further info.
|
||||
// cleanCount +=
|
||||
// stmt.executeUpdate("DELETE FROM auction WHERE auction.id IN (SELECT id FROM clanhall WHERE ownerId <> 0) AND auction.sellerId=0;");
|
||||
// cleanCount +=
|
||||
// stmt.executeUpdate("DELETE FROM auction_bid WHERE auctionId NOT IN (SELECT id FROM auction)");
|
||||
|
||||
// Forum Related
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM forums WHERE forums.forum_owner_id NOT IN (SELECT clan_id FROM clan_data) AND forums.forum_parent=2;");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM forums WHERE forums.forum_owner_id NOT IN (SELECT charId FROM characters) AND forums.forum_parent=3;");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM posts WHERE posts.post_forum_id NOT IN (SELECT forum_id FROM forums);");
|
||||
cleanCount += stmt.executeUpdate("DELETE FROM topic WHERE topic.topic_forum_id NOT IN (SELECT forum_id FROM forums);");
|
||||
|
||||
// Update needed items after cleaning has taken place.
|
||||
stmt.executeUpdate("UPDATE clan_data SET auction_bid_at = 0 WHERE auction_bid_at NOT IN (SELECT auctionId FROM auction_bid);");
|
||||
stmt.executeUpdate("UPDATE clan_data SET new_leader_id = 0 WHERE new_leader_id <> 0 AND new_leader_id NOT IN (SELECT charId FROM characters);");
|
||||
stmt.executeUpdate("UPDATE clan_subpledges SET leader_id=0 WHERE clan_subpledges.leader_id NOT IN (SELECT charId FROM characters) AND leader_id > 0;");
|
||||
stmt.executeUpdate("UPDATE castle SET taxpercent=0 WHERE castle.id NOT IN (SELECT hasCastle FROM clan_data);");
|
||||
stmt.executeUpdate("UPDATE characters SET clanid=0, clan_privs=0, wantspeace=0, subpledge=0, lvl_joined_academy=0, apprentice=0, sponsor=0, clan_join_expiry_time=0, clan_create_expiry_time=0 WHERE characters.clanid > 0 AND characters.clanid NOT IN (SELECT clan_id FROM clan_data);");
|
||||
stmt.executeUpdate("UPDATE clanhall SET ownerId=0, paidUntil=0, paid=0 WHERE clanhall.ownerId NOT IN (SELECT clan_id FROM clan_data);");
|
||||
stmt.executeUpdate("UPDATE fort SET owner=0 WHERE owner NOT IN (SELECT clan_id FROM clan_data);");
|
||||
|
||||
_log.info("Cleaned " + cleanCount + " elements from database in " + ((System.currentTimeMillis() - cleanupStart) / 1000) + " s");
|
||||
}
|
||||
catch (SQLException e)
|
||||
{
|
||||
_log.log(Level.WARNING, "Could not clean up database: " + e.getMessage(), e);
|
||||
}
|
||||
}
|
||||
|
||||
private void cleanInvalidWeddings()
|
||||
{
|
||||
try (Connection con = L2DatabaseFactory.getInstance().getConnection();
|
||||
Statement s = con.createStatement())
|
||||
{
|
||||
s.executeUpdate("DELETE FROM mods_wedding WHERE player1Id NOT IN (SELECT charId FROM characters)");
|
||||
s.executeUpdate("DELETE FROM mods_wedding WHERE player2Id NOT IN (SELECT charId FROM characters)");
|
||||
_log.info("Cleaned up invalid Weddings.");
|
||||
}
|
||||
catch (SQLException e)
|
||||
{
|
||||
_log.log(Level.WARNING, "Could not clean up invalid Weddings: " + e.getMessage(), e);
|
||||
}
|
||||
}
|
||||
|
||||
private void cleanUpTimeStamps()
|
||||
{
|
||||
try (Connection con = L2DatabaseFactory.getInstance().getConnection())
|
||||
{
|
||||
int cleanCount = 0;
|
||||
for (String line : TIMESTAMPS_CLEAN)
|
||||
{
|
||||
try (PreparedStatement stmt = con.prepareStatement(line))
|
||||
{
|
||||
stmt.setLong(1, System.currentTimeMillis());
|
||||
cleanCount += stmt.executeUpdate();
|
||||
}
|
||||
}
|
||||
_log.info("Cleaned " + cleanCount + " expired timestamps from database.");
|
||||
}
|
||||
catch (SQLException e)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
* @throws Exception
|
||||
* @throws SQLException
|
||||
*/
|
||||
protected final Integer[] extractUsedObjectIDTable() throws Exception
|
||||
{
|
||||
final List<Integer> temp = new ArrayList<>();
|
||||
try (Connection con = L2DatabaseFactory.getInstance().getConnection();
|
||||
Statement s = con.createStatement())
|
||||
{
|
||||
|
||||
String extractUsedObjectIdsQuery = "";
|
||||
|
||||
for (String[] tblClmn : ID_EXTRACTS)
|
||||
{
|
||||
extractUsedObjectIdsQuery += "SELECT " + tblClmn[1] + " FROM " + tblClmn[0] + " UNION ";
|
||||
}
|
||||
|
||||
extractUsedObjectIdsQuery = extractUsedObjectIdsQuery.substring(0, extractUsedObjectIdsQuery.length() - 7); // Remove the last " UNION "
|
||||
try (ResultSet rs = s.executeQuery(extractUsedObjectIdsQuery))
|
||||
{
|
||||
while (rs.next())
|
||||
{
|
||||
temp.add(rs.getInt(1));
|
||||
}
|
||||
}
|
||||
}
|
||||
Collections.sort(temp);
|
||||
return temp.toArray(new Integer[temp.size()]);
|
||||
}
|
||||
|
||||
public boolean isInitialized()
|
||||
{
|
||||
return _initialized;
|
||||
}
|
||||
|
||||
public static IdFactory getInstance()
|
||||
{
|
||||
return _instance;
|
||||
}
|
||||
|
||||
public abstract int getNextId();
|
||||
|
||||
/**
|
||||
* return a used Object ID back to the pool
|
||||
* @param id
|
||||
*/
|
||||
public abstract void releaseId(int id);
|
||||
|
||||
public abstract int size();
|
||||
}
|
@ -0,0 +1,161 @@
|
||||
/*
|
||||
* Copyright (C) 2004-2014 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 <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package com.l2jserver.gameserver.idfactory;
|
||||
|
||||
import java.sql.Connection;
|
||||
import java.sql.PreparedStatement;
|
||||
import java.sql.ResultSet;
|
||||
import java.sql.SQLException;
|
||||
import java.util.Stack;
|
||||
|
||||
import com.l2jserver.Config;
|
||||
import com.l2jserver.L2DatabaseFactory;
|
||||
|
||||
/**
|
||||
* This class ...
|
||||
* @version $Revision: 1.3.2.1.2.7 $ $Date: 2005/04/11 10:06:12 $
|
||||
*/
|
||||
public class StackIDFactory extends IdFactory
|
||||
{
|
||||
private int _curOID;
|
||||
private int _tempOID;
|
||||
|
||||
private final Stack<Integer> _freeOIDStack = new Stack<>();
|
||||
|
||||
protected StackIDFactory()
|
||||
{
|
||||
super();
|
||||
_curOID = FIRST_OID;
|
||||
_tempOID = FIRST_OID;
|
||||
|
||||
try (Connection con = L2DatabaseFactory.getInstance().getConnection())
|
||||
{
|
||||
// con.createStatement().execute("drop table if exists tmp_obj_id");
|
||||
|
||||
Integer[] tmp_obj_ids = extractUsedObjectIDTable();
|
||||
if (tmp_obj_ids.length > 0)
|
||||
{
|
||||
_curOID = tmp_obj_ids[tmp_obj_ids.length - 1];
|
||||
}
|
||||
_log.info("Max Id = " + _curOID);
|
||||
|
||||
int N = tmp_obj_ids.length;
|
||||
for (int idx = 0; idx < N; idx++)
|
||||
{
|
||||
N = insertUntil(tmp_obj_ids, idx, N, con);
|
||||
}
|
||||
|
||||
_curOID++;
|
||||
_log.info("IdFactory: Next usable Object ID is: " + _curOID);
|
||||
_initialized = true;
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
_log.severe(getClass().getSimpleName() + ": Could not be initialized properly:" + e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
private int insertUntil(Integer[] tmp_obj_ids, int idx, int N, Connection con) throws SQLException
|
||||
{
|
||||
int id = tmp_obj_ids[idx];
|
||||
if (id == _tempOID)
|
||||
{
|
||||
_tempOID++;
|
||||
return N;
|
||||
}
|
||||
// check these IDs not present in DB
|
||||
if (Config.BAD_ID_CHECKING)
|
||||
{
|
||||
for (String check : ID_CHECKS)
|
||||
{
|
||||
try (PreparedStatement ps = con.prepareStatement(check))
|
||||
{
|
||||
ps.setInt(1, _tempOID);
|
||||
// ps.setInt(1, _curOID);
|
||||
ps.setInt(2, id);
|
||||
try (ResultSet rs = ps.executeQuery())
|
||||
{
|
||||
while (rs.next())
|
||||
{
|
||||
int badId = rs.getInt(1);
|
||||
_log.severe("Bad ID " + badId + " in DB found by: " + check);
|
||||
throw new RuntimeException();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// int hole = id - _curOID;
|
||||
int hole = id - _tempOID;
|
||||
if (hole > (N - idx))
|
||||
{
|
||||
hole = N - idx;
|
||||
}
|
||||
for (int i = 1; i <= hole; i++)
|
||||
{
|
||||
// log.info("Free ID added " + (_tempOID));
|
||||
_freeOIDStack.push(_tempOID);
|
||||
_tempOID++;
|
||||
// _curOID++;
|
||||
}
|
||||
if (hole < (N - idx))
|
||||
{
|
||||
_tempOID++;
|
||||
}
|
||||
return N - hole;
|
||||
}
|
||||
|
||||
public static IdFactory getInstance()
|
||||
{
|
||||
return _instance;
|
||||
}
|
||||
|
||||
@Override
|
||||
public synchronized int getNextId()
|
||||
{
|
||||
int id;
|
||||
if (!_freeOIDStack.empty())
|
||||
{
|
||||
id = _freeOIDStack.pop();
|
||||
}
|
||||
else
|
||||
{
|
||||
id = _curOID;
|
||||
_curOID = _curOID + 1;
|
||||
}
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* return a used Object ID back to the pool
|
||||
* @param id
|
||||
*/
|
||||
@Override
|
||||
public synchronized void releaseId(int id)
|
||||
{
|
||||
_freeOIDStack.push(id);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int size()
|
||||
{
|
||||
return (FREE_OBJECT_ID_SIZE - _curOID) + FIRST_OID + _freeOIDStack.size();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user