]>
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 | /*}}}*/ | |
13 | #ifndef PKGLIB_ACQUIRE_METHOD_H | |
14 | #define PKGLIB_ACQUIRE_METHOD_H | |
15 | ||
16 | #include <apt-pkg/configuration.h> | |
cdcc6d34 | 17 | #include <apt-pkg/strutl.h> |
93bf083d AL |
18 | |
19 | #ifdef __GNUG__ | |
20 | #pragma interface "apt-pkg/acquire-method.h" | |
21 | #endif | |
22 | ||
a7c835af | 23 | class Hashes; |
93bf083d AL |
24 | class pkgAcqMethod |
25 | { | |
26 | protected: | |
93bf083d | 27 | |
be4401bf AL |
28 | struct FetchItem |
29 | { | |
30 | FetchItem *Next; | |
31 | ||
32 | string Uri; | |
33 | string DestFile; | |
34 | time_t LastModified; | |
a72ace20 | 35 | bool IndexFile; |
be4401bf AL |
36 | }; |
37 | ||
93bf083d AL |
38 | struct FetchResult |
39 | { | |
40 | string MD5Sum; | |
a7c835af | 41 | string SHA1Sum; |
b3d44315 | 42 | vector<string> GPGVOutput; |
93bf083d AL |
43 | time_t LastModified; |
44 | bool IMSHit; | |
45 | string Filename; | |
46 | unsigned long Size; | |
a7c835af AL |
47 | unsigned long ResumePoint; |
48 | ||
49 | void TakeHashes(Hashes &Hash); | |
93bf083d AL |
50 | FetchResult(); |
51 | }; | |
be4401bf AL |
52 | |
53 | // State | |
54 | vector<string> Messages; | |
55 | FetchItem *Queue; | |
5cb5d8dc | 56 | FetchItem *QueueBack; |
36280399 MV |
57 | string FailReason; |
58 | string UsedMirror; | |
59 | string IP; | |
b2e465d6 | 60 | |
93bf083d AL |
61 | // Handlers for messages |
62 | virtual bool Configuration(string Message); | |
727f18af | 63 | virtual bool Fetch(FetchItem * /*Item*/) {return true;}; |
93bf083d AL |
64 | |
65 | // Outgoing messages | |
a72ace20 | 66 | void Fail(bool Transient = false); |
958fac63 | 67 | inline void Fail(const char *Why, bool Transient = false) {Fail(string(Why),Transient);}; |
14e097c1 MV |
68 | virtual void Fail(string Why, bool Transient = false); |
69 | virtual void URIStart(FetchResult &Res); | |
70 | virtual void URIDone(FetchResult &Res,FetchResult *Alt = 0); | |
71 | ||
018f1533 | 72 | bool MediaFail(string Required,string Drive); |
459681d3 | 73 | virtual void Exit() {}; |
8e5fc8f5 | 74 | |
93bf083d | 75 | public: |
a72ace20 AL |
76 | enum CnfFlags {SingleInstance = (1<<0), |
77 | Pipeline = (1<<1), SendConfig = (1<<2), | |
459681d3 AL |
78 | LocalOnly = (1<<3), NeedsCleanup = (1<<4), |
79 | Removable = (1<<5)}; | |
93bf083d | 80 | |
be4401bf AL |
81 | void Log(const char *Format,...); |
82 | void Status(const char *Format,...); | |
83 | ||
84 | int Run(bool Single = false); | |
36280399 MV |
85 | inline void SetFailReason(string Msg) {FailReason = Msg;}; |
86 | inline void SetIP(string aIP) {IP = aIP;}; | |
93bf083d AL |
87 | |
88 | pkgAcqMethod(const char *Ver,unsigned long Flags = 0); | |
89 | virtual ~pkgAcqMethod() {}; | |
90 | }; | |
91 | ||
92 | #endif |