// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: acquire-method.h,v 1.13 2000/01/17 07:11:49 jgg Exp $
+// $Id: acquire-method.h,v 1.15.2.1 2003/12/24 23:09:17 mdz Exp $
/* ######################################################################
Acquire Method - Method helper class + functions
##################################################################### */
/*}}}*/
+
+/** \addtogroup acquire
+ * @{
+ *
+ * \file acquire-method.h
+ */
+
#ifndef PKGLIB_ACQUIRE_METHOD_H
#define PKGLIB_ACQUIRE_METHOD_H
#pragma interface "apt-pkg/acquire-method.h"
#endif
+class Hashes;
class pkgAcqMethod
{
protected:
struct FetchResult
{
string MD5Sum;
+ string SHA1Sum;
+ vector<string> GPGVOutput;
time_t LastModified;
bool IMSHit;
string Filename;
unsigned long Size;
- unsigned long ResumePoint;
+ unsigned long ResumePoint;
+
+ void TakeHashes(Hashes &Hash);
FetchResult();
};
vector<string> Messages;
FetchItem *Queue;
FetchItem *QueueBack;
-
+ string FailExtra;
+
// Handlers for messages
virtual bool Configuration(string Message);
virtual bool Fetch(FetchItem * /*Item*/) {return true;};
void Status(const char *Format,...);
int Run(bool Single = false);
+ inline void SetFailExtraMsg(string Msg) {FailExtra = Msg;};
pkgAcqMethod(const char *Ver,unsigned long Flags = 0);
virtual ~pkgAcqMethod() {};
};
+/** @} */
+
#endif