]>
Commit | Line | Data |
---|---|---|
93bf083d AL |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
b3d44315 | 3 | // $Id: acquire-method.h,v 1.15.2.1 2003/12/24 23:09:17 mdz Exp $ |
93bf083d AL |
4 | /* ###################################################################### |
5 | ||
6 | Acquire Method - Method helper class + functions | |
7 | ||
8 | These functions are designed to be used within the method task to | |
9 | ease communication with APT. | |
10 | ||
11 | ##################################################################### */ | |
12 | /*}}}*/ | |
3174e150 MV |
13 | |
14 | /** \addtogroup acquire | |
15 | * @{ | |
16 | * | |
17 | * \file acquire-method.h | |
18 | */ | |
19 | ||
93bf083d AL |
20 | #ifndef PKGLIB_ACQUIRE_METHOD_H |
21 | #define PKGLIB_ACQUIRE_METHOD_H | |
22 | ||
b3501edb | 23 | #include <apt-pkg/hashes.h> |
ce62f1de DK |
24 | #include <apt-pkg/macros.h> |
25 | ||
f1bdfe81 | 26 | #include <stdarg.h> |
453b82a3 | 27 | #include <time.h> |
93bf083d | 28 | |
472ff00e DK |
29 | #include <string> |
30 | #include <vector> | |
31 | ||
b9dadc24 DK |
32 | #ifndef APT_8_CLEANER_HEADERS |
33 | #include <apt-pkg/configuration.h> | |
34 | #include <apt-pkg/strutl.h> | |
35 | #endif | |
36 | ||
93bf083d AL |
37 | class pkgAcqMethod |
38 | { | |
39 | protected: | |
93bf083d | 40 | |
be4401bf AL |
41 | struct FetchItem |
42 | { | |
43 | FetchItem *Next; | |
44 | ||
8f3ba4e8 DK |
45 | std::string Uri; |
46 | std::string DestFile; | |
da6f750f | 47 | int DestFileFd; |
be4401bf | 48 | time_t LastModified; |
a72ace20 | 49 | bool IndexFile; |
963b16dc | 50 | bool FailIgnore; |
d003a557 | 51 | HashStringList ExpectedHashes; |
c48eea97 MV |
52 | // a maximum size we will download, this can be the exact filesize |
53 | // for when we know it or a arbitrary limit when we don't know the | |
54 | // filesize (like a InRelease file) | |
55 | unsigned long long MaximumSize; | |
be4401bf AL |
56 | }; |
57 | ||
93bf083d AL |
58 | struct FetchResult |
59 | { | |
b3501edb | 60 | HashStringList Hashes; |
8f3ba4e8 | 61 | std::vector<std::string> GPGVOutput; |
93bf083d AL |
62 | time_t LastModified; |
63 | bool IMSHit; | |
8f3ba4e8 | 64 | std::string Filename; |
73da43e9 DK |
65 | unsigned long long Size; |
66 | unsigned long long ResumePoint; | |
a7c835af | 67 | |
b3501edb | 68 | void TakeHashes(class Hashes &Hash); |
93bf083d AL |
69 | FetchResult(); |
70 | }; | |
be4401bf AL |
71 | |
72 | // State | |
8f3ba4e8 | 73 | std::vector<std::string> Messages; |
be4401bf | 74 | FetchItem *Queue; |
5cb5d8dc | 75 | FetchItem *QueueBack; |
8f3ba4e8 DK |
76 | std::string FailReason; |
77 | std::string UsedMirror; | |
78 | std::string IP; | |
36795154 | 79 | |
93bf083d | 80 | // Handlers for messages |
8f3ba4e8 | 81 | virtual bool Configuration(std::string Message); |
727f18af | 82 | virtual bool Fetch(FetchItem * /*Item*/) {return true;}; |
36795154 DK |
83 | virtual bool URIAcquire(std::string const &/*Message*/, FetchItem *Itm) { return Fetch(Itm); }; |
84 | ||
93bf083d | 85 | // Outgoing messages |
a72ace20 | 86 | void Fail(bool Transient = false); |
8f3ba4e8 DK |
87 | inline void Fail(const char *Why, bool Transient = false) {Fail(std::string(Why),Transient);}; |
88 | virtual void Fail(std::string Why, bool Transient = false); | |
14e097c1 MV |
89 | virtual void URIStart(FetchResult &Res); |
90 | virtual void URIDone(FetchResult &Res,FetchResult *Alt = 0); | |
91 | ||
8f3ba4e8 | 92 | bool MediaFail(std::string Required,std::string Drive); |
459681d3 | 93 | virtual void Exit() {}; |
8e5fc8f5 | 94 | |
f1bdfe81 DK |
95 | void PrintStatus(char const * const header, const char* Format, va_list &args) const; |
96 | ||
93bf083d | 97 | public: |
a72ace20 AL |
98 | enum CnfFlags {SingleInstance = (1<<0), |
99 | Pipeline = (1<<1), SendConfig = (1<<2), | |
459681d3 AL |
100 | LocalOnly = (1<<3), NeedsCleanup = (1<<4), |
101 | Removable = (1<<5)}; | |
93bf083d | 102 | |
be4401bf AL |
103 | void Log(const char *Format,...); |
104 | void Status(const char *Format,...); | |
105 | ||
8f3ba4e8 | 106 | void Redirect(const std::string &NewURI); |
ebb461fd | 107 | |
be4401bf | 108 | int Run(bool Single = false); |
8f3ba4e8 DK |
109 | inline void SetFailReason(std::string Msg) {FailReason = Msg;}; |
110 | inline void SetIP(std::string aIP) {IP = aIP;}; | |
93bf083d AL |
111 | |
112 | pkgAcqMethod(const char *Ver,unsigned long Flags = 0); | |
862bafea | 113 | virtual ~pkgAcqMethod(); |
7b18d559 | 114 | void DropPrivsOrDie(); |
e1284a59 | 115 | private: |
ce62f1de | 116 | APT_HIDDEN void Dequeue(); |
93bf083d AL |
117 | }; |
118 | ||
3174e150 MV |
119 | /** @} */ |
120 | ||
93bf083d | 121 | #endif |