/*
* This file is part of the L2J Mobius project.
*
* 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 .
*/
package com.l2jmobius.status;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.io.PrintWriter;
import java.lang.management.ManagementFactory;
import java.lang.management.ThreadInfo;
import java.lang.management.ThreadMXBean;
import java.net.InetAddress;
import java.net.Socket;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Map;
import java.util.Map.Entry;
import java.util.NoSuchElementException;
import java.util.Properties;
import java.util.StringTokenizer;
import com.l2jmobius.Config;
import com.l2jmobius.L2DatabaseFactory;
import com.l2jmobius.gameserver.Announcements;
import com.l2jmobius.gameserver.GameTimeController;
import com.l2jmobius.gameserver.LoginServerThread;
import com.l2jmobius.gameserver.Shutdown;
import com.l2jmobius.gameserver.ThreadPoolManager;
import com.l2jmobius.gameserver.cache.HtmCache;
import com.l2jmobius.gameserver.datatables.GmListTable;
import com.l2jmobius.gameserver.datatables.ItemTable;
import com.l2jmobius.gameserver.datatables.NpcTable;
import com.l2jmobius.gameserver.datatables.SkillTable;
import com.l2jmobius.gameserver.datatables.TeleportLocationTable;
import com.l2jmobius.gameserver.instancemanager.Manager;
import com.l2jmobius.gameserver.instancemanager.QuestManager;
import com.l2jmobius.gameserver.model.GMAudit;
import com.l2jmobius.gameserver.model.L2Character;
import com.l2jmobius.gameserver.model.L2ItemInstance;
import com.l2jmobius.gameserver.model.L2Multisell;
import com.l2jmobius.gameserver.model.L2Object;
import com.l2jmobius.gameserver.model.L2Summon;
import com.l2jmobius.gameserver.model.L2World;
import com.l2jmobius.gameserver.model.TradeList;
import com.l2jmobius.gameserver.model.TradeList.TradeItem;
import com.l2jmobius.gameserver.model.actor.instance.L2DoorInstance;
import com.l2jmobius.gameserver.model.actor.instance.L2MonsterInstance;
import com.l2jmobius.gameserver.model.actor.instance.L2NpcInstance;
import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance;
import com.l2jmobius.gameserver.network.clientpackets.Say2;
import com.l2jmobius.gameserver.network.serverpackets.CreatureSay;
import com.l2jmobius.gameserver.network.serverpackets.InventoryUpdate;
import com.l2jmobius.gameserver.network.serverpackets.SystemMessage;
import com.l2jmobius.gameserver.taskmanager.DecayTaskManager;
import com.l2jmobius.gameserver.util.DynamicExtension;
import javolution.util.FastComparator;
import javolution.util.FastTable;
public class GameStatusThread extends Thread
{
// private static final Logger _log = Logger.getLogger(AdminTeleport.class.getName());
private final Socket _csocket;
private final PrintWriter _print;
private final BufferedReader _read;
private final int _uptime;
private void telnetOutput(int type, String text)
{
if (Config.DEVELOPER)
{
if (type == 1)
{
System.out.println("TELNET | " + text);
}
else if (type == 2)
{
System.out.print("TELNET | " + text);
}
else if (type == 3)
{
System.out.print(text);
}
else if (type == 4)
{
System.out.println(text);
}
else
{
System.out.println("TELNET | " + text);
}
}
else
{
// only print output if the message is rejected
if (type == 5)
{
System.out.println("TELNET | " + text);
}
}
}
private boolean isValidIP(Socket client)
{
boolean result = false;
final InetAddress ClientIP = client.getInetAddress();
// convert IP to String, and compare with list
final String clientStringIP = ClientIP.getHostAddress();
telnetOutput(1, "Connection from: " + clientStringIP);
// read and loop thru list of IPs, compare with newIP
if (Config.DEVELOPER)
{
telnetOutput(2, "");
}
final Properties telnetSettings = new Properties();
try (InputStream telnetIS = new FileInputStream(new File(Config.TELNET_FILE)))
{
telnetSettings.load(telnetIS);
final String HostList = telnetSettings.getProperty("ListOfHosts", "127.0.0.1,localhost,::1");
if (Config.DEVELOPER)
{
telnetOutput(3, "Comparing ip to list...");
}
// compare
String ipToCompare = null;
for (final String ip : HostList.split(","))
{
if (!result)
{
ipToCompare = InetAddress.getByName(ip).getHostAddress();
if (clientStringIP.equals(ipToCompare))
{
result = true;
}
if (Config.DEVELOPER)
{
telnetOutput(3, clientStringIP + " = " + ipToCompare + "(" + ip + ") = " + result);
}
}
}
}
catch (final IOException e)
{
if (Config.DEVELOPER)
{
telnetOutput(4, "");
}
telnetOutput(1, "Error: " + e);
}
if (Config.DEVELOPER)
{
telnetOutput(4, "Allow IP: " + result);
}
return result;
}
public GameStatusThread(Socket client, int uptime, String StatusPW) throws IOException
{
setPriority(Thread.MAX_PRIORITY);
_csocket = client;
_uptime = uptime;
_print = new PrintWriter(_csocket.getOutputStream());
_read = new BufferedReader(new InputStreamReader(_csocket.getInputStream()));
if (isValidIP(client))
{
telnetOutput(1, client.getInetAddress().getHostAddress() + " accepted.");
_print.println("Welcome To The L2JMobius Telnet Session.");
_print.println("Please Insert Your Password!");
_print.print("Password: ");
_print.flush();
final String tmpLine = _read.readLine();
if (tmpLine == null)
{
_print.println("Error.");
_print.println("Disconnected...");
_print.flush();
_csocket.close();
}
else
{
if (!tmpLine.equals(StatusPW))
{
_print.println("Incorrect Password!");
_print.println("Disconnected...");
_print.flush();
_csocket.close();
}
else
{
_print.println("Password Correct!");
_print.println("[L2JMobius GameServer]");
_print.print("");
_print.flush();
start();
}
}
}
else
{
telnetOutput(5, "Connection attempt from " + client.getInetAddress().getHostAddress() + " rejected.");
_csocket.close();
}
}
@Override
public void run()
{
String _usrCommand = "";
try
{
while ((_usrCommand.compareTo("quit") != 0) && (_usrCommand.compareTo("exit") != 0))
{
_usrCommand = _read.readLine();
if (_usrCommand == null)
{
_csocket.close();
break;
}
if (_usrCommand.equals("help"))
{
_print.println("The following is a list of all available commands: ");
_print.println("help - shows this help.");
_print.println("status - displays basic server statistics.");
_print.println("performance - shows server performance statistics.");
_print.println("forcegc - forced garbage collection.");
_print.println("purge - removes finished threads from thread pools.");
_print.println("announce - announces in game.");
_print.println("msg - Sends a whisper to char with .");
_print.println("gmchat - Sends a message to all GMs with .");
_print.println("gmlist - lists all gms online.");
_print.println("kick - kick player from server.");
_print.println("shutdown - shuts down server in seconds.");
_print.println("restart - restarts down server in seconds.");
_print.println("abort - aborts shutdown/restart.");
_print.println("give ");
_print.println("extlist - list all loaded extension classes");
_print.println("extreload - reload and initializes the named extension or all if used without argument");
_print.println("extinit - initilizes the named extension or all if used without argument");
_print.println("extunload - unload the named extension or all if used without argument");
_print.println("debug - executes the debug command (see 'help debug').");
_print.println("jail [time]");
_print.println("unjail ");
_print.println("quit - closes telnet session.");
}
else if (_usrCommand.equals("help debug"))
{
_print.println("The following is a list of all available debug commands: ");
_print.println("full - Dumps complete debug information to an file (recommended)");
_print.println("decay - prints info about the DecayManager");
_print.println("PacketTP - prints info about the General Packet ThreadPool");
_print.println("IOPacketTP - prints info about the I/O Packet ThreadPool");
_print.println("GeneralTP - prints info about the General ThreadPool");
}
else if (_usrCommand.equals("status"))
{
_print.print(getServerStatus());
_print.flush();
}
else if (_usrCommand.equals("forcegc"))
{
System.gc();
final StringBuilder sb = new StringBuilder();
sb.append("RAM Used: " + ((Runtime.getRuntime().totalMemory() - Runtime.getRuntime().freeMemory()) / 1048576)); // 1024 * 1024 = 1048576
_print.println(sb.toString());
}
else if (_usrCommand.equals("performance"))
{
for (final String line : ThreadPoolManager.getInstance().getStats())
{
_print.println(line);
}
_print.flush();
}
else if (_usrCommand.equals("purge"))
{
ThreadPoolManager.getInstance().purge();
_print.println("STATUS OF THREAD POOLS AFTER PURGE COMMAND:");
_print.println("");
for (final String line : ThreadPoolManager.getInstance().getStats())
{
_print.println(line);
}
_print.flush();
}
else if (_usrCommand.startsWith("announce"))
{
try
{
_usrCommand = _usrCommand.substring(9);
Announcements.getInstance().announceToAll(_usrCommand);
_print.println("Announcement Sent!");
}
catch (final StringIndexOutOfBoundsException e)
{
_print.println("Please Enter Some Text To Announce!");
}
}
else if (_usrCommand.startsWith("msg"))
{
try
{
final String val = _usrCommand.substring(4);
final StringTokenizer st = new StringTokenizer(val);
final String name = st.nextToken();
final String message = val.substring(name.length() + 1);
final L2PcInstance reciever = L2World.getInstance().getPlayer(name);
final CreatureSay cs = new CreatureSay(0, Say2.TELL, "Telnet Priv", message);
if (reciever != null)
{
reciever.sendPacket(cs);
_print.println("Telnet Priv->" + name + ": " + message);
_print.println("Message Sent!");
}
else
{
_print.println("Unable To Find Username: " + name);
}
}
catch (final StringIndexOutOfBoundsException e)
{
_print.println("Please Enter Some Text!");
}
}
else if (_usrCommand.startsWith("gmchat"))
{
try
{
_usrCommand = _usrCommand.substring(7);
final CreatureSay cs = new CreatureSay(0, 9, "Telnet GM Broadcast from " + _csocket.getInetAddress().getHostAddress(), _usrCommand);
GmListTable.broadcastToGMs(cs);
_print.println("Your Message Has Been Sent To " + GetOnlineGMS() + " GM(s).");
}
catch (final StringIndexOutOfBoundsException e)
{
_print.println("Please Enter Some Text To Announce!");
}
}
else if (_usrCommand.equals("gmlist"))
{
int igm = 0;
String gmList = "";
for (final String player : GmListTable.getInstance().getAllGmNames(true))
{
gmList = gmList + ", " + player;
igm++;
}
_print.println("There are currently " + igm + " GM(s) online...");
if (!gmList.isEmpty())
{
_print.println(gmList);
}
}
else if (_usrCommand.startsWith("kick"))
{
try
{
_usrCommand = _usrCommand.substring(5);
final L2PcInstance player = L2World.getInstance().getPlayer(_usrCommand);
if (player != null)
{
player.sendMessage("You are kicked by gm.");
player.logout();
_print.println("Player kicked.");
}
}
catch (final StringIndexOutOfBoundsException e)
{
_print.println("Please enter player name to kick");
}
}
else if (_usrCommand.startsWith("shutdown"))
{
try
{
final int val = Integer.parseInt(_usrCommand.substring(9));
Shutdown.getInstance().startTelnetShutdown(_csocket.getInetAddress().getHostAddress(), val, false);
_print.println("Server Will Shutdown In " + val + " Seconds!");
_print.println("Type \"abort\" To Abort Shutdown!");
}
catch (final StringIndexOutOfBoundsException e)
{
_print.println("Please Enter * amount of seconds to shutdown!");
}
catch (final Exception NumberFormatException)
{
_print.println("Numbers Only!");
}
}
else if (_usrCommand.startsWith("restart"))
{
try
{
final int val = Integer.parseInt(_usrCommand.substring(8));
Shutdown.getInstance().startTelnetShutdown(_csocket.getInetAddress().getHostAddress(), val, true);
_print.println("Server Will Restart In " + val + " Seconds!");
_print.println("Type \"abort\" To Abort Restart!");
}
catch (final StringIndexOutOfBoundsException e)
{
_print.println("Please Enter * amount of seconds to restart!");
}
catch (final Exception NumberFormatException)
{
_print.println("Numbers Only!");
}
}
else if (_usrCommand.startsWith("abort"))
{
Shutdown.getInstance().Telnetabort(_csocket.getInetAddress().getHostAddress());
_print.println("OK! - Shutdown/Restart Aborted.");
}
else if (_usrCommand.equals("quit"))
{
/* Do Nothing :p - Just here to save us from the "Command Not Understood" Text */
}
else if (_usrCommand.startsWith("give"))
{
final StringTokenizer st = new StringTokenizer(_usrCommand.substring(5));
try
{
final L2PcInstance player = L2World.getInstance().getPlayer(st.nextToken());
final int itemId = Integer.parseInt(st.nextToken());
final int amount = Integer.parseInt(st.nextToken());
if (player != null)
{
final L2ItemInstance item = player.getInventory().addItem("Status-Give", itemId, amount, null, null);
final InventoryUpdate iu = new InventoryUpdate();
iu.addItem(item);
player.sendPacket(iu);
final SystemMessage sm = new SystemMessage(SystemMessage.YOU_PICKED_UP_S1_S2);
sm.addItemName(itemId);
sm.addNumber(amount);
player.sendPacket(sm);
_print.println("ok");
GMAudit.auditGMAction("Telnet Admin", "Give Item", player.getName(), "item: " + itemId + " amount: " + amount);
}
}
catch (final Exception e)
{
}
}
else if (_usrCommand.startsWith("jail"))
{
final StringTokenizer st = new StringTokenizer(_usrCommand.substring(5));
try
{
final String playerName = st.nextToken();
final L2PcInstance playerObj = L2World.getInstance().getPlayer(playerName);
int delay = 0;
try
{
delay = Integer.parseInt(st.nextToken());
}
catch (final NumberFormatException nfe)
{
}
catch (final NoSuchElementException nsee)
{
}
if (playerObj != null)
{
playerObj.setInJail(true, delay);
_print.println("Character " + playerObj.getName() + " jailed for " + (delay > 0 ? delay + " minutes." : "ever!"));
}
else
{
jailOfflinePlayer(playerName, delay);
}
}
catch (final NoSuchElementException nsee)
{
_print.println("Specify a character name.");
}
catch (final Exception e)
{
if (Config.DEBUG)
{
e.printStackTrace();
}
}
}
else if (_usrCommand.startsWith("unjail"))
{
final StringTokenizer st = new StringTokenizer(_usrCommand.substring(7));
try
{
final String playerName = st.nextToken();
final L2PcInstance playerObj = L2World.getInstance().getPlayer(playerName);
if (playerObj != null)
{
playerObj.stopJailTask(false);
playerObj.setInJail(false, 0);
_print.println("Character " + playerObj.getName() + " removed from jail");
}
else
{
unjailOfflinePlayer(playerName);
}
}
catch (final NoSuchElementException nsee)
{
_print.println("Specify a character name.");
}
catch (final Exception e)
{
if (Config.DEBUG)
{
e.printStackTrace();
}
}
}
else if (_usrCommand.startsWith("debug") && (_usrCommand.length() > 6))
{
final StringTokenizer st = new StringTokenizer(_usrCommand.substring(6));
try
{
final String dbg = st.nextToken();
if (dbg.equals("decay"))
{
_print.print(DecayTaskManager.getInstance().toString());
}
else if (dbg.equals("ai"))
{
// do nothing
}
else if (dbg.equals("aiflush"))
{
// do nothing
}
else if (dbg.equals("PacketTP"))
{
final String str = ThreadPoolManager.getInstance().getPacketStats();
_print.println(str);
int i = 0;
File f = new File("./log/StackTrace-PacketTP-" + i + ".txt");
while (f.exists())
{
i++;
f = new File("./log/StackTrace-PacketTP-" + i + ".txt");
}
f.getParentFile().mkdirs();
try (FileOutputStream fos = new FileOutputStream(f);
OutputStreamWriter out = new OutputStreamWriter(fos, "UTF-8"))
{
out.write(str);
out.flush();
}
}
else if (dbg.equals("IOPacketTP"))
{
final String str = ThreadPoolManager.getInstance().getIOPacketStats();
_print.println(str);
int i = 0;
File f = new File("./log/StackTrace-IOPacketTP-" + i + ".txt");
while (f.exists())
{
i++;
f = new File("./log/StackTrace-IOPacketTP-" + i + ".txt");
}
f.getParentFile().mkdirs();
try (FileOutputStream fos = new FileOutputStream(f);
OutputStreamWriter out = new OutputStreamWriter(fos, "UTF-8"))
{
out.write(str);
out.flush();
}
}
else if (dbg.equals("GeneralTP"))
{
final String str = ThreadPoolManager.getInstance().getGeneralStats();
_print.println(str);
int i = 0;
File f = new File("./log/StackTrace-GeneralTP-" + i + ".txt");
while (f.exists())
{
i++;
f = new File("./log/StackTrace-GeneralTP-" + i + ".txt");
}
f.getParentFile().mkdirs();
try (FileOutputStream fos = new FileOutputStream(f);
OutputStreamWriter out = new OutputStreamWriter(fos, "UTF-8"))
{
out.write(str);
out.flush();
}
}
else if (dbg.equals("full"))
{
final Calendar cal = Calendar.getInstance();
final SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss Z");
final StringBuilder sb = new StringBuilder();
sb.append(sdf.format(cal.getTime()));
sb.append("\n\n");
sb.append(getServerStatus());
sb.append("\n\n");
sb.append("\n## Java Platform Information ##");
sb.append("\nJava Runtime Name: " + System.getProperty("java.runtime.name"));
sb.append("\nJava Version: " + System.getProperty("java.version"));
sb.append("\nJava Class Version: " + System.getProperty("java.class.version"));
sb.append('\n');
sb.append("\n## Virtual Machine Information ##");
sb.append("\nVM Name: " + System.getProperty("java.vm.name"));
sb.append("\nVM Version: " + System.getProperty("java.vm.version"));
sb.append("\nVM Vendor: " + System.getProperty("java.vm.vendor"));
sb.append("\nVM Info: " + System.getProperty("java.vm.info"));
sb.append('\n');
sb.append("\n## OS Information ##");
sb.append("\nName: " + System.getProperty("os.name"));
sb.append("\nArchiteture: " + System.getProperty("os.arch"));
sb.append("\nVersion: " + System.getProperty("os.version"));
sb.append('\n');
sb.append("\n## Runtime Information ##");
sb.append("\nCPU Count: " + Runtime.getRuntime().availableProcessors());
sb.append("\nCurrent Free Heap Size: " + (Runtime.getRuntime().freeMemory() / 1024 / 1024) + " mb");
sb.append("\nCurrent Heap Size: " + (Runtime.getRuntime().totalMemory() / 1024 / 1024) + " mb");
sb.append("\nMaximum Heap Size: " + (Runtime.getRuntime().maxMemory() / 1024 / 1024) + " mb");
sb.append('\n');
sb.append("\n## Class Path Information ##\n");
final String cp = System.getProperty("java.class.path");
final String[] libs = cp.split(File.pathSeparator);
for (final String lib : libs)
{
sb.append(lib);
sb.append('\n');
}
sb.append('\n');
sb.append("## Threads Information ##\n");
final Map allThread = Thread.getAllStackTraces();
final FastTable> entries = new FastTable<>();
entries.setValueComparator(new FastComparator>()
{
@Override
public boolean areEqual(Entry e1, Entry e2)
{
return e1.getKey().getName().equals(e2.getKey().getName());
}
@Override
public int compare(Entry e1, Entry e2)
{
return e1.getKey().getName().compareTo(e2.getKey().getName());
}
@Override
public int hashCodeOf(Entry e)
{
return e.hashCode();
}
});
entries.addAll(allThread.entrySet());
entries.sort();
for (final Entry entry : entries)
{
final StackTraceElement[] stes = entry.getValue();
final Thread t = entry.getKey();
sb.append("--------------\n");
sb.append(t.toString() + " (" + t.getId() + ")\n");
sb.append("State: " + t.getState() + '\n');
sb.append("isAlive: " + t.isAlive() + " | isDaemon: " + t.isDaemon() + " | isInterrupted: " + t.isInterrupted() + '\n');
sb.append('\n');
for (final StackTraceElement ste : stes)
{
sb.append(ste.toString());
sb.append('\n');
}
sb.append('\n');
}
sb.append('\n');
final ThreadMXBean mbean = ManagementFactory.getThreadMXBean();
final long[] ids = findDeadlockedThreads(mbean);
if ((ids != null) && (ids.length > 0))
{
final Thread[] threads = new Thread[ids.length];
for (int i = 0; i < threads.length; i++)
{
threads[i] = findMatchingThread(mbean.getThreadInfo(ids[i]));
}
sb.append("Deadlocked Threads:\n");
sb.append("-------------------\n");
for (final Thread thread : threads)
{
System.err.println(thread);
for (final StackTraceElement ste : thread.getStackTrace())
{
sb.append("\t" + ste);
sb.append('\n');
}
}
}
sb.append("\n\n## Thread Pool Manager Statistics ##\n");
for (final String line : ThreadPoolManager.getInstance().getStats())
{
sb.append(line);
sb.append('\n');
}
int i = 0;
File f = new File("./log/Debug-" + i + ".txt");
while (f.exists())
{
i++;
f = new File("./log/Debug-" + i + ".txt");
}
f.getParentFile().mkdirs();
try (FileOutputStream fos = new FileOutputStream(f);
OutputStreamWriter out = new OutputStreamWriter(fos, "UTF-8"))
{
out.write(sb.toString());
out.flush();
}
_print.println("Debug output saved to log/" + f.getName());
_print.flush();
}
}
catch (final Exception e)
{
}
}
else if (_usrCommand.startsWith("reload"))
{
final StringTokenizer st = new StringTokenizer(_usrCommand.substring(7));
try
{
final String type = st.nextToken();
if (type.equals("multisell"))
{
_print.print("Reloading multisell... ");
L2Multisell.getInstance().reload();
_print.print("done\n");
}
else if (type.equals("skill"))
{
_print.print("Reloading skills... ");
SkillTable.getInstance().reload();
_print.print("done\n");
}
else if (type.equals("npc"))
{
_print.print("Reloading npc templates along with quests... ");
NpcTable.getInstance().reloadAllNpc();
QuestManager.getInstance().reloadAllQuests();
_print.print("done\n");
}
else if (type.equals("html"))
{
_print.print("Reloading html cache... ");
HtmCache.getInstance().reload();
_print.print("done\n");
}
else if (type.equals("item"))
{
_print.print("Reloading item templates... ");
ItemTable.getInstance().reload();
_print.print("done\n");
}
else if (type.equals("instancemanager"))
{
_print.print("Reloading instance managers... ");
Manager.reloadAll();
_print.print("done\n");
}
else if (type.equals("teleports"))
{
_print.print("Reloading telport location table... ");
TeleportLocationTable.getInstance().reloadAll();
_print.print("done\n");
}
}
catch (final Exception e)
{
}
}
else if (_usrCommand.startsWith("gamestat"))
{
final StringTokenizer st = new StringTokenizer(_usrCommand.substring(9));
try
{
final String type = st.nextToken();
// name;type;x;y;itemId:enchant:price...
if (type.equals("privatestore"))
{
for (final L2PcInstance player : L2World.getInstance().getAllPlayers())
{
if (player.getPrivateStoreType() == 0)
{
continue;
}
TradeList list = null;
String content = "";
if (player.getPrivateStoreType() == 1) // sell
{
list = player.getSellList();
for (final TradeItem item : list.getItems())
{
content += item.getItem().getItemId() + ":" + item.getEnchant() + ":" + item.getPrice() + ":";
}
content = player.getName() + ";" + "sell;" + player.getX() + ";" + player.getY() + ";" + content;
_print.println(content);
continue;
}
else if (player.getPrivateStoreType() == 3) // buy
{
list = player.getBuyList();
for (final TradeItem item : list.getItems())
{
content += item.getItem().getItemId() + ":" + item.getEnchant() + ":" + item.getPrice() + ":";
}
content = player.getName() + ";" + "buy;" + player.getX() + ";" + player.getY() + ";" + content;
_print.println(content);
continue;
}
}
}
}
catch (final Exception e)
{
}
}
else if (_usrCommand.startsWith("extreload"))
{
final String[] args = _usrCommand.split("\\s+");
if (args.length > 1)
{
for (int i = 1; i < args.length; i++)
{
DynamicExtension.getInstance().reload(args[i]);
}
}
else
{
DynamicExtension.getInstance().reload();
}
}
else if (_usrCommand.startsWith("extinit"))
{
final String[] args = _usrCommand.split("\\s+");
if (args.length > 1)
{
for (int i = 1; i < args.length; i++)
{
_print.print(DynamicExtension.getInstance().initExtension(args[i]) + "\r\n");
}
}
else
{
_print.print(DynamicExtension.getInstance().initExtensions());
}
}
else if (_usrCommand.startsWith("extunload"))
{
final String[] args = _usrCommand.split("\\s+");
if (args.length > 1)
{
for (int i = 1; i < args.length; i++)
{
_print.print(DynamicExtension.getInstance().unloadExtension(args[i]) + "\r\n");
}
}
else
{
_print.print(DynamicExtension.getInstance().unloadExtensions());
}
}
else if (_usrCommand.startsWith("extlist"))
{
for (final String e : DynamicExtension.getInstance().getExtensions())
{
_print.print(e + "\r\n");
}
}
else if (_usrCommand.startsWith("get"))
{
Object o = null;
try
{
final String[] args = _usrCommand.substring(3).split("\\s+");
if (args.length == 1)
{
o = DynamicExtension.getInstance().get(args[0], null);
}
else
{
o = DynamicExtension.getInstance().get(args[0], args[1]);
}
}
catch (final Exception ex)
{
_print.print(ex.toString() + "\r\n");
}
if (o != null)
{
_print.print(o.toString() + "\r\n");
}
}
else if (_usrCommand.length() > 0)
{
try
{
final String[] args = _usrCommand.split("\\s+");
if (args.length == 1)
{
DynamicExtension.getInstance().set(args[0], null, null);
}
else if (args.length == 2)
{
DynamicExtension.getInstance().set(args[0], null, args[1]);
}
else
{
DynamicExtension.getInstance().set(args[0], args[1], args[2]);
}
}
catch (final Exception ex)
{
_print.print(ex.toString());
}
}
else if (_usrCommand.length() == 0)
{
/* Do Nothing Again - Same reason as the quit part */ }
_print.print("");
_print.flush();
}
if (!_csocket.isClosed())
{
_print.println("Bye Bye!");
_print.flush();
_csocket.close();
}
telnetOutput(1, "Connection from " + _csocket.getInetAddress().getHostAddress() + " was closed by client.");
}
catch (final IOException e)
{
e.printStackTrace();
}
}
private void jailOfflinePlayer(String name, int delay)
{
try (Connection con = L2DatabaseFactory.getInstance().getConnection();
PreparedStatement statement = con.prepareStatement("UPDATE characters SET x=?, y=?, z=?, in_jail=?, jail_timer=? WHERE char_name=?"))
{
statement.setInt(1, -114356);
statement.setInt(2, -249645);
statement.setInt(3, -2984);
statement.setInt(4, 1);
statement.setLong(5, delay * 60000);
statement.setString(6, name);
statement.execute();
final int count = statement.getUpdateCount();
if (count == 0)
{
_print.println("Character not found!");
}
else
{
_print.println("Character " + name + " jailed for " + (delay > 0 ? delay + " minutes." : "ever!"));
}
}
catch (final SQLException se)
{
_print.println("SQLException while jailing player");
if (Config.DEBUG)
{
se.printStackTrace();
}
}
}
private void unjailOfflinePlayer(String name)
{
try (Connection con = L2DatabaseFactory.getInstance().getConnection();
PreparedStatement statement = con.prepareStatement("UPDATE characters SET x=?, y=?, z=?, in_jail=?, jail_timer=? WHERE char_name=?"))
{
statement.setInt(1, 17836);
statement.setInt(2, 170178);
statement.setInt(3, -3507);
statement.setInt(4, 0);
statement.setLong(5, 0);
statement.setString(6, name);
statement.execute();
final int count = statement.getUpdateCount();
if (count == 0)
{
_print.println("Character not found!");
}
else
{
_print.println("Character " + name + " set free.");
}
}
catch (final SQLException se)
{
_print.println("SQLException while jailing player");
if (Config.DEBUG)
{
se.printStackTrace();
}
}
}
private int GetOnlineGMS()
{
return GmListTable.getInstance().getAllGms(true).size();
}
private String GetUptime(int time)
{
int uptime = (int) System.currentTimeMillis() - time;
uptime = uptime / 1000;
final int h = uptime / 3600;
final int m = (uptime - (h * 3600)) / 60;
final int s = ((uptime - (h * 3600)) - (m * 60));
return h + "hrs " + m + "mins " + s + "secs";
}
private String GameTime()
{
final int t = GameTimeController.getInstance().getGameTime();
final int h = t / 60;
final int m = t % 60;
final SimpleDateFormat format = new SimpleDateFormat("H:mm");
final Calendar cal = Calendar.getInstance();
cal.set(Calendar.HOUR_OF_DAY, h);
cal.set(Calendar.MINUTE, m);
return format.format(cal.getTime());
}
public String getServerStatus()
{
int playerCount = 0, objectCount = 0;
final int max = LoginServerThread.getInstance().getMaxPlayer();
playerCount = L2World.getInstance().getAllPlayersCount();
objectCount = L2World.getInstance().getAllVisibleObjectsCount();
int itemCount = 0;
int itemVoidCount = 0;
int monsterCount = 0;
int minionCount = 0;
int minionsGroupCount = 0;
int npcCount = 0;
int charCount = 0;
int pcCount = 0;
int doorCount = 0;
int summonCount = 0;
int AICount = 0;
for (final L2Object obj : L2World.getInstance().getAllVisibleObjects())
{
if (obj == null)
{
continue;
}
if (obj instanceof L2Character)
{
if (((L2Character) obj).hasAI())
{
AICount++;
}
}
if (obj instanceof L2ItemInstance)
{
if (((L2ItemInstance) obj).getLocation() == L2ItemInstance.ItemLocation.VOID)
{
itemVoidCount++;
}
else
{
itemCount++;
}
}
else if (obj instanceof L2MonsterInstance)
{
monsterCount++;
minionCount += ((L2MonsterInstance) obj).getTotalSpawnedMinionsInstances();
minionsGroupCount += ((L2MonsterInstance) obj).getTotalSpawnedMinionsGroups();
}
else if (obj instanceof L2NpcInstance)
{
npcCount++;
}
else if (obj instanceof L2PcInstance)
{
pcCount++;
}
else if (obj instanceof L2Summon)
{
summonCount++;
}
else if (obj instanceof L2DoorInstance)
{
doorCount++;
}
else if (obj instanceof L2Character)
{
charCount++;
}
}
final StringBuilder sb = new StringBuilder();
sb.append("Server Status: ");
sb.append("\r\n ---> Player Count: " + playerCount + "/" + max);
sb.append("\r\n +--> Object Count: " + objectCount);
sb.append("\r\n +--> AI Count: " + AICount);
sb.append("\r\n +.... L2Item(Void): " + itemVoidCount);
sb.append("\r\n +.......... L2Item: " + itemCount);
sb.append("\r\n +....... L2Monster: " + monsterCount);
sb.append("\r\n +......... Minions: " + minionCount);
sb.append("\r\n +.. Minions Groups: " + minionsGroupCount);
sb.append("\r\n +........... L2Npc: " + npcCount);
sb.append("\r\n +............ L2Pc: " + pcCount);
sb.append("\r\n +........ L2Summon: " + summonCount);
sb.append("\r\n +.......... L2Door: " + doorCount);
sb.append("\r\n +.......... L2Char: " + charCount);
sb.append("\r\n ---> Ingame Time: " + GameTime());
sb.append("\r\n ---> Server Uptime: " + GetUptime(_uptime));
sb.append("\r\n ---> GM Count: " + GetOnlineGMS());
sb.append("\r\n ---> Threads: " + Thread.activeCount());
sb.append("\r\n RAM Used: " + ((Runtime.getRuntime().totalMemory() - Runtime.getRuntime().freeMemory()) / 1048576)); // 1024 * 1024 = 1048576
sb.append("\r\n");
return sb.toString();
}
private long[] findDeadlockedThreads(ThreadMXBean mbean)
{
// JDK 1.5 only supports the findMonitorDeadlockedThreads()
// method, so you need to comment out the following three lines
if (mbean.isSynchronizerUsageSupported())
{
return mbean.findDeadlockedThreads();
}
return mbean.findMonitorDeadlockedThreads();
}
private Thread findMatchingThread(ThreadInfo inf)
{
for (final Thread thread : Thread.getAllStackTraces().keySet())
{
if (thread.getId() == inf.getThreadId())
{
return thread;
}
}
throw new IllegalStateException("Deadlocked Thread not found");
}
}