]>
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>
39 vector
<string
> GPGVOutput
;
44 unsigned long ResumePoint
;
46 void TakeHashes(Hashes
&Hash
);
51 vector
<string
> Messages
;
56 // Handlers for messages
57 virtual bool Configuration(string Message
);
58 virtual bool Fetch(FetchItem
* /*Item*/) {return true;};
61 void Fail(bool Transient
= false);
62 inline void Fail(const char *Why
, bool Transient
= false) {Fail(string(Why
),Transient
);};
63 void Fail(string Why
, bool Transient
= false);
64 void URIStart(FetchResult
&Res
);
65 void URIDone(FetchResult
&Res
,FetchResult
*Alt
= 0);
66 bool MediaFail(string Required
,string Drive
);
67 virtual void Exit() {};
71 enum CnfFlags
{SingleInstance
= (1<<0),
72 Pipeline
= (1<<1), SendConfig
= (1<<2),
73 LocalOnly
= (1<<3), NeedsCleanup
= (1<<4),
76 void Log(const char *Format
,...);
77 void Status(const char *Format
,...);
79 int Run(bool Single
= false);
80 inline void SetFailExtraMsg(string Msg
) {FailExtra
= Msg
;};
82 pkgAcqMethod(const char *Ver
,unsigned long Flags
= 0);
83 virtual ~pkgAcqMethod() {};