2005-10-19 22:02:37 +00:00
|
|
|
/* TrackerInfo - Holds information returned by a tracker, mainly the peer list.
|
|
|
|
Copyright (C) 2003 Mark J. Wielaard
|
|
|
|
|
|
|
|
This file is part of Snark.
|
|
|
|
|
|
|
|
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, 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package org.klomp.snark;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.InputStream;
|
2008-07-16 13:42:54 +00:00
|
|
|
import java.util.HashSet;
|
2005-10-19 22:02:37 +00:00
|
|
|
import java.util.Iterator;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.Map;
|
|
|
|
import java.util.Set;
|
|
|
|
|
2008-07-16 13:42:54 +00:00
|
|
|
import org.klomp.snark.bencode.BDecoder;
|
|
|
|
import org.klomp.snark.bencode.BEValue;
|
|
|
|
import org.klomp.snark.bencode.InvalidBEncodingException;
|
2005-10-19 22:02:37 +00:00
|
|
|
|
|
|
|
public class TrackerInfo
|
|
|
|
{
|
|
|
|
private final String failure_reason;
|
|
|
|
private final int interval;
|
|
|
|
private final Set peers;
|
|
|
|
|
|
|
|
public TrackerInfo(InputStream in, byte[] my_id, MetaInfo metainfo)
|
|
|
|
throws IOException
|
|
|
|
{
|
|
|
|
this(new BDecoder(in), my_id, metainfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
public TrackerInfo(BDecoder be, byte[] my_id, MetaInfo metainfo)
|
|
|
|
throws IOException
|
|
|
|
{
|
|
|
|
this(be.bdecodeMap().getMap(), my_id, metainfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
public TrackerInfo(Map m, byte[] my_id, MetaInfo metainfo)
|
|
|
|
throws IOException
|
|
|
|
{
|
|
|
|
BEValue reason = (BEValue)m.get("failure reason");
|
|
|
|
if (reason != null)
|
|
|
|
{
|
|
|
|
failure_reason = reason.getString();
|
|
|
|
interval = -1;
|
|
|
|
peers = null;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
failure_reason = null;
|
|
|
|
BEValue beInterval = (BEValue)m.get("interval");
|
|
|
|
if (beInterval == null)
|
|
|
|
throw new InvalidBEncodingException("No interval given");
|
|
|
|
else
|
|
|
|
interval = beInterval.getInt();
|
|
|
|
BEValue bePeers = (BEValue)m.get("peers");
|
|
|
|
if (bePeers == null)
|
|
|
|
throw new InvalidBEncodingException("No peer list");
|
|
|
|
else
|
|
|
|
peers = getPeers(bePeers.getList(), my_id, metainfo);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Set getPeers(InputStream in, byte[] my_id, MetaInfo metainfo)
|
|
|
|
throws IOException
|
|
|
|
{
|
|
|
|
return getPeers(new BDecoder(in), my_id, metainfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Set getPeers(BDecoder be, byte[] my_id, MetaInfo metainfo)
|
|
|
|
throws IOException
|
|
|
|
{
|
|
|
|
return getPeers(be.bdecodeList().getList(), my_id, metainfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Set getPeers(List l, byte[] my_id, MetaInfo metainfo)
|
|
|
|
throws IOException
|
|
|
|
{
|
|
|
|
Set peers = new HashSet(l.size());
|
|
|
|
|
|
|
|
Iterator it = l.iterator();
|
|
|
|
while (it.hasNext())
|
|
|
|
{
|
2008-05-26 13:13:26 +00:00
|
|
|
PeerID peerID;
|
|
|
|
try {
|
|
|
|
peerID = new PeerID(((BEValue)it.next()).getMap());
|
|
|
|
} catch (InvalidBEncodingException ibe) {
|
|
|
|
// don't let one bad entry spoil the whole list
|
2008-11-16 17:11:53 +00:00
|
|
|
//Snark.debug("Discarding peer from list: " + ibe, Snark.ERROR);
|
2008-05-26 13:13:26 +00:00
|
|
|
continue;
|
|
|
|
}
|
2005-10-19 22:02:37 +00:00
|
|
|
peers.add(new Peer(peerID, my_id, metainfo));
|
|
|
|
}
|
|
|
|
|
|
|
|
return peers;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Set getPeers()
|
|
|
|
{
|
|
|
|
return peers;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getFailureReason()
|
|
|
|
{
|
|
|
|
return failure_reason;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getInterval()
|
|
|
|
{
|
|
|
|
return interval;
|
|
|
|
}
|
|
|
|
|
2009-08-11 21:58:56 +00:00
|
|
|
@Override
|
2005-10-19 22:02:37 +00:00
|
|
|
public String toString()
|
|
|
|
{
|
|
|
|
if (failure_reason != null)
|
|
|
|
return "TrackerInfo[FAILED: " + failure_reason + "]";
|
|
|
|
else
|
|
|
|
return "TrackerInfo[interval=" + interval
|
|
|
|
+ ", peers=" + peers + "]";
|
|
|
|
}
|
|
|
|
}
|