]>
Commit | Line | Data |
---|---|---|
1 | // -*- mode: cpp; mode: fold -*- | |
2 | // Description /*{{{*/ | |
3 | /* ###################################################################### | |
4 | ||
5 | Acquire Item - Item to acquire | |
6 | ||
7 | When an item is instantiated it will add it self to the local list in | |
8 | the Owner Acquire class. Derived classes will then call QueueURI to | |
9 | register all the URI's they wish to fetch at the initial moment. | |
10 | ||
11 | Three item classes are provided to provide functionality for | |
12 | downloading of Index, Translation and Packages files. | |
13 | ||
14 | A Archive class is provided for downloading .deb files. It does Hash | |
15 | checking and source location as well as a retry algorithm. | |
16 | ||
17 | ##################################################################### */ | |
18 | /*}}}*/ | |
19 | #ifndef PKGLIB_ACQUIRE_ITEM_H | |
20 | #define PKGLIB_ACQUIRE_ITEM_H | |
21 | ||
22 | #include <apt-pkg/acquire.h> | |
23 | #include <apt-pkg/indexfile.h> | |
24 | #include <apt-pkg/hashes.h> | |
25 | #include <apt-pkg/weakptr.h> | |
26 | #include <apt-pkg/pkgcache.h> | |
27 | #include <apt-pkg/cacheiterators.h> | |
28 | ||
29 | #include <string> | |
30 | #include <vector> | |
31 | #include <map> | |
32 | ||
33 | #ifndef APT_8_CLEANER_HEADERS | |
34 | #include <apt-pkg/sourcelist.h> | |
35 | #include <apt-pkg/pkgrecords.h> | |
36 | #endif | |
37 | ||
38 | /** \addtogroup acquire | |
39 | * @{ | |
40 | * | |
41 | * \file acquire-item.h | |
42 | */ | |
43 | ||
44 | class pkgRecords; | |
45 | class pkgSourceList; | |
46 | class pkgAcqMetaClearSig; | |
47 | class pkgAcqIndexMergeDiffs; | |
48 | class metaIndex; | |
49 | ||
50 | class pkgAcquire::Item : public WeakPointable /*{{{*/ | |
51 | /** \brief Represents the process by which a pkgAcquire object should | |
52 | * retrieve a file or a collection of files. | |
53 | * | |
54 | * By convention, Item subclasses should insert themselves into the | |
55 | * acquire queue when they are created by calling QueueURI(), and | |
56 | * remove themselves by calling Dequeue() when either Done() or | |
57 | * Failed() is invoked. Item objects are also responsible for | |
58 | * notifying the download progress indicator (accessible via | |
59 | * #Owner->Log) of their status. | |
60 | * | |
61 | * \see pkgAcquire | |
62 | */ | |
63 | { | |
64 | public: | |
65 | ||
66 | /** \brief The current status of this item. */ | |
67 | enum ItemState | |
68 | { | |
69 | /** \brief The item is waiting to be downloaded. */ | |
70 | StatIdle, | |
71 | ||
72 | /** \brief The item is currently being downloaded. */ | |
73 | StatFetching, | |
74 | ||
75 | /** \brief The item has been successfully downloaded. */ | |
76 | StatDone, | |
77 | ||
78 | /** \brief An error was encountered while downloading this | |
79 | * item. | |
80 | */ | |
81 | StatError, | |
82 | ||
83 | /** \brief The item was downloaded but its authenticity could | |
84 | * not be verified. | |
85 | */ | |
86 | StatAuthError, | |
87 | ||
88 | /** \brief The item was could not be downloaded because of | |
89 | * a transient network error (e.g. network down) | |
90 | */ | |
91 | StatTransientNetworkError, | |
92 | } Status; | |
93 | ||
94 | /** \brief Contains a textual description of the error encountered | |
95 | * if #ItemState is #StatError or #StatAuthError. | |
96 | */ | |
97 | std::string ErrorText; | |
98 | ||
99 | /** \brief The size of the object to fetch. */ | |
100 | unsigned long long FileSize; | |
101 | ||
102 | /** \brief How much of the object was already fetched. */ | |
103 | unsigned long long PartialSize; | |
104 | ||
105 | /** \brief If not \b NULL, contains the name of a subprocess that | |
106 | * is operating on this object (for instance, "gzip" or "gpgv"). | |
107 | */ | |
108 | APT_DEPRECATED_MSG("Use the std::string member ActiveSubprocess instead") const char *Mode; | |
109 | ||
110 | /** \brief contains the name of the subprocess that is operating on this object | |
111 | * (for instance, "gzip", "rred" or "gpgv"). This is obsoleting #Mode from above | |
112 | * as it can manage the lifetime of included string properly. */ | |
113 | std::string ActiveSubprocess; | |
114 | ||
115 | /** \brief A client-supplied unique identifier. | |
116 | * | |
117 | * This field is initalized to 0; it is meant to be filled in by | |
118 | * clients that wish to use it to uniquely identify items. | |
119 | * | |
120 | * APT progress reporting will store an ID there as shown in "Get:42 …" | |
121 | */ | |
122 | unsigned long ID; | |
123 | ||
124 | /** \brief If \b true, the entire object has been successfully fetched. | |
125 | * | |
126 | * Subclasses should set this to \b true when appropriate. | |
127 | */ | |
128 | bool Complete; | |
129 | ||
130 | /** \brief If \b true, the URI of this object is "local". | |
131 | * | |
132 | * The only effect of this field is to exclude the object from the | |
133 | * download progress indicator's overall statistics. | |
134 | */ | |
135 | bool Local; | |
136 | ||
137 | std::string UsedMirror; | |
138 | ||
139 | /** \brief The number of fetch queues into which this item has been | |
140 | * inserted. | |
141 | * | |
142 | * There is one queue for each source from which an item could be | |
143 | * downloaded. | |
144 | * | |
145 | * \sa pkgAcquire | |
146 | */ | |
147 | unsigned int QueueCounter; | |
148 | ||
149 | /** \brief The number of additional fetch items that are expected | |
150 | * once this item is done. | |
151 | * | |
152 | * Some items like pkgAcqMeta{Index,Sig} will queue additional | |
153 | * items. This variable can be set by the methods if it knows | |
154 | * in advance how many items to expect to get a more accurate | |
155 | * progress. | |
156 | */ | |
157 | unsigned int ExpectedAdditionalItems; | |
158 | ||
159 | /** \brief The name of the file into which the retrieved object | |
160 | * will be written. | |
161 | */ | |
162 | std::string DestFile; | |
163 | ||
164 | /** \brief Invoked by the acquire worker when the object couldn't | |
165 | * be fetched. | |
166 | * | |
167 | * This is a branch of the continuation of the fetch process. | |
168 | * | |
169 | * \param Message An RFC822-formatted message from the acquire | |
170 | * method describing what went wrong. Use LookupTag() to parse | |
171 | * it. | |
172 | * | |
173 | * \param Cnf The method via which the worker tried to fetch this object. | |
174 | * | |
175 | * \sa pkgAcqMethod | |
176 | */ | |
177 | virtual void Failed(std::string const &Message,pkgAcquire::MethodConfig const * const Cnf); | |
178 | ||
179 | /** \brief Invoked by the acquire worker to check if the successfully | |
180 | * fetched object is also the objected we wanted to have. | |
181 | * | |
182 | * Note that the object might \e not have been written to | |
183 | * DestFile; check for the presence of an Alt-Filename entry in | |
184 | * Message to find the file to which it was really written. | |
185 | * | |
186 | * This is called before Done is called and can prevent it by returning | |
187 | * \b false which will result in Failed being called instead. | |
188 | * | |
189 | * You should prefer to use this method over calling Failed() from Done() | |
190 | * as this has e.g. the wrong progress reporting. | |
191 | * | |
192 | * \param Message Data from the acquire method. Use LookupTag() | |
193 | * to parse it. | |
194 | * \param Cnf The method via which the object was fetched. | |
195 | * | |
196 | * \sa pkgAcqMethod | |
197 | */ | |
198 | virtual bool VerifyDone(std::string const &Message, | |
199 | pkgAcquire::MethodConfig const * const Cnf); | |
200 | ||
201 | /** \brief Invoked by the acquire worker when the object was | |
202 | * fetched successfully. | |
203 | * | |
204 | * Note that the object might \e not have been written to | |
205 | * DestFile; check for the presence of an Alt-Filename entry in | |
206 | * Message to find the file to which it was really written. | |
207 | * | |
208 | * Done is often used to switch from one stage of the processing | |
209 | * to the next (e.g. fetching, unpacking, copying). It is one | |
210 | * branch of the continuation of the fetch process. | |
211 | * | |
212 | * \param Message Data from the acquire method. Use LookupTag() | |
213 | * to parse it. | |
214 | * \param Hashes The HashSums of the object that was fetched. | |
215 | * \param Cnf The method via which the object was fetched. | |
216 | * | |
217 | * \sa pkgAcqMethod | |
218 | */ | |
219 | virtual void Done(std::string const &Message, HashStringList const &Hashes, | |
220 | pkgAcquire::MethodConfig const * const Cnf); | |
221 | ||
222 | /** \brief Invoked when the worker starts to fetch this object. | |
223 | * | |
224 | * \param Message RFC822-formatted data from the worker process. | |
225 | * Use LookupTag() to parse it. | |
226 | * | |
227 | * \param Hashes The expected hashes of the object being fetched. | |
228 | * | |
229 | * \sa pkgAcqMethod | |
230 | */ | |
231 | virtual void Start(std::string const &Message, unsigned long long const Size); | |
232 | ||
233 | /** \brief Custom headers to be sent to the fetch process. | |
234 | * | |
235 | * \return a string containing RFC822-style headers that are to be | |
236 | * inserted into the 600 URI Acquire message sent to the fetch | |
237 | * subprocess. The headers are inserted after a newline-less | |
238 | * line, so they should (if nonempty) have a leading newline and | |
239 | * no trailing newline. | |
240 | */ | |
241 | virtual std::string Custom600Headers() const; | |
242 | ||
243 | /** \brief A "descriptive" URI-like string. | |
244 | * | |
245 | * \return a URI that should be used to describe what is being fetched. | |
246 | */ | |
247 | virtual std::string DescURI() const = 0; | |
248 | /** \brief Short item description. | |
249 | * | |
250 | * \return a brief description of the object being fetched. | |
251 | */ | |
252 | virtual std::string ShortDesc() const; | |
253 | ||
254 | /** \brief Invoked by the worker when the download is completely done. */ | |
255 | virtual void Finished(); | |
256 | ||
257 | /** \return HashSums the DestFile is supposed to have in this stage */ | |
258 | virtual HashStringList GetExpectedHashes() const = 0; | |
259 | /** \return the 'best' hash for display proposes like --print-uris */ | |
260 | std::string HashSum() const; | |
261 | ||
262 | /** \return if having no hashes is a hard failure or not | |
263 | * | |
264 | * Idealy this is always \b true for every subclass, but thanks to | |
265 | * historical grow we don't have hashes for all files in all cases | |
266 | * in all steps, so it is slightly more complicated than it should be. | |
267 | */ | |
268 | virtual bool HashesRequired() const { return true; } | |
269 | ||
270 | /** \return the acquire process with which this item is associated. */ | |
271 | pkgAcquire *GetOwner() const; | |
272 | pkgAcquire::ItemDesc &GetItemDesc(); | |
273 | ||
274 | /** \return \b true if this object is being fetched from a trusted source. */ | |
275 | virtual bool IsTrusted() const; | |
276 | ||
277 | /** \brief Report mirror problem | |
278 | * | |
279 | * This allows reporting mirror failures back to a centralized | |
280 | * server. The apt-report-mirror-failure script is called for this | |
281 | * | |
282 | * \param FailCode A short failure string that is send | |
283 | */ | |
284 | APT_DEPRECATED_MSG("Item::Failed does this for you") void ReportMirrorFailure(std::string const &FailCode); | |
285 | ||
286 | /** \brief Set the name of the current active subprocess | |
287 | * | |
288 | * See also #ActiveSubprocess | |
289 | */ | |
290 | void SetActiveSubprocess(std::string const &subprocess); | |
291 | ||
292 | /** \brief Initialize an item. | |
293 | * | |
294 | * Adds the item to the list of items known to the acquire | |
295 | * process, but does not place it into any fetch queues (you must | |
296 | * manually invoke QueueURI() to do so). | |
297 | * | |
298 | * \param Owner The new owner of this item. | |
299 | */ | |
300 | explicit Item(pkgAcquire * const Owner); | |
301 | ||
302 | /** \brief Remove this item from its owner's queue by invoking | |
303 | * pkgAcquire::Remove. | |
304 | */ | |
305 | virtual ~Item(); | |
306 | ||
307 | protected: | |
308 | /** \brief The acquire object with which this item is associated. */ | |
309 | pkgAcquire * const Owner; | |
310 | ||
311 | /** \brief The item that is currently being downloaded. */ | |
312 | pkgAcquire::ItemDesc Desc; | |
313 | ||
314 | enum RenameOnErrorState { | |
315 | HashSumMismatch, | |
316 | SizeMismatch, | |
317 | InvalidFormat, | |
318 | SignatureError, | |
319 | NotClearsigned, | |
320 | MaximumSizeExceeded, | |
321 | PDiffError, | |
322 | }; | |
323 | ||
324 | /** \brief Rename failed file and set error | |
325 | * | |
326 | * \param state respresenting the error we encountered | |
327 | */ | |
328 | bool RenameOnError(RenameOnErrorState const state); | |
329 | ||
330 | /** \brief Insert this item into its owner's queue. | |
331 | * | |
332 | * The method is designed to check if the request would end | |
333 | * in an IMSHit and if it determines that it would, it isn't | |
334 | * queueing the Item and instead sets it to completion instantly. | |
335 | * | |
336 | * \param Item Metadata about this item (its URI and | |
337 | * description). | |
338 | * \return true if the item was inserted, false if IMSHit was detected | |
339 | */ | |
340 | virtual bool QueueURI(ItemDesc &Item); | |
341 | ||
342 | /** \brief Remove this item from its owner's queue. */ | |
343 | void Dequeue(); | |
344 | ||
345 | /** \brief Rename a file without modifying its timestamp. | |
346 | * | |
347 | * Many item methods call this as their final action. | |
348 | * | |
349 | * \param From The file to be renamed. | |
350 | * | |
351 | * \param To The new name of \a From. If \a To exists it will be | |
352 | * overwritten. If \a From and \a To are equal nothing happens. | |
353 | */ | |
354 | bool Rename(std::string const &From, std::string const &To); | |
355 | ||
356 | /** \brief Get the full pathname of the final file for the current URI */ | |
357 | virtual std::string GetFinalFilename() const; | |
358 | ||
359 | private: | |
360 | void * const d; | |
361 | ||
362 | friend class pkgAcqMetaBase; | |
363 | friend class pkgAcqMetaClearSig; | |
364 | }; | |
365 | /*}}}*/ | |
366 | class APT_HIDDEN pkgAcqTransactionItem: public pkgAcquire::Item /*{{{*/ | |
367 | /** \brief baseclass for the indexes files to manage them all together */ | |
368 | { | |
369 | void * const d; | |
370 | protected: | |
371 | IndexTarget const Target; | |
372 | HashStringList GetExpectedHashesFor(std::string const &MetaKey) const; | |
373 | ||
374 | bool QueueURI(pkgAcquire::ItemDesc &Item) APT_OVERRIDE; | |
375 | ||
376 | public: | |
377 | /** \brief storge name until a transaction is finished */ | |
378 | std::string PartialFile; | |
379 | ||
380 | /** \brief TransactionManager */ | |
381 | pkgAcqMetaClearSig * const TransactionManager; | |
382 | ||
383 | enum TransactionStates { | |
384 | TransactionStarted, | |
385 | TransactionCommit, | |
386 | TransactionAbort, | |
387 | }; | |
388 | virtual bool TransactionState(TransactionStates const state); | |
389 | ||
390 | virtual std::string DescURI() const APT_OVERRIDE { return Target.URI; } | |
391 | virtual HashStringList GetExpectedHashes() const APT_OVERRIDE; | |
392 | virtual std::string GetMetaKey() const; | |
393 | virtual bool HashesRequired() const APT_OVERRIDE; | |
394 | ||
395 | ||
396 | pkgAcqTransactionItem(pkgAcquire * const Owner, pkgAcqMetaClearSig * const TransactionManager, IndexTarget const &Target); | |
397 | virtual ~pkgAcqTransactionItem(); | |
398 | ||
399 | friend class pkgAcqMetaBase; | |
400 | friend class pkgAcqMetaClearSig; | |
401 | }; | |
402 | /*}}}*/ | |
403 | class APT_HIDDEN pkgAcqMetaBase : public pkgAcqTransactionItem /*{{{*/ | |
404 | /** \brief the manager of a transaction */ | |
405 | { | |
406 | void * const d; | |
407 | protected: | |
408 | std::vector<pkgAcqTransactionItem*> Transaction; | |
409 | ||
410 | /** \brief The index files which should be looked up in the meta-index | |
411 | * and then downloaded. | |
412 | */ | |
413 | std::vector<IndexTarget> IndexTargets; | |
414 | ||
415 | /** \brief If \b true, the index's signature is currently being verified. | |
416 | */ | |
417 | bool AuthPass; | |
418 | ||
419 | /** \brief Starts downloading the individual index files. | |
420 | * | |
421 | * \param verify If \b true, only indices whose expected hashsum | |
422 | * can be determined from the meta-index will be downloaded, and | |
423 | * the hashsums of indices will be checked (reporting | |
424 | * #StatAuthError if there is a mismatch). If verify is \b false, | |
425 | * no hashsum checking will be performed. | |
426 | */ | |
427 | void QueueIndexes(bool const verify); | |
428 | ||
429 | /** \brief Called when a file is finished being retrieved. | |
430 | * | |
431 | * If the file was not downloaded to DestFile, a copy process is | |
432 | * set up to copy it to DestFile; otherwise, Complete is set to \b | |
433 | * true and the file is moved to its final location. | |
434 | * | |
435 | * \param Message The message block received from the fetch | |
436 | * subprocess. | |
437 | */ | |
438 | bool CheckDownloadDone(pkgAcqTransactionItem * const I, const std::string &Message, HashStringList const &Hashes) const; | |
439 | ||
440 | /** \brief Queue the downloaded Signature for verification */ | |
441 | void QueueForSignatureVerify(pkgAcqTransactionItem * const I, std::string const &File, std::string const &Signature); | |
442 | ||
443 | virtual std::string Custom600Headers() const APT_OVERRIDE; | |
444 | ||
445 | /** \brief Called when authentication succeeded. | |
446 | * | |
447 | * Sanity-checks the authenticated file, queues up the individual | |
448 | * index files for download, and saves the signature in the lists | |
449 | * directory next to the authenticated list file. | |
450 | * | |
451 | * \param Message The message block received from the fetch | |
452 | * subprocess. | |
453 | */ | |
454 | bool CheckAuthDone(std::string const &Message); | |
455 | ||
456 | /** Check if the current item should fail at this point */ | |
457 | bool CheckStopAuthentication(pkgAcquire::Item * const I, const std::string &Message); | |
458 | ||
459 | /** \brief Check that the release file is a release file for the | |
460 | * correct distribution. | |
461 | * | |
462 | * \return \b true if no fatal errors were encountered. | |
463 | */ | |
464 | bool VerifyVendor(std::string const &Message); | |
465 | ||
466 | virtual bool TransactionState(TransactionStates const state) APT_OVERRIDE; | |
467 | ||
468 | public: | |
469 | // This refers more to the Transaction-Manager than the actual file | |
470 | bool IMSHit; | |
471 | TransactionStates State; | |
472 | ||
473 | virtual bool QueueURI(pkgAcquire::ItemDesc &Item) APT_OVERRIDE; | |
474 | virtual HashStringList GetExpectedHashes() const APT_OVERRIDE; | |
475 | virtual bool HashesRequired() const APT_OVERRIDE; | |
476 | ||
477 | // transaction code | |
478 | void Add(pkgAcqTransactionItem * const I); | |
479 | void AbortTransaction(); | |
480 | bool TransactionHasError() const; | |
481 | void CommitTransaction(); | |
482 | ||
483 | /** \brief Stage (queue) a copy action when the transaction is committed | |
484 | */ | |
485 | void TransactionStageCopy(pkgAcqTransactionItem * const I, | |
486 | const std::string &From, | |
487 | const std::string &To); | |
488 | /** \brief Stage (queue) a removal action when the transaction is committed | |
489 | */ | |
490 | void TransactionStageRemoval(pkgAcqTransactionItem * const I, const std::string &FinalFile); | |
491 | ||
492 | /** \brief Get the full pathname of the final file for the current URI */ | |
493 | virtual std::string GetFinalFilename() const APT_OVERRIDE; | |
494 | ||
495 | pkgAcqMetaBase(pkgAcquire * const Owner, pkgAcqMetaClearSig * const TransactionManager, | |
496 | std::vector<IndexTarget> const &IndexTargets, | |
497 | IndexTarget const &DataTarget); | |
498 | virtual ~pkgAcqMetaBase(); | |
499 | }; | |
500 | /*}}}*/ | |
501 | /** \brief An item that is responsible for downloading the meta-index {{{ | |
502 | * file (i.e., Release) itself and verifying its signature. | |
503 | * | |
504 | * Once the download and verification are complete, the downloads of | |
505 | * the individual index files are queued up using pkgAcqDiffIndex. | |
506 | * If the meta-index file had a valid signature, the expected hashsums | |
507 | * of the index files will be the md5sums listed in the meta-index; | |
508 | * otherwise, the expected hashsums will be "" (causing the | |
509 | * authentication of the index files to be bypassed). | |
510 | */ | |
511 | class APT_HIDDEN pkgAcqMetaIndex : public pkgAcqMetaBase | |
512 | { | |
513 | void * const d; | |
514 | protected: | |
515 | IndexTarget const DetachedSigTarget; | |
516 | ||
517 | /** \brief delayed constructor */ | |
518 | void Init(std::string const &URIDesc, std::string const &ShortDesc); | |
519 | ||
520 | public: | |
521 | virtual std::string DescURI() const APT_OVERRIDE; | |
522 | ||
523 | // Specialized action members | |
524 | virtual void Failed(std::string const &Message,pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE; | |
525 | virtual void Done(std::string const &Message, HashStringList const &Hashes, | |
526 | pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE; | |
527 | ||
528 | /** \brief Create a new pkgAcqMetaIndex. */ | |
529 | pkgAcqMetaIndex(pkgAcquire * const Owner, pkgAcqMetaClearSig * const TransactionManager, | |
530 | IndexTarget const &DataTarget, IndexTarget const &DetachedSigTarget, | |
531 | std::vector<IndexTarget> const &IndexTargets); | |
532 | virtual ~pkgAcqMetaIndex(); | |
533 | ||
534 | friend class pkgAcqMetaSig; | |
535 | }; | |
536 | /*}}}*/ | |
537 | /** \brief An acquire item that downloads the detached signature {{{ | |
538 | * of a meta-index (Release) file, then queues up the release | |
539 | * file itself. | |
540 | * | |
541 | * \todo Why protected members? | |
542 | * | |
543 | * \sa pkgAcqMetaIndex | |
544 | */ | |
545 | class APT_HIDDEN pkgAcqMetaSig : public pkgAcqTransactionItem | |
546 | { | |
547 | void * const d; | |
548 | ||
549 | pkgAcqMetaIndex * const MetaIndex; | |
550 | ||
551 | /** \brief The file we use to verify the MetaIndexFile with (not always set!) */ | |
552 | std::string MetaIndexFileSignature; | |
553 | ||
554 | protected: | |
555 | ||
556 | /** \brief Get the full pathname of the final file for the current URI */ | |
557 | virtual std::string GetFinalFilename() const APT_OVERRIDE; | |
558 | ||
559 | public: | |
560 | virtual bool HashesRequired() const APT_OVERRIDE { return false; } | |
561 | ||
562 | // Specialized action members | |
563 | virtual void Failed(std::string const &Message,pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE; | |
564 | virtual void Done(std::string const &Message, HashStringList const &Hashes, | |
565 | pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE; | |
566 | virtual std::string Custom600Headers() const APT_OVERRIDE; | |
567 | ||
568 | /** \brief Create a new pkgAcqMetaSig. */ | |
569 | pkgAcqMetaSig(pkgAcquire * const Owner, pkgAcqMetaClearSig * const TransactionManager, | |
570 | IndexTarget const &Target, pkgAcqMetaIndex * const MetaIndex); | |
571 | virtual ~pkgAcqMetaSig(); | |
572 | }; | |
573 | /*}}}*/ | |
574 | /** \brief An item repsonsible for downloading clearsigned metaindexes {{{*/ | |
575 | class APT_HIDDEN pkgAcqMetaClearSig : public pkgAcqMetaIndex | |
576 | { | |
577 | void * const d; | |
578 | ||
579 | IndexTarget const ClearsignedTarget; | |
580 | IndexTarget const DetachedDataTarget; | |
581 | ||
582 | public: | |
583 | /** \brief A package-system-specific parser for the meta-index file. */ | |
584 | metaIndex *MetaIndexParser; | |
585 | metaIndex *LastMetaIndexParser; | |
586 | ||
587 | virtual void Failed(std::string const &Message,pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE; | |
588 | virtual std::string Custom600Headers() const APT_OVERRIDE; | |
589 | virtual bool VerifyDone(std::string const &Message, pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE; | |
590 | virtual void Done(std::string const &Message, HashStringList const &Hashes, | |
591 | pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE; | |
592 | virtual void Finished() APT_OVERRIDE; | |
593 | ||
594 | /** \brief Create a new pkgAcqMetaClearSig. */ | |
595 | pkgAcqMetaClearSig(pkgAcquire * const Owner, | |
596 | IndexTarget const &ClearsignedTarget, | |
597 | IndexTarget const &DetachedDataTarget, | |
598 | IndexTarget const &DetachedSigTarget, | |
599 | std::vector<IndexTarget> const &IndexTargets, | |
600 | metaIndex * const MetaIndexParser); | |
601 | virtual ~pkgAcqMetaClearSig(); | |
602 | }; | |
603 | /*}}}*/ | |
604 | /** \brief Common base class for all classes that deal with fetching indexes {{{*/ | |
605 | class APT_HIDDEN pkgAcqBaseIndex : public pkgAcqTransactionItem | |
606 | { | |
607 | void * const d; | |
608 | ||
609 | public: | |
610 | /** \brief Get the full pathname of the final file for the current URI */ | |
611 | virtual std::string GetFinalFilename() const APT_OVERRIDE; | |
612 | ||
613 | pkgAcqBaseIndex(pkgAcquire * const Owner, pkgAcqMetaClearSig * const TransactionManager, | |
614 | IndexTarget const &Target); | |
615 | virtual ~pkgAcqBaseIndex(); | |
616 | }; | |
617 | /*}}}*/ | |
618 | /** \brief An item that is responsible for fetching an index file of {{{ | |
619 | * package list diffs and starting the package list's download. | |
620 | * | |
621 | * This item downloads the Index file and parses it, then enqueues | |
622 | * additional downloads of either the individual patches (using | |
623 | * pkgAcqIndexDiffs) or the entire Packages file (using pkgAcqIndex). | |
624 | * | |
625 | * \sa pkgAcqIndexDiffs, pkgAcqIndex | |
626 | */ | |
627 | class APT_HIDDEN pkgAcqDiffIndex : public pkgAcqBaseIndex | |
628 | { | |
629 | void * const d; | |
630 | std::vector<pkgAcqIndexMergeDiffs*> * diffs; | |
631 | ||
632 | protected: | |
633 | /** \brief If \b true, debugging information will be written to std::clog. */ | |
634 | bool Debug; | |
635 | ||
636 | /** \brief A description of the Packages file (stored in | |
637 | * pkgAcquire::ItemDesc::Description). | |
638 | */ | |
639 | std::string Description; | |
640 | ||
641 | /** \brief Get the full pathname of the final file for the current URI */ | |
642 | virtual std::string GetFinalFilename() const APT_OVERRIDE; | |
643 | ||
644 | virtual bool QueueURI(pkgAcquire::ItemDesc &Item) APT_OVERRIDE; | |
645 | ||
646 | virtual bool TransactionState(TransactionStates const state) APT_OVERRIDE; | |
647 | public: | |
648 | // Specialized action members | |
649 | virtual void Failed(std::string const &Message, pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE; | |
650 | virtual void Done(std::string const &Message, HashStringList const &Hashes, | |
651 | pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE; | |
652 | virtual std::string DescURI() const APT_OVERRIDE {return Target.URI + "Index";}; | |
653 | virtual std::string Custom600Headers() const APT_OVERRIDE; | |
654 | virtual std::string GetMetaKey() const APT_OVERRIDE; | |
655 | ||
656 | /** \brief Parse the Index file for a set of Packages diffs. | |
657 | * | |
658 | * Parses the Index file and creates additional download items as | |
659 | * necessary. | |
660 | * | |
661 | * \param IndexDiffFile The name of the Index file. | |
662 | * | |
663 | * \return \b true if the Index file was successfully parsed, \b | |
664 | * false otherwise. | |
665 | */ | |
666 | bool ParseDiffIndex(std::string const &IndexDiffFile); | |
667 | ||
668 | /** \brief Create a new pkgAcqDiffIndex. | |
669 | * | |
670 | * \param Owner The Acquire object that owns this item. | |
671 | * | |
672 | * \param URI The URI of the list file to download. | |
673 | * | |
674 | * \param URIDesc A long description of the list file to download. | |
675 | * | |
676 | * \param ShortDesc A short description of the list file to download. | |
677 | */ | |
678 | pkgAcqDiffIndex(pkgAcquire * const Owner, pkgAcqMetaClearSig * const TransactionManager, | |
679 | IndexTarget const &Target); | |
680 | virtual ~pkgAcqDiffIndex(); | |
681 | private: | |
682 | APT_HIDDEN void QueueOnIMSHit() const; | |
683 | }; | |
684 | /*}}}*/ | |
685 | struct APT_HIDDEN DiffInfo { /*{{{*/ | |
686 | /** The filename of the diff. */ | |
687 | std::string file; | |
688 | ||
689 | /** The hashes of the file after the diff is applied */ | |
690 | HashStringList result_hashes; | |
691 | ||
692 | /** The hashes of the diff */ | |
693 | HashStringList patch_hashes; | |
694 | ||
695 | /** The hashes of the compressed diff */ | |
696 | HashStringList download_hashes; | |
697 | }; | |
698 | /*}}}*/ | |
699 | /** \brief An item that is responsible for fetching client-merge patches {{{ | |
700 | * that need to be applied to a given package index file. | |
701 | * | |
702 | * Instead of downloading and applying each patch one by one like its | |
703 | * sister #pkgAcqIndexDiffs this class will download all patches at once | |
704 | * and call rred with all the patches downloaded once. Rred will then | |
705 | * merge and apply them in one go, which should be a lot faster – but is | |
706 | * incompatible with server-based merges of patches like reprepro can do. | |
707 | * | |
708 | * \sa pkgAcqDiffIndex, pkgAcqIndex | |
709 | */ | |
710 | class APT_HIDDEN pkgAcqIndexMergeDiffs : public pkgAcqBaseIndex | |
711 | { | |
712 | void * const d; | |
713 | ||
714 | protected: | |
715 | ||
716 | /** \brief If \b true, debugging output will be written to | |
717 | * std::clog. | |
718 | */ | |
719 | bool Debug; | |
720 | ||
721 | /** \brief description of the file being downloaded. */ | |
722 | std::string Description; | |
723 | ||
724 | /** \brief information about the current patch */ | |
725 | struct DiffInfo const patch; | |
726 | ||
727 | /** \brief list of all download items for the patches */ | |
728 | std::vector<pkgAcqIndexMergeDiffs*> const * const allPatches; | |
729 | ||
730 | /** The current status of this patch. */ | |
731 | enum DiffState | |
732 | { | |
733 | /** \brief The diff is currently being fetched. */ | |
734 | StateFetchDiff, | |
735 | ||
736 | /** \brief The diff is currently being applied. */ | |
737 | StateApplyDiff, | |
738 | ||
739 | /** \brief the work with this diff is done */ | |
740 | StateDoneDiff, | |
741 | ||
742 | /** \brief something bad happened and fallback was triggered */ | |
743 | StateErrorDiff | |
744 | } State; | |
745 | ||
746 | public: | |
747 | /** \brief Called when the patch file failed to be downloaded. | |
748 | * | |
749 | * This method will fall back to downloading the whole index file | |
750 | * outright; its arguments are ignored. | |
751 | */ | |
752 | virtual void Failed(std::string const &Message,pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE; | |
753 | virtual void Done(std::string const &Message, HashStringList const &Hashes, | |
754 | pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE; | |
755 | virtual std::string Custom600Headers() const APT_OVERRIDE; | |
756 | virtual std::string DescURI() const APT_OVERRIDE {return Target.URI + "Index";}; | |
757 | virtual HashStringList GetExpectedHashes() const APT_OVERRIDE; | |
758 | virtual bool HashesRequired() const APT_OVERRIDE; | |
759 | ||
760 | /** \brief Create an index merge-diff item. | |
761 | * | |
762 | * \param Owner The pkgAcquire object that owns this item. | |
763 | * | |
764 | * \param URI The URI of the package index file being | |
765 | * reconstructed. | |
766 | * | |
767 | * \param URIDesc A long description of this item. | |
768 | * | |
769 | * \param ShortDesc A brief description of this item. | |
770 | * | |
771 | * \param patch contains infos about the patch this item is supposed | |
772 | * to download which were read from the index | |
773 | * | |
774 | * \param allPatches contains all related items so that each item can | |
775 | * check if it was the last one to complete the download step | |
776 | */ | |
777 | pkgAcqIndexMergeDiffs(pkgAcquire * const Owner, pkgAcqMetaClearSig * const TransactionManager, | |
778 | IndexTarget const &Target, DiffInfo const &patch, | |
779 | std::vector<pkgAcqIndexMergeDiffs*> const * const allPatches); | |
780 | virtual ~pkgAcqIndexMergeDiffs(); | |
781 | }; | |
782 | /*}}}*/ | |
783 | /** \brief An item that is responsible for fetching server-merge patches {{{ | |
784 | * that need to be applied to a given package index file. | |
785 | * | |
786 | * After downloading and applying a single patch, this item will | |
787 | * enqueue a new pkgAcqIndexDiffs to download and apply the remaining | |
788 | * patches. If no patch can be found that applies to an intermediate | |
789 | * file or if one of the patches cannot be downloaded, falls back to | |
790 | * downloading the entire package index file using pkgAcqIndex. | |
791 | * | |
792 | * \sa pkgAcqDiffIndex, pkgAcqIndex | |
793 | */ | |
794 | class APT_HIDDEN pkgAcqIndexDiffs : public pkgAcqBaseIndex | |
795 | { | |
796 | void * const d; | |
797 | ||
798 | private: | |
799 | ||
800 | /** \brief Queue up the next diff download. | |
801 | * | |
802 | * Search for the next available diff that applies to the file | |
803 | * that currently exists on disk, and enqueue it by calling | |
804 | * QueueURI(). | |
805 | * | |
806 | * \return \b true if an applicable diff was found, \b false | |
807 | * otherwise. | |
808 | */ | |
809 | APT_HIDDEN bool QueueNextDiff(); | |
810 | ||
811 | /** \brief Handle tasks that must be performed after the item | |
812 | * finishes downloading. | |
813 | * | |
814 | * Dequeues the item and checks the resulting file's hashsums | |
815 | * against ExpectedHashes after the last patch was applied. | |
816 | * There is no need to check the md5/sha1 after a "normal" | |
817 | * patch because QueueNextDiff() will check the sha1 later. | |
818 | * | |
819 | * \param allDone If \b true, the file was entirely reconstructed, | |
820 | * and its md5sum is verified. | |
821 | */ | |
822 | APT_HIDDEN void Finish(bool const allDone=false); | |
823 | ||
824 | protected: | |
825 | ||
826 | /** \brief If \b true, debugging output will be written to | |
827 | * std::clog. | |
828 | */ | |
829 | bool Debug; | |
830 | ||
831 | /** A description of the file being downloaded. */ | |
832 | std::string Description; | |
833 | ||
834 | /** The patches that remain to be downloaded, including the patch | |
835 | * being downloaded right now. This list should be ordered so | |
836 | * that each diff appears before any diff that depends on it. | |
837 | * | |
838 | * \todo These are indexed by sha1sum; why not use some sort of | |
839 | * dictionary instead of relying on ordering and stripping them | |
840 | * off the front? | |
841 | */ | |
842 | std::vector<DiffInfo> available_patches; | |
843 | ||
844 | /** The current status of this patch. */ | |
845 | enum DiffState | |
846 | { | |
847 | /** \brief The diff is currently being fetched. */ | |
848 | StateFetchDiff, | |
849 | ||
850 | /** \brief The diff is currently being applied. */ | |
851 | StateApplyDiff | |
852 | } State; | |
853 | ||
854 | public: | |
855 | ||
856 | /** \brief Called when the patch file failed to be downloaded. | |
857 | * | |
858 | * This method will fall back to downloading the whole index file | |
859 | * outright; its arguments are ignored. | |
860 | */ | |
861 | virtual void Failed(std::string const &Message,pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE; | |
862 | ||
863 | virtual void Done(std::string const &Message, HashStringList const &Hashes, | |
864 | pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE; | |
865 | virtual std::string Custom600Headers() const APT_OVERRIDE; | |
866 | virtual std::string DescURI() const APT_OVERRIDE {return Target.URI + "IndexDiffs";}; | |
867 | virtual HashStringList GetExpectedHashes() const APT_OVERRIDE; | |
868 | virtual bool HashesRequired() const APT_OVERRIDE; | |
869 | ||
870 | /** \brief Create an index diff item. | |
871 | * | |
872 | * After filling in its basic fields, this invokes Finish(true) if | |
873 | * \a diffs is empty, or QueueNextDiff() otherwise. | |
874 | * | |
875 | * \param Owner The pkgAcquire object that owns this item. | |
876 | * | |
877 | * \param URI The URI of the package index file being | |
878 | * reconstructed. | |
879 | * | |
880 | * \param URIDesc A long description of this item. | |
881 | * | |
882 | * \param ShortDesc A brief description of this item. | |
883 | * | |
884 | * \param diffs The remaining diffs from the index of diffs. They | |
885 | * should be ordered so that each diff appears before any diff | |
886 | * that depends on it. | |
887 | */ | |
888 | pkgAcqIndexDiffs(pkgAcquire * const Owner, pkgAcqMetaClearSig * const TransactionManager, | |
889 | IndexTarget const &Target, | |
890 | std::vector<DiffInfo> const &diffs=std::vector<DiffInfo>()); | |
891 | virtual ~pkgAcqIndexDiffs(); | |
892 | }; | |
893 | /*}}}*/ | |
894 | /** \brief An acquire item that is responsible for fetching an index {{{ | |
895 | * file (e.g., Packages or Sources). | |
896 | * | |
897 | * \sa pkgAcqDiffIndex, pkgAcqIndexDiffs, pkgAcqIndexTrans | |
898 | * | |
899 | * \todo Why does pkgAcqIndex have protected members? | |
900 | */ | |
901 | class APT_HIDDEN pkgAcqIndex : public pkgAcqBaseIndex | |
902 | { | |
903 | void * const d; | |
904 | ||
905 | protected: | |
906 | ||
907 | /** \brief The stages the method goes through | |
908 | * | |
909 | * The method first downloads the indexfile, then its decompressed (or | |
910 | * copied) and verified | |
911 | */ | |
912 | enum AllStages { | |
913 | STAGE_DOWNLOAD, | |
914 | STAGE_DECOMPRESS_AND_VERIFY, | |
915 | }; | |
916 | AllStages Stage; | |
917 | ||
918 | /** \brief Handle what needs to be done when the download is done */ | |
919 | void StageDownloadDone(std::string const &Message); | |
920 | ||
921 | /** \brief Handle what needs to be done when the decompression/copy is | |
922 | * done | |
923 | */ | |
924 | void StageDecompressDone(); | |
925 | ||
926 | /** \brief If \b set, this partially downloaded file will be | |
927 | * removed when the download completes. | |
928 | */ | |
929 | std::string EraseFileName; | |
930 | ||
931 | /** \brief The compression-related file extensions that are being | |
932 | * added to the downloaded file one by one if first fails (e.g., "gz bz2"). | |
933 | */ | |
934 | std::string CompressionExtensions; | |
935 | ||
936 | /** \brief The actual compression extension currently used */ | |
937 | std::string CurrentCompressionExtension; | |
938 | ||
939 | /** \brief Do the changes needed to fetch via AptByHash (if needed) */ | |
940 | void InitByHashIfNeeded(); | |
941 | ||
942 | /** \brief Get the full pathname of the final file for the current URI */ | |
943 | virtual std::string GetFinalFilename() const APT_OVERRIDE; | |
944 | ||
945 | virtual bool TransactionState(TransactionStates const state) APT_OVERRIDE; | |
946 | ||
947 | public: | |
948 | // Specialized action members | |
949 | virtual void Failed(std::string const &Message,pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE; | |
950 | virtual void Done(std::string const &Message, HashStringList const &Hashes, | |
951 | pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE; | |
952 | virtual std::string Custom600Headers() const APT_OVERRIDE; | |
953 | virtual std::string DescURI() const APT_OVERRIDE {return Desc.URI;}; | |
954 | virtual std::string GetMetaKey() const APT_OVERRIDE; | |
955 | ||
956 | pkgAcqIndex(pkgAcquire * const Owner, pkgAcqMetaClearSig * const TransactionManager, | |
957 | IndexTarget const &Target); | |
958 | virtual ~pkgAcqIndex(); | |
959 | ||
960 | private: | |
961 | APT_HIDDEN void Init(std::string const &URI, std::string const &URIDesc, | |
962 | std::string const &ShortDesc); | |
963 | }; | |
964 | /*}}}*/ | |
965 | /** \brief An item that is responsible for fetching a package file. {{{ | |
966 | * | |
967 | * If the package file already exists in the cache, nothing will be | |
968 | * done. | |
969 | */ | |
970 | class pkgAcqArchive : public pkgAcquire::Item | |
971 | { | |
972 | void * const d; | |
973 | ||
974 | bool LocalSource; | |
975 | HashStringList ExpectedHashes; | |
976 | ||
977 | protected: | |
978 | /** \brief The package version being fetched. */ | |
979 | pkgCache::VerIterator Version; | |
980 | ||
981 | /** \brief The list of sources from which to pick archives to | |
982 | * download this package from. | |
983 | */ | |
984 | pkgSourceList *Sources; | |
985 | ||
986 | /** \brief A package records object, used to look up the file | |
987 | * corresponding to each version of the package. | |
988 | */ | |
989 | pkgRecords *Recs; | |
990 | ||
991 | /** \brief A location in which the actual filename of the package | |
992 | * should be stored. | |
993 | */ | |
994 | std::string &StoreFilename; | |
995 | ||
996 | /** \brief The next file for this version to try to download. */ | |
997 | pkgCache::VerFileIterator Vf; | |
998 | ||
999 | /** \brief How many (more) times to try to find a new source from | |
1000 | * which to download this package version if it fails. | |
1001 | * | |
1002 | * Set from Acquire::Retries. | |
1003 | */ | |
1004 | unsigned int Retries; | |
1005 | ||
1006 | /** \brief \b true if this version file is being downloaded from a | |
1007 | * trusted source. | |
1008 | */ | |
1009 | bool Trusted; | |
1010 | ||
1011 | /** \brief Queue up the next available file for this version. */ | |
1012 | bool QueueNext(); | |
1013 | ||
1014 | /** \brief Get the full pathname of the final file for the current URI */ | |
1015 | virtual std::string GetFinalFilename() const APT_OVERRIDE; | |
1016 | ||
1017 | public: | |
1018 | ||
1019 | virtual void Failed(std::string const &Message,pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE; | |
1020 | virtual void Done(std::string const &Message, HashStringList const &Hashes, | |
1021 | pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE; | |
1022 | virtual std::string DescURI() const APT_OVERRIDE; | |
1023 | virtual std::string ShortDesc() const APT_OVERRIDE; | |
1024 | virtual void Finished() APT_OVERRIDE; | |
1025 | virtual bool IsTrusted() const APT_OVERRIDE; | |
1026 | virtual HashStringList GetExpectedHashes() const APT_OVERRIDE; | |
1027 | virtual bool HashesRequired() const APT_OVERRIDE; | |
1028 | ||
1029 | /** \brief Create a new pkgAcqArchive. | |
1030 | * | |
1031 | * \param Owner The pkgAcquire object with which this item is | |
1032 | * associated. | |
1033 | * | |
1034 | * \param Sources The sources from which to download version | |
1035 | * files. | |
1036 | * | |
1037 | * \param Recs A package records object, used to look up the file | |
1038 | * corresponding to each version of the package. | |
1039 | * | |
1040 | * \param Version The package version to download. | |
1041 | * | |
1042 | * \param[out] StoreFilename A location in which the actual filename of | |
1043 | * the package should be stored. It will be set to a guessed | |
1044 | * basename in the constructor, and filled in with a fully | |
1045 | * qualified filename once the download finishes. | |
1046 | */ | |
1047 | pkgAcqArchive(pkgAcquire * const Owner,pkgSourceList * const Sources, | |
1048 | pkgRecords * const Recs,pkgCache::VerIterator const &Version, | |
1049 | std::string &StoreFilename); | |
1050 | virtual ~pkgAcqArchive(); | |
1051 | }; | |
1052 | /*}}}*/ | |
1053 | /** \brief Retrieve the changelog for the given version {{{ | |
1054 | * | |
1055 | * Downloads the changelog to a temporary file it will also remove again | |
1056 | * while it is deconstructed or downloads it to a named location. | |
1057 | */ | |
1058 | class pkgAcqChangelog : public pkgAcquire::Item | |
1059 | { | |
1060 | class Private; | |
1061 | Private * const d; | |
1062 | std::string TemporaryDirectory; | |
1063 | std::string const SrcName; | |
1064 | std::string const SrcVersion; | |
1065 | ||
1066 | public: | |
1067 | // we will never have hashes for changelogs. | |
1068 | // If you need verified ones, download the deb and extract the changelog. | |
1069 | virtual HashStringList GetExpectedHashes() const APT_OVERRIDE { return HashStringList(); } | |
1070 | virtual bool HashesRequired() const APT_OVERRIDE { return false; } | |
1071 | ||
1072 | // Specialized action members | |
1073 | virtual void Failed(std::string const &Message,pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE; | |
1074 | virtual void Done(std::string const &Message, HashStringList const &CalcHashes, | |
1075 | pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE; | |
1076 | virtual std::string DescURI() const APT_OVERRIDE {return Desc.URI;}; | |
1077 | ||
1078 | /** returns the URI to the changelog of this version | |
1079 | * | |
1080 | * @param Ver is the version to get the changelog for | |
1081 | * @return the URI which will be used to acquire the changelog | |
1082 | */ | |
1083 | static std::string URI(pkgCache::VerIterator const &Ver); | |
1084 | ||
1085 | /** returns the URI to the changelog of this version | |
1086 | * | |
1087 | * \param Rls is the Release file the package comes from | |
1088 | * \param Component in which the package resides, can be empty | |
1089 | * \param SrcName is the source package name | |
1090 | * \param SrcVersion is the source package version | |
1091 | * @return the URI which will be used to acquire the changelog | |
1092 | */ | |
1093 | static std::string URI(pkgCache::RlsFileIterator const &Rls, | |
1094 | char const * const Component, char const * const SrcName, | |
1095 | char const * const SrcVersion); | |
1096 | ||
1097 | /** returns the URI to the changelog of this version | |
1098 | * | |
1099 | * \param Template URI where @CHANGEPATH@ has to be filled in | |
1100 | * \param Component in which the package resides, can be empty | |
1101 | * \param SrcName is the source package name | |
1102 | * \param SrcVersion is the source package version | |
1103 | * @return the URI which will be used to acquire the changelog | |
1104 | */ | |
1105 | static std::string URI(std::string const &Template, | |
1106 | char const * const Component, char const * const SrcName, | |
1107 | char const * const SrcVersion); | |
1108 | ||
1109 | /** returns the URI template for this release file | |
1110 | * | |
1111 | * \param Rls is a Release file | |
1112 | * @return the URI template to use for this release file | |
1113 | */ | |
1114 | static std::string URITemplate(pkgCache::RlsFileIterator const &Rls); | |
1115 | ||
1116 | /** \brief Create a new pkgAcqChangelog object. | |
1117 | * | |
1118 | * \param Owner The pkgAcquire object with which this object is | |
1119 | * associated. | |
1120 | * \param Ver is the version to get the changelog for | |
1121 | * \param DestDir The directory the file should be downloaded into. | |
1122 | * Will be an autocreated (and cleaned up) temporary directory if not set. | |
1123 | * \param DestFilename The filename the file should have in #DestDir | |
1124 | * Defaults to sourcepackagename.changelog if not set. | |
1125 | */ | |
1126 | pkgAcqChangelog(pkgAcquire * const Owner, pkgCache::VerIterator const &Ver, | |
1127 | std::string const &DestDir="", std::string const &DestFilename=""); | |
1128 | ||
1129 | /** \brief Create a new pkgAcqChangelog object. | |
1130 | * | |
1131 | * \param Owner The pkgAcquire object with which this object is | |
1132 | * associated. | |
1133 | * \param Rls is the Release file the package comes from | |
1134 | * \param Component in which the package resides, can be empty | |
1135 | * \param SrcName is the source package name | |
1136 | * \param SrcVersion is the source package version | |
1137 | * \param DestDir The directory the file should be downloaded into. | |
1138 | * Will be an autocreated (and cleaned up) temporary directory if not set. | |
1139 | * \param DestFilename The filename the file should have in #DestDir | |
1140 | * Defaults to sourcepackagename.changelog if not set. | |
1141 | */ | |
1142 | pkgAcqChangelog(pkgAcquire * const Owner, pkgCache::RlsFileIterator const &Rls, | |
1143 | char const * const Component, char const * const SrcName, char const * const SrcVersion, | |
1144 | std::string const &DestDir="", std::string const &DestFilename=""); | |
1145 | ||
1146 | /** \brief Create a new pkgAcqChangelog object. | |
1147 | * | |
1148 | * \param Owner The pkgAcquire object with which this object is | |
1149 | * associated. | |
1150 | * \param URI is to be used to get the changelog | |
1151 | * \param SrcName is the source package name | |
1152 | * \param SrcVersion is the source package version | |
1153 | * \param DestDir The directory the file should be downloaded into. | |
1154 | * Will be an autocreated (and cleaned up) temporary directory if not set. | |
1155 | * \param DestFilename The filename the file should have in #DestDir | |
1156 | * Defaults to sourcepackagename.changelog if not set. | |
1157 | */ | |
1158 | pkgAcqChangelog(pkgAcquire * const Owner, std::string const &URI, | |
1159 | char const * const SrcName, char const * const SrcVersion, | |
1160 | std::string const &DestDir="", std::string const &DestFilename=""); | |
1161 | ||
1162 | virtual ~pkgAcqChangelog(); | |
1163 | ||
1164 | private: | |
1165 | APT_HIDDEN void Init(std::string const &DestDir, std::string const &DestFilename); | |
1166 | }; | |
1167 | /*}}}*/ | |
1168 | /** \brief Retrieve an arbitrary file to the current directory. {{{ | |
1169 | * | |
1170 | * The file is retrieved even if it is accessed via a URL type that | |
1171 | * normally is a NOP, such as "file". If the download fails, the | |
1172 | * partial file is renamed to get a ".FAILED" extension. | |
1173 | */ | |
1174 | class pkgAcqFile : public pkgAcquire::Item | |
1175 | { | |
1176 | void * const d; | |
1177 | ||
1178 | /** \brief How many times to retry the download, set from | |
1179 | * Acquire::Retries. | |
1180 | */ | |
1181 | unsigned int Retries; | |
1182 | ||
1183 | /** \brief Should this file be considered a index file */ | |
1184 | bool IsIndexFile; | |
1185 | ||
1186 | HashStringList const ExpectedHashes; | |
1187 | public: | |
1188 | virtual HashStringList GetExpectedHashes() const APT_OVERRIDE; | |
1189 | virtual bool HashesRequired() const APT_OVERRIDE; | |
1190 | ||
1191 | // Specialized action members | |
1192 | virtual void Failed(std::string const &Message,pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE; | |
1193 | virtual void Done(std::string const &Message, HashStringList const &CalcHashes, | |
1194 | pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE; | |
1195 | virtual std::string DescURI() const APT_OVERRIDE {return Desc.URI;}; | |
1196 | virtual std::string Custom600Headers() const APT_OVERRIDE; | |
1197 | ||
1198 | /** \brief Create a new pkgAcqFile object. | |
1199 | * | |
1200 | * \param Owner The pkgAcquire object with which this object is | |
1201 | * associated. | |
1202 | * | |
1203 | * \param URI The URI to download. | |
1204 | * | |
1205 | * \param Hashes The hashsums of the file to download, if they are known; | |
1206 | * otherwise empty list. | |
1207 | * | |
1208 | * \param Size The size of the file to download, if it is known; | |
1209 | * otherwise 0. | |
1210 | * | |
1211 | * \param Desc A description of the file being downloaded. | |
1212 | * | |
1213 | * \param ShortDesc A brief description of the file being | |
1214 | * downloaded. | |
1215 | * | |
1216 | * \param DestDir The directory the file should be downloaded into. | |
1217 | * | |
1218 | * \param DestFilename The filename+path the file is downloaded to. | |
1219 | * | |
1220 | * \param IsIndexFile The file is considered a IndexFile and cache-control | |
1221 | * headers like "cache-control: max-age=0" are send | |
1222 | * | |
1223 | * If DestFilename is empty, download to DestDir/\<basename\> if | |
1224 | * DestDir is non-empty, $CWD/\<basename\> otherwise. If | |
1225 | * DestFilename is NOT empty, DestDir is ignored and DestFilename | |
1226 | * is the absolute name to which the file should be downloaded. | |
1227 | */ | |
1228 | ||
1229 | pkgAcqFile(pkgAcquire * const Owner, std::string const &URI, HashStringList const &Hashes, unsigned long long const Size, | |
1230 | std::string const &Desc, std::string const &ShortDesc, | |
1231 | std::string const &DestDir="", std::string const &DestFilename="", | |
1232 | bool const IsIndexFile=false); | |
1233 | virtual ~pkgAcqFile(); | |
1234 | }; | |
1235 | /*}}}*/ | |
1236 | /** @} */ | |
1237 | ||
1238 | #endif |