⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 downloadtransfer.h

📁 著名的下载软件核心Shareaza
💻 H
字号:
//
// DownloadTransfer.h
//
// Copyright (c) Shareaza Development Team, 2002-2004.
// This file is part of SHAREAZA (www.shareaza.com)
//
// Shareaza 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.
//
// Shareaza 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 Shareaza; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
//

#if !defined(AFX_DOWNLOADTRANSFER_H__DB393F56_C75B_424C_85E5_FF44300E255B__INCLUDED_)
#define AFX_DOWNLOADTRANSFER_H__DB393F56_C75B_424C_85E5_FF44300E255B__INCLUDED_

#pragma once

#include "Transfer.h"

class CDownload;
class CDownloadSource;
class CFileFragment;


class CDownloadTransfer : public CTransfer
{
// Construction
public:
	CDownloadTransfer(CDownloadSource* pSource, PROTOCOLID nProtocol);
	virtual ~CDownloadTransfer();

// Attributes
public:
	PROTOCOLID			m_nProtocol;
	CDownload*			m_pDownload;
	CDownloadTransfer*	m_pDlPrev;
	CDownloadTransfer*	m_pDlNext;
	CDownloadSource*	m_pSource;
public:
	int			m_nState;
	int			m_nQueuePos;
	int			m_nQueueLen;
	CString		m_sQueueName;
public:
	QWORD		m_nOffset;
	QWORD		m_nLength;
	QWORD		m_nPosition;
	QWORD		m_nDownloaded;
public:
	BOOL		m_bWantBackwards;
	BOOL		m_bRecvBackwards;

// Operations
public:
	virtual BOOL	Initiate() = 0;
	virtual void	Close(TRISTATE bKeepSource);
	virtual void	Boost();
	virtual DWORD	GetAverageSpeed();
	virtual DWORD	GetMeasuredSpeed();
	virtual BOOL	SubtractRequested(CFileFragment** ppFragments) = 0;
	virtual BOOL	UnrequestRange(QWORD nOffset, QWORD nLength) { return FALSE; }
	virtual CString	GetStateText(BOOL bLong);
	virtual BOOL	OnRun();
protected:
	void	SetState(int nState);
	void	ChunkifyRequest(QWORD* pnOffset, QWORD* pnLength, QWORD nChunk, BOOL bVerifyLock);

};

enum
{
	dtsNull, dtsConnecting, dtsRequesting, dtsHeaders, dtsDownloading,
	dtsFlushing, dtsTiger, dtsHashset, dtsMetadata, dtsBusy, dtsEnqueue, dtsQueued,
	dtsTorrent,

	dtsCountAll = -1,
	dtsCountNotQueued = -2,
	dtsCountNotConnecting = -3
};


#endif // !defined(AFX_DOWNLOADTRANSFER_H__DB393F56_C75B_424C_85E5_FF44300E255B__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -