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