merge lp:~mvo/apt/sha512-template to add support for sha512
[ntk/apt.git] / apt-pkg / acquire-method.h
1 // -*- mode: cpp; mode: fold -*-
2 // Description /*{{{*/
3 // $Id: acquire-method.h,v 1.15.2.1 2003/12/24 23:09:17 mdz Exp $
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
14 /** \addtogroup acquire
15 * @{
16 *
17 * \file acquire-method.h
18 */
19
20 #ifndef PKGLIB_ACQUIRE_METHOD_H
21 #define PKGLIB_ACQUIRE_METHOD_H
22
23 #include <apt-pkg/configuration.h>
24 #include <apt-pkg/strutl.h>
25
26 #include <stdarg.h>
27
28 class Hashes;
29 class pkgAcqMethod
30 {
31 protected:
32
33 struct FetchItem
34 {
35 FetchItem *Next;
36
37 string Uri;
38 string DestFile;
39 time_t LastModified;
40 bool IndexFile;
41 bool FailIgnore;
42 };
43
44 struct FetchResult
45 {
46 string MD5Sum;
47 string SHA1Sum;
48 string SHA256Sum;
49 string SHA512Sum;
50 vector<string> GPGVOutput;
51 time_t LastModified;
52 bool IMSHit;
53 string Filename;
54 unsigned long Size;
55 unsigned long ResumePoint;
56
57 void TakeHashes(Hashes &Hash);
58 FetchResult();
59 };
60
61 // State
62 vector<string> Messages;
63 FetchItem *Queue;
64 FetchItem *QueueBack;
65 string FailReason;
66 string UsedMirror;
67 string IP;
68
69 // Handlers for messages
70 virtual bool Configuration(string Message);
71 virtual bool Fetch(FetchItem * /*Item*/) {return true;};
72
73 // Outgoing messages
74 void Fail(bool Transient = false);
75 inline void Fail(const char *Why, bool Transient = false) {Fail(string(Why),Transient);};
76 virtual void Fail(string Why, bool Transient = false);
77 virtual void URIStart(FetchResult &Res);
78 virtual void URIDone(FetchResult &Res,FetchResult *Alt = 0);
79
80 bool MediaFail(string Required,string Drive);
81 virtual void Exit() {};
82
83 void PrintStatus(char const * const header, const char* Format, va_list &args) const;
84
85 public:
86 enum CnfFlags {SingleInstance = (1<<0),
87 Pipeline = (1<<1), SendConfig = (1<<2),
88 LocalOnly = (1<<3), NeedsCleanup = (1<<4),
89 Removable = (1<<5)};
90
91 void Log(const char *Format,...);
92 void Status(const char *Format,...);
93
94 void Redirect(const string &NewURI);
95
96 int Run(bool Single = false);
97 inline void SetFailReason(string Msg) {FailReason = Msg;};
98 inline void SetIP(string aIP) {IP = aIP;};
99
100 pkgAcqMethod(const char *Ver,unsigned long Flags = 0);
101 virtual ~pkgAcqMethod() {};
102 };
103
104 /** @} */
105
106 #endif