]> git.saurik.com Git - apt.git/blob - apt-pkg/acquire-method.h
Dselect support
[apt.git] / apt-pkg / acquire-method.h
1 // -*- mode: cpp; mode: fold -*-
2 // Description /*{{{*/
3 // $Id: acquire-method.h,v 1.3 1998/11/14 01:39:43 jgg 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 #ifndef PKGLIB_ACQUIRE_METHOD_H
14 #define PKGLIB_ACQUIRE_METHOD_H
15
16 #include <apt-pkg/configuration.h>
17 #include <strutl.h>
18
19 #ifdef __GNUG__
20 #pragma interface "apt-pkg/acquire-method.h"
21 #endif
22
23 class pkgAcqMethod
24 {
25 protected:
26
27 struct FetchItem
28 {
29 FetchItem *Next;
30
31 string Uri;
32 string DestFile;
33 time_t LastModified;
34 };
35
36 struct FetchResult
37 {
38 string MD5Sum;
39 time_t LastModified;
40 bool IMSHit;
41 string Filename;
42 unsigned long Size;
43 unsigned long ResumePoint;
44 FetchResult();
45 };
46
47 // State
48 vector<string> Messages;
49 FetchItem *Queue;
50
51 // Handlers for messages
52 virtual bool Configuration(string Message);
53 virtual bool Fetch(FetchItem *Item) {return true;};
54
55 // Outgoing messages
56 void Fail();
57 void Fail(string Why);
58 void URIStart(FetchResult &Res);
59 void URIDone(FetchResult &Res,FetchResult *Alt = 0);
60
61 public:
62
63 enum CnfFlags {SingleInstance = (1<<0), PreScan = (1<<1),
64 Pipeline = (1<<2), SendConfig = (1<<3),
65 LocalOnly = (1<<4)};
66
67 void Log(const char *Format,...);
68 void Status(const char *Format,...);
69
70 int Run(bool Single = false);
71
72 pkgAcqMethod(const char *Ver,unsigned long Flags = 0);
73 virtual ~pkgAcqMethod() {};
74 };
75
76 #endif