]> git.saurik.com Git - apt.git/blame - apt-pkg/acquire-item.h
edsp: support generic and solver-specific configs
[apt.git] / apt-pkg / acquire-item.h
CommitLineData
0118833a
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
0118833a
AL
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
448c38bd
DK
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
770c32ec 11 Three item classes are provided to provide functionality for
a52f938b 12 downloading of Index, Translation and Packages files.
448c38bd 13
495e5cb2 14 A Archive class is provided for downloading .deb files. It does Hash
17caf1b1 15 checking and source location as well as a retry algorithm.
448c38bd 16
0118833a
AL
17 ##################################################################### */
18 /*}}}*/
19#ifndef PKGLIB_ACQUIRE_ITEM_H
20#define PKGLIB_ACQUIRE_ITEM_H
21
22#include <apt-pkg/acquire.h>
e3c1cfc7 23#include <apt-pkg/indexfile.h>
495e5cb2 24#include <apt-pkg/hashes.h>
229fb1a3 25#include <apt-pkg/weakptr.h>
472ff00e 26#include <apt-pkg/pkgcache.h>
453b82a3
DK
27#include <apt-pkg/cacheiterators.h>
28
29#include <string>
30#include <vector>
d3a869e3 31#include <map>
0118833a 32
b9dadc24 33#ifndef APT_8_CLEANER_HEADERS
b9dadc24
DK
34#include <apt-pkg/sourcelist.h>
35#include <apt-pkg/pkgrecords.h>
b9dadc24
DK
36#endif
37
3174e150
MV
38/** \addtogroup acquire
39 * @{
40 *
41 * \file acquire-item.h
42 */
43
472ff00e
DK
44class pkgRecords;
45class pkgSourceList;
3d8232bf
DK
46class pkgAcqMetaClearSig;
47class pkgAcqIndexMergeDiffs;
5ad0096a 48class metaIndex;
472ff00e 49
448c38bd
DK
50class pkgAcquire::Item : public WeakPointable /*{{{*/
51/** \brief Represents the process by which a pkgAcquire object should
3174e150
MV
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 */
448c38bd 63{
0118833a
AL
64 public:
65
3174e150
MV
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 */
6ca714d5
MV
86 StatAuthError,
87
448c38bd 88 /** \brief The item was could not be downloaded because of
6ca714d5
MV
89 * a transient network error (e.g. network down)
90 */
56472095 91 StatTransientNetworkError,
3174e150
MV
92 } Status;
93
94 /** \brief Contains a textual description of the error encountered
255c9e4b 95 * if #ItemState is #StatError or #StatAuthError.
3174e150 96 */
472ff00e 97 std::string ErrorText;
3174e150
MV
98
99 /** \brief The size of the object to fetch. */
e2c66de5 100 unsigned long long FileSize;
3174e150
MV
101
102 /** \brief How much of the object was already fetched. */
e2c66de5 103 unsigned long long PartialSize;
3174e150
MV
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 */
5dd00edb 108 APT_DEPRECATED_MSG("Use the std::string member ActiveSubprocess instead") const char *Mode;
ffbe056d
DK
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;
3174e150
MV
114
115 /** \brief A client-supplied unique identifier.
448c38bd 116 *
3174e150
MV
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 *
448c38bd 120 * APT progress reporting will store an ID there as shown in "Get:42 …"
3174e150 121 */
b98f2859 122 unsigned long ID;
3174e150
MV
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 */
8267fe24 128 bool Complete;
3174e150
MV
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 */
a6568219 135 bool Local;
448c38bd 136
472ff00e 137 std::string UsedMirror;
30e1eab5 138
3174e150
MV
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 */
0118833a 147 unsigned int QueueCounter;
d0cfa8ad
MV
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;
448c38bd 158
3174e150
MV
159 /** \brief The name of the file into which the retrieved object
160 * will be written.
161 */
472ff00e 162 std::string DestFile;
7d8afa39 163
3174e150
MV
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 */
448c38bd 177 virtual void Failed(std::string const &Message,pkgAcquire::MethodConfig const * const Cnf);
3174e150 178
dd676dc7
DK
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
3174e150
MV
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.
b3501edb 214 * \param Hashes The HashSums of the object that was fetched.
3174e150
MV
215 * \param Cnf The method via which the object was fetched.
216 *
217 * \sa pkgAcqMethod
218 */
448c38bd
DK
219 virtual void Done(std::string const &Message, HashStringList const &Hashes,
220 pkgAcquire::MethodConfig const * const Cnf);
3174e150
MV
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 *
448c38bd 227 * \param Hashes The expected hashes of the object being fetched.
3174e150
MV
228 *
229 * \sa pkgAcqMethod
230 */
448c38bd 231 virtual void Start(std::string const &Message, unsigned long long const Size);
3174e150
MV
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 */
448c38bd 241 virtual std::string Custom600Headers() const;
3174e150
MV
242
243 /** \brief A "descriptive" URI-like string.
244 *
245 * \return a URI that should be used to describe what is being fetched.
246 */
448c38bd 247 virtual std::string DescURI() const = 0;
3174e150
MV
248 /** \brief Short item description.
249 *
250 * \return a brief description of the object being fetched.
251 */
448c38bd 252 virtual std::string ShortDesc() const;
3174e150
MV
253
254 /** \brief Invoked by the worker when the download is completely done. */
448c38bd
DK
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
3174e150 263 *
448c38bd
DK
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.
3174e150 267 */
448c38bd 268 virtual bool HashesRequired() const { return true; }
3174e150
MV
269
270 /** \return the acquire process with which this item is associated. */
448c38bd 271 pkgAcquire *GetOwner() const;
08ea7806 272 pkgAcquire::ItemDesc &GetItemDesc();
3174e150
MV
273
274 /** \return \b true if this object is being fetched from a trusted source. */
448c38bd
DK
275 virtual bool IsTrusted() const;
276
702c84fb 277 /** \brief Report mirror problem
448c38bd 278 *
702c84fb
MV
279 * This allows reporting mirror failures back to a centralized
280 * server. The apt-report-mirror-failure script is called for this
448c38bd 281 *
702c84fb
MV
282 * \param FailCode A short failure string that is send
283 */
3383ef4d 284 APT_DEPRECATED_MSG("Item::Failed does this for you") void ReportMirrorFailure(std::string const &FailCode);
36280399 285
eeac6897
MV
286 /** \brief Set the name of the current active subprocess
287 *
288 * See also #ActiveSubprocess
289 */
448c38bd 290 void SetActiveSubprocess(std::string const &subprocess);
eeac6897 291
3174e150
MV
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 *
3174e150
MV
298 * \param Owner The new owner of this item.
299 */
e8afd168 300 explicit Item(pkgAcquire * const Owner);
3174e150
MV
301
302 /** \brief Remove this item from its owner's queue by invoking
303 * pkgAcquire::Remove.
304 */
0118833a 305 virtual ~Item();
3c8030a4
DK
306
307 protected:
448c38bd
DK
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;
3c8030a4
DK
313
314 enum RenameOnErrorState {
315 HashSumMismatch,
316 SizeMismatch,
631a7dc7
MV
317 InvalidFormat,
318 SignatureError,
319 NotClearsigned,
146f7715
DK
320 MaximumSizeExceeded,
321 PDiffError,
3c8030a4
DK
322 };
323
324 /** \brief Rename failed file and set error
325 *
326 * \param state respresenting the error we encountered
3c8030a4
DK
327 */
328 bool RenameOnError(RenameOnErrorState const state);
fa3b260f 329
448c38bd
DK
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:
6c55f07a 360 void * const d;
448c38bd
DK
361
362 friend class pkgAcqMetaBase;
3d8232bf 363 friend class pkgAcqMetaClearSig;
448c38bd
DK
364};
365 /*}}}*/
366class APT_HIDDEN pkgAcqTransactionItem: public pkgAcquire::Item /*{{{*/
367/** \brief baseclass for the indexes files to manage them all together */
368{
6c55f07a 369 void * const d;
448c38bd 370 protected:
dcbbb14d 371 IndexTarget const Target;
e8afd168 372 HashStringList GetExpectedHashesFor(std::string const &MetaKey) const;
448c38bd 373
3b302846 374 bool QueueURI(pkgAcquire::ItemDesc &Item) APT_OVERRIDE;
448c38bd
DK
375
376 public:
377 /** \brief storge name until a transaction is finished */
378 std::string PartialFile;
379
380 /** \brief TransactionManager */
3d8232bf 381 pkgAcqMetaClearSig * const TransactionManager;
448c38bd 382
146f7715 383 enum TransactionStates {
57f16d51 384 TransactionStarted,
146f7715
DK
385 TransactionCommit,
386 TransactionAbort,
387 };
388 virtual bool TransactionState(TransactionStates const state);
389
3b302846
DK
390 virtual std::string DescURI() const APT_OVERRIDE { return Target.URI; }
391 virtual HashStringList GetExpectedHashes() const APT_OVERRIDE;
448c38bd 392 virtual std::string GetMetaKey() const;
3b302846 393 virtual bool HashesRequired() const APT_OVERRIDE;
fa3b260f 394
3174e150 395
b7ec7a80 396 pkgAcqTransactionItem(pkgAcquire * const Owner, pkgAcqMetaClearSig * const TransactionManager, IndexTarget const &Target) APT_NONNULL(2, 3);
448c38bd 397 virtual ~pkgAcqTransactionItem();
f6d4ab9a 398
448c38bd 399 friend class pkgAcqMetaBase;
3d8232bf 400 friend class pkgAcqMetaClearSig;
002d9943 401};
92fcbfc1 402 /*}}}*/
448c38bd
DK
403class APT_HIDDEN pkgAcqMetaBase : public pkgAcqTransactionItem /*{{{*/
404/** \brief the manager of a transaction */
e6e89390 405{
6c55f07a 406 void * const d;
e6e89390 407 protected:
448c38bd 408 std::vector<pkgAcqTransactionItem*> Transaction;
715c65de 409
fa3a96a1
MV
410 /** \brief If \b true, the index's signature is currently being verified.
411 */
412 bool AuthPass;
413
f3097647
MV
414 /** \brief Called when a file is finished being retrieved.
415 *
416 * If the file was not downloaded to DestFile, a copy process is
417 * set up to copy it to DestFile; otherwise, Complete is set to \b
418 * true and the file is moved to its final location.
419 *
420 * \param Message The message block received from the fetch
421 * subprocess.
422 */
448c38bd 423 bool CheckDownloadDone(pkgAcqTransactionItem * const I, const std::string &Message, HashStringList const &Hashes) const;
f3097647
MV
424
425 /** \brief Queue the downloaded Signature for verification */
448c38bd 426 void QueueForSignatureVerify(pkgAcqTransactionItem * const I, std::string const &File, std::string const &Signature);
f3097647 427
3b302846 428 virtual std::string Custom600Headers() const APT_OVERRIDE;
27e6c17a 429
f3097647
MV
430 /** \brief Called when authentication succeeded.
431 *
432 * Sanity-checks the authenticated file, queues up the individual
433 * index files for download, and saves the signature in the lists
434 * directory next to the authenticated list file.
435 *
436 * \param Message The message block received from the fetch
437 * subprocess.
438 */
448c38bd 439 bool CheckAuthDone(std::string const &Message);
f3097647 440
2d0a7bb4 441 /** Check if the current item should fail at this point */
6bf93605 442 bool CheckStopAuthentication(pkgAcquire::Item * const I, const std::string &Message);
2d0a7bb4 443
f3097647
MV
444 /** \brief Check that the release file is a release file for the
445 * correct distribution.
446 *
447 * \return \b true if no fatal errors were encountered.
448 */
448c38bd 449 bool VerifyVendor(std::string const &Message);
295d848b 450
3b302846 451 virtual bool TransactionState(TransactionStates const state) APT_OVERRIDE;
295d848b 452
715c65de 453 public:
ba6b79bd
DK
454 // This refers more to the Transaction-Manager than the actual file
455 bool IMSHit;
57f16d51 456 TransactionStates State;
9b8034a9 457 std::string BaseURI;
ba6b79bd 458
3b302846
DK
459 virtual bool QueueURI(pkgAcquire::ItemDesc &Item) APT_OVERRIDE;
460 virtual HashStringList GetExpectedHashes() const APT_OVERRIDE;
461 virtual bool HashesRequired() const APT_OVERRIDE;
295d848b 462
715c65de 463 // transaction code
448c38bd 464 void Add(pkgAcqTransactionItem * const I);
715c65de 465 void AbortTransaction();
448c38bd 466 bool TransactionHasError() const;
715c65de
MV
467 void CommitTransaction();
468
dce45dbe 469 /** \brief Stage (queue) a copy action when the transaction is committed
fa3a96a1 470 */
448c38bd
DK
471 void TransactionStageCopy(pkgAcqTransactionItem * const I,
472 const std::string &From,
fa3a96a1 473 const std::string &To);
dce45dbe 474 /** \brief Stage (queue) a removal action when the transaction is committed
fa3a96a1 475 */
448c38bd 476 void TransactionStageRemoval(pkgAcqTransactionItem * const I, const std::string &FinalFile);
fa3a96a1 477
6bf93605 478 /** \brief Get the full pathname of the final file for the current URI */
3b302846 479 virtual std::string GetFinalFilename() const APT_OVERRIDE;
6bf93605 480
3d8232bf 481 pkgAcqMetaBase(pkgAcquire * const Owner, pkgAcqMetaClearSig * const TransactionManager,
b7ec7a80 482 IndexTarget const &DataTarget) APT_NONNULL(2, 3);
c8a4ce6c 483 virtual ~pkgAcqMetaBase();
e6e89390 484};
dce45dbe 485 /*}}}*/
56472095
MV
486/** \brief An item that is responsible for downloading the meta-index {{{
487 * file (i.e., Release) itself and verifying its signature.
488 *
489 * Once the download and verification are complete, the downloads of
490 * the individual index files are queued up using pkgAcqDiffIndex.
491 * If the meta-index file had a valid signature, the expected hashsums
492 * of the index files will be the md5sums listed in the meta-index;
493 * otherwise, the expected hashsums will be "" (causing the
494 * authentication of the index files to be bypassed).
495 */
dce45dbe 496class APT_HIDDEN pkgAcqMetaIndex : public pkgAcqMetaBase
56472095 497{
6c55f07a 498 void * const d;
56472095 499 protected:
448c38bd 500 IndexTarget const DetachedSigTarget;
e05672e8
MV
501
502 /** \brief delayed constructor */
448c38bd
DK
503 void Init(std::string const &URIDesc, std::string const &ShortDesc);
504
56472095 505 public:
3b302846 506 virtual std::string DescURI() const APT_OVERRIDE;
631a7dc7 507
56472095 508 // Specialized action members
3b302846 509 virtual void Failed(std::string const &Message,pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE;
448c38bd 510 virtual void Done(std::string const &Message, HashStringList const &Hashes,
3b302846 511 pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE;
56472095
MV
512
513 /** \brief Create a new pkgAcqMetaIndex. */
3d8232bf 514 pkgAcqMetaIndex(pkgAcquire * const Owner, pkgAcqMetaClearSig * const TransactionManager,
a8f565d3 515 IndexTarget const &DataTarget, IndexTarget const &DetachedSigTarget) APT_NONNULL(2, 3);
c8a4ce6c 516 virtual ~pkgAcqMetaIndex();
6bf93605
DK
517
518 friend class pkgAcqMetaSig;
519};
520 /*}}}*/
521/** \brief An acquire item that downloads the detached signature {{{
522 * of a meta-index (Release) file, then queues up the release
523 * file itself.
524 *
525 * \todo Why protected members?
526 *
527 * \sa pkgAcqMetaIndex
528 */
448c38bd 529class APT_HIDDEN pkgAcqMetaSig : public pkgAcqTransactionItem
6bf93605 530{
6c55f07a 531 void * const d;
6bf93605
DK
532
533 pkgAcqMetaIndex * const MetaIndex;
534
535 /** \brief The file we use to verify the MetaIndexFile with (not always set!) */
536 std::string MetaIndexFileSignature;
537
538 protected:
539
6bf93605 540 /** \brief Get the full pathname of the final file for the current URI */
3b302846 541 virtual std::string GetFinalFilename() const APT_OVERRIDE;
6bf93605
DK
542
543 public:
3b302846 544 virtual bool HashesRequired() const APT_OVERRIDE { return false; }
6bf93605
DK
545
546 // Specialized action members
3b302846 547 virtual void Failed(std::string const &Message,pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE;
448c38bd 548 virtual void Done(std::string const &Message, HashStringList const &Hashes,
3b302846
DK
549 pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE;
550 virtual std::string Custom600Headers() const APT_OVERRIDE;
6bf93605
DK
551
552 /** \brief Create a new pkgAcqMetaSig. */
3d8232bf 553 pkgAcqMetaSig(pkgAcquire * const Owner, pkgAcqMetaClearSig * const TransactionManager,
b7ec7a80 554 IndexTarget const &Target, pkgAcqMetaIndex * const MetaIndex) APT_NONNULL(2, 3, 5);
6bf93605 555 virtual ~pkgAcqMetaSig();
56472095
MV
556};
557 /*}}}*/
558/** \brief An item repsonsible for downloading clearsigned metaindexes {{{*/
dce45dbe 559class APT_HIDDEN pkgAcqMetaClearSig : public pkgAcqMetaIndex
56472095 560{
6c55f07a 561 void * const d;
60323ed7 562
448c38bd
DK
563 IndexTarget const ClearsignedTarget;
564 IndexTarget const DetachedDataTarget;
56472095 565
3d8232bf
DK
566 public:
567 /** \brief A package-system-specific parser for the meta-index file. */
5ad0096a
DK
568 metaIndex *MetaIndexParser;
569 metaIndex *LastMetaIndexParser;
3d8232bf 570
3b302846
DK
571 virtual void Failed(std::string const &Message,pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE;
572 virtual std::string Custom600Headers() const APT_OVERRIDE;
dd676dc7 573 virtual bool VerifyDone(std::string const &Message, pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE;
448c38bd 574 virtual void Done(std::string const &Message, HashStringList const &Hashes,
3b302846 575 pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE;
57f16d51 576 virtual void Finished() APT_OVERRIDE;
56472095 577
1eba782f
DK
578 /** \brief Starts downloading the individual index files.
579 *
580 * \param verify If \b true, only indices whose expected hashsum
581 * can be determined from the meta-index will be downloaded, and
582 * the hashsums of indices will be checked (reporting
583 * #StatAuthError if there is a mismatch). If verify is \b false,
584 * no hashsum checking will be performed.
585 */
586 void QueueIndexes(bool const verify);
587
56472095 588 /** \brief Create a new pkgAcqMetaClearSig. */
448c38bd
DK
589 pkgAcqMetaClearSig(pkgAcquire * const Owner,
590 IndexTarget const &ClearsignedTarget,
591 IndexTarget const &DetachedDataTarget,
592 IndexTarget const &DetachedSigTarget,
5ad0096a 593 metaIndex * const MetaIndexParser);
56472095
MV
594 virtual ~pkgAcqMetaClearSig();
595};
596 /*}}}*/
448c38bd
DK
597/** \brief Common base class for all classes that deal with fetching indexes {{{*/
598class APT_HIDDEN pkgAcqBaseIndex : public pkgAcqTransactionItem
c2184314 599{
6c55f07a 600 void * const d;
60323ed7 601
448c38bd 602 public:
295d848b 603 /** \brief Get the full pathname of the final file for the current URI */
3b302846 604 virtual std::string GetFinalFilename() const APT_OVERRIDE;
0340069c 605 virtual void Failed(std::string const &Message,pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE;
295d848b 606
3d8232bf 607 pkgAcqBaseIndex(pkgAcquire * const Owner, pkgAcqMetaClearSig * const TransactionManager,
b7ec7a80 608 IndexTarget const &Target) APT_NONNULL(2, 3);
c8a4ce6c 609 virtual ~pkgAcqBaseIndex();
c2184314 610};
0b58b3f8 611 /*}}}*/
92fcbfc1 612/** \brief An item that is responsible for fetching an index file of {{{
3174e150
MV
613 * package list diffs and starting the package list's download.
614 *
615 * This item downloads the Index file and parses it, then enqueues
616 * additional downloads of either the individual patches (using
617 * pkgAcqIndexDiffs) or the entire Packages file (using pkgAcqIndex).
618 *
619 * \sa pkgAcqIndexDiffs, pkgAcqIndex
620 */
dce45dbe 621class APT_HIDDEN pkgAcqDiffIndex : public pkgAcqBaseIndex
2237bd01 622{
6c55f07a 623 void * const d;
3d8232bf 624 std::vector<pkgAcqIndexMergeDiffs*> * diffs;
60323ed7 625
2237bd01 626 protected:
3174e150 627 /** \brief If \b true, debugging information will be written to std::clog. */
2237bd01 628 bool Debug;
3174e150 629
3174e150
MV
630 /** \brief A description of the Packages file (stored in
631 * pkgAcquire::ItemDesc::Description).
632 */
472ff00e 633 std::string Description;
2237bd01 634
295d848b 635 /** \brief Get the full pathname of the final file for the current URI */
3b302846 636 virtual std::string GetFinalFilename() const APT_OVERRIDE;
295d848b 637
3b302846 638 virtual bool QueueURI(pkgAcquire::ItemDesc &Item) APT_OVERRIDE;
146f7715 639
3b302846 640 virtual bool TransactionState(TransactionStates const state) APT_OVERRIDE;
2237bd01
MV
641 public:
642 // Specialized action members
3b302846 643 virtual void Failed(std::string const &Message, pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE;
448c38bd 644 virtual void Done(std::string const &Message, HashStringList const &Hashes,
3b302846
DK
645 pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE;
646 virtual std::string DescURI() const APT_OVERRIDE {return Target.URI + "Index";};
647 virtual std::string Custom600Headers() const APT_OVERRIDE;
648 virtual std::string GetMetaKey() const APT_OVERRIDE;
2237bd01 649
3174e150
MV
650 /** \brief Parse the Index file for a set of Packages diffs.
651 *
652 * Parses the Index file and creates additional download items as
653 * necessary.
654 *
655 * \param IndexDiffFile The name of the Index file.
656 *
657 * \return \b true if the Index file was successfully parsed, \b
658 * false otherwise.
659 */
448c38bd 660 bool ParseDiffIndex(std::string const &IndexDiffFile);
3174e150
MV
661
662 /** \brief Create a new pkgAcqDiffIndex.
663 *
664 * \param Owner The Acquire object that owns this item.
665 *
666 * \param URI The URI of the list file to download.
667 *
668 * \param URIDesc A long description of the list file to download.
669 *
670 * \param ShortDesc A short description of the list file to download.
3174e150 671 */
3d8232bf 672 pkgAcqDiffIndex(pkgAcquire * const Owner, pkgAcqMetaClearSig * const TransactionManager,
b7ec7a80 673 IndexTarget const &Target) APT_NONNULL(2, 3);
c8a4ce6c 674 virtual ~pkgAcqDiffIndex();
ba6b79bd
DK
675 private:
676 APT_HIDDEN void QueueOnIMSHit() const;
002d9943 677};
92fcbfc1 678 /*}}}*/
448c38bd
DK
679struct APT_HIDDEN DiffInfo { /*{{{*/
680 /** The filename of the diff. */
681 std::string file;
682
4f51fd86 683 /** The hashes of the file after the diff is applied */
448c38bd
DK
684 HashStringList result_hashes;
685
4f51fd86 686 /** The hashes of the diff */
448c38bd
DK
687 HashStringList patch_hashes;
688
4f51fd86
DK
689 /** The hashes of the compressed diff */
690 HashStringList download_hashes;
448c38bd
DK
691};
692 /*}}}*/
47d2bc78
DK
693/** \brief An item that is responsible for fetching client-merge patches {{{
694 * that need to be applied to a given package index file.
695 *
696 * Instead of downloading and applying each patch one by one like its
697 * sister #pkgAcqIndexDiffs this class will download all patches at once
698 * and call rred with all the patches downloaded once. Rred will then
699 * merge and apply them in one go, which should be a lot faster – but is
700 * incompatible with server-based merges of patches like reprepro can do.
701 *
702 * \sa pkgAcqDiffIndex, pkgAcqIndex
703 */
dce45dbe 704class APT_HIDDEN pkgAcqIndexMergeDiffs : public pkgAcqBaseIndex
47d2bc78 705{
6c55f07a 706 void * const d;
60323ed7 707
47d2bc78
DK
708 protected:
709
710 /** \brief If \b true, debugging output will be written to
711 * std::clog.
712 */
713 bool Debug;
714
47d2bc78
DK
715 /** \brief description of the file being downloaded. */
716 std::string Description;
717
718 /** \brief information about the current patch */
719 struct DiffInfo const patch;
720
721 /** \brief list of all download items for the patches */
722 std::vector<pkgAcqIndexMergeDiffs*> const * const allPatches;
723
724 /** The current status of this patch. */
725 enum DiffState
726 {
727 /** \brief The diff is currently being fetched. */
728 StateFetchDiff,
729
730 /** \brief The diff is currently being applied. */
731 StateApplyDiff,
732
733 /** \brief the work with this diff is done */
734 StateDoneDiff,
735
736 /** \brief something bad happened and fallback was triggered */
737 StateErrorDiff
738 } State;
739
740 public:
741 /** \brief Called when the patch file failed to be downloaded.
742 *
743 * This method will fall back to downloading the whole index file
744 * outright; its arguments are ignored.
745 */
3b302846 746 virtual void Failed(std::string const &Message,pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE;
448c38bd 747 virtual void Done(std::string const &Message, HashStringList const &Hashes,
3b302846
DK
748 pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE;
749 virtual std::string Custom600Headers() const APT_OVERRIDE;
750 virtual std::string DescURI() const APT_OVERRIDE {return Target.URI + "Index";};
751 virtual HashStringList GetExpectedHashes() const APT_OVERRIDE;
752 virtual bool HashesRequired() const APT_OVERRIDE;
47d2bc78
DK
753
754 /** \brief Create an index merge-diff item.
755 *
756 * \param Owner The pkgAcquire object that owns this item.
757 *
758 * \param URI The URI of the package index file being
759 * reconstructed.
760 *
761 * \param URIDesc A long description of this item.
762 *
763 * \param ShortDesc A brief description of this item.
764 *
47d2bc78
DK
765 * \param patch contains infos about the patch this item is supposed
766 * to download which were read from the index
767 *
768 * \param allPatches contains all related items so that each item can
769 * check if it was the last one to complete the download step
770 */
3d8232bf 771 pkgAcqIndexMergeDiffs(pkgAcquire * const Owner, pkgAcqMetaClearSig * const TransactionManager,
e8afd168 772 IndexTarget const &Target, DiffInfo const &patch,
b7ec7a80 773 std::vector<pkgAcqIndexMergeDiffs*> const * const allPatches) APT_NONNULL(2, 3, 6);
c8a4ce6c 774 virtual ~pkgAcqIndexMergeDiffs();
47d2bc78
DK
775};
776 /*}}}*/
777/** \brief An item that is responsible for fetching server-merge patches {{{
3174e150
MV
778 * that need to be applied to a given package index file.
779 *
780 * After downloading and applying a single patch, this item will
781 * enqueue a new pkgAcqIndexDiffs to download and apply the remaining
782 * patches. If no patch can be found that applies to an intermediate
783 * file or if one of the patches cannot be downloaded, falls back to
784 * downloading the entire package index file using pkgAcqIndex.
785 *
786 * \sa pkgAcqDiffIndex, pkgAcqIndex
787 */
dce45dbe 788class APT_HIDDEN pkgAcqIndexDiffs : public pkgAcqBaseIndex
ac5b205a 789{
6c55f07a 790 void * const d;
60323ed7 791
3174e150
MV
792 private:
793
794 /** \brief Queue up the next diff download.
795 *
796 * Search for the next available diff that applies to the file
797 * that currently exists on disk, and enqueue it by calling
798 * QueueURI().
799 *
800 * \return \b true if an applicable diff was found, \b false
801 * otherwise.
802 */
3809194b 803 APT_HIDDEN bool QueueNextDiff();
3174e150
MV
804
805 /** \brief Handle tasks that must be performed after the item
806 * finishes downloading.
807 *
b3501edb
DK
808 * Dequeues the item and checks the resulting file's hashsums
809 * against ExpectedHashes after the last patch was applied.
3174e150
MV
810 * There is no need to check the md5/sha1 after a "normal"
811 * patch because QueueNextDiff() will check the sha1 later.
812 *
813 * \param allDone If \b true, the file was entirely reconstructed,
814 * and its md5sum is verified.
815 */
448c38bd 816 APT_HIDDEN void Finish(bool const allDone=false);
3174e150 817
ac5b205a 818 protected:
3174e150
MV
819
820 /** \brief If \b true, debugging output will be written to
821 * std::clog.
822 */
ac5b205a 823 bool Debug;
3174e150 824
3174e150 825 /** A description of the file being downloaded. */
472ff00e 826 std::string Description;
3174e150
MV
827
828 /** The patches that remain to be downloaded, including the patch
829 * being downloaded right now. This list should be ordered so
830 * that each diff appears before any diff that depends on it.
831 *
832 * \todo These are indexed by sha1sum; why not use some sort of
833 * dictionary instead of relying on ordering and stripping them
834 * off the front?
835 */
472ff00e 836 std::vector<DiffInfo> available_patches;
8a3207f4 837
3174e150
MV
838 /** The current status of this patch. */
839 enum DiffState
4e3c5633 840 {
3174e150
MV
841 /** \brief The diff is currently being fetched. */
842 StateFetchDiff,
3174e150
MV
843
844 /** \brief The diff is currently being applied. */
845 StateApplyDiff
846 } State;
6cb30d01 847
ac5b205a 848 public:
448c38bd 849
3174e150
MV
850 /** \brief Called when the patch file failed to be downloaded.
851 *
852 * This method will fall back to downloading the whole index file
853 * outright; its arguments are ignored.
854 */
3b302846 855 virtual void Failed(std::string const &Message,pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE;
3174e150 856
448c38bd 857 virtual void Done(std::string const &Message, HashStringList const &Hashes,
3b302846
DK
858 pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE;
859 virtual std::string Custom600Headers() const APT_OVERRIDE;
860 virtual std::string DescURI() const APT_OVERRIDE {return Target.URI + "IndexDiffs";};
861 virtual HashStringList GetExpectedHashes() const APT_OVERRIDE;
862 virtual bool HashesRequired() const APT_OVERRIDE;
ac5b205a 863
3174e150
MV
864 /** \brief Create an index diff item.
865 *
866 * After filling in its basic fields, this invokes Finish(true) if
255c9e4b 867 * \a diffs is empty, or QueueNextDiff() otherwise.
3174e150
MV
868 *
869 * \param Owner The pkgAcquire object that owns this item.
870 *
871 * \param URI The URI of the package index file being
872 * reconstructed.
873 *
874 * \param URIDesc A long description of this item.
875 *
876 * \param ShortDesc A brief description of this item.
877 *
3174e150
MV
878 * \param diffs The remaining diffs from the index of diffs. They
879 * should be ordered so that each diff appears before any diff
880 * that depends on it.
881 */
3d8232bf 882 pkgAcqIndexDiffs(pkgAcquire * const Owner, pkgAcqMetaClearSig * const TransactionManager,
e8afd168 883 IndexTarget const &Target,
b7ec7a80 884 std::vector<DiffInfo> const &diffs=std::vector<DiffInfo>()) APT_NONNULL(2, 3);
c8a4ce6c 885 virtual ~pkgAcqIndexDiffs();
ac5b205a 886};
92fcbfc1
DK
887 /*}}}*/
888/** \brief An acquire item that is responsible for fetching an index {{{
3174e150
MV
889 * file (e.g., Packages or Sources).
890 *
891 * \sa pkgAcqDiffIndex, pkgAcqIndexDiffs, pkgAcqIndexTrans
892 *
893 * \todo Why does pkgAcqIndex have protected members?
894 */
dce45dbe 895class APT_HIDDEN pkgAcqIndex : public pkgAcqBaseIndex
0118833a 896{
6c55f07a 897 void * const d;
60323ed7 898
0118833a 899 protected:
3174e150 900
651bddad
MV
901 /** \brief The stages the method goes through
902 *
903 * The method first downloads the indexfile, then its decompressed (or
904 * copied) and verified
3174e150 905 */
651bddad
MV
906 enum AllStages {
907 STAGE_DOWNLOAD,
908 STAGE_DECOMPRESS_AND_VERIFY,
909 };
910 AllStages Stage;
3174e150 911
651bddad 912 /** \brief Handle what needs to be done when the download is done */
0179cfa8 913 void StageDownloadDone(std::string const &Message);
651bddad
MV
914
915 /** \brief Handle what needs to be done when the decompression/copy is
916 * done
3174e150 917 */
0179cfa8 918 void StageDecompressDone();
3174e150 919
1e8ba0d4
MV
920 /** \brief If \b set, this partially downloaded file will be
921 * removed when the download completes.
922 */
923 std::string EraseFileName;
924
5d885723
DK
925 /** \brief The compression-related file extensions that are being
926 * added to the downloaded file one by one if first fails (e.g., "gz bz2").
3174e150 927 */
651bddad
MV
928 std::string CompressionExtensions;
929
930 /** \brief The actual compression extension currently used */
1e8ba0d4 931 std::string CurrentCompressionExtension;
13e8426f 932
59194959 933 /** \brief Do the changes needed to fetch via AptByHash (if needed) */
448c38bd 934 void InitByHashIfNeeded();
59194959 935
295d848b 936 /** \brief Get the full pathname of the final file for the current URI */
3b302846 937 virtual std::string GetFinalFilename() const APT_OVERRIDE;
295d848b 938
3b302846 939 virtual bool TransactionState(TransactionStates const state) APT_OVERRIDE;
146f7715 940
0118833a 941 public:
17caf1b1 942 // Specialized action members
3b302846 943 virtual void Failed(std::string const &Message,pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE;
448c38bd 944 virtual void Done(std::string const &Message, HashStringList const &Hashes,
3b302846
DK
945 pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE;
946 virtual std::string Custom600Headers() const APT_OVERRIDE;
947 virtual std::string DescURI() const APT_OVERRIDE {return Desc.URI;};
948 virtual std::string GetMetaKey() const APT_OVERRIDE;
448c38bd 949
3d8232bf 950 pkgAcqIndex(pkgAcquire * const Owner, pkgAcqMetaClearSig * const TransactionManager,
b7ec7a80 951 IndexTarget const &Target) APT_NONNULL(2, 3);
c8a4ce6c 952 virtual ~pkgAcqIndex();
0118833a 953
c8a4ce6c
DK
954 private:
955 APT_HIDDEN void Init(std::string const &URI, std::string const &URIDesc,
0b58b3f8 956 std::string const &ShortDesc);
0118833a 957};
92fcbfc1 958 /*}}}*/
92fcbfc1 959/** \brief An item that is responsible for fetching a package file. {{{
3174e150
MV
960 *
961 * If the package file already exists in the cache, nothing will be
962 * done.
963 */
03e39e59
AL
964class pkgAcqArchive : public pkgAcquire::Item
965{
6c55f07a 966 void * const d;
60323ed7 967
448c38bd
DK
968 bool LocalSource;
969 HashStringList ExpectedHashes;
970
03e39e59 971 protected:
3174e150 972 /** \brief The package version being fetched. */
03e39e59 973 pkgCache::VerIterator Version;
3174e150 974
3174e150
MV
975 /** \brief The list of sources from which to pick archives to
976 * download this package from.
977 */
03e39e59 978 pkgSourceList *Sources;
3174e150
MV
979
980 /** \brief A package records object, used to look up the file
981 * corresponding to each version of the package.
982 */
03e39e59 983 pkgRecords *Recs;
3174e150 984
3174e150
MV
985 /** \brief A location in which the actual filename of the package
986 * should be stored.
987 */
472ff00e 988 std::string &StoreFilename;
3174e150
MV
989
990 /** \brief The next file for this version to try to download. */
b185acc2 991 pkgCache::VerFileIterator Vf;
3174e150
MV
992
993 /** \brief How many (more) times to try to find a new source from
994 * which to download this package version if it fails.
995 *
996 * Set from Acquire::Retries.
997 */
7d8afa39 998 unsigned int Retries;
3174e150
MV
999
1000 /** \brief \b true if this version file is being downloaded from a
1001 * trusted source.
1002 */
448c38bd 1003 bool Trusted;
17caf1b1 1004
3174e150 1005 /** \brief Queue up the next available file for this version. */
b185acc2 1006 bool QueueNext();
295d848b
DK
1007
1008 /** \brief Get the full pathname of the final file for the current URI */
3b302846 1009 virtual std::string GetFinalFilename() const APT_OVERRIDE;
295d848b 1010
03e39e59 1011 public:
295d848b 1012
3b302846 1013 virtual void Failed(std::string const &Message,pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE;
448c38bd 1014 virtual void Done(std::string const &Message, HashStringList const &Hashes,
3b302846
DK
1015 pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE;
1016 virtual std::string DescURI() const APT_OVERRIDE;
1017 virtual std::string ShortDesc() const APT_OVERRIDE;
1018 virtual void Finished() APT_OVERRIDE;
1019 virtual bool IsTrusted() const APT_OVERRIDE;
1020 virtual HashStringList GetExpectedHashes() const APT_OVERRIDE;
1021 virtual bool HashesRequired() const APT_OVERRIDE;
02e20767 1022
3174e150
MV
1023 /** \brief Create a new pkgAcqArchive.
1024 *
1025 * \param Owner The pkgAcquire object with which this item is
1026 * associated.
1027 *
1028 * \param Sources The sources from which to download version
1029 * files.
1030 *
1031 * \param Recs A package records object, used to look up the file
1032 * corresponding to each version of the package.
1033 *
1034 * \param Version The package version to download.
1035 *
3c8030a4 1036 * \param[out] StoreFilename A location in which the actual filename of
3174e150
MV
1037 * the package should be stored. It will be set to a guessed
1038 * basename in the constructor, and filled in with a fully
1039 * qualified filename once the download finishes.
1040 */
448c38bd
DK
1041 pkgAcqArchive(pkgAcquire * const Owner,pkgSourceList * const Sources,
1042 pkgRecords * const Recs,pkgCache::VerIterator const &Version,
472ff00e 1043 std::string &StoreFilename);
c8a4ce6c 1044 virtual ~pkgAcqArchive();
03e39e59 1045};
92fcbfc1 1046 /*}}}*/
d56e2917
DK
1047/** \brief Retrieve the changelog for the given version {{{
1048 *
1049 * Downloads the changelog to a temporary file it will also remove again
1050 * while it is deconstructed or downloads it to a named location.
1051 */
1052class pkgAcqChangelog : public pkgAcquire::Item
1053{
6fd4b4c0
DK
1054 class Private;
1055 Private * const d;
d56e2917
DK
1056 std::string TemporaryDirectory;
1057 std::string const SrcName;
1058 std::string const SrcVersion;
1059
1060 public:
1061 // we will never have hashes for changelogs.
1062 // If you need verified ones, download the deb and extract the changelog.
3b302846
DK
1063 virtual HashStringList GetExpectedHashes() const APT_OVERRIDE { return HashStringList(); }
1064 virtual bool HashesRequired() const APT_OVERRIDE { return false; }
d56e2917
DK
1065
1066 // Specialized action members
3b302846 1067 virtual void Failed(std::string const &Message,pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE;
d56e2917 1068 virtual void Done(std::string const &Message, HashStringList const &CalcHashes,
3b302846
DK
1069 pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE;
1070 virtual std::string DescURI() const APT_OVERRIDE {return Desc.URI;};
d56e2917
DK
1071
1072 /** returns the URI to the changelog of this version
1073 *
1074 * @param Ver is the version to get the changelog for
1075 * @return the URI which will be used to acquire the changelog
1076 */
1077 static std::string URI(pkgCache::VerIterator const &Ver);
1078
1079 /** returns the URI to the changelog of this version
1080 *
1081 * \param Rls is the Release file the package comes from
1082 * \param Component in which the package resides, can be empty
1083 * \param SrcName is the source package name
1084 * \param SrcVersion is the source package version
1085 * @return the URI which will be used to acquire the changelog
1086 */
1087 static std::string URI(pkgCache::RlsFileIterator const &Rls,
1088 char const * const Component, char const * const SrcName,
1089 char const * const SrcVersion);
1090
1091 /** returns the URI to the changelog of this version
1092 *
430481e7 1093 * \param Template URI where @CHANGEPATH@ has to be filled in
d56e2917
DK
1094 * \param Component in which the package resides, can be empty
1095 * \param SrcName is the source package name
1096 * \param SrcVersion is the source package version
1097 * @return the URI which will be used to acquire the changelog
1098 */
1099 static std::string URI(std::string const &Template,
1100 char const * const Component, char const * const SrcName,
1101 char const * const SrcVersion);
1102
1103 /** returns the URI template for this release file
1104 *
1105 * \param Rls is a Release file
1106 * @return the URI template to use for this release file
1107 */
1108 static std::string URITemplate(pkgCache::RlsFileIterator const &Rls);
1109
1110 /** \brief Create a new pkgAcqChangelog object.
1111 *
1112 * \param Owner The pkgAcquire object with which this object is
1113 * associated.
1114 * \param Ver is the version to get the changelog for
1115 * \param DestDir The directory the file should be downloaded into.
1116 * Will be an autocreated (and cleaned up) temporary directory if not set.
1117 * \param DestFilename The filename the file should have in #DestDir
1118 * Defaults to sourcepackagename.changelog if not set.
1119 */
1120 pkgAcqChangelog(pkgAcquire * const Owner, pkgCache::VerIterator const &Ver,
1121 std::string const &DestDir="", std::string const &DestFilename="");
1122
1123 /** \brief Create a new pkgAcqChangelog object.
1124 *
1125 * \param Owner The pkgAcquire object with which this object is
1126 * associated.
1127 * \param Rls is the Release file the package comes from
1128 * \param Component in which the package resides, can be empty
1129 * \param SrcName is the source package name
1130 * \param SrcVersion is the source package version
1131 * \param DestDir The directory the file should be downloaded into.
1132 * Will be an autocreated (and cleaned up) temporary directory if not set.
1133 * \param DestFilename The filename the file should have in #DestDir
1134 * Defaults to sourcepackagename.changelog if not set.
1135 */
1136 pkgAcqChangelog(pkgAcquire * const Owner, pkgCache::RlsFileIterator const &Rls,
1137 char const * const Component, char const * const SrcName, char const * const SrcVersion,
1138 std::string const &DestDir="", std::string const &DestFilename="");
1139
1140 /** \brief Create a new pkgAcqChangelog object.
1141 *
1142 * \param Owner The pkgAcquire object with which this object is
1143 * associated.
1144 * \param URI is to be used to get the changelog
1145 * \param SrcName is the source package name
1146 * \param SrcVersion is the source package version
1147 * \param DestDir The directory the file should be downloaded into.
1148 * Will be an autocreated (and cleaned up) temporary directory if not set.
1149 * \param DestFilename The filename the file should have in #DestDir
1150 * Defaults to sourcepackagename.changelog if not set.
1151 */
1152 pkgAcqChangelog(pkgAcquire * const Owner, std::string const &URI,
1153 char const * const SrcName, char const * const SrcVersion,
1154 std::string const &DestDir="", std::string const &DestFilename="");
1155
1156 virtual ~pkgAcqChangelog();
1157
1158private:
1159 APT_HIDDEN void Init(std::string const &DestDir, std::string const &DestFilename);
1160};
1161 /*}}}*/
92fcbfc1 1162/** \brief Retrieve an arbitrary file to the current directory. {{{
3174e150
MV
1163 *
1164 * The file is retrieved even if it is accessed via a URL type that
1165 * normally is a NOP, such as "file". If the download fails, the
1166 * partial file is renamed to get a ".FAILED" extension.
1167 */
36375005
AL
1168class pkgAcqFile : public pkgAcquire::Item
1169{
6c55f07a 1170 void * const d;
60323ed7 1171
3174e150
MV
1172 /** \brief How many times to retry the download, set from
1173 * Acquire::Retries.
1174 */
08cfc005 1175 unsigned int Retries;
448c38bd 1176
77278c2b
MV
1177 /** \brief Should this file be considered a index file */
1178 bool IsIndexFile;
1179
448c38bd 1180 HashStringList const ExpectedHashes;
36375005 1181 public:
3b302846
DK
1182 virtual HashStringList GetExpectedHashes() const APT_OVERRIDE;
1183 virtual bool HashesRequired() const APT_OVERRIDE;
448c38bd 1184
36375005 1185 // Specialized action members
3b302846 1186 virtual void Failed(std::string const &Message,pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE;
448c38bd 1187 virtual void Done(std::string const &Message, HashStringList const &CalcHashes,
3b302846
DK
1188 pkgAcquire::MethodConfig const * const Cnf) APT_OVERRIDE;
1189 virtual std::string DescURI() const APT_OVERRIDE {return Desc.URI;};
1190 virtual std::string Custom600Headers() const APT_OVERRIDE;
3174e150
MV
1191
1192 /** \brief Create a new pkgAcqFile object.
1193 *
1194 * \param Owner The pkgAcquire object with which this object is
1195 * associated.
1196 *
1197 * \param URI The URI to download.
1198 *
b3501edb
DK
1199 * \param Hashes The hashsums of the file to download, if they are known;
1200 * otherwise empty list.
3174e150
MV
1201 *
1202 * \param Size The size of the file to download, if it is known;
1203 * otherwise 0.
1204 *
1205 * \param Desc A description of the file being downloaded.
1206 *
1207 * \param ShortDesc A brief description of the file being
1208 * downloaded.
39c7baef
MV
1209 *
1210 * \param DestDir The directory the file should be downloaded into.
1211 *
1212 * \param DestFilename The filename+path the file is downloaded to.
1213 *
77278c2b
MV
1214 * \param IsIndexFile The file is considered a IndexFile and cache-control
1215 * headers like "cache-control: max-age=0" are send
39c7baef 1216 *
255c9e4b
DK
1217 * If DestFilename is empty, download to DestDir/\<basename\> if
1218 * DestDir is non-empty, $CWD/\<basename\> otherwise. If
39c7baef
MV
1219 * DestFilename is NOT empty, DestDir is ignored and DestFilename
1220 * is the absolute name to which the file should be downloaded.
3174e150 1221 */
39c7baef 1222
448c38bd
DK
1223 pkgAcqFile(pkgAcquire * const Owner, std::string const &URI, HashStringList const &Hashes, unsigned long long const Size,
1224 std::string const &Desc, std::string const &ShortDesc,
1225 std::string const &DestDir="", std::string const &DestFilename="",
1226 bool const IsIndexFile=false);
c8a4ce6c 1227 virtual ~pkgAcqFile();
36375005 1228};
92fcbfc1 1229 /*}}}*/
3174e150
MV
1230/** @} */
1231
0118833a 1232#endif