diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:22 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:22 +0000 |
commit | 8267fe24f77f6982b4d62d8d5d43cd1efc907136 (patch) | |
tree | a5e7e3846a8522862736afbe1f1b6e7928775c6f /apt-pkg/acquire-item.h | |
parent | fbfb2a7cad49c38a8a830ceadbc20ab89f683718 (diff) |
More or less working acquire system
Author: jgg
Date: 1998-11-09 01:09:19 GMT
More or less working acquire system
Diffstat (limited to 'apt-pkg/acquire-item.h')
-rw-r--r-- | apt-pkg/acquire-item.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/apt-pkg/acquire-item.h b/apt-pkg/acquire-item.h index 9ead29c9a..d50efc04b 100644 --- a/apt-pkg/acquire-item.h +++ b/apt-pkg/acquire-item.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: acquire-item.h,v 1.5 1998/11/05 07:21:36 jgg Exp $ +// $Id: acquire-item.h,v 1.6 1998/11/09 01:09:21 jgg Exp $ /* ###################################################################### Acquire Item - Item to acquire @@ -30,8 +30,8 @@ class pkgAcquire::Item protected: pkgAcquire *Owner; - inline void QueueURI(string URI,string Description) - {Owner->Enqueue(this,URI,Description);}; + inline void QueueURI(ItemDesc &Item) + {Owner->Enqueue(Item);}; void Rename(string From,string To); @@ -40,6 +40,8 @@ class pkgAcquire::Item // State of the item enum {StatIdle, StatFetching, StatDone, StatError} Status; string ErrorText; + unsigned long FileSize; + bool Complete; // Number of queues we are inserted into unsigned int QueueCounter; @@ -49,6 +51,7 @@ class pkgAcquire::Item virtual void Failed(string Message); virtual void Done(string Message,unsigned long Size,string Md5Hash); + virtual void Start(string Message,unsigned long Size); virtual string Custom600Headers() {return string();}; @@ -64,6 +67,7 @@ class pkgAcqIndex : public pkgAcquire::Item const pkgSourceList::Item *Location; bool Decompression; bool Erase; + pkgAcquire::ItemDesc Desc; public: @@ -79,6 +83,7 @@ class pkgAcqIndexRel : public pkgAcquire::Item protected: const pkgSourceList::Item *Location; + pkgAcquire::ItemDesc Desc; public: |