1 // -*- mode: cpp; mode: fold -*-
3 // $Id: acquire-item.h,v 1.26.2.3 2004/01/02 18:51:00 mdz Exp $
4 /* ######################################################################
6 Acquire Item - Item to acquire
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
10 register all the URI's they wish to fetch at the initial moment.
12 Three item classes are provided to provide functionality for
13 downloading of Index, Translation and Packages files.
15 A Archive class is provided for downloading .deb files. It does Hash
16 checking and source location as well as a retry algorithm.
18 ##################################################################### */
20 #ifndef PKGLIB_ACQUIRE_ITEM_H
21 #define PKGLIB_ACQUIRE_ITEM_H
23 #include <apt-pkg/acquire.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>
32 #ifndef APT_8_CLEANER_HEADERS
33 #include <apt-pkg/indexfile.h>
34 #include <apt-pkg/vendor.h>
35 #include <apt-pkg/sourcelist.h>
36 #include <apt-pkg/pkgrecords.h>
37 #include <apt-pkg/indexrecords.h>
40 /** \addtogroup acquire
43 * \file acquire-item.h
52 /** \brief Represents the process by which a pkgAcquire object should {{{
53 * retrieve a file or a collection of files.
55 * By convention, Item subclasses should insert themselves into the
56 * acquire queue when they are created by calling QueueURI(), and
57 * remove themselves by calling Dequeue() when either Done() or
58 * Failed() is invoked. Item objects are also responsible for
59 * notifying the download progress indicator (accessible via
60 * #Owner->Log) of their status.
64 class pkgAcquire::Item
: public WeakPointable
66 friend class pkgAcqMetaBase
;
72 /** \brief The acquire object with which this item is associated. */
75 /** \brief Insert this item into its owner's queue.
77 * The method is designed to check if the request would end
78 * in an IMSHit and if it determines that it would, it isn't
79 * queueing the Item and instead sets it to completion instantly.
81 * \param Item Metadata about this item (its URI and
83 * \return true if the item was inserted, false if IMSHit was detected
85 virtual bool QueueURI(ItemDesc
&Item
);
87 /** \brief Remove this item from its owner's queue. */
90 /** \brief Rename a file without modifying its timestamp.
92 * Many item methods call this as their final action.
94 * \param From The file to be renamed.
96 * \param To The new name of \a From. If \a To exists it will be
99 bool Rename(std::string From
,std::string To
);
101 /** \brief Get the full pathname of the final file for the current URI */
102 virtual std::string
GetFinalFilename() const;
106 /** \brief The current status of this item. */
109 /** \brief The item is waiting to be downloaded. */
112 /** \brief The item is currently being downloaded. */
115 /** \brief The item has been successfully downloaded. */
118 /** \brief An error was encountered while downloading this
123 /** \brief The item was downloaded but its authenticity could
128 /** \brief The item was could not be downloaded because of
129 * a transient network error (e.g. network down)
131 StatTransientNetworkError
,
134 /** \brief Contains a textual description of the error encountered
135 * if #ItemState is #StatError or #StatAuthError.
137 std::string ErrorText
;
139 /** \brief The size of the object to fetch. */
140 unsigned long long FileSize
;
142 /** \brief How much of the object was already fetched. */
143 unsigned long long PartialSize
;
145 /** \brief If not \b NULL, contains the name of a subprocess that
146 * is operating on this object (for instance, "gzip" or "gpgv").
148 APT_DEPRECATED
const char *Mode
;
150 /** \brief contains the name of the subprocess that is operating on this object
151 * (for instance, "gzip", "rred" or "gpgv"). This is obsoleting #Mode from above
152 * as it can manage the lifetime of included string properly. */
153 std::string ActiveSubprocess
;
155 /** \brief A client-supplied unique identifier.
157 * This field is initalized to 0; it is meant to be filled in by
158 * clients that wish to use it to uniquely identify items.
160 * \todo it's unused in apt itself
164 /** \brief If \b true, the entire object has been successfully fetched.
166 * Subclasses should set this to \b true when appropriate.
170 /** \brief If \b true, the URI of this object is "local".
172 * The only effect of this field is to exclude the object from the
173 * download progress indicator's overall statistics.
176 std::string UsedMirror
;
178 /** \brief The number of fetch queues into which this item has been
181 * There is one queue for each source from which an item could be
186 unsigned int QueueCounter
;
188 /** \brief TransactionManager */
189 pkgAcqMetaBase
*TransactionManager
;
191 /** \brief The number of additional fetch items that are expected
192 * once this item is done.
194 * Some items like pkgAcqMeta{Index,Sig} will queue additional
195 * items. This variable can be set by the methods if it knows
196 * in advance how many items to expect to get a more accurate
199 unsigned int ExpectedAdditionalItems
;
201 /** \brief The name of the file into which the retrieved object
204 std::string DestFile
;
206 /** \brief storge name until a transaction is finished */
207 std::string PartialFile
;
209 /** \brief Invoked by the acquire worker when the object couldn't
212 * This is a branch of the continuation of the fetch process.
214 * \param Message An RFC822-formatted message from the acquire
215 * method describing what went wrong. Use LookupTag() to parse
218 * \param Cnf The method via which the worker tried to fetch this object.
222 virtual void Failed(std::string Message
,pkgAcquire::MethodConfig
*Cnf
);
224 /** \brief Invoked by the acquire worker when the object was
225 * fetched successfully.
227 * Note that the object might \e not have been written to
228 * DestFile; check for the presence of an Alt-Filename entry in
229 * Message to find the file to which it was really written.
231 * Done is often used to switch from one stage of the processing
232 * to the next (e.g. fetching, unpacking, copying). It is one
233 * branch of the continuation of the fetch process.
235 * \param Message Data from the acquire method. Use LookupTag()
237 * \param Size The size of the object that was fetched.
238 * \param Hashes The HashSums of the object that was fetched.
239 * \param Cnf The method via which the object was fetched.
243 virtual void Done(std::string Message
, unsigned long long Size
, HashStringList
const &Hashes
,
244 pkgAcquire::MethodConfig
*Cnf
);
246 /** \brief Invoked when the worker starts to fetch this object.
248 * \param Message RFC822-formatted data from the worker process.
249 * Use LookupTag() to parse it.
251 * \param Size The size of the object being fetched.
255 virtual void Start(std::string Message
,unsigned long long Size
);
257 /** \brief Custom headers to be sent to the fetch process.
259 * \return a string containing RFC822-style headers that are to be
260 * inserted into the 600 URI Acquire message sent to the fetch
261 * subprocess. The headers are inserted after a newline-less
262 * line, so they should (if nonempty) have a leading newline and
263 * no trailing newline.
265 #if APT_PKG_ABI >= 413
266 virtual std::string
Custom600Headers() const {return std::string();};
268 virtual std::string
Custom600Headers() {return std::string();};
271 /** \brief A "descriptive" URI-like string.
273 * \return a URI that should be used to describe what is being fetched.
275 virtual std::string
DescURI() = 0;
276 /** \brief Short item description.
278 * \return a brief description of the object being fetched.
280 virtual std::string
ShortDesc() {return DescURI();}
282 /** \brief Invoked by the worker when the download is completely done. */
283 virtual void Finished() {};
287 * \return the HashSums of this object, if applicable; otherwise, an
290 HashStringList
HashSums() const {return ExpectedHashes
;};
291 std::string
HashSum() const {HashStringList
const hashes
= HashSums(); HashString
const * const hs
= hashes
.find(NULL
); return hs
!= NULL
? hs
->toStr() : ""; };
293 /** \return the acquire process with which this item is associated. */
294 pkgAcquire
*GetOwner() const {return Owner
;};
295 #if APT_PKG_ABI < 413
296 pkgAcquire
*GetOwner() {return Owner
;};
299 /** \return \b true if this object is being fetched from a trusted source. */
300 #if APT_PKG_ABI >= 413
301 virtual bool IsTrusted() const {return false;};
303 virtual bool IsTrusted() {return false;};
306 /** \brief Report mirror problem
308 * This allows reporting mirror failures back to a centralized
309 * server. The apt-report-mirror-failure script is called for this
311 * \param FailCode A short failure string that is send
313 void ReportMirrorFailure(std::string FailCode
);
315 /** \brief Set the name of the current active subprocess
317 * See also #ActiveSubprocess
319 void SetActiveSubprocess(const std::string
&subprocess
);
321 /** \brief Initialize an item.
323 * Adds the item to the list of items known to the acquire
324 * process, but does not place it into any fetch queues (you must
325 * manually invoke QueueURI() to do so).
327 * \param Owner The new owner of this item.
328 * \param ExpectedHashes of the file represented by this item
330 Item(pkgAcquire
*Owner
,
331 HashStringList
const &ExpectedHashes
=HashStringList(),
332 pkgAcqMetaBase
*TransactionManager
=NULL
);
334 /** \brief Remove this item from its owner's queue by invoking
335 * pkgAcquire::Remove.
341 enum RenameOnErrorState
{
350 /** \brief Rename failed file and set error
352 * \param state respresenting the error we encountered
354 bool RenameOnError(RenameOnErrorState
const state
);
356 /** \brief The HashSums of the item is supposed to have than done */
357 HashStringList ExpectedHashes
;
359 /** \brief The item that is currently being downloaded. */
360 pkgAcquire::ItemDesc Desc
;
363 /** \brief Information about an index patch (aka diff). */ /*{{{*/
364 struct APT_HIDDEN DiffInfo
{
365 /** The filename of the diff. */
368 /** The hashes of the diff */
369 HashStringList result_hashes
;
371 /** The hashes of the file after the diff is applied */
372 HashStringList patch_hashes
;
374 /** The size of the file after the diff is applied */
375 unsigned long long result_size
;
377 /** The size of the diff itself */
378 unsigned long long patch_size
;
381 class pkgAcqMetaBase
: public pkgAcquire::Item
/*{{{*/
386 std::vector
<Item
*> Transaction
;
388 /** \brief A package-system-specific parser for the meta-index file. */
389 indexRecords
*MetaIndexParser
;
391 /** \brief The index files which should be looked up in the meta-index
392 * and then downloaded.
394 const std::vector
<IndexTarget
*>* IndexTargets
;
396 /** \brief If \b true, the index's signature is currently being verified.
400 /** \brief The URI of the signature file. Unlike Desc.URI, this is
401 * never modified; it is used to determine the file that is being
406 /** \brief Starts downloading the individual index files.
408 * \param verify If \b true, only indices whose expected hashsum
409 * can be determined from the meta-index will be downloaded, and
410 * the hashsums of indices will be checked (reporting
411 * #StatAuthError if there is a mismatch). If verify is \b false,
412 * no hashsum checking will be performed.
414 void QueueIndexes(bool verify
);
416 /** \brief Called when a file is finished being retrieved.
418 * If the file was not downloaded to DestFile, a copy process is
419 * set up to copy it to DestFile; otherwise, Complete is set to \b
420 * true and the file is moved to its final location.
422 * \param Message The message block received from the fetch
425 bool CheckDownloadDone(const std::string
&Message
);
427 /** \brief Queue the downloaded Signature for verification */
428 void QueueForSignatureVerify(const std::string
&MetaIndexFile
,
429 const std::string
&MetaIndexFileSignature
);
431 #if APT_PKG_ABI >= 413
432 virtual std::string
Custom600Headers() const;
434 virtual std::string
Custom600Headers();
437 /** \brief Called when authentication succeeded.
439 * Sanity-checks the authenticated file, queues up the individual
440 * index files for download, and saves the signature in the lists
441 * directory next to the authenticated list file.
443 * \param Message The message block received from the fetch
446 bool CheckAuthDone(std::string Message
);
448 /** Check if the current item should fail at this point */
449 bool CheckStopAuthentication(const std::string
&Message
);
451 /** \brief Check that the release file is a release file for the
452 * correct distribution.
454 * \return \b true if no fatal errors were encountered.
456 bool VerifyVendor(std::string Message
);
458 /** \brief Get the full pathname of the final file for the current URI */
459 virtual std::string
GetFinalFilename() const;
462 // This refers more to the Transaction-Manager than the actual file
465 virtual std::string
DescURI() {return RealURI
; };
466 virtual bool QueueURI(pkgAcquire::ItemDesc
&Item
);
470 void AbortTransaction();
471 bool TransactionHasError() APT_PURE
;
472 void CommitTransaction();
474 /** \brief Stage (queue) a copy action when the transaction is committed
476 void TransactionStageCopy(Item
*I
,
477 const std::string
&From
,
478 const std::string
&To
);
479 /** \brief Stage (queue) a removal action when the transaction is committed
481 void TransactionStageRemoval(Item
*I
, const std::string
&FinalFile
);
483 pkgAcqMetaBase(pkgAcquire
*Owner
,
484 const std::vector
<IndexTarget
*>* IndexTargets
,
485 indexRecords
* MetaIndexParser
,
486 std::string
const &RealURI
,
487 HashStringList
const &ExpectedHashes
=HashStringList(),
488 pkgAcqMetaBase
*TransactionManager
=NULL
);
491 /** \brief An acquire item that downloads the detached signature {{{
492 * of a meta-index (Release) file, then queues up the release
495 * \todo Why protected members?
497 * \sa pkgAcqMetaIndex
499 class APT_HIDDEN pkgAcqMetaSig
: public pkgAcqMetaBase
505 /** \brief The file we need to verify */
506 std::string MetaIndexFile
;
508 /** \brief The file we use to verify the MetaIndexFile with */
509 std::string MetaIndexFileSignature
;
511 /** \brief Long URI description used in the acquire system */
514 /** \brief Short URI description used in the acquire system */
515 std::string ShortDesc
;
519 // Specialized action members
520 virtual void Failed(std::string Message
,pkgAcquire::MethodConfig
*Cnf
);
521 virtual void Done(std::string Message
,unsigned long long Size
,
522 HashStringList
const &Hashes
,
523 pkgAcquire::MethodConfig
*Cnf
);
525 /** \brief Create a new pkgAcqMetaSig. */
526 pkgAcqMetaSig(pkgAcquire
*Owner
,
527 pkgAcqMetaBase
*TransactionManager
,
528 std::string URI
,std::string URIDesc
, std::string ShortDesc
,
529 std::string MetaIndexFile
,
530 const std::vector
<IndexTarget
*>* IndexTargets
,
531 indexRecords
* MetaIndexParser
);
532 virtual ~pkgAcqMetaSig();
535 /** \brief An item that is responsible for downloading the meta-index {{{
536 * file (i.e., Release) itself and verifying its signature.
538 * Once the download and verification are complete, the downloads of
539 * the individual index files are queued up using pkgAcqDiffIndex.
540 * If the meta-index file had a valid signature, the expected hashsums
541 * of the index files will be the md5sums listed in the meta-index;
542 * otherwise, the expected hashsums will be "" (causing the
543 * authentication of the index files to be bypassed).
545 class APT_HIDDEN pkgAcqMetaIndex
: public pkgAcqMetaBase
551 std::string ShortDesc
;
553 /** \brief The URI of the meta-index file for the detached signature */
554 std::string MetaIndexSigURI
;
556 /** \brief A "URI-style" description of the meta-index file */
557 std::string MetaIndexSigURIDesc
;
559 /** \brief A brief description of the meta-index file */
560 std::string MetaIndexSigShortDesc
;
562 /** \brief delayed constructor */
563 void Init(std::string URIDesc
, std::string ShortDesc
);
567 // Specialized action members
568 virtual void Failed(std::string Message
,pkgAcquire::MethodConfig
*Cnf
);
569 virtual void Done(std::string Message
,unsigned long long Size
, HashStringList
const &Hashes
,
570 pkgAcquire::MethodConfig
*Cnf
);
571 virtual void Finished();
573 /** \brief Create a new pkgAcqMetaIndex. */
574 pkgAcqMetaIndex(pkgAcquire
*Owner
,
575 pkgAcqMetaBase
*TransactionManager
,
576 std::string URI
,std::string URIDesc
, std::string ShortDesc
,
577 std::string MetaIndexSigURI
, std::string MetaIndexSigURIDesc
, std::string MetaIndexSigShortDesc
,
578 const std::vector
<IndexTarget
*>* IndexTargets
,
579 indexRecords
* MetaIndexParser
);
582 /** \brief An item repsonsible for downloading clearsigned metaindexes {{{*/
583 class APT_HIDDEN pkgAcqMetaClearSig
: public pkgAcqMetaIndex
587 /** \brief The URI of the meta-index file for the detached signature */
588 std::string MetaIndexURI
;
590 /** \brief A "URI-style" description of the meta-index file */
591 std::string MetaIndexURIDesc
;
593 /** \brief A brief description of the meta-index file */
594 std::string MetaIndexShortDesc
;
596 /** \brief The URI of the detached meta-signature file if the clearsigned one failed. */
597 std::string MetaSigURI
;
599 /** \brief A "URI-style" description of the meta-signature file */
600 std::string MetaSigURIDesc
;
602 /** \brief A brief description of the meta-signature file */
603 std::string MetaSigShortDesc
;
606 virtual void Failed(std::string Message
,pkgAcquire::MethodConfig
*Cnf
);
607 #if APT_PKG_ABI >= 413
608 virtual std::string
Custom600Headers() const;
610 virtual std::string
Custom600Headers();
612 virtual void Done(std::string Message
,unsigned long long Size
,
613 HashStringList
const &Hashes
,
614 pkgAcquire::MethodConfig
*Cnf
);
616 /** \brief Create a new pkgAcqMetaClearSig. */
617 pkgAcqMetaClearSig(pkgAcquire
*Owner
,
618 std::string
const &URI
, std::string
const &URIDesc
, std::string
const &ShortDesc
,
619 std::string
const &MetaIndexURI
, std::string
const &MetaIndexURIDesc
, std::string
const &MetaIndexShortDesc
,
620 std::string
const &MetaSigURI
, std::string
const &MetaSigURIDesc
, std::string
const &MetaSigShortDesc
,
621 const std::vector
<IndexTarget
*>* IndexTargets
,
622 indexRecords
* MetaIndexParser
);
623 virtual ~pkgAcqMetaClearSig();
626 /** \brief Common base class for all classes that deal with fetching {{{
629 class pkgAcqBaseIndex
: public pkgAcquire::Item
634 /** \brief Pointer to the IndexTarget data
636 const struct IndexTarget
* Target
;
638 /** \brief Pointer to the indexRecords parser */
639 indexRecords
*MetaIndexParser
;
641 /** \brief The MetaIndex Key */
644 /** \brief The URI of the index file to recreate at our end (either
645 * by downloading it or by applying partial patches).
649 bool VerifyHashByMetaKey(HashStringList
const &Hashes
);
651 /** \brief Get the full pathname of the final file for the current URI */
652 virtual std::string
GetFinalFilename() const;
654 pkgAcqBaseIndex(pkgAcquire
*Owner
,
655 pkgAcqMetaBase
*TransactionManager
,
656 struct IndexTarget
const * const Target
,
657 HashStringList
const &ExpectedHashes
,
658 indexRecords
*MetaIndexParser
);
661 /** \brief An item that is responsible for fetching an index file of {{{
662 * package list diffs and starting the package list's download.
664 * This item downloads the Index file and parses it, then enqueues
665 * additional downloads of either the individual patches (using
666 * pkgAcqIndexDiffs) or the entire Packages file (using pkgAcqIndex).
668 * \sa pkgAcqIndexDiffs, pkgAcqIndex
670 class APT_HIDDEN pkgAcqDiffIndex
: public pkgAcqBaseIndex
675 /** \brief If \b true, debugging information will be written to std::clog. */
678 /** \brief The index file which will be patched to generate the new
681 std::string CurrentPackagesFile
;
683 /** \brief A description of the Packages file (stored in
684 * pkgAcquire::ItemDesc::Description).
686 std::string Description
;
688 /** \brief If the copy step of the packages file is done
690 bool PackagesFileReadyInPartial
;
692 /** \brief Get the full pathname of the final file for the current URI */
693 virtual std::string
GetFinalFilename() const;
695 virtual bool QueueURI(pkgAcquire::ItemDesc
&Item
);
697 // Specialized action members
698 virtual void Failed(std::string Message
,pkgAcquire::MethodConfig
*Cnf
);
699 virtual void Done(std::string Message
,unsigned long long Size
, HashStringList
const &Hashes
,
700 pkgAcquire::MethodConfig
*Cnf
);
701 virtual std::string
DescURI() {return RealURI
+ "Index";};
702 #if APT_PKG_ABI >= 413
703 virtual std::string
Custom600Headers() const;
705 virtual std::string
Custom600Headers();
708 /** \brief Parse the Index file for a set of Packages diffs.
710 * Parses the Index file and creates additional download items as
713 * \param IndexDiffFile The name of the Index file.
715 * \return \b true if the Index file was successfully parsed, \b
718 bool ParseDiffIndex(std::string IndexDiffFile
);
720 /** \brief Create a new pkgAcqDiffIndex.
722 * \param Owner The Acquire object that owns this item.
724 * \param URI The URI of the list file to download.
726 * \param URIDesc A long description of the list file to download.
728 * \param ShortDesc A short description of the list file to download.
730 * \param ExpectedHashes The list file's hashsums which are expected.
732 pkgAcqDiffIndex(pkgAcquire
*Owner
,
733 pkgAcqMetaBase
*TransactionManager
,
734 struct IndexTarget
const * const Target
,
735 HashStringList
const &ExpectedHashes
,
736 indexRecords
*MetaIndexParser
);
738 APT_HIDDEN
void QueueOnIMSHit() const;
741 /** \brief An item that is responsible for fetching client-merge patches {{{
742 * that need to be applied to a given package index file.
744 * Instead of downloading and applying each patch one by one like its
745 * sister #pkgAcqIndexDiffs this class will download all patches at once
746 * and call rred with all the patches downloaded once. Rred will then
747 * merge and apply them in one go, which should be a lot faster – but is
748 * incompatible with server-based merges of patches like reprepro can do.
750 * \sa pkgAcqDiffIndex, pkgAcqIndex
752 class APT_HIDDEN pkgAcqIndexMergeDiffs
: public pkgAcqBaseIndex
758 /** \brief If \b true, debugging output will be written to
763 /** \brief description of the file being downloaded. */
764 std::string Description
;
766 /** \brief information about the current patch */
767 struct DiffInfo
const patch
;
769 /** \brief list of all download items for the patches */
770 std::vector
<pkgAcqIndexMergeDiffs
*> const * const allPatches
;
772 /** The current status of this patch. */
775 /** \brief The diff is currently being fetched. */
778 /** \brief The diff is currently being applied. */
781 /** \brief the work with this diff is done */
784 /** \brief something bad happened and fallback was triggered */
789 /** \brief Called when the patch file failed to be downloaded.
791 * This method will fall back to downloading the whole index file
792 * outright; its arguments are ignored.
794 virtual void Failed(std::string Message
,pkgAcquire::MethodConfig
*Cnf
);
795 virtual void Done(std::string Message
,unsigned long long Size
, HashStringList
const &Hashes
,
796 pkgAcquire::MethodConfig
*Cnf
);
797 virtual std::string
DescURI() {return RealURI
+ "Index";};
799 /** \brief Create an index merge-diff item.
801 * \param Owner The pkgAcquire object that owns this item.
803 * \param URI The URI of the package index file being
806 * \param URIDesc A long description of this item.
808 * \param ShortDesc A brief description of this item.
810 * \param ExpectedHashes The expected md5sum of the completely
811 * reconstructed package index file; the index file will be tested
812 * against this value when it is entirely reconstructed.
814 * \param patch contains infos about the patch this item is supposed
815 * to download which were read from the index
817 * \param allPatches contains all related items so that each item can
818 * check if it was the last one to complete the download step
820 pkgAcqIndexMergeDiffs(pkgAcquire
*Owner
,
821 pkgAcqMetaBase
*TransactionManager
,
822 struct IndexTarget
const * const Target
,
823 HashStringList
const &ExpectedHash
,
824 indexRecords
*MetaIndexParser
,
825 DiffInfo
const &patch
,
826 std::vector
<pkgAcqIndexMergeDiffs
*> const * const allPatches
);
829 /** \brief An item that is responsible for fetching server-merge patches {{{
830 * that need to be applied to a given package index file.
832 * After downloading and applying a single patch, this item will
833 * enqueue a new pkgAcqIndexDiffs to download and apply the remaining
834 * patches. If no patch can be found that applies to an intermediate
835 * file or if one of the patches cannot be downloaded, falls back to
836 * downloading the entire package index file using pkgAcqIndex.
838 * \sa pkgAcqDiffIndex, pkgAcqIndex
840 class APT_HIDDEN pkgAcqIndexDiffs
: public pkgAcqBaseIndex
846 /** \brief Queue up the next diff download.
848 * Search for the next available diff that applies to the file
849 * that currently exists on disk, and enqueue it by calling
852 * \return \b true if an applicable diff was found, \b false
855 APT_HIDDEN
bool QueueNextDiff();
857 /** \brief Handle tasks that must be performed after the item
858 * finishes downloading.
860 * Dequeues the item and checks the resulting file's hashsums
861 * against ExpectedHashes after the last patch was applied.
862 * There is no need to check the md5/sha1 after a "normal"
863 * patch because QueueNextDiff() will check the sha1 later.
865 * \param allDone If \b true, the file was entirely reconstructed,
866 * and its md5sum is verified.
868 APT_HIDDEN
void Finish(bool allDone
=false);
872 /** \brief If \b true, debugging output will be written to
877 /** A description of the file being downloaded. */
878 std::string Description
;
880 /** The patches that remain to be downloaded, including the patch
881 * being downloaded right now. This list should be ordered so
882 * that each diff appears before any diff that depends on it.
884 * \todo These are indexed by sha1sum; why not use some sort of
885 * dictionary instead of relying on ordering and stripping them
888 std::vector
<DiffInfo
> available_patches
;
890 /** The current status of this patch. */
893 /** \brief The diff is in an unknown state. */
896 /** \brief The diff is currently being fetched. */
899 /** \brief The diff is currently being uncompressed. */
900 StateUnzipDiff
, // FIXME: No longer used
902 /** \brief The diff is currently being applied. */
908 /** \brief Called when the patch file failed to be downloaded.
910 * This method will fall back to downloading the whole index file
911 * outright; its arguments are ignored.
913 virtual void Failed(std::string Message
,pkgAcquire::MethodConfig
*Cnf
);
915 virtual void Done(std::string Message
,unsigned long long Size
, HashStringList
const &Hashes
,
916 pkgAcquire::MethodConfig
*Cnf
);
917 virtual std::string
DescURI() {return RealURI
+ "IndexDiffs";};
919 /** \brief Create an index diff item.
921 * After filling in its basic fields, this invokes Finish(true) if
922 * \a diffs is empty, or QueueNextDiff() otherwise.
924 * \param Owner The pkgAcquire object that owns this item.
926 * \param URI The URI of the package index file being
929 * \param URIDesc A long description of this item.
931 * \param ShortDesc A brief description of this item.
933 * \param ExpectedHashes The expected hashsums of the completely
934 * reconstructed package index file; the index file will be tested
935 * against this value when it is entirely reconstructed.
937 * \param diffs The remaining diffs from the index of diffs. They
938 * should be ordered so that each diff appears before any diff
939 * that depends on it.
941 pkgAcqIndexDiffs(pkgAcquire
*Owner
,
942 pkgAcqMetaBase
*TransactionManager
,
943 struct IndexTarget
const * const Target
,
944 HashStringList
const &ExpectedHash
,
945 indexRecords
*MetaIndexParser
,
946 std::vector
<DiffInfo
> diffs
=std::vector
<DiffInfo
>());
949 /** \brief An acquire item that is responsible for fetching an index {{{
950 * file (e.g., Packages or Sources).
952 * \sa pkgAcqDiffIndex, pkgAcqIndexDiffs, pkgAcqIndexTrans
954 * \todo Why does pkgAcqIndex have protected members?
956 class APT_HIDDEN pkgAcqIndex
: public pkgAcqBaseIndex
962 /** \brief The stages the method goes through
964 * The method first downloads the indexfile, then its decompressed (or
965 * copied) and verified
969 STAGE_DECOMPRESS_AND_VERIFY
,
973 /** \brief Handle what needs to be done when the download is done */
974 void StageDownloadDone(std::string Message
,
975 HashStringList
const &Hashes
,
976 pkgAcquire::MethodConfig
*Cfg
);
978 /** \brief Handle what needs to be done when the decompression/copy is
981 void StageDecompressDone(std::string Message
,
982 HashStringList
const &Hashes
,
983 pkgAcquire::MethodConfig
*Cfg
);
985 /** \brief If \b set, this partially downloaded file will be
986 * removed when the download completes.
988 std::string EraseFileName
;
990 /** \brief The compression-related file extensions that are being
991 * added to the downloaded file one by one if first fails (e.g., "gz bz2").
993 std::string CompressionExtensions
;
995 /** \brief The actual compression extension currently used */
996 std::string CurrentCompressionExtension
;
998 /** \brief Do the changes needed to fetch via AptByHash (if needed) */
999 void InitByHashIfNeeded(const std::string MetaKey
);
1001 /** \brief Auto select the right compression to use */
1002 void AutoSelectCompression();
1004 /** \brief Schedule file for verification after a IMS hit */
1005 void ReverifyAfterIMS();
1007 /** \brief Validate the downloaded index file */
1008 bool ValidateFile(const std::string
&FileName
);
1010 /** \brief Get the full pathname of the final file for the current URI */
1011 virtual std::string
GetFinalFilename() const;
1014 // Specialized action members
1015 virtual void Failed(std::string Message
,pkgAcquire::MethodConfig
*Cnf
);
1016 virtual void Done(std::string Message
,unsigned long long Size
,
1017 HashStringList
const &Hashes
,
1018 pkgAcquire::MethodConfig
*Cnf
);
1019 #if APT_PKG_ABI >= 413
1020 virtual std::string
Custom600Headers() const;
1022 virtual std::string
Custom600Headers();
1024 virtual std::string
DescURI() {return Desc
.URI
;};
1026 /** \brief Create a pkgAcqIndex.
1028 * \param Owner The pkgAcquire object with which this item is
1031 * \param URI The URI of the index file that is to be downloaded.
1033 * \param URIDesc A "URI-style" description of this index file.
1035 * \param ShortDesc A brief description of this index file.
1037 * \param ExpectedHashes The expected hashsum of this index file.
1039 * \param compressExt The compression-related extension with which
1040 * this index file should be downloaded, or "" to autodetect
1041 * Compression types can be set with config Acquire::CompressionTypes,
1042 * default is ".lzma" or ".bz2" (if the needed binaries are present)
1043 * fallback is ".gz" or none.
1045 pkgAcqIndex(pkgAcquire
*Owner
,std::string URI
,std::string URIDesc
,
1046 std::string ShortDesc
, HashStringList
const &ExpectedHashes
);
1047 pkgAcqIndex(pkgAcquire
*Owner
, pkgAcqMetaBase
*TransactionManager
,
1048 IndexTarget
const * const Target
,
1049 HashStringList
const &ExpectedHash
,
1050 indexRecords
*MetaIndexParser
);
1052 void Init(std::string
const &URI
, std::string
const &URIDesc
,
1053 std::string
const &ShortDesc
);
1056 /** \brief Information about an index file. */ /*{{{*/
1057 class APT_HIDDEN IndexTarget
1062 /** \brief A URI from which the index file can be downloaded. */
1065 /** \brief A description of the index file. */
1066 std::string Description
;
1068 /** \brief A shorter description of the index file. */
1069 std::string ShortDesc
;
1071 /** \brief The key by which this index file should be
1072 * looked up within the meta signature file.
1074 std::string MetaKey
;
1076 virtual bool IsOptional() const {
1081 /** \brief Information about an optional index file. */ /*{{{*/
1082 class APT_HIDDEN OptionalIndexTarget
: public IndexTarget
1086 virtual bool IsOptional() const {
1091 /** \brief An item that is responsible for fetching a package file. {{{
1093 * If the package file already exists in the cache, nothing will be
1096 class pkgAcqArchive
: public pkgAcquire::Item
1101 /** \brief The package version being fetched. */
1102 pkgCache::VerIterator Version
;
1104 /** \brief The list of sources from which to pick archives to
1105 * download this package from.
1107 pkgSourceList
*Sources
;
1109 /** \brief A package records object, used to look up the file
1110 * corresponding to each version of the package.
1114 /** \brief A location in which the actual filename of the package
1117 std::string
&StoreFilename
;
1119 /** \brief The next file for this version to try to download. */
1120 pkgCache::VerFileIterator Vf
;
1122 /** \brief How many (more) times to try to find a new source from
1123 * which to download this package version if it fails.
1125 * Set from Acquire::Retries.
1127 unsigned int Retries
;
1129 /** \brief \b true if this version file is being downloaded from a
1134 /** \brief Queue up the next available file for this version. */
1137 /** \brief Get the full pathname of the final file for the current URI */
1138 virtual std::string
GetFinalFilename() const;
1142 virtual void Failed(std::string Message
,pkgAcquire::MethodConfig
*Cnf
);
1143 virtual void Done(std::string Message
,unsigned long long Size
, HashStringList
const &Hashes
,
1144 pkgAcquire::MethodConfig
*Cnf
);
1145 virtual std::string
DescURI() {return Desc
.URI
;};
1146 virtual std::string
ShortDesc() {return Desc
.ShortDesc
;};
1147 virtual void Finished();
1148 #if APT_PKG_ABI >= 413
1149 virtual bool IsTrusted() const;
1151 virtual bool IsTrusted();
1154 /** \brief Create a new pkgAcqArchive.
1156 * \param Owner The pkgAcquire object with which this item is
1159 * \param Sources The sources from which to download version
1162 * \param Recs A package records object, used to look up the file
1163 * corresponding to each version of the package.
1165 * \param Version The package version to download.
1167 * \param[out] StoreFilename A location in which the actual filename of
1168 * the package should be stored. It will be set to a guessed
1169 * basename in the constructor, and filled in with a fully
1170 * qualified filename once the download finishes.
1172 pkgAcqArchive(pkgAcquire
*Owner
,pkgSourceList
*Sources
,
1173 pkgRecords
*Recs
,pkgCache::VerIterator
const &Version
,
1174 std::string
&StoreFilename
);
1177 /** \brief Retrieve an arbitrary file to the current directory. {{{
1179 * The file is retrieved even if it is accessed via a URL type that
1180 * normally is a NOP, such as "file". If the download fails, the
1181 * partial file is renamed to get a ".FAILED" extension.
1183 class pkgAcqFile
: public pkgAcquire::Item
1187 /** \brief How many times to retry the download, set from
1190 unsigned int Retries
;
1192 /** \brief Should this file be considered a index file */
1197 // Specialized action members
1198 virtual void Failed(std::string Message
,pkgAcquire::MethodConfig
*Cnf
);
1199 virtual void Done(std::string Message
,unsigned long long Size
, HashStringList
const &CalcHashes
,
1200 pkgAcquire::MethodConfig
*Cnf
);
1201 virtual std::string
DescURI() {return Desc
.URI
;};
1202 #if APT_PKG_ABI >= 413
1203 virtual std::string
Custom600Headers() const;
1205 virtual std::string
Custom600Headers();
1208 /** \brief Create a new pkgAcqFile object.
1210 * \param Owner The pkgAcquire object with which this object is
1213 * \param URI The URI to download.
1215 * \param Hashes The hashsums of the file to download, if they are known;
1216 * otherwise empty list.
1218 * \param Size The size of the file to download, if it is known;
1221 * \param Desc A description of the file being downloaded.
1223 * \param ShortDesc A brief description of the file being
1226 * \param DestDir The directory the file should be downloaded into.
1228 * \param DestFilename The filename+path the file is downloaded to.
1230 * \param IsIndexFile The file is considered a IndexFile and cache-control
1231 * headers like "cache-control: max-age=0" are send
1233 * If DestFilename is empty, download to DestDir/\<basename\> if
1234 * DestDir is non-empty, $CWD/\<basename\> otherwise. If
1235 * DestFilename is NOT empty, DestDir is ignored and DestFilename
1236 * is the absolute name to which the file should be downloaded.
1239 pkgAcqFile(pkgAcquire
*Owner
, std::string URI
, HashStringList
const &Hashes
, unsigned long long Size
,
1240 std::string Desc
, std::string ShortDesc
,
1241 const std::string
&DestDir
="", const std::string
&DestFilename
="",
1242 bool IsIndexFile
=false);