📄 downloadmanager.java
字号:
/*
* File : DownloadManager.java
* Created : 19-Oct-2003
* By : parg
*
* Azureus - a Java Bittorrent client
*
* 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.
*
* 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 ( see the LICENSE file ).
*
* 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.gudy.azureus2.core3.download;
import java.io.File;
import org.gudy.azureus2.core3.global.*;
import org.gudy.azureus2.core3.disk.*;
import org.gudy.azureus2.core3.peer.*;
import org.gudy.azureus2.core3.torrent.*;
import org.gudy.azureus2.core3.tracker.client.*;
import org.gudy.azureus2.core3.util.IndentWriter;
import org.gudy.azureus2.plugins.download.DownloadAnnounceResult;
import org.gudy.azureus2.plugins.download.DownloadScrapeResult;
public interface
DownloadManager
{
public static final int STATE_START_OF_DAY = -1; // should never actually see this one
public static final int STATE_WAITING = 0;
public static final int STATE_INITIALIZING = 5;
public static final int STATE_INITIALIZED = 10;
public static final int STATE_ALLOCATING = 20;
public static final int STATE_CHECKING = 30;
// Ready: Resources allocated
public static final int STATE_READY = 40;
public static final int STATE_DOWNLOADING = 50;
public static final int STATE_FINISHING = 55;
public static final int STATE_SEEDING = 60;
public static final int STATE_STOPPING = 65;
// Stopped: can't be automatically started
public static final int STATE_STOPPED = 70;
public static final int STATE_CLOSED = 71; // download never *has* this state, just used to inform
// when stopping for az closedown
// Queued: Same as stopped, except can be automatically started
public static final int STATE_QUEUED = 75;
public static final int STATE_ERROR = 100;
public static final int WEALTH_STOPPED = 1;
public static final int WEALTH_NO_TRACKER = 2;
public static final int WEALTH_NO_REMOTE = 3;
public static final int WEALTH_OK = 4;
public static final int WEALTH_KO = 5;
public static final int WEALTH_ERROR = 6;
public void
initialize();
public int
getState();
/**
* For stopping this returns the target state after stopping (stopped/queued)
* @return
*/
public int
getSubState();
public void
setStateWaiting();
public void
setStateQueued();
public void
startDownload();
public boolean canForceRecheck();
public void forceRecheck();
/**
* Reset the file download state to totally undownloaded. Download must be stopped
* @param file
*/
public void
resetFile(
DiskManagerFileInfo file );
/**
* Recheck a particular file. Download must be stopped
* @param file
*/
public void
recheckFile(
DiskManagerFileInfo file );
/**
* Stop the download manager, and do any file/torrent removals.
* @param _stateAfterStopping
* @param remove_torrent remove the .torrent file after stopping
* @param remove_data remove the data file after stopping
*/
public void
stopIt(
int stateAfterStopping,
boolean remove_torrent,
boolean remove_data );
public boolean
pause();
public boolean
isPaused();
public void
resume();
public GlobalManager
getGlobalManager();
public DiskManager
getDiskManager();
public DiskManagerFileInfo[]
getDiskManagerFileInfo();
public PEPeerManager
getPeerManager();
public DownloadManagerState
getDownloadState();
public TOTorrent
getTorrent();
public TRTrackerAnnouncer
getTrackerClient();
public void
requestTrackerAnnounce(
boolean immediate );
public void
requestTrackerScrape(
boolean immediate );
public TRTrackerScraperResponse
getTrackerScrapeResponse();
public void
setTrackerScrapeResponse(
TRTrackerScraperResponse response );
public String
getDisplayName();
/**
* returns a name based on the torrent hash or an empty string if torrent invalid
* @return
*/
public String
getInternalName();
public long
getSize();
public String
getTorrentFileName();
public void
setTorrentFileName(String string);
public File
getAbsoluteSaveLocation();
public File
getSaveLocation();
/**
* changes the save directory. Only call this if you know what you are doing!!!!
* @param sPath
*/
public void
setTorrentSaveDir(
String sPath );
public boolean isForceStart();
public void setForceStart(boolean forceStart);
public boolean
isPersistent();
/**
* Retrieves whether the download is complete
*
* @param bIncludingDND true- include files marked as Do Not Download.<BR>
* false- don't include files marked DND.<p>
* If there are DND files and you choose to include
* DND in the calculation, false will always be
* returned.
* @return whether download is complete
*/
public boolean
isDownloadComplete(boolean bIncludingDND);
public String
getTrackerStatus();
public int
getTrackerTime();
public String
getTorrentComment();
public String
getTorrentCreatedBy();
public long
getTorrentCreationDate();
public int
getNbPieces();
public String
getPieceLength();
public int
getNbSeeds();
public int
getNbPeers();
/**
* Checks if all the files the user wants to download from this torrent
* actually exist on their filesystem.
* <p>
* If a file does not exist, the download will be set to error state.
*
* @return Whether all the non-skipped (non-DND) files exist
*/
public boolean
filesExist();
public String
getErrorDetails();
public DownloadManagerStats
getStats();
public int
getPosition();
public void
setPosition(
int newPosition );
/**
* Retrieve whether this download is assumed complete.
* <p>
* Assumed complete status is kept while the torrent is in a non-running
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -