]>
git.saurik.com Git - apt-legacy.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 ##################################################################### */
14 /** \addtogroup acquire
17 * \file acquire-method.h
20 #ifndef PKGLIB_ACQUIRE_METHOD_H
21 #define PKGLIB_ACQUIRE_METHOD_H
23 #include <apt-pkg/configuration.h>
24 #include <apt-pkg/strutl.h>
47 vector
<string
> GPGVOutput
;
52 unsigned long ResumePoint
;
54 void TakeHashes(Hashes
&Hash
);
59 vector
<string
> Messages
;
64 // Handlers for messages
65 virtual bool Configuration(string Message
);
66 virtual bool Fetch(FetchItem
* /*Item*/) {return true;};
69 void Fail(bool Transient
= false);
70 inline void Fail(const char *Why
, bool Transient
= false) {Fail(string(Why
),Transient
);};
71 void Fail(string Why
, bool Transient
= false);
72 void URIStart(FetchResult
&Res
);
73 void URIDone(FetchResult
&Res
,FetchResult
*Alt
= 0);
74 bool MediaFail(string Required
,string Drive
);
75 virtual void Exit() {};
79 enum CnfFlags
{SingleInstance
= (1<<0),
80 Pipeline
= (1<<1), SendConfig
= (1<<2),
81 LocalOnly
= (1<<3), NeedsCleanup
= (1<<4),
84 void Log(const char *Format
,...);
85 void Status(const char *Format
,...);
87 void Redirect(const string
&NewURI
);
89 int Run(bool Single
= false);
90 inline void SetFailExtraMsg(string Msg
) {FailExtra
= Msg
;};
92 pkgAcqMethod(const char *Ver
,unsigned long Flags
= 0);
93 virtual ~pkgAcqMethod() {};