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