]>
git.saurik.com Git - apt.git/blob - apt-pkg/acquire.h
5565ad3ac72f716e3413300732104538c7f5000c
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: acquire.h,v 1.26 2000/01/17 07:11:49 jgg Exp $
4 /* ######################################################################
6 Acquire - File Acquiration
8 This module contians the Acquire system. It is responsible for bringing
9 files into the local pathname space. It deals with URIs for files and
10 URI handlers responsible for downloading or finding the URIs.
12 Each file to download is represented by an Acquire::Item class subclassed
13 into a specialization. The Item class can add itself to several URI
14 acquire queues each prioritized by the download scheduler. When the
15 system is run the proper URI handlers are spawned and the the acquire
16 queues are fed into the handlers by the schedular until the queues are
17 empty. This allows for an Item to be downloaded from an alternate source
18 if the first try turns out to fail. It also alows concurrent downloading
19 of multiple items from multiple sources as well as dynamic balancing
20 of load between the sources.
22 Schedualing of downloads is done on a first ask first get basis. This
23 preserves the order of the download as much as possible. And means the
24 fastest source will tend to process the largest number of files.
26 Internal methods and queues for performing gzip decompression,
27 md5sum hashing and file copying are provided to allow items to apply
28 a number of transformations to the data files they are working with.
30 ##################################################################### */
32 #ifndef PKGLIB_ACQUIRE_H
33 #define PKGLIB_ACQUIRE_H
39 #pragma interface "apt-pkg/acquire.h"
45 class pkgAcquireStatus
;
60 // List of items to fetch
63 // List of active queues and fetched method configuration parameters
66 MethodConfig
*Configs
;
67 pkgAcquireStatus
*Log
;
68 unsigned long ToFetch
;
70 // Configurable parameters for the schedular
71 enum {QueueHost
,QueueAccess
} QueueMode
;
76 void Remove(Item
*Item
);
77 void Add(Worker
*Work
);
78 void Remove(Worker
*Work
);
80 void Enqueue(ItemDesc
&Item
);
81 void Dequeue(Item
*Item
);
82 string
QueueName(string URI
,MethodConfig
const *&Config
);
84 // FDSET managers for derived classes
85 virtual void SetFds(int &Fd
,fd_set
*RSet
,fd_set
*WSet
);
86 virtual void RunFds(fd_set
*RSet
,fd_set
*WSet
);
88 // A queue calls this when it dequeues an item
93 MethodConfig
*GetConfig(string Access
);
95 enum RunResult
{Continue
,Failed
,Cancelled
};
100 // Simple iteration mechanism
101 inline Worker
*WorkersBegin() {return Workers
;};
102 Worker
*WorkerStep(Worker
*I
);
103 inline Item
**ItemsBegin() {return Items
.begin();};
104 inline Item
**ItemsEnd() {return Items
.end();};
106 // Iterate over queued Item URIs
108 UriIterator
UriBegin();
109 UriIterator
UriEnd();
111 // Cleans out the download dir
112 bool Clean(string Dir
);
114 // Returns the size of the total download set
115 unsigned long TotalNeeded();
116 unsigned long FetchNeeded();
117 unsigned long PartialPresent();
119 pkgAcquire(pkgAcquireStatus
*Log
= 0);
120 virtual ~pkgAcquire();
123 // Description of an Item+URI
124 struct pkgAcquire::ItemDesc
132 // List of possible items queued for download.
133 class pkgAcquire::Queue
136 friend pkgAcquire::UriIterator
;
142 struct QItem
: pkgAcquire::ItemDesc
145 pkgAcquire::Worker
*Worker
;
147 void operator =(pkgAcquire::ItemDesc
const &I
)
150 Description
= I
.Description
;
151 ShortDesc
= I
.ShortDesc
;
159 // Items queued into this queue
161 pkgAcquire::Worker
*Workers
;
163 signed long PipeDepth
;
164 unsigned long MaxPipeDepth
;
168 // Put an item into this queue
169 void Enqueue(ItemDesc
&Item
);
170 bool Dequeue(Item
*Owner
);
172 // Find a Queued item
173 QItem
*FindItem(string URI
,pkgAcquire::Worker
*Owner
);
174 bool ItemStart(QItem
*Itm
,unsigned long Size
);
175 bool ItemDone(QItem
*Itm
);
178 bool Shutdown(bool Final
);
182 Queue(string Name
,pkgAcquire
*Owner
);
186 class pkgAcquire::UriIterator
188 pkgAcquire::Queue
*CurQ
;
189 pkgAcquire::Queue::QItem
*CurItem
;
193 // Advance to the next item
194 inline void operator ++() {operator ++();};
195 void operator ++(int)
197 CurItem
= CurItem
->Next
;
198 while (CurItem
== 0 && CurQ
!= 0)
200 CurItem
= CurQ
->Items
;
206 inline pkgAcquire::ItemDesc
const *operator ->() const {return CurItem
;};
207 inline bool operator !=(UriIterator
const &rhs
) const {return rhs
.CurQ
!= CurQ
|| rhs
.CurItem
!= CurItem
;};
208 inline bool operator ==(UriIterator
const &rhs
) const {return rhs
.CurQ
== CurQ
&& rhs
.CurItem
== CurItem
;};
210 UriIterator(pkgAcquire::Queue
*Q
) : CurQ(Q
), CurItem(0)
212 while (CurItem
== 0 && CurQ
!= 0)
214 CurItem
= CurQ
->Items
;
220 // Configuration information from each method
221 struct pkgAcquire::MethodConfig
238 class pkgAcquireStatus
243 struct timeval StartTime
;
244 unsigned long LastBytes
;
246 unsigned long CurrentBytes
;
247 unsigned long TotalBytes
;
248 unsigned long FetchedBytes
;
249 unsigned long ElapsedTime
;
250 unsigned long TotalItems
;
251 unsigned long CurrentItems
;
257 // Called by items when they have finished a real download
258 virtual void Fetched(unsigned long Size
,unsigned long ResumePoint
);
260 // Called to change media
261 virtual bool MediaChange(string Media
,string Drive
) = 0;
263 // Each of these is called by the workers when an event occures
264 virtual void IMSHit(pkgAcquire::ItemDesc
&/*Itm*/) {};
265 virtual void Fetch(pkgAcquire::ItemDesc
&/*Itm*/) {};
266 virtual void Done(pkgAcquire::ItemDesc
&/*Itm*/) {};
267 virtual void Fail(pkgAcquire::ItemDesc
&/*Itm*/) {};
268 virtual bool Pulse(pkgAcquire
*Owner
); // returns false on user cancel
269 virtual void Start();
273 virtual ~pkgAcquireStatus() {};