/* * Created on Sep 28, 2004 * Created by Alon Rohter * Copyright (C) 2004, 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.networkmanager.impl; import java.io.IOException; import org.gudy.azureus2.core3.util.AEDiagnostics; import org.gudy.azureus2.core3.util.Debug; import com.aelitis.azureus.core.networkmanager.*; /** * A fast read entity backed by a single peer connection. */ public class SinglePeerDownloader implements RateControlledEntity { private final NetworkConnectionBase connection; private final RateHandler rate_handler; public SinglePeerDownloader( NetworkConnectionBase connection, RateHandler rate_handler ) { this.connection = connection; this.rate_handler = rate_handler; } public RateHandler getRateHandler() { return( rate_handler ); } public boolean canProcess( EventWaiter waiter ) { if( connection.getTransportBase().isReadyForRead( waiter ) != 0 ) { return false; //underlying transport not ready } if( rate_handler.getCurrentNumBytesAllowed() < 1 ) { return false; //not allowed to receive any bytes } return true; } public int doProcessing( EventWaiter waiter, int max_bytes ) { if( connection.getTransportBase().isReadyForRead(waiter) != 0 ) { return 0; } int num_bytes_allowed = rate_handler.getCurrentNumBytesAllowed(); if( num_bytes_allowed < 1 ) { return 0; } if ( max_bytes > 0 && max_bytes < num_bytes_allowed ){ num_bytes_allowed = max_bytes; } //int mss = NetworkManager.getTcpMssSize(); //if( num_bytes_allowed > mss ) num_bytes_allowed = mss; int bytes_read = 0; try { bytes_read = connection.getIncomingMessageQueue().receiveFromTransport( num_bytes_allowed ); } catch( Throwable e ) { if( AEDiagnostics.TRACE_CONNECTION_DROPS ) { if( e.getMessage() == null ) { Debug.out( "null read exception message: ", e ); } else { if( e.getMessage().indexOf( "end of stream on socket read" ) == -1 && e.getMessage().indexOf( "An existing connection was forcibly closed by the remote host" ) == -1 && e.getMessage().indexOf( "Connection reset by peer" ) == -1 && e.getMessage().indexOf( "An established connection was aborted by the software in your host machine" ) == -1 ) { System.out.println( "SP: read exception [" +connection.getTransportBase().getDescription()+ "]: " +e.getMessage() ); } } } if (! (e instanceof IOException )){ Debug.printStackTrace(e); } connection.notifyOfException( e ); return 0; } if( bytes_read < 1 ) { return 0; } rate_handler.bytesProcessed( bytes_read ); return bytes_read; } public int getPriority() { return RateControlledEntity.PRIORITY_NORMAL; } public boolean getPriorityBoost(){ return false; } public long getBytesReadyToWrite() { return( 0 ); } public int getConnectionCount( EventWaiter waiter ) { return( 1 ); } public int getReadyConnectionCount( EventWaiter waiter ) { if ( connection.getTransportBase().isReadyForRead( waiter) == 0 ){ return( 1 ); } return( 0 ); } public String getString() { return( "SPD: " + connection.getString()); } }