FileDocCategorySizeDatePackage
EnhancedDownloadManagerFile.javaAPI DocAzureus 3.0.3.43308Fri Sep 14 14:07:34 BST 2007com.aelitis.azureus.core.download

EnhancedDownloadManagerFile.java

/*
 * Created on Sep 9, 2007
 * Created by Paul Gardner
 * Copyright (C) 2007 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 63.529,40 euros
 * 8 Allee Lenotre, La Grille Royale, 78600 Le Mesnil le Roi, France.
 *
 */


package com.aelitis.azureus.core.download;

import java.util.*;

import org.gudy.azureus2.core3.disk.DiskManagerFileInfo;
import org.gudy.azureus2.core3.util.Debug;

public class 
EnhancedDownloadManagerFile 
{
	private DiskManagerFileInfo		file;
	private long					offset;
	
	private int						header_size;
	private int[][]					speeds;
	
	protected
	EnhancedDownloadManagerFile(
		DiskManagerFileInfo		_file,
		long					_offset,
		Map						_map )
	{
		file		= _file;
		offset		= _offset;
		
		try{
			if ( _map != null ){
				
				Long	l_header_size = (Long)_map.get( "header_size" );
				
				if ( l_header_size != null ){
					
					header_size = l_header_size.intValue();
				}
				
				List 	stream_info = (List)_map.get( "stream_info" );
				
				if ( stream_info != null ){
					
					speeds = new int[stream_info.size()][];
					
					for (int i=0;i<stream_info.size();i++){
						
						List	entry = (List)stream_info.get(i);
						
						
						int		speed 			= ((Long)entry.get(0)).intValue();
						int		worst_buffer	= ((Long)entry.get(1)).intValue();
						int		init_buffer		= ((Long)entry.get(2)).intValue();
						
						speeds[i] = new int[]{ speed, worst_buffer, init_buffer };
					}
				}
			}
		}catch( Throwable e ){
			
			Debug.printStackTrace(e);
		}
	}
	
	public DiskManagerFileInfo
	getFile()
	{
		return( file );
	}
	
	public long
	getByteOffestInTorrent()
	{
		return( offset );
	}
	
	public int
	getHeaderSize()
	{
		return( header_size );
	}
	
	public int
	getInitialBufferBytes(
		long		rate )
	{
		int	buffer_size = 0;
		
		if ( speeds != null ){
			
			int	k_rate = (int)rate/1024;
					
			for (int i=0;i<speeds.length;i++){
				
				if ( k_rate > speeds[i][0] ){
					
						// use the init buffer rather than the worst one
					
					buffer_size = speeds[i][2] * 1024;
					
					break;
				}
			}
		}
		
		// System.out.println( "getInitialBufferBytes(" + rate + ") -> " + header_size + "/" + buffer_size );
		
		return( header_size + buffer_size );
	}
	
	public String
	getString()
	{
		String	speeds_str = "";
		
		if ( speeds != null ){
		
			speeds_str = ",speeds=";
			
			for (int i=0;i<speeds.length;i++){
				
				int[]	s = speeds[i];
				
				speeds_str += (i==0?"":",") + "[" + s[0] + "," + s[1] + "," + s[2] + "]"; 
			}
		}
		
		return( file.getFile(true).getName()+ ",header=" + header_size + speeds_str );
	}
}