📄 getadminconsoleinfotask.java
字号:
/**
* $Revision: $
* $Date: $
*
* Copyright (C) 2004-2007 Jive Software. All rights reserved.
*
* This software is published under the terms of the GNU Public License (GPL),
* a copy of which is included in this distribution, or a commercial license
* agreement with Jive.
*/
package org.jivesoftware.openfire.container;
import org.jivesoftware.openfire.XMPPServer;
import org.jivesoftware.util.cache.ClusterTask;
import org.jivesoftware.util.cache.ExternalizableUtil;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.net.*;
import java.util.Collections;
import java.util.Enumeration;
/**
* Task that will return the bind interface and ports being used by the admin
* console of the node where the task will be executed. When the admin console
* is binded to all network interfaces this task will try to find a valid IP
* address that will work for the remote node.<p>
*
* A <tt>null</tt> bindInterface in the result of this task means that the task
* failed to find a valid IP address where the admin console is listening.
*
* @author Gaston Dombiak
*/
public class GetAdminConsoleInfoTask implements ClusterTask {
private String bindInterface;
private int adminPort;
private int adminSecurePort;
private String adminSecret;
public Object getResult() {
return this;
}
public void run() {
PluginManager pluginManager = XMPPServer.getInstance().getPluginManager();
AdminConsolePlugin adminConsolePlugin = ((AdminConsolePlugin) pluginManager.getPlugin("admin"));
bindInterface = adminConsolePlugin.getBindInterface();
adminPort = adminConsolePlugin.getAdminUnsecurePort();
adminSecurePort = adminConsolePlugin.getAdminSecurePort();
adminSecret = AdminConsolePlugin.secret;
if (bindInterface == null) {
Enumeration<NetworkInterface> nets = null;
try {
nets = NetworkInterface.getNetworkInterfaces();
} catch (SocketException e) {
// We failed to discover a valid IP address where the admin console is running
return;
}
for (NetworkInterface netInterface : Collections.list(nets)) {
Enumeration<InetAddress> addresses = netInterface.getInetAddresses();
for (InetAddress address : Collections.list(addresses)) {
if ("127.0.0.1".equals(address.getHostAddress())) {
continue;
}
Socket socket = new Socket();
InetSocketAddress remoteAddress = new InetSocketAddress(address, adminPort > 0 ? adminPort : adminSecurePort);
try {
socket.connect(remoteAddress);
bindInterface = address.getHostAddress();
break;
} catch (IOException e) {
// Ignore this address. Let's hope there is more addresses to validate
}
}
}
}
}
public String getBindInterface() {
return bindInterface;
}
public int getAdminPort() {
return adminPort;
}
public int getAdminSecurePort() {
return adminSecurePort;
}
public String getAdminSecret() {
return adminSecret;
}
public void writeExternal(ObjectOutput out) throws IOException {
ExternalizableUtil.getInstance().writeInt(out, adminPort);
ExternalizableUtil.getInstance().writeInt(out, adminSecurePort);
ExternalizableUtil.getInstance().writeBoolean(out, bindInterface != null);
if (bindInterface != null) {
ExternalizableUtil.getInstance().writeSafeUTF(out, bindInterface);
}
ExternalizableUtil.getInstance().writeSafeUTF(out, adminSecret);
}
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {
adminPort = ExternalizableUtil.getInstance().readInt(in);
adminSecurePort = ExternalizableUtil.getInstance().readInt(in);
if (ExternalizableUtil.getInstance().readBoolean(in)) {
bindInterface = ExternalizableUtil.getInstance().readSafeUTF(in);
}
adminSecret = ExternalizableUtil.getInstance().readSafeUTF(in);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -