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