]>
git.saurik.com Git - apt.git/blob - apt-pkg/acquire-method.h
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: acquire-method.h,v 1.15.2.1 2003/12/24 23:09:17 mdz 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>
17 #include <apt-pkg/strutl.h>
20 #pragma interface "apt-pkg/acquire-method.h"
42 vector
<string
> GPGVOutput
;
47 unsigned long ResumePoint
;
49 void TakeHashes(Hashes
&Hash
);
54 vector
<string
> Messages
;
61 // Handlers for messages
62 virtual bool Configuration(string Message
);
63 virtual bool Fetch(FetchItem
* /*Item*/) {return true;};
66 void Fail(bool Transient
= false);
67 inline void Fail(const char *Why
, bool Transient
= false) {Fail(string(Why
),Transient
);};
68 virtual void Fail(string Why
, bool Transient
= false);
69 virtual void URIStart(FetchResult
&Res
);
70 virtual void URIDone(FetchResult
&Res
,FetchResult
*Alt
= 0);
72 bool MediaFail(string Required
,string Drive
);
73 virtual void Exit() {};
76 enum CnfFlags
{SingleInstance
= (1<<0),
77 Pipeline
= (1<<1), SendConfig
= (1<<2),
78 LocalOnly
= (1<<3), NeedsCleanup
= (1<<4),
81 void Log(const char *Format
,...);
82 void Status(const char *Format
,...);
84 int Run(bool Single
= false);
85 inline void SetFailReason(string Msg
) {FailReason
= Msg
;};
86 inline void SetIP(string aIP
) {IP
= aIP
;};
88 pkgAcqMethod(const char *Ver
,unsigned long Flags
= 0);
89 virtual ~pkgAcqMethod() {};