]>
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 | ||
23 | #include <apt-pkg/configuration.h> | |
cdcc6d34 | 24 | #include <apt-pkg/strutl.h> |
93bf083d | 25 | |
f1bdfe81 | 26 | #include <stdarg.h> |
93bf083d | 27 | |
a7c835af | 28 | class Hashes; |
93bf083d AL |
29 | class pkgAcqMethod |
30 | { | |
31 | protected: | |
93bf083d | 32 | |
be4401bf AL |
33 | struct FetchItem |
34 | { | |
35 | FetchItem *Next; | |
36 | ||
8f3ba4e8 DK |
37 | std::string Uri; |
38 | std::string DestFile; | |
be4401bf | 39 | time_t LastModified; |
a72ace20 | 40 | bool IndexFile; |
963b16dc | 41 | bool FailIgnore; |
be4401bf AL |
42 | }; |
43 | ||
93bf083d AL |
44 | struct FetchResult |
45 | { | |
8f3ba4e8 DK |
46 | std::string MD5Sum; |
47 | std::string SHA1Sum; | |
48 | std::string SHA256Sum; | |
49 | std::string SHA512Sum; | |
50 | std::vector<std::string> GPGVOutput; | |
93bf083d AL |
51 | time_t LastModified; |
52 | bool IMSHit; | |
8f3ba4e8 | 53 | std::string Filename; |
73da43e9 DK |
54 | unsigned long long Size; |
55 | unsigned long long ResumePoint; | |
a7c835af AL |
56 | |
57 | void TakeHashes(Hashes &Hash); | |
93bf083d AL |
58 | FetchResult(); |
59 | }; | |
be4401bf AL |
60 | |
61 | // State | |
8f3ba4e8 | 62 | std::vector<std::string> Messages; |
be4401bf | 63 | FetchItem *Queue; |
5cb5d8dc | 64 | FetchItem *QueueBack; |
8f3ba4e8 DK |
65 | std::string FailReason; |
66 | std::string UsedMirror; | |
67 | std::string IP; | |
b2e465d6 | 68 | |
93bf083d | 69 | // Handlers for messages |
8f3ba4e8 | 70 | virtual bool Configuration(std::string Message); |
727f18af | 71 | virtual bool Fetch(FetchItem * /*Item*/) {return true;}; |
93bf083d AL |
72 | |
73 | // Outgoing messages | |
a72ace20 | 74 | void Fail(bool Transient = false); |
8f3ba4e8 DK |
75 | inline void Fail(const char *Why, bool Transient = false) {Fail(std::string(Why),Transient);}; |
76 | virtual void Fail(std::string Why, bool Transient = false); | |
14e097c1 MV |
77 | virtual void URIStart(FetchResult &Res); |
78 | virtual void URIDone(FetchResult &Res,FetchResult *Alt = 0); | |
79 | ||
8f3ba4e8 | 80 | bool MediaFail(std::string Required,std::string Drive); |
459681d3 | 81 | virtual void Exit() {}; |
8e5fc8f5 | 82 | |
f1bdfe81 DK |
83 | void PrintStatus(char const * const header, const char* Format, va_list &args) const; |
84 | ||
93bf083d | 85 | public: |
a72ace20 AL |
86 | enum CnfFlags {SingleInstance = (1<<0), |
87 | Pipeline = (1<<1), SendConfig = (1<<2), | |
459681d3 AL |
88 | LocalOnly = (1<<3), NeedsCleanup = (1<<4), |
89 | Removable = (1<<5)}; | |
93bf083d | 90 | |
be4401bf AL |
91 | void Log(const char *Format,...); |
92 | void Status(const char *Format,...); | |
93 | ||
8f3ba4e8 | 94 | void Redirect(const std::string &NewURI); |
ebb461fd | 95 | |
be4401bf | 96 | int Run(bool Single = false); |
8f3ba4e8 DK |
97 | inline void SetFailReason(std::string Msg) {FailReason = Msg;}; |
98 | inline void SetIP(std::string aIP) {IP = aIP;}; | |
93bf083d AL |
99 | |
100 | pkgAcqMethod(const char *Ver,unsigned long Flags = 0); | |
101 | virtual ~pkgAcqMethod() {}; | |
102 | }; | |
103 | ||
3174e150 MV |
104 | /** @} */ |
105 | ||
93bf083d | 106 | #endif |