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