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