📄 peeritem.java
字号:
/*
* Created on Apr 26, 2005
* Created by Alon Rohter
* Copyright (C) 2005, 2006 Aelitis, All Rights Reserved.
*
* 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 2
* 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* AELITIS, SAS au capital de 46,603.30 euros
* 8 Allee Lenotre, La Grille Royale, 78600 Le Mesnil le Roi, France.
*
*/
package com.aelitis.azureus.core.peermanager.peerdb;
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.util.Arrays;
import org.gudy.azureus2.core3.peer.PEPeerSource;
/**
* Represents a peer item, unique by ip address + port combo.
* NOTE: Overrides equals().
*/
public class PeerItem {
private final byte[] address;
private final int port;
private final int source;
private final int hashcode;
private final int handshake;
protected PeerItem( String _address, int port, int source, int handshake_type ) {
byte[] raw;
try{
//see if we can resolve the address into a compact raw IPv4/6 byte array (4 or 16 bytes)
InetAddress ip = InetAddress.getByName( _address );
raw = ip.getAddress();
}
catch( UnknownHostException e ) {
//not a standard IPv4/6 address, so just use the full string bytes
raw = _address.getBytes();
}
this.address = raw;
this.port = port;
this.source = source;
this.hashcode = new String( address ).hashCode() + port;
this.handshake = handshake_type;
if( address.length != 4 ) {
System.out.println( "PeerItem OUT: address byte size=" +address.length);
}
}
protected PeerItem( byte[] serialization, int source, int handshake_type ) {
//extract address and port
address = new byte[ serialization.length -2 ];
System.arraycopy( serialization, 0, address, 0, serialization.length -2 );
byte p0 = serialization[ serialization.length -2 ];
byte p1 = serialization[ serialization.length -1 ];
port = (p1 & 0xFF) + ((p0 & 0xFF) << 8);
this.source = source;
this.hashcode = new String( address ).hashCode() + port;
this.handshake = handshake_type;
if( address.length > 15 ) {
System.out.println( "PeerItem IN: address byte size=" +address.length);
}
}
public byte[] getSerialization() {
//combine address and port bytes into one
byte[] full_address = new byte[ address.length +2 ];
System.arraycopy( address, 0, full_address, 0, address.length );
full_address[ address.length ] = (byte)(port >> 8);
full_address[ address.length +1 ] = (byte)(port & 0xff);
return full_address;
}
public String getAddressString() {
try{
//see if it's an IPv4/6 address (4 or 16 bytes)
return InetAddress.getByAddress( address ).getHostAddress();
}
catch( UnknownHostException e ) {
//not a standard IPv4/6 address, so just return as full string
return new String( address );
}
}
public int getPort() { return port; }
public int getSource() { return source; }
public int getHandshakeType() { return handshake; }
public boolean equals( Object obj ) {
if( this == obj ) return true;
if( obj != null && obj instanceof PeerItem ) {
PeerItem other = (PeerItem)obj;
if( this.port == other.port && Arrays.equals( this.address, other.address ) ) return true;
}
return false;
}
public int hashCode() { return hashcode; }
public static String convertSourceString( int source_id ) {
//we use an int to store the source text string as this class is supposed to be lightweight
switch( source_id ) {
case PeerItemFactory.PEER_SOURCE_TRACKER: return PEPeerSource.PS_BT_TRACKER;
case PeerItemFactory.PEER_SOURCE_DHT: return PEPeerSource.PS_DHT;
case PeerItemFactory.PEER_SOURCE_PEER_EXCHANGE: return PEPeerSource.PS_OTHER_PEER;
case PeerItemFactory.PEER_SOURCE_PLUGIN: return PEPeerSource.PS_PLUGIN;
case PeerItemFactory.PEER_SOURCE_INCOMING: return PEPeerSource.PS_INCOMING;
default: return "<unknown>";
}
}
public static int convertSourceID( String source ) {
if( source.equals( PEPeerSource.PS_BT_TRACKER ) ) return PeerItemFactory.PEER_SOURCE_TRACKER;
if( source.equals( PEPeerSource.PS_DHT ) ) return PeerItemFactory.PEER_SOURCE_DHT;
if( source.equals( PEPeerSource.PS_OTHER_PEER ) ) return PeerItemFactory.PEER_SOURCE_PEER_EXCHANGE;
if( source.equals( PEPeerSource.PS_PLUGIN ) ) return PeerItemFactory.PEER_SOURCE_PLUGIN;
if( source.equals( PEPeerSource.PS_INCOMING ) ) return PeerItemFactory.PEER_SOURCE_INCOMING;
return -1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -