All Downloads are FREE. Search and download functionalities are using the official Maven repository.

bt.net.ConnectionHandlerFactory Maven / Gradle / Ivy

There is a newer version: 1.10
Show newest version
package bt.net;

import bt.metainfo.TorrentId;
import bt.protocol.IHandshakeFactory;
import bt.torrent.TorrentRegistry;

import java.time.Duration;
import java.util.Collection;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

/**
 *

Note that this class implements a service. * Hence, is not a part of the public API and is a subject to change.

*/ public class ConnectionHandlerFactory implements IConnectionHandlerFactory { private IHandshakeFactory handshakeFactory; private ConnectionHandler incomingHandler; private Duration peerHandshakeTimeout; private Collection handshakeHandlers; private Map outgoingHandlers; public ConnectionHandlerFactory(IHandshakeFactory handshakeFactory, TorrentRegistry torrentRegistry, Collection handshakeHandlers, Duration peerHandshakeTimeout) { this.handshakeFactory = handshakeFactory; this.incomingHandler = new IncomingHandshakeHandler(handshakeFactory, torrentRegistry, handshakeHandlers, peerHandshakeTimeout); this.outgoingHandlers = new ConcurrentHashMap<>(); this.handshakeHandlers = handshakeHandlers; this.peerHandshakeTimeout = peerHandshakeTimeout; } @Override public ConnectionHandler getIncomingHandler() { return incomingHandler; } @Override public ConnectionHandler getOutgoingHandler(TorrentId torrentId) { ConnectionHandler outgoing = outgoingHandlers.get(torrentId); if (outgoing == null) { outgoing = new OutgoingHandshakeHandler(handshakeFactory, torrentId, handshakeHandlers, peerHandshakeTimeout.toMillis()); ConnectionHandler existing = outgoingHandlers.putIfAbsent(torrentId, outgoing); if (existing != null) { outgoing = existing; } } return outgoing; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy