]>
Commit | Line | Data |
---|---|---|
1 | // -*- mode: cpp; mode: fold -*- | |
2 | // Description /*{{{*/ | |
3 | /* ###################################################################### | |
4 | ||
5 | Acquire - File Acquiration | |
6 | ||
7 | This module contians the Acquire system. It is responsible for bringing | |
8 | files into the local pathname space. It deals with URIs for files and | |
9 | URI handlers responsible for downloading or finding the URIs. | |
10 | ||
11 | Each file to download is represented by an Acquire::Item class subclassed | |
12 | into a specialization. The Item class can add itself to several URI | |
13 | acquire queues each prioritized by the download scheduler. When the | |
14 | system is run the proper URI handlers are spawned and the the acquire | |
15 | queues are fed into the handlers by the schedular until the queues are | |
16 | empty. This allows for an Item to be downloaded from an alternate source | |
17 | if the first try turns out to fail. It also alows concurrent downloading | |
18 | of multiple items from multiple sources as well as dynamic balancing | |
19 | of load between the sources. | |
20 | ||
21 | Schedualing of downloads is done on a first ask first get basis. This | |
22 | preserves the order of the download as much as possible. And means the | |
23 | fastest source will tend to process the largest number of files. | |
24 | ||
25 | Internal methods and queues for performing gzip decompression, | |
26 | md5sum hashing and file copying are provided to allow items to apply | |
27 | a number of transformations to the data files they are working with. | |
28 | ||
29 | ##################################################################### */ | |
30 | /*}}}*/ | |
31 | ||
32 | /** \defgroup acquire Acquire system {{{ | |
33 | * | |
34 | * \brief The Acquire system is responsible for retrieving files from | |
35 | * local or remote URIs and postprocessing them (for instance, | |
36 | * verifying their authenticity). The core class in this system is | |
37 | * pkgAcquire, which is responsible for managing the download queues | |
38 | * during the download. There is at least one download queue for | |
39 | * each supported protocol; protocols such as http may provide one | |
40 | * queue per host. | |
41 | * | |
42 | * Each file to download is represented by a subclass of | |
43 | * pkgAcquire::Item. The files add themselves to the download | |
44 | * queue(s) by providing their URI information to | |
45 | * pkgAcquire::Item::QueueURI, which calls pkgAcquire::Enqueue. | |
46 | * | |
47 | * Once the system is set up, the Run method will spawn subprocesses | |
48 | * to handle the enqueued URIs; the scheduler will then take items | |
49 | * from the queues and feed them into the handlers until the queues | |
50 | * are empty. | |
51 | * | |
52 | * \todo Acquire supports inserting an object into several queues at | |
53 | * once, but it is not clear what its behavior in this case is, and | |
54 | * no subclass of pkgAcquire::Item seems to actually use this | |
55 | * capability. | |
56 | */ /*}}}*/ | |
57 | ||
58 | /** \addtogroup acquire | |
59 | * | |
60 | * @{ | |
61 | * | |
62 | * \file acquire.h | |
63 | */ | |
64 | ||
65 | #ifndef PKGLIB_ACQUIRE_H | |
66 | #define PKGLIB_ACQUIRE_H | |
67 | ||
68 | #include <apt-pkg/macros.h> | |
69 | #include <apt-pkg/weakptr.h> | |
70 | #include <apt-pkg/hashes.h> | |
71 | ||
72 | #include <string> | |
73 | #include <vector> | |
74 | ||
75 | #include <stddef.h> | |
76 | #include <sys/time.h> | |
77 | #include <sys/select.h> | |
78 | ||
79 | #ifndef APT_10_CLEANER_HEADERS | |
80 | #include <unistd.h> | |
81 | #endif | |
82 | ||
83 | #ifndef APT_8_CLEANER_HEADERS | |
84 | using std::vector; | |
85 | using std::string; | |
86 | #endif | |
87 | ||
88 | class pkgAcquireStatus; | |
89 | ||
90 | /** \brief The core download scheduler. {{{ | |
91 | * | |
92 | * This class represents an ongoing download. It manages the lists | |
93 | * of active and pending downloads and handles setting up and tearing | |
94 | * down download-related structures. | |
95 | * | |
96 | * \todo Why all the protected data items and methods? | |
97 | */ | |
98 | class pkgAcquire | |
99 | { | |
100 | private: | |
101 | /** \brief FD of the Lock file we acquire in Setup (if any) */ | |
102 | int LockFD; | |
103 | /** \brief dpointer placeholder (for later in case we need it) */ | |
104 | void * const d; | |
105 | ||
106 | public: | |
107 | ||
108 | class Item; | |
109 | class Queue; | |
110 | class Worker; | |
111 | struct MethodConfig; | |
112 | struct ItemDesc; | |
113 | friend class Item; | |
114 | friend class pkgAcqMetaBase; | |
115 | friend class Queue; | |
116 | ||
117 | typedef std::vector<Item *>::iterator ItemIterator; | |
118 | typedef std::vector<Item *>::const_iterator ItemCIterator; | |
119 | ||
120 | protected: | |
121 | ||
122 | /** \brief A list of items to download. | |
123 | * | |
124 | * This is built monotonically as items are created and only | |
125 | * emptied when the download shuts down. | |
126 | */ | |
127 | std::vector<Item *> Items; | |
128 | ||
129 | /** \brief The head of the list of active queues. | |
130 | * | |
131 | * \todo why a hand-managed list of queues instead of std::list or | |
132 | * std::set? | |
133 | */ | |
134 | Queue *Queues; | |
135 | ||
136 | /** \brief The head of the list of active workers. | |
137 | * | |
138 | * \todo why a hand-managed list of workers instead of std::list | |
139 | * or std::set? | |
140 | */ | |
141 | Worker *Workers; | |
142 | ||
143 | /** \brief The head of the list of acquire method configurations. | |
144 | * | |
145 | * Each protocol (http, ftp, gzip, etc) via which files can be | |
146 | * fetched can have a representation in this list. The | |
147 | * configuration data is filled in by parsing the 100 Capabilities | |
148 | * string output by a method on startup (see | |
149 | * pkgAcqMethod::pkgAcqMethod and pkgAcquire::GetConfig). | |
150 | * | |
151 | * \todo why a hand-managed config dictionary instead of std::map? | |
152 | */ | |
153 | MethodConfig *Configs; | |
154 | ||
155 | /** \brief The progress indicator for this download. */ | |
156 | pkgAcquireStatus *Log; | |
157 | ||
158 | /** \brief The number of files which are to be fetched. */ | |
159 | unsigned long ToFetch; | |
160 | ||
161 | // Configurable parameters for the scheduler | |
162 | ||
163 | /** \brief Represents the queuing strategy for remote URIs. */ | |
164 | enum QueueStrategy { | |
165 | /** \brief Generate one queue for each protocol/host combination; downloads from | |
166 | * multiple hosts can proceed in parallel. | |
167 | */ | |
168 | QueueHost, | |
169 | /** \brief Generate a single queue for each protocol; serialize | |
170 | * downloads from multiple hosts. | |
171 | */ | |
172 | QueueAccess} QueueMode; | |
173 | ||
174 | /** \brief If \b true, debugging information will be dumped to std::clog. */ | |
175 | bool const Debug; | |
176 | /** \brief If \b true, a download is currently in progress. */ | |
177 | bool Running; | |
178 | ||
179 | /** \brief Add the given item to the list of items. */ | |
180 | void Add(Item *Item); | |
181 | ||
182 | /** \brief Remove the given item from the list of items. */ | |
183 | void Remove(Item *Item); | |
184 | ||
185 | /** \brief Add the given worker to the list of workers. */ | |
186 | void Add(Worker *Work); | |
187 | ||
188 | /** \brief Remove the given worker from the list of workers. */ | |
189 | void Remove(Worker *Work); | |
190 | ||
191 | /** \brief Insert the given fetch request into the appropriate queue. | |
192 | * | |
193 | * \param Item The URI to download and the item to download it | |
194 | * for. Copied by value into the queue; no reference to Item is | |
195 | * retained. | |
196 | */ | |
197 | void Enqueue(ItemDesc &Item); | |
198 | ||
199 | /** \brief Remove all fetch requests for this item from all queues. */ | |
200 | void Dequeue(Item *Item); | |
201 | ||
202 | /** \brief Determine the fetch method and queue of a URI. | |
203 | * | |
204 | * \param URI The URI to fetch. | |
205 | * | |
206 | * \param[out] Config A location in which to place the method via | |
207 | * which the URI is to be fetched. | |
208 | * | |
209 | * \return the string-name of the queue in which a fetch request | |
210 | * for the given URI should be placed. | |
211 | */ | |
212 | std::string QueueName(std::string URI,MethodConfig const *&Config); | |
213 | ||
214 | /** \brief Build up the set of file descriptors upon which select() should | |
215 | * block. | |
216 | * | |
217 | * The default implementation inserts the file descriptors | |
218 | * corresponding to active downloads. | |
219 | * | |
220 | * \param[out] Fd The largest file descriptor in the generated sets. | |
221 | * | |
222 | * \param[out] RSet The set of file descriptors that should be | |
223 | * watched for input. | |
224 | * | |
225 | * \param[out] WSet The set of file descriptors that should be | |
226 | * watched for output. | |
227 | */ | |
228 | virtual void SetFds(int &Fd,fd_set *RSet,fd_set *WSet); | |
229 | ||
230 | /** Handle input from and output to file descriptors which select() | |
231 | * has determined are ready. The default implementation | |
232 | * dispatches to all active downloads. | |
233 | * | |
234 | * \param RSet The set of file descriptors that are ready for | |
235 | * input. | |
236 | * | |
237 | * \param WSet The set of file descriptors that are ready for | |
238 | * output. | |
239 | */ | |
240 | virtual void RunFds(fd_set *RSet,fd_set *WSet); | |
241 | ||
242 | /** \brief Check for idle queues with ready-to-fetch items. | |
243 | * | |
244 | * Called by pkgAcquire::Queue::Done each time an item is dequeued | |
245 | * but remains on some queues; i.e., another queue should start | |
246 | * fetching it. | |
247 | */ | |
248 | void Bump(); | |
249 | ||
250 | public: | |
251 | ||
252 | /** \brief Retrieve information about a fetch method by name. | |
253 | * | |
254 | * \param Access The name of the method to look up. | |
255 | * | |
256 | * \return the method whose name is Access, or \b NULL if no such method exists. | |
257 | */ | |
258 | MethodConfig *GetConfig(std::string Access); | |
259 | ||
260 | /** \brief Provides information on how a download terminated. */ | |
261 | enum RunResult { | |
262 | /** \brief All files were fetched successfully. */ | |
263 | Continue, | |
264 | ||
265 | /** \brief Some files failed to download. */ | |
266 | Failed, | |
267 | ||
268 | /** \brief The download was cancelled by the user (i.e., #Log's | |
269 | * pkgAcquireStatus::Pulse() method returned \b false). | |
270 | */ | |
271 | Cancelled}; | |
272 | ||
273 | /** \brief Download all the items that have been Add()ed to this | |
274 | * download process. | |
275 | * | |
276 | * This method will block until the download completes, invoking | |
277 | * methods on #Log to report on the progress of the download. | |
278 | * | |
279 | * \param PulseInterval The method pkgAcquireStatus::Pulse will be | |
280 | * invoked on #Log at intervals of PulseInterval milliseconds. | |
281 | * | |
282 | * \return the result of the download. | |
283 | */ | |
284 | RunResult Run(int PulseInterval=500000); | |
285 | ||
286 | /** \brief Remove all items from this download process, terminate | |
287 | * all download workers, and empty all queues. | |
288 | */ | |
289 | void Shutdown(); | |
290 | ||
291 | /** \brief Get the first Worker object. | |
292 | * | |
293 | * \return the first active worker in this download process. | |
294 | */ | |
295 | inline Worker *WorkersBegin() {return Workers;}; | |
296 | ||
297 | /** \brief Advance to the next Worker object. | |
298 | * | |
299 | * \return the worker immediately following I, or \b NULL if none | |
300 | * exists. | |
301 | */ | |
302 | Worker *WorkerStep(Worker *I) APT_PURE; | |
303 | ||
304 | /** \brief Get the head of the list of items. */ | |
305 | inline ItemIterator ItemsBegin() {return Items.begin();}; | |
306 | ||
307 | /** \brief Get the end iterator of the list of items. */ | |
308 | inline ItemIterator ItemsEnd() {return Items.end();}; | |
309 | ||
310 | // Iterate over queued Item URIs | |
311 | class UriIterator; | |
312 | /** \brief Get the head of the list of enqueued item URIs. | |
313 | * | |
314 | * This iterator will step over every element of every active | |
315 | * queue. | |
316 | */ | |
317 | UriIterator UriBegin(); | |
318 | /** \brief Get the end iterator of the list of enqueued item URIs. */ | |
319 | UriIterator UriEnd(); | |
320 | ||
321 | /** Deletes each entry in the given directory that is not being | |
322 | * downloaded by this object. For instance, when downloading new | |
323 | * list files, calling Clean() will delete the old ones. | |
324 | * | |
325 | * \param Dir The directory to be cleaned out. | |
326 | * | |
327 | * \return \b true if the directory exists and is readable. | |
328 | */ | |
329 | bool Clean(std::string Dir); | |
330 | ||
331 | /** \return the total size in bytes of all the items included in | |
332 | * this download. | |
333 | */ | |
334 | unsigned long long TotalNeeded(); | |
335 | ||
336 | /** \return the size in bytes of all non-local items included in | |
337 | * this download. | |
338 | */ | |
339 | unsigned long long FetchNeeded(); | |
340 | ||
341 | /** \return the amount of data to be fetched that is already | |
342 | * present on the filesystem. | |
343 | */ | |
344 | unsigned long long PartialPresent(); | |
345 | ||
346 | /** \brief Delayed constructor | |
347 | * | |
348 | * \param Progress indicator associated with this download or | |
349 | * \b NULL for none. This object is not owned by the | |
350 | * download process and will not be deleted when the pkgAcquire | |
351 | * object is destroyed. Naturally, it should live for at least as | |
352 | * long as the pkgAcquire object does. | |
353 | * \param Lock defines a lock file that should be acquired to ensure | |
354 | * only one Acquire class is in action at the time or an empty string | |
355 | * if no lock file should be used. If set also all needed directories | |
356 | * will be created. | |
357 | */ | |
358 | APT_DEPRECATED bool Setup(pkgAcquireStatus *Progress = NULL, std::string const &Lock = ""); | |
359 | ||
360 | void SetLog(pkgAcquireStatus *Progress) { Log = Progress; } | |
361 | ||
362 | /** \brief acquire lock and perform directory setup | |
363 | * | |
364 | * \param Lock defines a lock file that should be acquired to ensure | |
365 | * only one Acquire class is in action at the time or an empty string | |
366 | * if no lock file should be used. If set also all needed directories | |
367 | * will be created and setup. | |
368 | */ | |
369 | bool GetLock(std::string const &Lock); | |
370 | ||
371 | /** \brief Construct a new pkgAcquire. */ | |
372 | explicit pkgAcquire(pkgAcquireStatus *Log); | |
373 | pkgAcquire(); | |
374 | ||
375 | /** \brief Destroy this pkgAcquire object. | |
376 | * | |
377 | * Destroys all queue, method, and item objects associated with | |
378 | * this download. | |
379 | */ | |
380 | virtual ~pkgAcquire(); | |
381 | ||
382 | private: | |
383 | APT_HIDDEN void Initialize(); | |
384 | }; | |
385 | ||
386 | /** \brief Represents a single download source from which an item | |
387 | * should be downloaded. | |
388 | * | |
389 | * An item may have several assocated ItemDescs over its lifetime. | |
390 | */ | |
391 | struct pkgAcquire::ItemDesc : public WeakPointable | |
392 | { | |
393 | /** \brief URI from which to download this item. */ | |
394 | std::string URI; | |
395 | /** \brief description of this item. */ | |
396 | std::string Description; | |
397 | /** \brief shorter description of this item. */ | |
398 | std::string ShortDesc; | |
399 | /** \brief underlying item which is to be downloaded. */ | |
400 | Item *Owner; | |
401 | }; | |
402 | /*}}}*/ | |
403 | /** \brief A single download queue in a pkgAcquire object. {{{ | |
404 | * | |
405 | * \todo Why so many protected values? | |
406 | */ | |
407 | class pkgAcquire::Queue | |
408 | { | |
409 | friend class pkgAcquire; | |
410 | friend class pkgAcquire::UriIterator; | |
411 | friend class pkgAcquire::Worker; | |
412 | ||
413 | /** \brief dpointer placeholder (for later in case we need it) */ | |
414 | void * const d; | |
415 | ||
416 | /** \brief The next queue in the pkgAcquire object's list of queues. */ | |
417 | Queue *Next; | |
418 | ||
419 | protected: | |
420 | ||
421 | /** \brief A single item placed in this queue. */ | |
422 | struct QItem : public WeakPointable | |
423 | { | |
424 | /** \brief The next item in the queue. */ | |
425 | QItem *Next; | |
426 | /** \brief The worker associated with this item, if any. */ | |
427 | pkgAcquire::Worker *Worker; | |
428 | ||
429 | /** \brief The URI from which to download this item. */ | |
430 | std::string URI; | |
431 | /** \brief A description of this item. */ | |
432 | std::string Description; | |
433 | /** \brief A shorter description of this item. */ | |
434 | std::string ShortDesc; | |
435 | /** \brief The underlying items interested in the download */ | |
436 | std::vector<Item*> Owners; | |
437 | // both, backward compatibility and easy access as syncing is interal | |
438 | Item * Owner; | |
439 | ||
440 | typedef std::vector<Item*>::const_iterator owner_iterator; | |
441 | ||
442 | /** \brief Assign the ItemDesc portion of this QItem from | |
443 | * another ItemDesc | |
444 | */ | |
445 | void operator =(pkgAcquire::ItemDesc const &I) | |
446 | { | |
447 | URI = I.URI; | |
448 | Description = I.Description; | |
449 | ShortDesc = I.ShortDesc; | |
450 | Owners.clear(); | |
451 | Owners.push_back(I.Owner); | |
452 | Owner = I.Owner; | |
453 | }; | |
454 | ||
455 | /** @return the sum of all expected hashes by all owners */ | |
456 | HashStringList GetExpectedHashes() const; | |
457 | ||
458 | /** @return smallest maximum size of all owners */ | |
459 | unsigned long long GetMaximumSize() const; | |
460 | ||
461 | /** \brief get partial files in order */ | |
462 | void SyncDestinationFiles() const; | |
463 | ||
464 | /** @return the custom headers to use for this item */ | |
465 | std::string Custom600Headers() const; | |
466 | }; | |
467 | ||
468 | /** \brief The name of this queue. */ | |
469 | std::string Name; | |
470 | ||
471 | /** \brief The head of the list of items contained in this queue. | |
472 | * | |
473 | * \todo why a by-hand list instead of an STL structure? | |
474 | */ | |
475 | QItem *Items; | |
476 | ||
477 | /** \brief The head of the list of workers associated with this queue. | |
478 | * | |
479 | * \todo This is plural because support exists in Queue for | |
480 | * multiple workers. However, it does not appear that there is | |
481 | * any way to actually associate more than one worker with a | |
482 | * queue. | |
483 | * | |
484 | * \todo Why not just use a std::set? | |
485 | */ | |
486 | pkgAcquire::Worker *Workers; | |
487 | ||
488 | /** \brief the download scheduler with which this queue is associated. */ | |
489 | pkgAcquire *Owner; | |
490 | ||
491 | /** \brief The number of entries in this queue that are currently | |
492 | * being downloaded. | |
493 | */ | |
494 | signed long PipeDepth; | |
495 | ||
496 | /** \brief The maximum number of entries that this queue will | |
497 | * attempt to download at once. | |
498 | */ | |
499 | unsigned long MaxPipeDepth; | |
500 | ||
501 | public: | |
502 | ||
503 | /** \brief Insert the given fetch request into this queue. | |
504 | * | |
505 | * \return \b true if the queuing was successful. May return | |
506 | * \b false if the Item is already in the queue | |
507 | */ | |
508 | bool Enqueue(ItemDesc &Item); | |
509 | ||
510 | /** \brief Remove all fetch requests for the given item from this queue. | |
511 | * | |
512 | * \return \b true if at least one request was removed from the queue. | |
513 | */ | |
514 | bool Dequeue(Item *Owner); | |
515 | ||
516 | /** \brief Locate an item in this queue. | |
517 | * | |
518 | * \param URI A URI to match against. | |
519 | * \param Owner A pkgAcquire::Worker to match against. | |
520 | * | |
521 | * \return the first item in the queue whose URI is #URI and that | |
522 | * is being downloaded by #Owner. | |
523 | */ | |
524 | QItem *FindItem(std::string URI,pkgAcquire::Worker *Owner) APT_PURE; | |
525 | ||
526 | /** Presumably this should start downloading an item? | |
527 | * | |
528 | * \todo Unimplemented. Implement it or remove? | |
529 | */ | |
530 | bool ItemStart(QItem *Itm,unsigned long long Size); | |
531 | ||
532 | /** \brief Remove the given item from this queue and set its state | |
533 | * to pkgAcquire::Item::StatDone. | |
534 | * | |
535 | * If this is the only queue containing the item, the item is also | |
536 | * removed from the main queue by calling pkgAcquire::Dequeue. | |
537 | * | |
538 | * \param Itm The item to remove. | |
539 | * | |
540 | * \return \b true if no errors are encountered. | |
541 | */ | |
542 | bool ItemDone(QItem *Itm); | |
543 | ||
544 | /** \brief Start the worker process associated with this queue. | |
545 | * | |
546 | * If a worker process is already associated with this queue, | |
547 | * this is equivalent to calling Cycle(). | |
548 | * | |
549 | * \return \b true if the startup was successful. | |
550 | */ | |
551 | bool Startup(); | |
552 | ||
553 | /** \brief Shut down the worker process associated with this queue. | |
554 | * | |
555 | * \param Final If \b true, then the process is stopped unconditionally. | |
556 | * Otherwise, it is only stopped if it does not need cleanup | |
557 | * as indicated by the pkgAcqMethod::NeedsCleanup member of | |
558 | * its configuration. | |
559 | * | |
560 | * \return \b true. | |
561 | */ | |
562 | bool Shutdown(bool Final); | |
563 | ||
564 | /** \brief Send idle items to the worker process. | |
565 | * | |
566 | * Fills up the pipeline by inserting idle items into the worker's queue. | |
567 | */ | |
568 | bool Cycle(); | |
569 | ||
570 | /** \brief Check for items that could be enqueued. | |
571 | * | |
572 | * Call this after an item placed in multiple queues has gone from | |
573 | * the pkgAcquire::Item::StatFetching state to the | |
574 | * pkgAcquire::Item::StatIdle state, to possibly refill an empty queue. | |
575 | * This is an alias for Cycle(). | |
576 | * | |
577 | * \todo Why both this and Cycle()? Are they expected to be | |
578 | * different someday? | |
579 | */ | |
580 | void Bump(); | |
581 | ||
582 | /** \brief Create a new Queue. | |
583 | * | |
584 | * \param Name The name of the new queue. | |
585 | * \param Owner The download process that owns the new queue. | |
586 | */ | |
587 | Queue(std::string const &Name,pkgAcquire * const Owner); | |
588 | ||
589 | /** Shut down all the worker processes associated with this queue | |
590 | * and empty the queue. | |
591 | */ | |
592 | virtual ~Queue(); | |
593 | }; | |
594 | /*}}}*/ | |
595 | /** \brief Iterates over all the URIs being fetched by a pkgAcquire object. {{{*/ | |
596 | class pkgAcquire::UriIterator | |
597 | { | |
598 | /** \brief dpointer placeholder (for later in case we need it) */ | |
599 | void * const d; | |
600 | ||
601 | /** The next queue to iterate over. */ | |
602 | pkgAcquire::Queue *CurQ; | |
603 | /** The item that we currently point at. */ | |
604 | pkgAcquire::Queue::QItem *CurItem; | |
605 | ||
606 | public: | |
607 | ||
608 | inline void operator ++() {operator ++(0);}; | |
609 | ||
610 | void operator ++(int) | |
611 | { | |
612 | CurItem = CurItem->Next; | |
613 | while (CurItem == 0 && CurQ != 0) | |
614 | { | |
615 | CurItem = CurQ->Items; | |
616 | CurQ = CurQ->Next; | |
617 | } | |
618 | }; | |
619 | ||
620 | inline pkgAcquire::Queue::QItem const *operator ->() const {return CurItem;}; | |
621 | inline bool operator !=(UriIterator const &rhs) const {return rhs.CurQ != CurQ || rhs.CurItem != CurItem;}; | |
622 | inline bool operator ==(UriIterator const &rhs) const {return rhs.CurQ == CurQ && rhs.CurItem == CurItem;}; | |
623 | ||
624 | /** \brief Create a new UriIterator. | |
625 | * | |
626 | * \param Q The queue over which this UriIterator should iterate. | |
627 | */ | |
628 | explicit UriIterator(pkgAcquire::Queue *Q); | |
629 | virtual ~UriIterator(); | |
630 | }; | |
631 | /*}}}*/ | |
632 | /** \brief Information about the properties of a single acquire method. {{{*/ | |
633 | struct pkgAcquire::MethodConfig | |
634 | { | |
635 | /** \brief dpointer placeholder (for later in case we need it) */ | |
636 | void * const d; | |
637 | ||
638 | /** \brief The next link on the acquire method list. | |
639 | * | |
640 | * \todo Why not an STL container? | |
641 | */ | |
642 | MethodConfig *Next; | |
643 | ||
644 | /** \brief The name of this acquire method (e.g., http). */ | |
645 | std::string Access; | |
646 | ||
647 | /** \brief The implementation version of this acquire method. */ | |
648 | std::string Version; | |
649 | ||
650 | /** \brief If \b true, only one download queue should be created for this | |
651 | * method. | |
652 | */ | |
653 | bool SingleInstance; | |
654 | ||
655 | /** \brief If \b true, this method supports pipelined downloading. */ | |
656 | bool Pipeline; | |
657 | ||
658 | /** \brief If \b true, the worker process should send the entire | |
659 | * APT configuration tree to the fetch subprocess when it starts | |
660 | * up. | |
661 | */ | |
662 | bool SendConfig; | |
663 | ||
664 | /** \brief If \b true, this fetch method does not require network access; | |
665 | * all files are to be acquired from the local disk. | |
666 | */ | |
667 | bool LocalOnly; | |
668 | ||
669 | /** \brief If \b true, the subprocess has to carry out some cleanup | |
670 | * actions before shutting down. | |
671 | * | |
672 | * For instance, the cdrom method needs to unmount the CD after it | |
673 | * finishes. | |
674 | */ | |
675 | bool NeedsCleanup; | |
676 | ||
677 | /** \brief If \b true, this fetch method acquires files from removable media. */ | |
678 | bool Removable; | |
679 | ||
680 | /** \brief Set up the default method parameters. | |
681 | * | |
682 | * All fields are initialized to NULL, "", or \b false as | |
683 | * appropriate. | |
684 | */ | |
685 | MethodConfig(); | |
686 | ||
687 | virtual ~MethodConfig(); | |
688 | }; | |
689 | /*}}}*/ | |
690 | /** \brief A monitor object for downloads controlled by the pkgAcquire class. {{{ | |
691 | * | |
692 | * \todo Why protected members? | |
693 | */ | |
694 | class pkgAcquireStatus | |
695 | { | |
696 | /** \brief dpointer placeholder (for later in case we need it) */ | |
697 | void * const d; | |
698 | ||
699 | protected: | |
700 | ||
701 | /** \brief The last time at which this monitor object was updated. */ | |
702 | struct timeval Time; | |
703 | ||
704 | /** \brief The time at which the download started. */ | |
705 | struct timeval StartTime; | |
706 | ||
707 | /** \brief The number of bytes fetched as of the previous call to | |
708 | * pkgAcquireStatus::Pulse, including local items. | |
709 | */ | |
710 | unsigned long long LastBytes; | |
711 | ||
712 | /** \brief The current rate of download as of the most recent call | |
713 | * to pkgAcquireStatus::Pulse, in bytes per second. | |
714 | */ | |
715 | unsigned long long CurrentCPS; | |
716 | ||
717 | /** \brief The number of bytes fetched as of the most recent call | |
718 | * to pkgAcquireStatus::Pulse, including local items. | |
719 | */ | |
720 | unsigned long long CurrentBytes; | |
721 | ||
722 | /** \brief The total number of bytes that need to be fetched. | |
723 | * | |
724 | * \warning This member is inaccurate, as new items might be | |
725 | * enqueued while the download is in progress! | |
726 | */ | |
727 | unsigned long long TotalBytes; | |
728 | ||
729 | /** \brief The total number of bytes accounted for by items that | |
730 | * were successfully fetched. | |
731 | */ | |
732 | unsigned long long FetchedBytes; | |
733 | ||
734 | /** \brief The amount of time that has elapsed since the download | |
735 | * started. | |
736 | */ | |
737 | unsigned long long ElapsedTime; | |
738 | ||
739 | /** \brief The total number of items that need to be fetched. | |
740 | * | |
741 | * \warning This member is inaccurate, as new items might be | |
742 | * enqueued while the download is in progress! | |
743 | */ | |
744 | unsigned long TotalItems; | |
745 | ||
746 | /** \brief The number of items that have been successfully downloaded. */ | |
747 | unsigned long CurrentItems; | |
748 | ||
749 | /** \brief The estimated percentage of the download (0-100) | |
750 | */ | |
751 | double Percent; | |
752 | ||
753 | public: | |
754 | ||
755 | /** \brief If \b true, the download scheduler should call Pulse() | |
756 | * at the next available opportunity. | |
757 | */ | |
758 | bool Update; | |
759 | ||
760 | /** \brief If \b true, extra Pulse() invocations will be performed. | |
761 | * | |
762 | * With this option set, Pulse() will be called every time that a | |
763 | * download item starts downloading, finishes downloading, or | |
764 | * terminates with an error. | |
765 | */ | |
766 | bool MorePulses; | |
767 | ||
768 | /** \brief Invoked when a local or remote file has been completely fetched. | |
769 | * | |
770 | * \param Size The size of the file fetched. | |
771 | * | |
772 | * \param ResumePoint How much of the file was already fetched. | |
773 | */ | |
774 | virtual void Fetched(unsigned long long Size,unsigned long long ResumePoint); | |
775 | ||
776 | /** \brief Invoked when the user should be prompted to change the | |
777 | * inserted removable media. | |
778 | * | |
779 | * This method should not return until the user has confirmed to | |
780 | * the user interface that the media change is complete. | |
781 | * | |
782 | * \param Media The name of the media type that should be changed. | |
783 | * | |
784 | * \param Drive The identifying name of the drive whose media | |
785 | * should be changed. | |
786 | * | |
787 | * \return \b true if the user confirms the media change, \b | |
788 | * false if it is cancelled. | |
789 | * | |
790 | * \todo This is a horrible blocking monster; it should be CPSed | |
791 | * with prejudice. | |
792 | */ | |
793 | virtual bool MediaChange(std::string Media,std::string Drive) = 0; | |
794 | ||
795 | /** \brief Invoked when an item is confirmed to be up-to-date. | |
796 | ||
797 | * For instance, when an HTTP download is informed that the file on | |
798 | * the server was not modified. | |
799 | */ | |
800 | virtual void IMSHit(pkgAcquire::ItemDesc &/*Itm*/) {}; | |
801 | ||
802 | /** \brief Invoked when some of an item's data is fetched. */ | |
803 | virtual void Fetch(pkgAcquire::ItemDesc &/*Itm*/) {}; | |
804 | ||
805 | /** \brief Invoked when an item is successfully and completely fetched. */ | |
806 | virtual void Done(pkgAcquire::ItemDesc &/*Itm*/) {}; | |
807 | ||
808 | /** \brief Invoked when the process of fetching an item encounters | |
809 | * a fatal error. | |
810 | */ | |
811 | virtual void Fail(pkgAcquire::ItemDesc &/*Itm*/) {}; | |
812 | ||
813 | /** \brief Periodically invoked while the Acquire process is underway. | |
814 | * | |
815 | * Subclasses should first call pkgAcquireStatus::Pulse(), then | |
816 | * update their status output. The download process is blocked | |
817 | * while Pulse() is being called. | |
818 | * | |
819 | * \return \b false if the user asked to cancel the whole Acquire process. | |
820 | * | |
821 | * \see pkgAcquire::Run | |
822 | */ | |
823 | virtual bool Pulse(pkgAcquire *Owner); | |
824 | ||
825 | /** \brief Invoked when the Acquire process starts running. */ | |
826 | virtual void Start(); | |
827 | ||
828 | /** \brief Invoked when the Acquire process stops running. */ | |
829 | virtual void Stop(); | |
830 | ||
831 | /** \brief Initialize all counters to 0 and the time to the current time. */ | |
832 | pkgAcquireStatus(); | |
833 | virtual ~pkgAcquireStatus(); | |
834 | }; | |
835 | /*}}}*/ | |
836 | /** @} */ | |
837 | ||
838 | #endif |