]>
Commit | Line | Data |
---|---|---|
0118833a AL |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
b3c39978 | 3 | // $Id: acquire-item.h,v 1.21 1999/09/01 07:01:15 jgg Exp $ |
0118833a AL |
4 | /* ###################################################################### |
5 | ||
6 | Acquire Item - Item to acquire | |
7 | ||
8 | When an item is instantiated it will add it self to the local list in | |
9 | the Owner Acquire class. Derived classes will then call QueueURI to | |
17caf1b1 | 10 | register all the URI's they wish to fetch at the initial moment. |
0118833a AL |
11 | |
12 | Two item classes are provided to provide functionality for downloading | |
13 | of Index files and downloading of Packages. | |
14 | ||
b185acc2 | 15 | A Archive class is provided for downloading .deb files. It does Md5 |
17caf1b1 | 16 | checking and source location as well as a retry algorithm. |
b185acc2 | 17 | |
0118833a AL |
18 | ##################################################################### */ |
19 | /*}}}*/ | |
20 | #ifndef PKGLIB_ACQUIRE_ITEM_H | |
21 | #define PKGLIB_ACQUIRE_ITEM_H | |
22 | ||
23 | #include <apt-pkg/acquire.h> | |
24 | #include <apt-pkg/sourcelist.h> | |
03e39e59 | 25 | #include <apt-pkg/pkgrecords.h> |
0118833a AL |
26 | |
27 | #ifdef __GNUG__ | |
28 | #pragma interface "apt-pkg/acquire-item.h" | |
29 | #endif | |
30 | ||
31 | // Item to acquire | |
32 | class pkgAcquire::Item | |
33 | { | |
34 | protected: | |
35 | ||
17caf1b1 | 36 | // Some private helper methods for registering URIs |
0118833a | 37 | pkgAcquire *Owner; |
8267fe24 AL |
38 | inline void QueueURI(ItemDesc &Item) |
39 | {Owner->Enqueue(Item);}; | |
681d76d0 | 40 | inline void Dequeue() {Owner->Dequeue(this);}; |
0118833a | 41 | |
17caf1b1 | 42 | // Safe rename function with timestamp preservation |
8b89e57f AL |
43 | void Rename(string From,string To); |
44 | ||
0118833a AL |
45 | public: |
46 | ||
c88edf1d AL |
47 | // State of the item |
48 | enum {StatIdle, StatFetching, StatDone, StatError} Status; | |
49 | string ErrorText; | |
8267fe24 | 50 | unsigned long FileSize; |
6b1ff003 | 51 | unsigned long PartialSize; |
b98f2859 AL |
52 | char *Mode; |
53 | unsigned long ID; | |
8267fe24 | 54 | bool Complete; |
a6568219 | 55 | bool Local; |
30e1eab5 | 56 | |
0a8a80e5 | 57 | // Number of queues we are inserted into |
0118833a | 58 | unsigned int QueueCounter; |
0118833a | 59 | |
0a8a80e5 AL |
60 | // File to write the fetch into |
61 | string DestFile; | |
7d8afa39 | 62 | |
17caf1b1 | 63 | // Action members invoked by the worker |
7d8afa39 | 64 | virtual void Failed(string Message,pkgAcquire::MethodConfig *Cnf); |
c88edf1d | 65 | virtual void Done(string Message,unsigned long Size,string Md5Hash); |
8267fe24 | 66 | virtual void Start(string Message,unsigned long Size); |
17caf1b1 | 67 | virtual string Custom600Headers() {return string();}; |
36375005 | 68 | virtual string DescURI() = 0; |
ab559b35 | 69 | virtual void Finished() {}; |
17caf1b1 AL |
70 | |
71 | // Inquire functions | |
f7a08e33 | 72 | virtual string MD5Sum() {return string();}; |
17caf1b1 | 73 | |
0118833a AL |
74 | Item(pkgAcquire *Owner); |
75 | virtual ~Item(); | |
76 | }; | |
77 | ||
78 | // Item class for index files | |
79 | class pkgAcqIndex : public pkgAcquire::Item | |
80 | { | |
81 | protected: | |
82 | ||
83 | const pkgSourceList::Item *Location; | |
8b89e57f | 84 | bool Decompression; |
bfd22fc0 | 85 | bool Erase; |
8267fe24 | 86 | pkgAcquire::ItemDesc Desc; |
0118833a AL |
87 | |
88 | public: | |
89 | ||
17caf1b1 | 90 | // Specialized action members |
8b89e57f | 91 | virtual void Done(string Message,unsigned long Size,string Md5Hash); |
0a8a80e5 | 92 | virtual string Custom600Headers(); |
36375005 | 93 | virtual string DescURI() {return Location->PackagesURI();}; |
0118833a AL |
94 | |
95 | pkgAcqIndex(pkgAcquire *Owner,const pkgSourceList::Item *Location); | |
96 | }; | |
97 | ||
98 | // Item class for index files | |
99 | class pkgAcqIndexRel : public pkgAcquire::Item | |
100 | { | |
101 | protected: | |
102 | ||
103 | const pkgSourceList::Item *Location; | |
8267fe24 | 104 | pkgAcquire::ItemDesc Desc; |
0118833a AL |
105 | |
106 | public: | |
107 | ||
17caf1b1 | 108 | // Specialized action members |
681d76d0 | 109 | virtual void Failed(string Message,pkgAcquire::MethodConfig *Cnf); |
8b89e57f | 110 | virtual void Done(string Message,unsigned long Size,string Md5Hash); |
0a8a80e5 | 111 | virtual string Custom600Headers(); |
36375005 | 112 | virtual string DescURI() {return Location->ReleaseURI();}; |
0a8a80e5 | 113 | |
0118833a AL |
114 | pkgAcqIndexRel(pkgAcquire *Owner,const pkgSourceList::Item *Location); |
115 | }; | |
116 | ||
03e39e59 AL |
117 | // Item class for archive files |
118 | class pkgAcqArchive : public pkgAcquire::Item | |
119 | { | |
120 | protected: | |
121 | ||
17caf1b1 | 122 | // State information for the retry mechanism |
03e39e59 AL |
123 | pkgCache::VerIterator Version; |
124 | pkgAcquire::ItemDesc Desc; | |
125 | pkgSourceList *Sources; | |
126 | pkgRecords *Recs; | |
127 | string MD5; | |
30e1eab5 | 128 | string &StoreFilename; |
b185acc2 | 129 | pkgCache::VerFileIterator Vf; |
7d8afa39 | 130 | unsigned int Retries; |
17caf1b1 AL |
131 | |
132 | // Queue the next available file for download. | |
b185acc2 | 133 | bool QueueNext(); |
03e39e59 AL |
134 | |
135 | public: | |
136 | ||
17caf1b1 | 137 | // Specialized action members |
7d8afa39 | 138 | virtual void Failed(string Message,pkgAcquire::MethodConfig *Cnf); |
03e39e59 | 139 | virtual void Done(string Message,unsigned long Size,string Md5Hash); |
17caf1b1 | 140 | virtual string MD5Sum() {return MD5;}; |
36375005 | 141 | virtual string DescURI() {return Desc.URI;}; |
ab559b35 | 142 | virtual void Finished(); |
03e39e59 AL |
143 | |
144 | pkgAcqArchive(pkgAcquire *Owner,pkgSourceList *Sources, | |
30e1eab5 AL |
145 | pkgRecords *Recs,pkgCache::VerIterator const &Version, |
146 | string &StoreFilename); | |
03e39e59 AL |
147 | }; |
148 | ||
36375005 AL |
149 | // Fetch a generic file to the current directory |
150 | class pkgAcqFile : public pkgAcquire::Item | |
151 | { | |
152 | pkgAcquire::ItemDesc Desc; | |
b3c39978 | 153 | string Md5Hash; |
36375005 AL |
154 | |
155 | public: | |
156 | ||
157 | // Specialized action members | |
158 | virtual void Done(string Message,unsigned long Size,string Md5Hash); | |
b3c39978 | 159 | virtual string MD5Sum() {return Md5Hash;}; |
36375005 AL |
160 | virtual string DescURI() {return Desc.URI;}; |
161 | ||
162 | pkgAcqFile(pkgAcquire *Owner,string URI,string MD5,unsigned long Size, | |
163 | string Desc,string ShortDesc); | |
164 | }; | |
165 | ||
0118833a | 166 | #endif |