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