gecko-dev/toolkit/components/downloads/src/nsDownloadManager.h

306 lines
9.0 KiB
C
Raw Normal View History

2003-11-27 00:54:33 +00:00
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
2003-11-27 00:54:33 +00:00
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
2003-11-27 00:54:33 +00:00
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is
2003-11-27 00:54:33 +00:00
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 1998
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Blake Ross <blaker@netscape.com>
* Ben Goodger <ben@netscape.com>
* Shawn Wilsher <me@shawnwilsher.com>
* Srirang G Doddihal <brahmana@doddihal.com>
* Edward Lee <edward.lee@engineering.uiuc.edu>
2003-11-27 00:54:33 +00:00
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
2003-11-27 00:54:33 +00:00
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
2003-11-27 00:54:33 +00:00
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
2003-11-27 00:54:33 +00:00
*
* ***** END LICENSE BLOCK ***** */
2003-11-27 00:54:33 +00:00
#ifndef downloadmanager___h___
#define downloadmanager___h___
#include "nsIDownloadManager.h"
#include "nsIDownloadProgressListener.h"
#include "nsIDownload.h"
#include "nsIDOMDocument.h"
#include "nsIDOMEventListener.h"
#include "nsIWebProgressListener.h"
#include "nsIWebProgressListener2.h"
2003-11-27 00:54:33 +00:00
#include "nsIURI.h"
#include "nsIWebBrowserPersist.h"
#include "nsILocalFile.h"
#include "nsIRequest.h"
#include "nsIObserver.h"
#include "nsString.h"
2003-11-27 00:54:33 +00:00
#include "nsIStringBundle.h"
#include "nsISupportsPrimitives.h"
2003-11-27 00:54:33 +00:00
#include "nsIMIMEInfo.h"
#include "mozIStorageConnection.h"
#include "mozIStorageStatement.h"
#include "nsISupportsArray.h"
#include "nsCOMArray.h"
#include "nsArrayEnumerator.h"
#include "nsAutoPtr.h"
#include "nsIObserverService.h"
2003-11-27 00:54:33 +00:00
typedef PRInt16 DownloadState;
typedef PRInt16 DownloadType;
class nsDownload;
2003-11-27 00:54:33 +00:00
#ifdef XP_WIN
class nsDownloadScanner;
#endif
2003-11-27 00:54:33 +00:00
class nsDownloadManager : public nsIDownloadManager,
public nsIObserver
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOWNLOADMANAGER
NS_DECL_NSIOBSERVER
nsresult Init();
static nsDownloadManager *GetSingleton();
2003-11-27 00:54:33 +00:00
virtual ~nsDownloadManager();
#ifdef XP_WIN
nsDownloadManager() : mScanner(nsnull) { };
private:
nsDownloadScanner *mScanner;
#endif
2003-11-27 00:54:33 +00:00
protected:
nsresult InitDB(PRBool *aDoImport);
nsresult CreateTable();
nsresult ImportDownloadHistory();
nsresult RestoreDatabaseState();
/**
* Paused downloads that survive across sessions are considered active, so
* rebuild the list of these downloads.
*/
nsresult RestoreActiveDownloads();
nsresult GetDownloadFromDB(PRUint32 aID, nsDownload **retVal);
/**
* Specially track the active downloads so that we don't need to check
* every download to see if they're in progress.
*/
nsresult AddToCurrentDownloads(nsDownload *aDl);
void SendEvent(nsDownload *aDownload, const char *aTopic);
/**
* Adds a download with the specified information to the DB.
*
* @return The id of the download, or 0 if there was an error.
*/
PRInt64 AddDownloadToDB(const nsAString &aName,
const nsACString &aSource,
const nsACString &aTarget,
const nsAString &aTempPath,
PRInt64 aStartTime,
PRInt64 aEndTime,
PRInt32 aState);
void NotifyListenersOnDownloadStateChange(PRInt16 aOldState,
nsIDownload *aDownload);
void NotifyListenersOnProgressChange(nsIWebProgress *aProgress,
nsIRequest *aRequest,
PRInt64 aCurSelfProgress,
PRInt64 aMaxSelfProgress,
PRInt64 aCurTotalProgress,
PRInt64 aMaxTotalProgress,
nsIDownload *aDownload);
void NotifyListenersOnStateChange(nsIWebProgress *aProgress,
nsIRequest *aRequest,
PRUint32 aStateFlags,
nsresult aStatus,
nsIDownload *aDownload);
nsDownload *FindDownload(PRUint32 aID);
/**
* Stop tracking the active downloads. Only use this when we're about to quit
* the download manager because we destroy our list of active downloads to
* break the dlmgr<->dl cycle. Active downloads that aren't real-paused will
* be canceled.
*/
nsresult RemoveAllDownloads();
2003-11-27 00:54:33 +00:00
/**
* Removes download from "current downloads".
*
* This method removes the cycle created when starting the download, so
* make sure to use kungFuDeathGrip if you want to access member variables
*/
void CompleteDownload(nsDownload *aDownload);
void ConfirmCancelDownloads(PRInt32 aCount,
nsISupportsPRBool *aCancelDownloads,
const PRUnichar *aTitle,
const PRUnichar *aCancelMessageMultiple,
const PRUnichar *aCancelMessageSingle,
const PRUnichar *aDontCancelButton);
PRInt32 GetRetentionBehavior();
nsresult ExecuteDesiredAction(nsDownload *aDownload);
2003-11-27 00:54:33 +00:00
private:
nsCOMArray<nsIDownloadProgressListener> mListeners;
2003-11-27 00:54:33 +00:00
nsCOMPtr<nsIStringBundle> mBundle;
nsCOMPtr<mozIStorageConnection> mDBConn;
nsCOMArray<nsDownload> mCurrentDownloads;
nsCOMPtr<nsIObserverService> mObserverService;
nsCOMPtr<mozIStorageStatement> mUpdateDownloadStatement;
static nsDownloadManager *gDownloadManagerService;
2003-11-27 00:54:33 +00:00
friend class nsDownload;
};
class nsDownload : public nsIDownload
2003-11-27 00:54:33 +00:00
{
public:
NS_DECL_NSIWEBPROGRESSLISTENER
NS_DECL_NSIWEBPROGRESSLISTENER2
NS_DECL_NSITRANSFER
2003-11-27 00:54:33 +00:00
NS_DECL_NSIDOWNLOAD
NS_DECL_ISUPPORTS
nsDownload();
virtual ~nsDownload();
public:
/**
* This method MUST be called when changing states on a download. It will
* notify the download listener when a change happens. This also updates the
* database, by calling UpdateDB().
*/
nsresult SetState(DownloadState aState);
DownloadType GetDownloadType();
void SetDownloadType(DownloadType aType);
nsresult UpdateDB();
2003-11-27 00:54:33 +00:00
protected:
void SetStartTime(PRInt64 aStartTime);
/**
* Pause the download, but in certain cases it might get fake-paused instead
* of real-paused.
*/
nsresult Pause();
/**
* All this does is cancel the connection that the download is using. It does
* not remove it from the download manager.
*/
nsresult Cancel();
/**
* Resume the download. Works for both real-paused and fake-paused.
*/
nsresult Resume();
/**
* Resume the real-paused download. Let Resume decide if this should get used.
*/
nsresult RealResume();
/**
* Download is not transferring?
*/
PRBool IsPaused();
/**
* Download can continue from the middle of a transfer?
*/
PRBool IsResumable();
/**
* Download was resumed?
*/
PRBool WasResumed();
/**
* Download is real-paused? (not fake-paused by stalling the channel)
*/
PRBool IsRealPaused();
/**
* Download is in a state to stop and complete the download?
*/
PRBool IsFinishable();
/**
* Download is totally done transferring and all?
*/
PRBool IsFinished();
nsDownloadManager *mDownloadManager;
nsCOMPtr<nsIURI> mTarget;
2003-11-27 00:54:33 +00:00
private:
nsString mDisplayName;
nsCString mEntityID;
2003-11-27 00:54:33 +00:00
nsCOMPtr<nsIURI> mSource;
nsCOMPtr<nsIURI> mReferrer;
nsCOMPtr<nsICancelable> mCancelable;
2003-11-27 00:54:33 +00:00
nsCOMPtr<nsIRequest> mRequest;
2005-07-07 17:45:47 +00:00
nsCOMPtr<nsILocalFile> mTempFile;
2003-11-27 00:54:33 +00:00
nsCOMPtr<nsIMIMEInfo> mMIMEInfo;
2003-11-27 00:54:33 +00:00
DownloadState mDownloadState;
DownloadType mDownloadType;
2003-11-27 00:54:33 +00:00
PRUint32 mID;
2003-11-27 00:54:33 +00:00
PRInt32 mPercentComplete;
/**
* These bytes are based on the position of where the request started, so 0
* doesn't necessarily mean we have nothing. Use GetAmountTransferred and
* GetSize for the real transferred amount and size.
*/
PRUint64 mCurrBytes;
PRUint64 mMaxBytes;
PRTime mStartTime;
2003-11-27 00:54:33 +00:00
PRTime mLastUpdate;
PRInt64 mResumedAt;
double mSpeed;
2003-11-27 00:54:33 +00:00
friend class nsDownloadManager;
};
#endif