]>
git.saurik.com Git - apt.git/blob - apt-pkg/acquire-method.h
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: acquire-method.h,v 1.3 1998/11/14 01:39:43 jgg Exp $
4 /* ######################################################################
6 Acquire Method - Method helper class + functions
8 These functions are designed to be used within the method task to
9 ease communication with APT.
11 ##################################################################### */
13 #ifndef PKGLIB_ACQUIRE_METHOD_H
14 #define PKGLIB_ACQUIRE_METHOD_H
16 #include <apt-pkg/configuration.h>
20 #pragma interface "apt-pkg/acquire-method.h"
43 unsigned long ResumePoint
;
48 vector
<string
> Messages
;
51 // Handlers for messages
52 virtual bool Configuration(string Message
);
53 virtual bool Fetch(FetchItem
*Item
) {return true;};
57 void Fail(string Why
);
58 void URIStart(FetchResult
&Res
);
59 void URIDone(FetchResult
&Res
,FetchResult
*Alt
= 0);
63 enum CnfFlags
{SingleInstance
= (1<<0), PreScan
= (1<<1),
64 Pipeline
= (1<<2), SendConfig
= (1<<3),
67 void Log(const char *Format
,...);
68 void Status(const char *Format
,...);
70 int Run(bool Single
= false);
72 pkgAcqMethod(const char *Ver
,unsigned long Flags
= 0);
73 virtual ~pkgAcqMethod() {};